From e055bbb128cbcfaf9f88fbe05384a6d171b6dcef Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Wed, 21 Dec 2022 08:18:50 -0600 Subject: [PATCH 01/23] Reduce log levels to info --- scripts/client/core.js | 4 +--- scripts/server/core.js | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/client/core.js b/scripts/client/core.js index e10400bb..256a3437 100644 --- a/scripts/client/core.js +++ b/scripts/client/core.js @@ -16,8 +16,6 @@ let inVehicleSeat = false; let isWalking = false; let isSpawned = false; -let garbageCollectorInterval = null; - //let parkedVehiclePosition = false; //let parkedVehicleHeading = false; @@ -30,7 +28,7 @@ let renderHotBar = true; let renderItemActionDelay = true; let renderInteriorLights = true; -let logLevel = LOG_INFO | LOG_DEBUG; +let logLevel = LOG_INFO; let weaponDamageEnabled = {}; let weaponDamageEvent = {}; diff --git a/scripts/server/core.js b/scripts/server/core.js index e5235f79..c38e93c5 100644 --- a/scripts/server/core.js +++ b/scripts/server/core.js @@ -9,7 +9,7 @@ let scriptVersion = "1.3"; let serverStartTime = 0; -let logLevel = LOG_INFO | LOG_ERROR | LOG_WARN | LOG_DEBUG | LOG_VERBOSE; +let logLevel = LOG_INFO; let playerResourceReady = new Array(server.maxClients).fill(false); let playerResourceStarted = new Array(server.maxClients).fill(false); From 9e5e410582f22e7e6d8bcdc8fb63aca4f6d2068d Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Wed, 21 Dec 2022 08:19:05 -0600 Subject: [PATCH 02/23] Remove garbage collector stuff --- scripts/client/event.js | 1 - scripts/server/event.js | 2 +- scripts/server/job.js | 6 +++--- scripts/server/timers.js | 3 --- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/scripts/client/event.js b/scripts/client/event.js index 4313e47e..dc3645a8 100644 --- a/scripts/client/event.js +++ b/scripts/client/event.js @@ -64,7 +64,6 @@ function onResourceStart(event, resource) { if (resource == thisResource) { logToConsole(LOG_DEBUG | LOG_WARN, `[AGRP.Event] onResourceStart called - Sending signal to server`); - garbageCollectorInterval = setInterval(collectAllGarbage, 1000 * 60); localPlayerMoneyInterval = setInterval(updateLocalPlayerMoney, 1000 * 5); sendResourceStartedSignalToServer(); } diff --git a/scripts/server/event.js b/scripts/server/event.js index 71045029..0a772cd5 100644 --- a/scripts/server/event.js +++ b/scripts/server/event.js @@ -230,7 +230,7 @@ function onResourceStop(event, resource) { kickAllClients(); saveServerDataToDatabase(); disconnectFromDatabase(persistentDatabaseConnection, true); - collectAllGarbage(); + //collectAllGarbage(); messageDiscordEventChannel(`⛔ Server is shutting down!`); } diff --git a/scripts/server/job.js b/scripts/server/job.js index 65c6537e..c707ac79 100644 --- a/scripts/server/job.js +++ b/scripts/server/job.js @@ -3645,7 +3645,7 @@ function deleteJobRouteLocationCommand(command, params, client) { getJobData(getJobIdFromDatabaseId(tempJob)).routes[tempJobRoute].locations.splice(tempIndex, 1); setAllJobDataIndexes(); - collectAllGarbage(); + //collectAllGarbage(); } // =========================================================================== @@ -3683,7 +3683,7 @@ function deleteJobRouteCommand(command, params, client) { getServerData().jobs[jobId].routes.splice(jobRoute, 1); setAllJobDataIndexes(); - collectAllGarbage(); + //collectAllGarbage(); } // =========================================================================== @@ -3711,7 +3711,7 @@ function deleteJobUniformCommand(command, params, client) { getJobData(jobId).uniforms.splice(uniformIndex, 1); setAllJobDataIndexes(); - collectAllGarbage(); + //collectAllGarbage(); } // =========================================================================== diff --git a/scripts/server/timers.js b/scripts/server/timers.js index d05efb36..04462e92 100644 --- a/scripts/server/timers.js +++ b/scripts/server/timers.js @@ -113,9 +113,6 @@ function oneMinuteTimerFunction() { logToConsole(LOG_DEBUG, `[AGRP.Event] Updating all player name tags`); updateAllPlayerNameTags(); } - - logToConsole(LOG_DEBUG, `[AGRP.Event] Collecting all garbage`); - collectAllGarbage(); } // =========================================================================== From fe9209895296f8f634735277e941c5176bc79795 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Tue, 27 Dec 2022 23:27:59 -0600 Subject: [PATCH 03/23] Remove config files from gitignore --- .gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitignore b/.gitignore index 9c1d929d..3ec23429 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,3 @@ .vs/ .git/ *.code-workspace -config/database.json -config/email.json -config/discord.json -locale/* From 65aacb6389966cfaca8be23fe398c6e9fe00c051 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Tue, 27 Dec 2022 23:28:17 -0600 Subject: [PATCH 04/23] Remove old database file (will add new soon) --- database.sql | 7845 -------------------------------------------------- 1 file changed, 7845 deletions(-) delete mode 100644 database.sql diff --git a/database.sql b/database.sql deleted file mode 100644 index 1075b0d5..00000000 --- a/database.sql +++ /dev/null @@ -1,7845 +0,0 @@ --- -------------------------------------------------------- --- Host: 127.0.0.1 --- Server version: 10.4.19-MariaDB - mariadb.org binary distribution --- Server OS: Win64 --- HeidiSQL Version: 11.3.0.6295 --- -------------------------------------------------------- - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET NAMES utf8 */; -/*!50503 SET NAMES utf8mb4 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- Dumping structure for table gtac_roleplay.acct_auth -CREATE TABLE IF NOT EXISTS `acct_auth` ( - `acct_auth_id` int(11) NOT NULL AUTO_INCREMENT, - `acct_auth_acct` int(11) NOT NULL DEFAULT 0, - `acct_auth_type` int(11) NOT NULL DEFAULT 0, - `acct_auth_detail` varchar(128) NOT NULL DEFAULT '', - `acct_auth_smscarrier` int(11) NOT NULL DEFAULT -1, - `acct_auth_verified` tinyint(1) NOT NULL DEFAULT 0, - `acct_auth_when_verified` int(32) NOT NULL DEFAULT 0, - `acct_auth_verifycode` varchar(32) NOT NULL DEFAULT '', - `acct_auth_token` varchar(128) NOT NULL DEFAULT '', - PRIMARY KEY (`acct_auth_id`), - KEY `acct_auth_acct` (`acct_auth_acct`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Accounts - Authentication Methods'; - --- Dumping data for table gtac_roleplay.acct_auth: ~0 rows (approximately) -/*!40000 ALTER TABLE `acct_auth` DISABLE KEYS */; -/*!40000 ALTER TABLE `acct_auth` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.acct_bl -CREATE TABLE IF NOT EXISTS `acct_bl` ( - `acct_bl_id` int(11) NOT NULL AUTO_INCREMENT, - `acct_bl_acct` int(11) NOT NULL DEFAULT 0, - `acct_bl_ip` int(24) NOT NULL DEFAULT 0, - `acct_bl_uid` varchar(128) NOT NULL DEFAULT '', - `acct_bl_when_added` int(32) NOT NULL DEFAULT 0, - `acct_bl_enabled` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`acct_bl_id`), - KEY `acct_bl_acct` (`acct_bl_acct`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Accounts - Access Blacklist'; - --- Dumping data for table gtac_roleplay.acct_bl: ~0 rows (approximately) -/*!40000 ALTER TABLE `acct_bl` DISABLE KEYS */; -/*!40000 ALTER TABLE `acct_bl` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.acct_contact -CREATE TABLE IF NOT EXISTS `acct_contact` ( - `acct_contact_id` int(11) NOT NULL AUTO_INCREMENT, - `acct_contact_acct` int(11) NOT NULL DEFAULT 0, - `acct_contact_contact` int(11) NOT NULL DEFAULT 0, - `acct_contact_type` int(11) NOT NULL DEFAULT 0, - `acct_contact_when_added` int(32) NOT NULL DEFAULT 0, - `acct_contact_accepted` tinyint(1) NOT NULL DEFAULT 0, - `acct_contact_when_accepted` int(32) NOT NULL DEFAULT 0, - `acct_contact_deleted` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`acct_contact_id`), - KEY `acct_contact_acct` (`acct_contact_acct`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Accounts - Contacts (Friends/Blocked/Etc)'; - --- Dumping data for table gtac_roleplay.acct_contact: ~0 rows (approximately) -/*!40000 ALTER TABLE `acct_contact` DISABLE KEYS */; -/*!40000 ALTER TABLE `acct_contact` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.acct_hotkey -CREATE TABLE IF NOT EXISTS `acct_hotkey` ( - `acct_hotkey_id` int(11) NOT NULL AUTO_INCREMENT, - `acct_hotkey_acct` int(11) NOT NULL DEFAULT 0, - `acct_hotkey_key` int(11) NOT NULL DEFAULT 0, - `acct_hotkey_cmdstr` varchar(128) NOT NULL DEFAULT '', - `acct_hotkey_enabled` tinyint(1) NOT NULL DEFAULT 1, - `acct_hotkey_when_added` bigint(20) NOT NULL DEFAULT 0, - `acct_hotkey_down` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`acct_hotkey_id`), - KEY `acct_hotkey_acct` (`acct_hotkey_acct`) -) ENGINE=InnoDB AUTO_INCREMENT=181 DEFAULT CHARSET=utf16 COMMENT='Accounts - Custom Hotkeys'; - --- Dumping data for table gtac_roleplay.acct_hotkey: ~0 rows (approximately) -/*!40000 ALTER TABLE `acct_hotkey` DISABLE KEYS */; -/*!40000 ALTER TABLE `acct_hotkey` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.acct_main -CREATE TABLE IF NOT EXISTS `acct_main` ( - `acct_id` int(11) NOT NULL AUTO_INCREMENT, - `acct_name` varchar(128) NOT NULL DEFAULT '', - `acct_pass` varchar(512) NOT NULL DEFAULT '', - `acct_email` varchar(128) NOT NULL DEFAULT '', - `acct_settings` int(32) NOT NULL DEFAULT 0, - `acct_staff_flags` int(32) NOT NULL DEFAULT 0, - `acct_staff_title` varchar(32) NOT NULL DEFAULT '', - `acct_mod_flags` int(32) NOT NULL DEFAULT 0, - `acct_irc` varchar(64) NOT NULL DEFAULT '', - `acct_discord` int(64) NOT NULL DEFAULT 0, - `acct_ip` int(11) NOT NULL DEFAULT 0, - `acct_timezone` int(11) NOT NULL DEFAULT 0, - `acct_code_2fa` varchar(50) NOT NULL DEFAULT '0', - `acct_code_resetpass` varchar(50) NOT NULL DEFAULT '0', - `acct_code_verifyemail` varchar(50) NOT NULL DEFAULT '0', - `acct_when_made` bigint(32) NOT NULL DEFAULT 0, - PRIMARY KEY (`acct_id`) -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf16 COMMENT='Accounts'; - --- Dumping data for table gtac_roleplay.acct_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `acct_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `acct_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.acct_msg -CREATE TABLE IF NOT EXISTS `acct_msg` ( - `acct_msg_id` int(11) NOT NULL AUTO_INCREMENT, - `acct_msg_acct` int(11) NOT NULL DEFAULT 0, - `acct_msg_who_sent` int(11) NOT NULL DEFAULT 0, - `acct_msg_when_sent` bigint(20) NOT NULL DEFAULT 0, - `acct_msg_when_read` bigint(20) NOT NULL DEFAULT 0, - `acct_msg_deleted` tinyint(1) NOT NULL DEFAULT 0, - `acct_msg_when_deleted` bigint(20) NOT NULL DEFAULT 0, - `acct_msg_folder` int(11) NOT NULL DEFAULT 0, - `acct_msg_message` text NOT NULL, - PRIMARY KEY (`acct_msg_id`), - KEY `acct_msg_acct` (`acct_msg_acct`), - KEY `acct_msg_who_sent` (`acct_msg_who_sent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Accounts - Private Messages (Mail)'; - --- Dumping data for table gtac_roleplay.acct_msg: ~0 rows (approximately) -/*!40000 ALTER TABLE `acct_msg` DISABLE KEYS */; -/*!40000 ALTER TABLE `acct_msg` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.acct_note -CREATE TABLE IF NOT EXISTS `acct_note` ( - `acct_note_id` int(11) NOT NULL AUTO_INCREMENT, - `acct_note_acct` int(11) NOT NULL DEFAULT 0, - `acct_note_server` int(11) NOT NULL DEFAULT 0, - `acct_note_who_added` int(11) NOT NULL DEFAULT 0, - `acct_note_when_added` bigint(20) NOT NULL DEFAULT 0, - `acct_note_message` varchar(255) NOT NULL DEFAULT '', - `acct_note_deleted` tinyint(1) NOT NULL DEFAULT 0, - `acct_note_who_deleted` int(11) NOT NULL DEFAULT 0, - `acct_note_when_deleted` bigint(20) NOT NULL DEFAULT 0, - PRIMARY KEY (`acct_note_id`), - KEY `acct_note_acct` (`acct_note_acct`), - KEY `acct_note_server` (`acct_note_server`), - KEY `acct_note_who_added` (`acct_note_who_added`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Accounts - Staff Notes'; - --- Dumping data for table gtac_roleplay.acct_note: ~0 rows (approximately) -/*!40000 ALTER TABLE `acct_note` DISABLE KEYS */; -/*!40000 ALTER TABLE `acct_note` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.acct_svr -CREATE TABLE IF NOT EXISTS `acct_svr` ( - `acct_svr_id` int(11) NOT NULL AUTO_INCREMENT, - `acct_svr_acct` int(11) NOT NULL DEFAULT 0, - `acct_svr_svr` int(11) NOT NULL DEFAULT 0, - `acct_svr_staff_title` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `acct_svr_staff_flags` bigint(20) NOT NULL DEFAULT 0, - `acct_svr_mod_flags` bigint(20) NOT NULL DEFAULT 0, - `acct_svr_settings` int(11) NOT NULL DEFAULT 0, - `acct_svr_chat_scroll_lines` int(11) NOT NULL DEFAULT 1, - PRIMARY KEY (`acct_svr_id`), - KEY `acct_svr_acct` (`acct_svr_acct`), - KEY `acct_svr_svr` (`acct_svr_svr`) -) ENGINE=InnoDB AUTO_INCREMENT=113 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Accounts - Per Server Data'; - --- Dumping data for table gtac_roleplay.acct_svr: ~0 rows (approximately) -/*!40000 ALTER TABLE `acct_svr` DISABLE KEYS */; -/*!40000 ALTER TABLE `acct_svr` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.acct_wl -CREATE TABLE IF NOT EXISTS `acct_wl` ( - `acct_wl_id` int(11) NOT NULL AUTO_INCREMENT, - `acct_wl_acct` int(11) NOT NULL DEFAULT 0, - `acct_wl_ip` int(24) NOT NULL DEFAULT 0, - `acct_wl_uid` varchar(128) NOT NULL DEFAULT '', - `acct_wl_when_added` int(32) NOT NULL DEFAULT 0, - `acct_wl_enabled` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`acct_wl_id`), - KEY `acct_wl_acct` (`acct_wl_acct`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Accounts - Access Whitelist'; - --- Dumping data for table gtac_roleplay.acct_wl: ~0 rows (approximately) -/*!40000 ALTER TABLE `acct_wl` DISABLE KEYS */; -/*!40000 ALTER TABLE `acct_wl` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.ac_script_bl -CREATE TABLE IF NOT EXISTS `ac_script_bl` ( - `ac_script_bl_id` int(11) NOT NULL AUTO_INCREMENT, - `ac_script_bl_server` int(11) NOT NULL DEFAULT 0, - `ac_script_bl_name` varchar(50) NOT NULL DEFAULT '', - `ac_script_bl_enabled` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`ac_script_bl_id`), - KEY `ac_script_bl_server` (`ac_script_bl_server`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf16 COMMENT='Anticheat - Blacklisted Scripts'; - --- Dumping data for table gtac_roleplay.ac_script_bl: ~0 rows (approximately) -/*!40000 ALTER TABLE `ac_script_bl` DISABLE KEYS */; -/*!40000 ALTER TABLE `ac_script_bl` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.ac_script_wl -CREATE TABLE IF NOT EXISTS `ac_script_wl` ( - `ac_script_wl_id` int(11) NOT NULL AUTO_INCREMENT, - `ac_script_wl_server` int(11) NOT NULL DEFAULT 0, - `ac_script_wl_name` varchar(50) NOT NULL DEFAULT '', - `ac_script_wl_enabled` int(11) NOT NULL DEFAULT 1, - PRIMARY KEY (`ac_script_wl_id`) USING BTREE, - KEY `ac_script_wl_server` (`ac_script_wl_server`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf16 COMMENT='Anticheat - Whitelisted Scripts'; - --- Dumping data for table gtac_roleplay.ac_script_wl: ~0 rows (approximately) -/*!40000 ALTER TABLE `ac_script_wl` DISABLE KEYS */; -/*!40000 ALTER TABLE `ac_script_wl` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.atm_main -CREATE TABLE IF NOT EXISTS `atm_main` ( - `atm_id` int(11) NOT NULL AUTO_INCREMENT, - `atm_server` int(11) NOT NULL DEFAULT 0, - `atm_pos_x` float NOT NULL DEFAULT 0, - `atm_pos_y` float NOT NULL DEFAULT 0, - `atm_pos_z` float NOT NULL DEFAULT 0, - `atm_fee` int(11) NOT NULL DEFAULT 0, - `atm_disabled` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`atm_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='ATMs'; - --- Dumping data for table gtac_roleplay.atm_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `atm_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `atm_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.atm_use -CREATE TABLE IF NOT EXISTS `atm_use` ( - `atm_use_id` int(11) NOT NULL AUTO_INCREMENT, - `atm_use_atm` int(11) NOT NULL DEFAULT 0, - `atm_use_bankacct` int(11) NOT NULL DEFAULT 0, - `atm_use_amount` int(11) NOT NULL DEFAULT 0, - `atm_use_when` int(32) NOT NULL DEFAULT 0, - `atm_use_balance_before` int(11) NOT NULL DEFAULT 0, - `atm_use_balance_after` int(11) NOT NULL DEFAULT 0, - `atm_use_result` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`atm_use_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='ATMs - Usage'; - --- Dumping data for table gtac_roleplay.atm_use: ~0 rows (approximately) -/*!40000 ALTER TABLE `atm_use` DISABLE KEYS */; -/*!40000 ALTER TABLE `atm_use` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.bank_main -CREATE TABLE IF NOT EXISTS `bank_main` ( - `bank_id` int(11) NOT NULL AUTO_INCREMENT, - `bank_server` int(11) NOT NULL DEFAULT 0, - `bank_name` varchar(64) NOT NULL DEFAULT 'Unnamed', - `bank_enabled` tinyint(1) NOT NULL DEFAULT 1, - `bank_biz` int(11) NOT NULL DEFAULT 1, - PRIMARY KEY (`bank_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Banks'; - --- Dumping data for table gtac_roleplay.bank_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `bank_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `bank_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.ban_main -CREATE TABLE IF NOT EXISTS `ban_main` ( - `ban_id` int(11) NOT NULL AUTO_INCREMENT, - `ban_server` int(11) NOT NULL DEFAULT 0, - `ban_detail` int(11) NOT NULL DEFAULT 0, - `ban_type` tinyint(1) NOT NULL DEFAULT 0, - `ban_ip_start` int(24) NOT NULL DEFAULT 0, - `ban_ip_end` int(24) NOT NULL DEFAULT 0, - `ban_uid` varchar(256) NOT NULL DEFAULT '', - `ban_who_added` int(11) NOT NULL DEFAULT 0, - `ban_when_added` int(32) NOT NULL DEFAULT 0, - `ban_reason` varchar(255) NOT NULL DEFAULT '', - `ban_deleted` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`ban_id`), - KEY `ban_server` (`ban_server`), - KEY `ban_who_added` (`ban_who_added`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Bans'; - --- Dumping data for table gtac_roleplay.ban_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `ban_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `ban_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.ban_try -CREATE TABLE IF NOT EXISTS `ban_try` ( - `ban_try_id` int(11) NOT NULL AUTO_INCREMENT, - `ban_try_server` tinyint(2) NOT NULL DEFAULT 0, - `ban_try_ip` int(24) NOT NULL DEFAULT 0, - `ban_try_uid` varchar(128) NOT NULL DEFAULT '', - `ban_try_when_tried` int(32) NOT NULL DEFAULT 0, - `ban_try_ban_id` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`ban_try_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Bans - Connection Attempts'; - --- Dumping data for table gtac_roleplay.ban_try: ~0 rows (approximately) -/*!40000 ALTER TABLE `ban_try` DISABLE KEYS */; -/*!40000 ALTER TABLE `ban_try` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.biz_buy -CREATE TABLE IF NOT EXISTS `biz_buy` ( - `biz_buy_id` int(11) NOT NULL AUTO_INCREMENT, - `biz_buy_biz` int(11) NOT NULL DEFAULT 0, - `biz_buy_sacct` int(11) NOT NULL DEFAULT 0, - `biz_buy_amount` int(11) NOT NULL DEFAULT 0, - `biz_buy_prod` int(11) NOT NULL DEFAULT 0, - `biz_buy_tip` int(11) NOT NULL DEFAULT 0, - `biz_buy_result` tinyint(4) NOT NULL DEFAULT 0, - PRIMARY KEY (`biz_buy_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Businesses - Purchases'; - --- Dumping data for table gtac_roleplay.biz_buy: ~0 rows (approximately) -/*!40000 ALTER TABLE `biz_buy` DISABLE KEYS */; -/*!40000 ALTER TABLE `biz_buy` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.biz_loc -CREATE TABLE IF NOT EXISTS `biz_loc` ( - `biz_loc_id` int(11) NOT NULL AUTO_INCREMENT, - `biz_loc_name` varchar(128) CHARACTER SET utf16 NOT NULL DEFAULT '', - `biz_loc_type` int(11) NOT NULL DEFAULT 0, - `biz_loc_biz` int(11) NOT NULL DEFAULT 0, - `biz_loc_enabled` int(11) NOT NULL DEFAULT 0, - `biz_loc_pos_x` float NOT NULL DEFAULT 0, - `biz_loc_pos_y` float NOT NULL DEFAULT 0, - `biz_loc_pos_z` float NOT NULL DEFAULT 0, - `biz_loc_rot_z` float NOT NULL DEFAULT 0, - `biz_loc_int` int(11) NOT NULL DEFAULT 0, - `biz_loc_vw` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`biz_loc_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Businesses - Locations'; - --- Dumping data for table gtac_roleplay.biz_loc: ~0 rows (approximately) -/*!40000 ALTER TABLE `biz_loc` DISABLE KEYS */; -/*!40000 ALTER TABLE `biz_loc` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.biz_main -CREATE TABLE IF NOT EXISTS `biz_main` ( - `biz_id` int(11) NOT NULL AUTO_INCREMENT, - `biz_server` int(11) NOT NULL DEFAULT 0, - `biz_name` varchar(40) NOT NULL DEFAULT 'Unnamed Business', - `biz_type` tinyint(4) NOT NULL DEFAULT 0, - `biz_buy_price` int(11) NOT NULL DEFAULT 0, - `biz_owner_type` int(11) NOT NULL DEFAULT 0, - `biz_owner_id` int(11) NOT NULL DEFAULT 0, - `biz_entrance_pos_x` float NOT NULL DEFAULT 0, - `biz_entrance_pos_y` float NOT NULL DEFAULT 0, - `biz_entrance_pos_z` float NOT NULL DEFAULT 0, - `biz_entrance_rot_z` float NOT NULL DEFAULT 0, - `biz_entrance_int` int(11) NOT NULL DEFAULT 0, - `biz_entrance_vw` int(11) NOT NULL DEFAULT 0, - `biz_entrance_pickup` int(11) NOT NULL DEFAULT -1, - `biz_entrance_blip` int(11) NOT NULL DEFAULT -1, - `biz_exit_pos_x` float NOT NULL DEFAULT 0, - `biz_exit_pos_y` float NOT NULL DEFAULT 0, - `biz_exit_pos_z` float NOT NULL DEFAULT 0, - `biz_exit_rot_z` float NOT NULL DEFAULT 0, - `biz_exit_int` int(11) NOT NULL DEFAULT 0, - `biz_exit_vw` int(11) NOT NULL DEFAULT 0, - `biz_exit_pickup` int(11) NOT NULL DEFAULT -1, - `biz_exit_blip` int(11) NOT NULL DEFAULT -1, - `biz_misc_customext` tinyint(4) NOT NULL DEFAULT 0, - `biz_misc_customint` tinyint(4) NOT NULL DEFAULT 0, - `biz_supply_pos_x` float NOT NULL DEFAULT 0, - `biz_supply_pos_y` float NOT NULL DEFAULT 0, - `biz_supply_pos_z` float NOT NULL DEFAULT 0, - `biz_buy_pos_x` float NOT NULL DEFAULT 0, - `biz_buy_pos_y` float NOT NULL DEFAULT 0, - `biz_buy_pos_z` float NOT NULL DEFAULT 0, - `biz_buy_rot_z` float NOT NULL DEFAULT 0, - `biz_misc_customvw` int(11) NOT NULL DEFAULT 0, - `biz_locked` tinyint(1) NOT NULL DEFAULT 0, - `biz_till` int(11) NOT NULL DEFAULT 0, - `biz_entrance_fee` int(11) NOT NULL DEFAULT 0, - `biz_deleted` tinyint(1) NOT NULL DEFAULT 0, - `biz_who_deleted` int(11) NOT NULL DEFAULT 0, - `biz_when_deleted` int(32) NOT NULL DEFAULT 0, - `biz_has_interior` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`biz_id`) USING BTREE, - KEY `biz_server` (`biz_server`), - KEY `biz_owner` (`biz_owner_type`,`biz_owner_id`) -) ENGINE=InnoDB AUTO_INCREMENT=342 DEFAULT CHARSET=utf16 COMMENT='Businesses'; - --- Dumping data for table gtac_roleplay.biz_main: ~253 rows (approximately) -/*!40000 ALTER TABLE `biz_main` DISABLE KEYS */; -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (1, 4, 'Unnamed Business', 5, 30000, 0, 0, -90.24, -1219.76, 2.71, 350.178, 0, 0, 0, -1, -2026.9, -104.128, 1035.17, 179.07, 3, 5001, 0, -1, 0, 0, -93.521, -1241.12, 1.92454, -104.326, -1213.02, 2.76131, 174.391, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (2, 4, 'Unnamed Business', 8, 30000, 0, 0, 2078.66, -1582.38, 13.49, 337.053, 0, 0, 0, -1, -25.8433, -187.446, 1003.55, 4.72576, 17, 5002, 0, -1, 0, 0, 1795.3, -1166.21, 23.8281, 2127.1, -1134.72, 25.5488, 351.147, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (4, 4, 'Pawn', 4, 30000, 0, 0, 984.18, -1336.44, 13.55, 199.037, 0, 0, 0, -1, 315.799, -143.53, 999.602, 1.01837, 7, 5004, 0, -1, 0, 1, 1872.19, -1621.2, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (5, 4, 'Unnamed Business', 1, 30000, 0, 0, 1653.2, 1470.7, 1152.43, 299.874, 0, 0, 0, -1, -25.9841, -187.986, 1003.55, 357.842, 17, 5005, 0, -1, 0, 0, 1837.36, -1434.91, 13.5625, 1704.68, -1587.22, 13.5383, 87.0352, 4, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (6, 4, 'Unnamed Business', 3, 30000, 0, 0, 1333.37, -1864.21, 13.55, 154.702, 0, 0, 0, -1, 6.6435, -31.4626, 1003.55, 191.882, 10, 5006, 0, -1, 0, 1, 1565.82, -1167.49, 24.0781, 1647.94, -2483.22, 13.5547, 87.3502, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (7, 4, 'Unnamed Business', 5, 30000, 0, 0, 1026.38, -1927.19, 12.8, 154.459, 0, 0, 0, -1, 1226.77, -813.652, 1084.01, 353.088, 5, 5007, 0, -1, 0, 1, 1915.87, -1790.69, 13.3906, 1026.22, -1915.85, 12.8776, 266.223, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (8, 4, 'Unnamed Business', 3, 30000, 0, 0, -172.13, -1825.41, 55.41, 215.571, 0, 0, 0, -1, 1445.44, -1294.74, 13.5469, 100.653, 0, 5008, 0, -1, 1, 0, 1448.97, -1285.72, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (11, 4, 'Unnamed Business', 8, 30000, 0, 0, 1070.49, -1873.66, 13.55, 274.819, 0, 0, 0, -1, -31.0053, -91.6372, 1003.55, 0.680122, 18, 5011, 0, -1, 0, 0, -66.1294, -1169.59, 1.86967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (12, 4, 'Unnamed Business', 4, 30000, 0, 0, 1368.98, -1279.67, 13.55, 262.027, 0, 0, 0, -1, 315.902, -143.025, 999.602, 5.53311, 7, 5012, 0, -1, 0, 0, 1365.63, -1285.08, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (13, 4, 'Unnamed Business', 2, 30000, 0, 0, 1709.03, 1443.96, 1145.78, 281.106, 0, 0, 0, -1, -2029.62, -119.618, 1035.17, 1.0423, 3, 5013, 0, -1, 0, 0, -1579.28, 2652.63, 55.8359, -1600.75, 2645.28, 57.6595, 120.282, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (14, 4, 'Unnamed Business', 8, 30000, 0, 0, 1343.73, -1506.56, 13.55, 234.154, 0, 0, 0, -1, -25.8373, -188.091, 1003.55, 355.897, 17, 5014, 0, -1, 0, 0, 2156.02, -1020.91, 62.7113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (16, 4, 'Unnamed Business', 1, 30000, 0, 0, -1676.24, 432.1, 7.18, 33.0359, 0, 0, 0, -1, -27.3621, -57.8246, 1003.55, 179.037, 6, 5016, 0, -1, 1, 0, -1661.84, 442.168, 7.17969, -1591.62, 2657.25, 55.7501, 356.386, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (17, 4, 'Unnamed Business', 8, 30000, 0, 0, 667.21, -1770.07, 13.64, 164.522, 0, 0, 0, -1, -25.8373, -188.091, 1003.55, 355.897, 17, 5017, 0, -1, 0, 0, 1844.34, -1860.84, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (18, 4, 'Unnamed Business', 1, 30000, 0, 0, 1000.3, -920.2, 42.33, 96.2681, 0, 0, 0, -1, -31.1112, -91.8577, 1003.55, 0.052338, 18, 5018, 0, -1, 0, 0, 1022.79, -916.642, 42.1797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (19, 4, 'Unnamed Business', 2, 30000, 0, 0, 1456.53, -1137.56, 23.95, 36.7288, 0, 0, 0, -1, 207.615, -111.163, 1005.13, 187.89, 15, 5019, 0, -1, 0, 0, 2015.15, -1304.98, 23.986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (20, 4, 'Unnamed Business', 8, 30000, 0, 0, -1989.49, 884.84, 46.54, 98.2134, 0, 0, 0, -1, -31.0061, -91.5664, 1003.55, 0.680122, 18, 5020, 0, -1, 1, 0, -1981.44, 905.115, 45.7979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (21, 4, 'Unnamed Business', 5, 30000, 0, 0, 1628.75, -1903.4, 13.55, 84.3039, 0, 0, 0, -1, 1494.8, 1305.13, 1093.29, 65.5664, 3, 5021, 0, -1, 0, 0, 904.141, -1333.77, 13.5469, 1636.17, -1893.07, 13.2619, 2.61639, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (22, 4, 'Unnamed Business', 5, 30000, 0, 0, 1606.29, -2431.95, 13.55, 1.14757, 0, 0, 0, -1, -30.86, -91.9062, 1003.55, 354.538, 18, 5022, 0, -1, 0, 0, 1933.08, -2067.76, 13.5469, 1602.48, -2488.26, 13.5547, 267.485, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (23, 4, 'Unnamed Business', 0, 30000, 0, 0, 1796.35, -1721.18, 13.54, 180, 0, 0, 0, -1, -795.014, 489.671, 1376.2, 358.859, 1, 5023, 0, -1, 1, 1, 1809.53, -1724.42, 13.5362, 1899.97, -2346.11, 13.5469, 263.56, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (24, 4, 'Unnamed Business', 1, 30000, 0, 0, 1654.2, 1467.87, 1152.79, 325.41, 0, 0, 0, -1, -30.9635, -91.1079, 1003.55, 4.80216, 18, 5024, 0, -1, 0, 0, 1668.04, -1583.68, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (25, 4, 'Unnamed Business', 3, 30000, 0, 0, 1877.85, -1627.79, 13.34, 359.503, 0, 0, 0, -1, 460.448, -88.5426, 999.555, 86.9106, 4, 5025, 0, -1, 0, 0, 1794.43, -1726.55, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (26, 4, 'Unnamed Business', 2, 30000, 0, 0, 1704.21, -1578.79, 13.89, 278.564, 0, 0, 0, -1, 227.075, -7.33794, 1002.21, 91.3542, 5, 5026, 0, -1, 0, 0, -1699.21, 954.874, 24.8906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (27, 4, 'Unnamed Business', 3, 30000, 0, 0, 2419.8, -1509.08, 24, 268.67, 0, 0, 0, -1, 460.154, -88.5364, 999.555, 88.7906, 4, 5027, 0, -1, 0, 0, 2422.79, -1517.02, 24.0069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (28, 4, 'Unnamed Business', 4, 30000, 0, 0, 1357.07, 308.06, 19.75, 338.103, 0, 0, 0, -1, 315.641, -142.827, 999.602, 6.35604, 7, 5028, 0, -1, 0, 0, 1365.69, -1283.99, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (30, 4, 'Unnamed Business', 8, 30000, 0, 0, 1044.57, -1308.84, 13.55, 99.115, 0, 0, 0, -1, -25.7453, -188.253, 1003.55, 171.504, 17, 5030, 0, -1, 0, 0, 1037.38, -1311.36, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (31, 4, 'Unnamed Business', 0, 30000, 0, 0, 2247.63, 2396.32, 10.82, 184.236, 0, 0, 0, -1, 204.462, -168.754, 1000.52, 353.473, 14, 5031, 0, -1, 0, 0, 567.646, -1291.5, 17.2422, 561.662, -1292.28, 17.2482, 232.669, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (33, 4, 'Unnamed Business', 4, 30000, 0, 0, 387.18, -1817.95, 7.84, 273.117, 0, 0, 0, -1, 315.715, -142.947, 999.602, 0.321425, 7, 5033, 0, -1, 0, 1, 2521.73, -1544.98, 24.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (34, 4, 'Unnamed Business', 8, 30000, 0, 0, 1073.21, -1384.87, 13.87, 144.937, 0, 0, 0, -1, 363.315, -74.8249, 1001.51, 315.517, 10, 5034, 0, -1, 0, 0, 1191.5, -891.539, 43.1784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (35, 4, 'Unnamed Business', 2, 30000, 0, 0, 1109.27, -301.43, 74.54, 358.887, 0, 0, 0, -1, 203.856, -50.2081, 1001.8, 352.563, 1, 5035, 0, -1, 0, 0, -2493.67, -33.0023, 25.7656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (36, 4, 'Unnamed Business', 1, 30000, 0, 0, 1799.79, -1696.08, 5.25, 3.04433, 0, 0, 0, -1, -31.4892, -91.506, 1003.55, 358.788, 18, 5036, 0, -1, 0, 0, -1948.43, 826.607, 41.5261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (37, 4, 'Unnamed Business', 3, 30000, 0, 0, 1732.86, -1582.03, 14.16, 1.36931, 0, 0, 0, -1, 460.449, -88.6508, 999.555, 84.9172, 4, 5037, 0, -1, 0, 0, 1668.86, -1554.79, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (38, 4, 'Unnamed Business', 8, 30000, 0, 0, 1673.74, -1170.88, 23.97, 354.084, 0, 0, 0, -1, 501.926, -67.7462, 998.758, 175.187, 11, 5038, 0, -1, 0, 0, 2139.42, -1181.06, 23.9922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (39, 4, 'Unnamed Business', 8, 30000, 0, 0, 1670.49, -1582.65, 13.55, 3.42811, 0, 0, 0, -1, -30.9218, -91.5736, 1003.55, 357.108, 18, 5039, 0, -1, 0, 0, 2006.9, -1759.92, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (40, 4, 'Unnamed Business', 8, 30000, 0, 0, 1833.78, -1842.7, 13.58, 276.736, 0, 0, 0, -1, -26.4404, -187.648, 1003.55, 1.27901, 17, 5040, 0, -1, 0, 0, 2864.77, -1428.47, 10.9952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (41, 4, 'Unnamed Business', 1, 30000, 0, 0, 2261.93, 28.06, 26.5, 339.516, 0, 0, 0, -1, -26.4846, -57.8533, 1003.55, 350.759, 6, 5041, 0, -1, 0, 0, -1328.06, 2697.52, 50.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (42, 4, 'Unnamed Business', 8, 30000, 0, 0, 1154.69, -1458.02, 15.8, 4.52589, 0, 0, 0, -1, -26.6782, -57.6615, 1003.55, 357.681, 6, 5042, 0, -1, 0, 0, 2349.25, -1538.52, 24.0033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (43, 4, 'Unnamed Business', 8, 30000, 0, 0, 2318.99, -88.68, 26.48, 178.446, 0, 0, 0, -1, -26.1985, -187.472, 1003.55, 13.4461, 17, 5043, 0, -1, 0, 0, -2790.9, 774.258, 50.5078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (44, 4, 'Unnamed Business', 1, 30000, 0, 0, 1739.95, 1440.97, 1145.67, 85.9053, 0, 0, 0, -1, -31.0512, -91.6771, 1003.55, 0.187671, 18, 5044, 0, -1, 0, 0, -2235.17, -2563.35, 31.9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (45, 4, 'Unnamed Business', 5, 30000, 0, 0, 2045.5, -1908.06, 13.55, 174.508, 0, 0, 0, -1, 1169.16, 1361.17, 10.9219, 217.478, 0, 5045, 0, -1, 0, 0, 1249.5, -1376.78, 13.3634, 2052.74, -1912.89, 13.252, 358.522, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (46, 4, 'Unnamed Business', 1, 30000, 0, 0, 1671.24, 1469.42, 1152.6, 286.719, 0, 0, 0, -1, 203.788, -50.2352, 1001.8, 1.30236, 1, 5046, 0, -1, 0, 0, 2106.4, -1213.94, 23.9665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (48, 4, 'Unnamed Business', 4, 30000, 0, 0, 2333.4, 61.54, 26.71, 91.9637, 0, 0, 0, -1, 315.912, -143.315, 999.602, 358.938, 7, 5048, 0, -1, 0, 0, 2023.4, -1077.89, 24.6073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (50, 4, 'Unnamed Business', 2, 30000, 0, 0, 2244.25, -1665.5, 15.48, 347.07, 0, 0, 0, -1, 203.675, -49.334, 1001.8, 186.433, 1, 5050, 0, -1, 0, 0, 492.869, -1359.27, 17.1788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (51, 4, 'Unnamed Business', 1, 30000, 0, 0, 1636.1, -1848.45, 13.54, 0.564751, 0, 0, 0, -1, -30.871, -91.4408, 1003.55, 358.966, 18, 5051, 0, -1, 0, 0, -479.786, -566.494, 24.1158, 455.124, -1899.05, 0.78316, 202.97, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (52, 4, 'Unnamed Business', 12, 30000, 0, 0, 1703.45, 1442.91, 1145.78, 239.473, 0, 0, 0, -1, -2029.66, -119.435, 1035.17, 1.03609, 3, 5052, 0, -1, 0, 0, -1936.3, 276.5, 41.0469, -1958.21, 307.691, 35.4688, 6.40909, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (53, 4, 'Unnamed Business', 5, 30000, 0, 0, 1784.89, 1444.99, 1145.78, 340.115, 0, 0, 0, -1, -2029.56, -119.625, 1035.17, 357.304, 3, 5053, 0, -1, 0, 0, -1704.05, 1208.2, 25.1146, 1043.86, -1923.3, 12.9832, 0.44367, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (54, 4, 'Unnamed Business', 8, 30000, 0, 0, 1413.52, -1696.77, 13.54, 59.0001, 0, 0, 0, -1, 363.489, -74.6292, 1001.51, 134.772, 10, 5054, 0, -1, 0, 0, -1568.91, 674.891, 7.1875, 0, 0, 0, 0, 100053, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (55, 4, 'Unnamed Business', 7, 30000, 0, 0, 1737.46, 1443.56, 1145.78, 276.704, 0, 0, 0, -1, 1711.71, 1461.59, 1145.78, 257.869, 0, 5055, 0, -1, 0, 0, 2087.73, 2077.92, 11.0579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (56, 4, 'Unnamed Business', 1, 30000, 0, 0, 661.36, -573.29, 16.34, 272.013, 0, 0, 0, -1, -13.3403, -91.3059, 1008.03, 357.346, 18, 5056, 0, -1, 0, 1, 667.314, -546.236, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (57, 4, 'Unnamed Business', 0, 30000, 0, 0, 1047.21, -1418.63, 13.55, 144.195, 0, 0, 0, -1, -30.9934, -91.8355, 1003.55, 358.741, 18, 5057, 0, -1, 0, 0, 659.793, -1763.91, 13.5592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (58, 4, 'Unnamed Business', 3, 30000, 0, 0, 2105.35, -1806.45, 13.55, 265.142, 0, 0, 0, -1, 460.507, -88.4769, 999.555, 84.5587, 4, 5058, 0, -1, 1, 1, 593.602, -1494.91, 15.2686, 615.481, -1501.39, 14.8747, 277.476, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (59, 4, 'Unnamed Business', 2, 30000, 0, 0, 1829.57, -1450.66, 13.59, 359.855, 0, 0, 0, -1, 203.78, -50.5481, 1001.8, 9.98745, 1, 5059, 0, -1, 0, 0, 1112.81, -1566.31, 13.5569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (60, 4, 'Unnamed Business', 0, 30000, 0, 0, 1744.86, 1443.03, 1145.78, 265.737, 0, 0, 0, -1, -25.7722, -188.055, 1003.55, 356.072, 17, 5060, 0, -1, 0, 0, 1061.57, -1484.28, 13.5457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (61, 4, 'Unnamed Business', 3, 30000, 0, 0, 1772.23, 1440.43, 1145.69, 81.6088, 0, 0, 0, -1, 372.46, -133.296, 1001.49, 330.82, 5, 5061, 0, -1, 0, 0, 2108.98, -1788.67, 13.5608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (62, 4, 'Unnamed Business', 8, 30000, 0, 0, 461.2, -1500.79, 31.06, 279.205, 0, 0, 0, -1, -25.3976, -187.912, 1003.55, 355.95, 17, 5062, 0, -1, 0, 0, 712.834, -569.736, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (63, 4, 'Unnamed Business', 3, 30000, 0, 0, -1721.03, 1360.04, 7.19, 88.9988, 0, 0, 0, -1, 371.728, -133.508, 1001.49, 2.19321, 5, 5063, 0, -1, 0, 0, -1720.56, 1353.78, 7.17902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (64, 4, 'Unnamed Business', 5, 30000, 0, 0, 1662.57, 1788.63, 10.82, 263.499, 0, 0, 0, -1, -221.166, 1411.45, 27.7734, 256.79, 18, 5064, 0, -1, 0, 0, 1698.29, 1786.89, 10.8203, 1654.53, 1795.69, 10.8203, 81.85, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (65, 4, 'Unnamed Business', 1, 30000, 0, 0, 1752.7, 1443.19, 1145.78, 272.004, 0, 0, 0, -1, -27.5021, -57.9044, 1003.55, 7.79304, 6, 5065, 0, -1, 0, 0, 1394.87, 457.122, 20.1368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (66, 4, 'Unnamed Business', 8, 30000, 0, 0, 2251.11, -1666.85, 15.48, 347.064, 0, 0, 0, -1, -31.1119, -91.6484, 1003.55, 359.657, 18, 5066, 0, -1, 0, 1, 1285.09, -1272.42, 13.5366, 0, 0, 0, 0, 123051, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (67, 4, 'Unnamed Business', 10, 30000, 0, 0, 1131.71, 1518.63, 5.82, 107.231, 0, 0, 0, -1, 1601.85, -1467.25, 13.5639, 95.3918, 0, 5067, 0, -1, 0, 0, 2341.7, -1314.47, 24.0671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (68, 4, 'Unnamed Business', 4, 30000, 0, 0, 1587.5, -1862.96, 13.53, 349.866, 0, 0, 0, -1, 2134.53, 1599.41, 1008.36, 90.8534, 1, 5068, 0, -1, 0, 0, 1602.15, -2434.5, 13.5547, 1602.61, -2451.42, 13.5547, 172.886, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (69, 4, 'Unnamed Business', 1, 30000, 0, 0, 1929.22, -1776.25, 13.55, 90.3944, 0, 0, 0, -1, -26.172, -187.877, 1003.55, 355.973, 17, 5069, 0, -1, 0, 0, 2654.33, 1132.2, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (70, 4, 'Unnamed Business', 3, 30000, 0, 0, 1414.53, -1602.64, 13.55, 175.846, 0, 0, 0, -1, 362.819, -75.1166, 1001.51, 315.914, 10, 5070, 0, -1, 0, 1, 1414.03, -1599.29, 13.5469, 1646.94, 1305.67, 10.8203, 98.2638, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (71, 4, 'Unnamed Business', 2, 30000, 0, 0, -1882.67, 866.23, 35.17, 135.343, 0, 0, 0, -1, 227.262, -8.33084, 1002.21, 100.274, 5, 5071, 0, -1, 0, 0, 1103.75, -1411.33, 13.6187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (72, 4, 'Unnamed Business', 5, 30000, 0, 0, -1666.21, 1203.53, 7.25, 159.664, 0, 0, 0, -1, 372.496, -133.417, 1001.49, 356.796, 5, 5072, 0, -1, 0, 0, 1381.51, 266.698, 19.5669, -1664.23, 1213, 7.25464, 1.79089, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (73, 4, 'Unnamed Business', 8, 30000, 0, 0, 1952.4, -2021.57, 13.55, 90.9127, 0, 0, 0, -1, -30.8758, -91.0564, 1003.55, 357.893, 18, 5073, 0, -1, 0, 0, 1672.83, -1583.28, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (74, 4, 'Unnamed Business', 3, 30000, 0, 0, 928.54, -1353.07, 13.34, 106.28, 0, 0, 0, -1, 372.501, -132.618, 1001.49, 0.750952, 5, 5074, 0, -1, 0, 0, 2428.59, -1940.92, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (75, 4, 'Unnamed Business', 4, 30000, 0, 0, 1665.3, 1452.63, 1152.58, 275.782, 0, 0, 0, -1, 316.063, -143.426, 999.602, 1.00112, 7, 5075, 0, -1, 0, 1, 2227.59, -1697.79, 13.7829, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (76, 4, 'Unnamed Business', 12, 30000, 0, 0, 1766.45, 1443.67, 1145.78, 272.004, 0, 0, 0, -1, 2916.15, -2275.72, 7.25419, 92.2792, 0, 5076, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (77, 4, 'Unnamed Business', 12, 30000, 0, 0, 2229.9, -1721.26, 13.56, 149.746, 0, 0, 0, -1, 2916.03, -2276.33, 7.25419, 84.8808, 0, 5077, 0, -1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (78, 4, 'Unnamed Business', 4, 30000, 0, 0, 1649.6, 1467.74, 1151.97, 3.67434, 0, 0, 0, -1, 315.902, -143.025, 999.602, 5.53311, 7, 5078, 0, -1, 0, 0, 1013.87, -372.41, 73.5505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (79, 4, 'Unnamed Business', 3, 30000, 0, 0, 1038.17, -1340.73, 13.74, 177.513, 0, 0, 0, -1, 376.894, -193.302, 1000.63, 357.573, 17, 5079, 0, -1, 0, 0, 1028.2, -1341.19, 13.7266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (80, 4, 'Unnamed Business', 3, 30000, 0, 0, 2397.67, -1899.06, 13.55, 359.769, 0, 0, 0, -1, 364.899, -11.4455, 1001.85, 357.847, 9, 5080, 0, -1, 0, 0, 2378.92, -1903.45, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (81, 4, 'Unnamed Business', 3, 30000, 0, 0, 1774.54, 1440.21, 1145.69, 326.854, 0, 0, 0, -1, 364.92, -11.5076, 1001.85, 1.92061, 9, 5081, 0, -1, 0, 0, 2412.69, -1490.4, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (82, 4, 'Unnamed Business', 3, 30000, 0, 0, 1445.11, -1353.1, 13.55, 76.8374, 0, 0, 0, -1, 364.786, -11.5863, 1001.85, 359.156, 9, 5082, 0, -1, 0, 0, -1810.85, 616.781, 35.1719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (83, 4, 'Unnamed Business', 3, 30000, 0, 0, 810.49, -1616.33, 13.55, 274.543, 0, 0, 0, -1, 364.817, -11.7036, 1001.85, 356.202, 9, 5083, 0, -1, 0, 0, -2664.66, 260.562, 4.63281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (84, 4, 'Unnamed Business', 2, 30000, 0, 0, 1102.44, -1458.3, 15.8, 265.057, 0, 0, 0, -1, 227.152, -8.34062, 1002.21, 82.5599, 5, 5084, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (85, 4, 'Unnamed Business', 2, 30000, 0, 0, 1445.12, -1419.06, 13.54, 65.0882, 0, 0, 0, -1, 227.551, -7.98705, 1002.21, 77.3083, 5, 5085, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (86, 4, 'Unnamed Business', 3, 30000, 0, 0, 2237.88, -1663.56, 15.48, 344.453, 0, 0, 0, -1, 363.168, -74.7778, 1001.51, 307.153, 10, 5086, 0, -1, 0, 0, 785.164, -1632.8, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (88, 4, 'Unnamed Business', 3, 30000, 0, 0, 1087.72, -295.96, 74.77, 358.173, 0, 0, 0, -1, 363.226, -75.0796, 1001.51, 311.442, 10, 5088, 0, -1, 0, 0, -2794.59, 775.22, 50.4725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (89, 4, 'Unnamed Business', 3, 30000, 0, 0, -1912.4, 827.95, 35.23, 137.415, 0, 0, 0, -1, 362.862, -75.157, 1001.51, 317.474, 10, 5089, 0, -1, 0, 0, -2148.97, -2449.25, 30.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (90, 4, 'Unnamed Business', 3, 30000, 0, 0, 1769.38, -1397.58, 15.76, 177.249, 0, 0, 0, -1, 460.243, -88.68, 999.555, 92.1094, 4, 5090, 0, -1, 0, 0, 711.452, -493.504, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (91, 4, 'Unnamed Business', 10, 30000, 0, 0, 2421.44, -1219.25, 25.56, 6.1916, 0, 0, 0, -1, -2158.43, 642.822, 1052.38, 29.1845, 1, 5091, 0, -1, 0, 0, 1968.24, -1284.42, 23.9844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (92, 4, 'Unnamed Business', 2, 30000, 0, 0, 1405.22, -1881.5, 13.55, 264.017, 0, 0, 0, -1, 207.556, -111.244, 1005.13, 352.685, 15, 5092, 0, -1, 0, 0, 2230.46, -1674.3, 14.8285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (93, 4, 'Unnamed Business', 3, 30000, 0, 0, 1200.42, -918.5, 43.11, 273.646, 0, 0, 0, -1, 372.061, -133.522, 1001.49, 359.863, 5, 5093, 0, -1, 0, 0, 1839.22, -1452.28, 13.564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (94, 4, 'Unnamed Business', 10, 30000, 0, 0, 1836.65, -1682.52, 13.34, 95.7087, 0, 0, 0, -1, 1204.98, -13.8471, 1000.92, 7.8813, 2, 5094, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (95, 4, 'Unnamed Business', 8, 30000, 0, 0, 1775.47, 1437.65, 1145.69, 357.587, 0, 0, 0, -1, -25.6475, -188.232, 1003.55, 12.6659, 17, 5095, 0, -1, 0, 1, 2006.4, -1760.42, 13.5391, 1034.92, -1935.32, 13.0244, 266.609, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (96, 4, 'Unnamed Business', 3, 30000, 0, 0, 2332.08, 75.01, 26.62, 87.2637, 0, 0, 0, -1, 460.545, -88.3984, 999.555, 93.5276, 4, 5096, 0, -1, 0, 0, -294.906, 2687.78, 62.6665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (97, 4, 'Unnamed Business', 1, 30000, 0, 0, 1574.85, -1637.35, 13.56, 11.6774, 0, 0, 0, -1, -25.5966, -187.034, 1003.55, 357.071, 17, 5097, 0, -1, 0, 0, 1541.46, -1634.66, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (98, 4, 'Unnamed Business', 3, 30000, 0, 0, 1098.59, -1473.58, 15.8, 69.6117, 0, 0, 0, -1, 460.244, -88.4067, 999.555, 87.9699, 4, 5098, 0, -1, 1, 0, -1741.37, -569.154, 16.4844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (99, 4, 'Unnamed Business', 1, 30000, 0, 0, 1445.11, -1426.78, 13.54, 89.005, 0, 0, 0, -1, -27.4883, -57.4702, 1003.55, 0.398602, 6, 5099, 0, -1, 0, 0, 1428.99, -1427.96, 13.5547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (100, 4, 'Unnamed Business', 1, 30000, 0, 0, 2157.89, -1733.42, 13.54, 356.464, 0, 0, 0, -1, -27.4883, -57.4702, 1003.55, 0.398602, 6, 5100, 0, -1, 0, 0, 1551.73, -1474.28, 13.5481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (101, 4, 'Unnamed Business', 0, 30000, 0, 0, 1759.93, 1446.82, 1145.78, 84.942, 0, 0, 0, -1, 5.84083, -31.4701, 1003.55, 0.31898, 10, 5101, 0, -1, 0, 0, 637.356, 1678.13, 6.99219, -2395.1, 2222.04, 4.98437, 85.6145, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (102, 4, 'Unnamed Business', 3, 30000, 0, 0, 671.13, -519.45, 16.34, 210.161, 0, 0, 0, -1, 460.219, -89.0891, 999.555, 92.4067, 4, 5102, 0, -1, 0, 0, 674.514, -514.152, 16.3359, 1626.54, -1137.52, 23.9062, 184.156, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (103, 4, 'Unnamed Business', 1, 30000, 0, 0, 1757.29, 1446.53, 1145.78, 84.942, 0, 0, 0, -1, 6.22508, -31.3632, 1003.55, 355.899, 10, 5103, 0, -1, 0, 0, 2181.8, 2485.08, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (104, 4, 'Unnamed Business', 8, 30000, 0, 0, 1315.55, -897.92, 39.58, 355.767, 0, 0, 0, -1, -25.6988, -188.146, 1003.55, 2.25264, 17, 5104, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (105, 4, 'Unnamed Business', 1, 30000, 0, 0, 1753.5, 1446.45, 1145.78, 84.942, 0, 0, 0, -1, -25.8995, -188.249, 1003.55, 359.321, 17, 5105, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (106, 4, 'Unnamed Business', 8, 30000, 0, 0, 1752.19, 1446.37, 1145.78, 93.7154, 0, 0, 0, -1, -31.1422, -92.0064, 1003.55, 350.907, 18, 5106, 0, -1, 0, 0, 2007.48, -1759.44, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (107, 4, 'Unnamed Business', 3, 30000, 0, 0, 2521.18, -1411.62, 28.53, 80.3432, 0, 0, 0, -1, -228.827, 1400.92, 27.7656, 269.626, 18, 5107, 0, -1, 0, 0, -865.274, 1541.22, 22.6826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (108, 4, 'Unnamed Business', 8, 30000, 0, 0, 1634.58, -1583.53, 13.65, 10.9946, 0, 0, 0, -1, 5.90418, -31.5585, 1003.55, 0.568551, 10, 5108, 0, -1, 0, 0, -744.555, 1583.71, 26.9609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (109, 4, 'Unnamed Business', 1, 30000, 0, 0, 1748.68, 1446.17, 1145.78, 93.0887, 0, 0, 0, -1, 6.21169, -31.3557, 1003.55, 3.26752, 10, 5109, 0, -1, 0, 0, -1476.6, 1879.51, 32.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (110, 4, 'Unnamed Business', 2, 30000, 0, 0, -91.1, -1592.47, 3, 294.395, 0, 0, 0, -1, 226.882, -8.1384, 1002.21, 269.642, 5, 5110, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (111, 4, 'Unnamed Business', 8, 30000, 0, 0, 1352.52, -1758.82, 13.51, 180.542, 0, 0, 0, -1, -31.1119, -91.6484, 1003.55, 359.657, 18, 5111, 0, -1, 0, 0, 2254.93, -1666.28, 15.469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (112, 4, 'Unnamed Business', 3, 30000, 0, 0, 1158.28, -1473.41, 15.8, 286.459, 0, 0, 0, -1, 364.786, -11.5863, 1001.85, 359.156, 9, 5112, 0, -1, 0, 0, 0, 0, 0, 2263.74, 34.2681, 26.4844, 50.0339, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (113, 4, 'Unnamed Business', 1, 30000, 0, 0, 1743.82, 1445.89, 1145.78, 90.2687, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5113, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (114, 4, 'Unnamed Business', 1, 30000, 0, 0, 1742.45, 1445.89, 1145.78, 90.2687, 0, 0, 0, -1, -25.6442, -188.041, 1003.55, 351.193, 17, 5114, 0, -1, 1, 1, 2130.87, 892.924, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (115, 4, 'Unnamed Business', 3, 30000, 0, 0, 1650.13, 1466.72, 1151.97, 167.935, 0, 0, 0, -1, -794.957, 490.111, 1376.2, 179.811, 1, 5115, 0, -1, 1, 1, 0, 0, 0, 1327.28, 1397.33, 10.7512, 93.0638, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (116, 4, 'Unnamed Business', 8, 30000, 0, 0, 1487.01, -1881.28, 13.55, 190.48, 0, 0, 0, -1, -25.6959, -187.781, 1003.55, 354.083, 17, 5116, 0, -1, 0, 0, 0, 0, 0, 1231.73, -1380.5, 13.3179, 182.887, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (117, 4, 'Unnamed Business', 10, 30000, 0, 0, 1736.52, 1445.86, 1145.78, 90.2687, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5117, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (119, 4, 'Unnamed Business', 2, 30000, 0, 0, 712.17, -498.92, 16.34, 267.048, 0, 0, 0, -1, 203.747, -50.5602, 1001.8, 348.861, 1, 5119, 0, -1, 0, 0, 714.368, -505.379, 16.3359, 1229.06, -1378.47, 13.339, 256.786, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (120, 4, 'Unnamed Business', 8, 30000, 0, 0, 1721.42, 1424.01, 10.64, 320.626, 0, 0, 0, -1, 6.13156, -31.3422, 1003.55, 178.952, 10, 5120, 0, -1, 0, 0, 1014.04, -1563.83, 13.616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (122, 4, 'Unnamed Business', 1, 30000, 0, 0, 1765.16, 1436.69, 1145.69, 93.1964, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5122, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (123, 4, 'Unnamed Business', 4, 30000, 0, 0, 1836.51, -1443.03, 13.6, 100.976, 0, 0, 0, -1, 284.991, -86.1033, 1001.52, 350.153, 4, 5123, 0, -1, 0, 1, 1837.35, -1438.43, 13.563, 0, 0, 0, 0, 1234521, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (124, 4, 'Unnamed Business', 8, 30000, 0, 0, 1648.6, -1562.17, 13.54, 98.856, 0, 0, 0, -1, -26.0882, -188.231, 1003.55, 0.687847, 17, 5124, 0, -1, 0, 0, 1028.47, -1585.7, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (125, 4, 'Unnamed Business', 8, 30000, 0, 0, 1565.93, -1171.4, 24.1, 194.504, 0, 0, 0, -1, -30.7929, -92.0083, 1003.55, 180.866, 18, 5125, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (128, 4, 'Unnamed Business', 0, 30000, 0, 0, 1733.91, 1448.76, 1145.78, 273.547, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5128, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (129, 4, 'Unnamed Business', 0, 30000, 0, 0, 1735.4, 1448.85, 1145.78, 273.547, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5129, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (145, 4, 'Unnamed Business', 4, 30000, 0, 0, 1655.19, 1451.97, 1152.5, 277.616, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5145, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (157, 4, 'Unnamed Business', 5, 30000, 0, 0, 548.16, -1293.86, 17.25, 168.94, 0, 0, 0, -1, 1226.48, -813.56, 1084.01, 353.256, 5, 5157, 0, -1, 0, 0, 1811.5, -1659.69, 13.5465, 567.705, -1291.27, 17.2422, 70.9165, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (192, 4, 'Unnamed Business', 3, 30000, 0, 0, -222.75, -1747.06, 1.15, 331.273, 0, 0, 0, -1, 363.584, -75.38, 1001.51, 313.29, 10, 5192, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (200, 4, 'Unnamed Business', 8, 30000, 0, 0, 1748.23, -1460.31, 13.53, 182.135, 0, 0, 0, -1, -27.4627, -57.8572, 1003.55, 0.812528, 6, 5200, 0, -1, 0, 0, 1014.1, -1563.82, 13.6156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (201, 2, 'Easy Credit Autos', 0, 30000, 1, 1, -1013.1, -861.9, 13.09, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5201, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (203, 1, 'Saint Marks Bistro', 0, 30000, 0, 0, 1318.98, -452.77, 54.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5203, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (204, 1, 'Easy Credit Autos', 0, 30000, 0, 0, 1218.65, -123.14, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5204, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (205, 1, 'Strip Club', 0, 30000, 0, 0, 923.23, -470.66, 14.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5205, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (206, 1, 'Strip Club', 0, 30000, 0, 0, 900.49, -416.83, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5206, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (207, 1, 'Sex Shop', 0, 30000, 0, 0, 927.04, -379.19, 15.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5207, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (208, 1, 'Bar', 0, 30000, 0, 0, 899.09, -285.72, 5.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5208, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (209, 1, 'Bar', 0, 30000, 0, 0, 845.42, -287.97, 4.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5209, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (210, 1, 'Diner', 0, 30000, 0, 0, 1036.65, -653.01, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5210, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (211, 1, 'Bank', 0, 30000, 0, 0, 1036.1, -700.06, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5211, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (212, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 909.53, -670.4, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5212, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (213, 1, 'Laundry', 0, 30000, 0, 0, 845.28, -663.75, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5213, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (214, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 913.89, -805.83, 15.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5214, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (215, 1, 'Bank', 0, 30000, 0, 0, 1065.18, -281.02, 8.69, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5215, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (216, 1, 'Clothing Store', 0, 30000, 0, 0, 1117.18, -687.4, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5216, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (217, 2, 'Large Hotel', 0, 30000, 0, 0, -772.41, 548.74, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5217, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (218, 2, 'Drugstore', 0, 30000, 0, 0, -832.1, 741.92, 11.29, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5218, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (219, 2, 'Pizza Stack', 0, 30000, 0, 0, -903.16, 798.37, 11.45, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5219, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (220, 2, 'Taco Shop', 0, 30000, 0, 0, -753.17, 1343.16, 11.77, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5220, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (221, 2, 'Cafe', 0, 30000, 0, 0, -774.48, 1304.82, 11.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5221, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (222, 2, 'Drugstore', 0, 30000, 0, 0, 50.29, 1007.29, 10.95, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5222, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (228, 4, 'Jefferson Dealership', 0, 30000, 0, 0, 2131.8, -1151.02, 24.09, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5228, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (230, 4, 'Los Santos Police Department', 0, 0, 0, 0, 1554.77, -1675.65, 16.2, 0, 0, 0, 0, -1, 247.113, 62.929, 1003.64, 0, 6, 5230, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (231, 2, 'Unnamed Business', 0, 0, 0, 0, -833.55, -908.77, 12.13, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5231, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (232, 1, 'Italian Restaurant', 0, 0, 0, 0, 1135.42, -457.31, 20.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5232, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (233, 1, 'Clothes Store', 0, 0, 0, 0, 1065.42, -345.06, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5233, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (234, 1, 'Gun Store', 0, 0, 0, 0, 1065.1, -395.1, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5234, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (235, 1, 'Porn Shop', 0, 0, 0, 0, 989.05, -441.97, 15.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5235, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (236, 1, 'Mechanic Shop', 0, 0, 0, 0, 1190.71, -869.33, 15.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5236, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (237, 1, 'Offices', 0, 0, 0, 0, 1212.4, -904.73, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5237, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (238, 1, 'Offices', 0, 0, 0, 0, 1244.71, -862.86, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5238, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (239, 1, 'Warehouse', 0, 0, 0, 0, 1276.44, -928.52, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5239, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (240, 1, 'Warehouse', 0, 0, 0, 0, 1261.95, -943.02, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5240, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (241, 1, 'Warehouse', 0, 0, 0, 0, 1253.32, -950.5, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5241, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (242, 1, 'Warehouse', 0, 0, 0, 0, 1231.16, -964.6, 15.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5242, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (243, 1, 'Warehouse', 0, 0, 0, 0, 1183.85, -961.46, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5243, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (244, 1, 'Warehouse', 0, 0, 0, 0, 1188.25, -957.06, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5244, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (245, 1, 'Warehouse', 0, 0, 0, 0, 1171.64, -963.65, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5245, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (246, 1, 'Warehouse', 0, 0, 0, 0, 1162.62, -952.35, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5246, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (247, 1, 'Warehouse', 0, 0, 0, 0, 1219.81, -973.64, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5247, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (248, 1, 'Docks Warehouse', 0, 0, 0, 0, 1435.66, -805.82, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5248, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (249, 1, 'Docks Warehouse', 0, 0, 0, 0, 1445.71, -806.21, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5249, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (250, 1, 'Docks Warehouse', 0, 0, 0, 0, 1455.57, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5250, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (251, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.74, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5251, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (252, 1, 'Docks Warehouse', 0, 0, 0, 0, 1475.63, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5252, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (253, 1, 'Docks Warehouse', 0, 0, 0, 0, 1485.73, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5253, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (254, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.69, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5254, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (255, 1, 'Docks Warehouse', 0, 0, 0, 0, 1467.39, -688.64, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5255, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (256, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.89, -684.9, 12.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5256, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (257, 1, 'Docks Warehouse', 0, 0, 0, 0, 1488.55, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5257, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (258, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.85, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5258, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (259, 1, 'Docks Warehouse', 0, 0, 0, 0, 1510.97, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5259, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (260, 1, 'Docks Warehouse', 0, 0, 0, 0, 1533.95, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5260, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (261, 1, 'Docks Warehouse', 0, 0, 0, 0, 1556.7, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5261, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (262, 1, 'Docks Warehouse', 0, 0, 0, 0, 1579.22, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5262, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (263, 1, 'Warehouse', 0, 0, 0, 0, 1305.18, -810.01, 15.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5263, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (264, 1, 'Supermarket', 0, 0, 0, 0, 1272.41, -608.83, 12.46, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5264, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (265, 1, 'Sweeney General Hospital', 0, 0, 0, 0, 1149.18, -585.3, 15.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5265, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (266, 1, 'Portland Police Station', 0, 0, 0, 0, 1148.46, -675, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5266, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (267, 1, 'Clothes Store', 0, 0, 0, 0, 1104.57, -638.42, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5267, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (268, 1, 'City Hall', 0, 0, 0, 0, 98.21, -962.97, 29.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5268, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (269, 1, 'Courthouse', 0, 0, 0, 0, 97.4, -1429.97, 31.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5269, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (270, 1, 'Francis International Airport', 0, 0, 0, 0, -769.82, -600.32, 11.33, 0, 0, 0, 0, -1, -770.862, -600.281, 11.3161, 0, 0, 5270, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (271, 1, 'Shoreside Vale Police Station', 0, 0, 0, 0, -1255.33, -23.06, 59.04, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5271, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (272, 1, 'Hope Medical College', 0, 0, 0, 0, -1246.78, -150.69, 59.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5272, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (273, 1, 'Shoreside Vale Fire Station', 0, 0, 0, 0, -1214.27, -13.79, 53.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5273, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (274, 1, 'Warehouse', 0, 0, 0, 0, -1235.35, 125.25, 68.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5274, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (275, 1, 'Warehouse', 0, 0, 0, 0, -1137.91, 25.51, 58.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5275, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (276, 1, 'Warehouse', 0, 0, 0, 0, -1114.45, 53.09, 58.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5276, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (277, 1, 'Warehouse', 0, 0, 0, 0, -1090.84, 59.41, 58.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5277, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (278, 1, 'Warehouse', 0, 0, 0, 0, -1020.35, -78.01, 38.89, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5278, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (279, 1, 'Warehouse', 0, 0, 0, 0, -844.12, -160.47, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5279, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (280, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -176.19, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5280, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (281, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -184.38, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5281, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (282, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -192.24, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5282, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (283, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -200.03, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5283, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (284, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -207.77, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5284, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (285, 1, 'Staunton Island Police Station', 0, 0, 0, 0, 340.4, -1118.42, 25.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5285, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (286, 1, 'Carson General Hospital', 0, 0, 0, 0, 149.88, 63.39, 16.21, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5286, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (287, 1, 'Liberty City Stadium', 0, 0, 0, 0, -18.77, -219.3, 29.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5287, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (288, 1, 'Staunton Island Fire Station', 0, 0, 0, 0, -76.46, -435.7, 16.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5288, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (289, 1, 'Church', 0, 0, 0, 0, -75.03, -1078.03, 26.19, 0, 0, 0, 0, -1, -72.5906, -1079.24, 26.205, 0, 0, 5289, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (290, 1, 'Clothes Store', 0, 0, 0, 0, 1116.62, -402.53, 19.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5290, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (291, 2, 'Little Havana Police Station', 0, 0, 0, 0, -873.24, -684.97, 11.34, 0, 0, 0, 0, -1, 394.74, -475.02, 12.34, 0, 12, 5291, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (292, 2, 'Bar', 0, 0, 0, 0, -900.15, -646.11, 11.28, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5292, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (293, 2, '24/7', 0, 0, 0, 0, -858.72, -634.62, 11.38, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5293, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (294, 2, 'Hardware Store', 0, 0, 0, 0, -966.7, -693.4, 11.41, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5294, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (295, 2, 'Bar', 0, 0, 0, 0, -995.87, -689.22, 11.77, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5295, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (296, 2, 'Bar', 0, 0, 0, 0, -1114.92, -697.18, 11.79, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5296, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (297, 2, 'Diner', 0, 0, 0, 0, -1168.71, -616.91, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5297, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (298, 2, 'Laundromat', 0, 0, 0, 0, -1195.37, -323.56, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5298, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (299, 2, 'Warehouse', 0, 0, 0, 0, -892.17, 119, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5299, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (300, 2, 'Warehouse', 0, 0, 0, 0, -920.02, 119, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5300, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (301, 2, 'Warehouse', 0, 0, 0, 0, -906.03, 145.94, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5301, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (302, 2, 'Storage', 0, 0, 0, 0, -874.2, 79.13, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5302, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (303, 2, 'Storage', 0, 0, 0, 0, -874.2, 90.42, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5303, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (304, 2, 'Storage', 0, 0, 0, 0, -874.2, 101.82, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5304, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (305, 2, 'Cafe', 0, 0, 0, 0, -913.75, 50.7, 10.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5305, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (306, 2, 'Big Hotel', 0, 0, 0, 0, -775.59, 133.02, 10.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5306, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (307, 2, 'Big Hotel', 0, 0, 0, 0, -752.06, 256.49, 16.32, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5307, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (308, 2, 'Big Hotel', 0, 0, 0, 0, -729.96, 365.97, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5308, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (309, 2, 'Courthouse', 0, 0, 0, 0, -698.67, 703.53, 12.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5309, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (310, 2, 'Downtown Fire Station', 0, 0, 0, 0, -698.71, 806.24, 11.08, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5310, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (311, 2, 'Music Store', 0, 0, 0, 0, -872.93, 746.81, 11.08, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5311, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (312, 2, 'Clothing Store', 0, 0, 0, 0, -918.64, 885.25, 11.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5312, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (313, 2, 'Large Hotel', 0, 0, 0, 0, -826.86, 1038.41, 15.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5313, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (314, 2, 'Concert Hall', 0, 0, 0, 0, -893.97, 1054.59, 15.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5314, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (315, 2, 'Offices', 0, 0, 0, 0, -875.07, 1159.55, 11.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5315, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (316, 2, 'Derby Arena', 0, 0, 0, 0, -1108.53, 1331.05, 20.12, 0, 0, 0, 0, -1, -1443.36, 932.982, 262.395, 0, 15, 5316, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (317, 2, 'Bowling Alley', 0, 0, 0, 0, -669.3, 1382.3, 12.09, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5317, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (318, 2, 'The Greasy Chopper Bar', 0, 0, 0, 0, -597.35, 651.6, 11.38, 0, 0, 0, 0, -1, -597.312, 650.405, 11.6765, 0, 11, 5318, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (319, 2, 'North Point Mall', 0, 0, 0, 0, 379.66, 998.47, 18.76, 0, 0, 0, 0, -1, 379.62, 1007, 19.22, 0, 4, 5319, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (320, 2, 'North Point Mall', 0, 0, 0, 0, 448.95, 999.73, 18.79, 0, 0, 0, 0, -1, 448.24, 1007.2, 19.18, 0, 4, 5320, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (321, 2, 'North Point Mall', 0, 0, 0, 0, 352.85, 1124.52, 18.64, 0, 0, 0, 0, -1, 361.72, 1124.93, 18.93, 0, 15, 5321, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (322, 2, 'North Point Mall', 0, 0, 0, 0, 379.68, 1253.29, 18.85, 0, 0, 0, 0, -1, 379.79, 1246.83, 19.16, 0, 15, 5322, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (323, 2, 'North Point Mall', 0, 0, 0, 0, 448.17, 1253.27, 18.7, 0, 0, 0, 0, -1, 448.6, 1246.43, 19.06, 0, 15, 5323, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (324, 2, 'North Point Mall', 0, 0, 0, 0, 475.04, 1124.36, 17.95, 0, 0, 0, 0, -1, 468.24, 1123.66, 18.34, 0, 15, 5324, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (325, 2, 'Malibu Club', 0, 0, 0, 0, 489.83, -76.49, 11.48, 0, 0, 0, 0, -1, 489.83, -76.49, 11.48, 0, 17, 5325, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (326, 2, 'Washington Beach Police Station', 0, 0, 0, 0, 396.38, -472.96, 12.34, 0, 0, 0, 0, -1, 394.74, -475.02, 12.34, 0, 12, 5326, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (327, 2, 'Ocean View Hotel', 0, 0, 0, 0, 228.53, -1277.12, 12.07, 0, 0, 0, 0, -1, 228.53, -1277.12, 12.07, 0, 1, 5327, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (328, 2, 'Ammunation Range', 0, 0, 0, 0, -667.79, 1217.51, 11.1, 0, 0, 0, 0, -1, -667.79, 1217.51, 11.1, 0, 10, 5328, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (329, 2, 'Bank', 0, 0, 0, 0, -894.52, -341.16, 13.45, 0, 0, 0, 0, -1, -901.16, -341.15, 13.38, 0, 3, 5329, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (330, 2, 'Downtown Roof Building', 0, 0, 0, 0, -830.77, 1312.15, 11.54, 0, 0, 0, 0, -1, -811.81, 1354.21, 66.46, 0, 0, 5330, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (331, 2, 'Roof', 0, 0, 0, 0, 386.46, -473.03, 21.57, 0, 0, 0, 0, -1, 379.35, -493.53, 12.33, 0, 12, 5331, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (332, 2, 'Strip Club', 0, 0, 0, 0, 97.53, -1472.06, 10.43, 0, 0, 0, 0, -1, 95.68, -1469, 10.56, 0, 5, 5332, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (333, 2, 'Law Office', 0, 0, 0, 0, 120.82, -827.98, 10.62, 0, 0, 0, 0, -1, 137.12, -1370.16, 13.18, 0, 6, 5333, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (335, 2, 'Downtown Police Station', 0, 0, 0, 0, -657.19, 762.55, 11.6, 0, 0, 0, 0, -1, 0, 0, 0, 0, 12, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (336, 1, 'Secret Asian Man\'s Threads', 0, 0, 0, 0, 958.31, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (337, 1, 'Simply Fo Yu\'s Asian Threads', 0, 0, 0, 0, 958.31, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (338, 1, 'Fu King Asian Threads', 0, 0, 0, 0, 958.34, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (339, 4, 'Los Santos Police Department Garage', 0, 0, 0, 0, 1568.57, -1689.97, 6.22, 0, 0, 0, -1, -1, 246.48, 88.01, 1003.64, 0, 6, 5230, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (340, 4, 'Bike Dealership', 0, 0, 0, 0, 987.63, -1349.28, 13.58, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES - (341, 1, 'Fung Ku Tools', 0, 0, 0, 0, 867.122, -708.406, 15.2109, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -/*!40000 ALTER TABLE `biz_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.bug_main -CREATE TABLE IF NOT EXISTS `bug_main` ( - `bug_id` int(11) NOT NULL AUTO_INCREMENT, - `bug_server` int(11) NOT NULL DEFAULT 0, - `bug_who_added` int(11) NOT NULL DEFAULT 0, - `bug_when_added` int(32) NOT NULL DEFAULT 0, - `bug_script_ver` varchar(16) NOT NULL DEFAULT '0.1', - `bug_pos_x` float NOT NULL DEFAULT 0, - `bug_pos_y` float NOT NULL DEFAULT 0, - `bug_pos_z` float NOT NULL DEFAULT 0, - `bug_rot_z` float NOT NULL DEFAULT 0, - `bug_message` varchar(128) NOT NULL DEFAULT '(No Message)', - `bug_svr_start` int(32) NOT NULL DEFAULT 0, - `bug_session` int(11) NOT NULL DEFAULT 0, - `bug_state` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`bug_id`), - KEY `bug_server` (`bug_server`), - KEY `fk_bug_who_added` (`bug_who_added`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='User Submitted Bugs'; - --- Dumping data for table gtac_roleplay.bug_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `bug_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `bug_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.clan_main -CREATE TABLE IF NOT EXISTS `clan_main` ( - `clan_id` int(11) NOT NULL AUTO_INCREMENT, - `clan_server` int(11) NOT NULL DEFAULT 0, - `clan_name` varchar(64) NOT NULL DEFAULT '', - `clan_tag` varchar(16) NOT NULL DEFAULT '', - `clan_owner` int(11) NOT NULL DEFAULT 0, - `clan_created` int(32) NOT NULL DEFAULT 0, - `clan_deleted` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`clan_id`), - KEY `clan_server` (`clan_server`), - KEY `clan_owner` (`clan_owner`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Clans'; - --- Dumping data for table gtac_roleplay.clan_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `clan_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `clan_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.clan_members -CREATE TABLE IF NOT EXISTS `clan_members` ( - `clan_member_id` int(11) NOT NULL DEFAULT 0, - `clan_member_server` int(11) NOT NULL DEFAULT 0, - `clan_member_clan` int(11) NOT NULL DEFAULT 0, - `clan_member_acct` int(11) NOT NULL DEFAULT 0, - `clan_member_custom_title` varchar(64) NOT NULL DEFAULT '', - `clan_member_custom_tag` varchar(16) NOT NULL DEFAULT '', - `clan_member_flags` int(32) NOT NULL DEFAULT 0, - `clan_member_rank` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`clan_member_id`), - KEY `clan_member_server` (`clan_member_server`), - KEY `clan_member_clan` (`clan_member_clan`), - KEY `clan_member_acct` (`clan_member_acct`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Clans - Members'; - --- Dumping data for table gtac_roleplay.clan_members: ~0 rows (approximately) -/*!40000 ALTER TABLE `clan_members` DISABLE KEYS */; -/*!40000 ALTER TABLE `clan_members` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.clan_ranks -CREATE TABLE IF NOT EXISTS `clan_ranks` ( - `clan_rank_id` int(11) NOT NULL AUTO_INCREMENT, - `clan_rank_clan` int(11) NOT NULL DEFAULT 0, - `clan_rank_name` varchar(64) NOT NULL DEFAULT '', - `clan_rank_custom_tag` varchar(16) NOT NULL DEFAULT '', - `clan_rank_after_rank_id` int(11) NOT NULL DEFAULT 0, - `clan_rank_flags` int(32) NOT NULL DEFAULT 0, - PRIMARY KEY (`clan_rank_id`), - KEY `clan_rank_clan` (`clan_rank_clan`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Clans - Ranks'; - --- Dumping data for table gtac_roleplay.clan_ranks: ~0 rows (approximately) -/*!40000 ALTER TABLE `clan_ranks` DISABLE KEYS */; -/*!40000 ALTER TABLE `clan_ranks` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.conn_main -CREATE TABLE IF NOT EXISTS `conn_main` ( - `conn_id` int(11) NOT NULL AUTO_INCREMENT, - `conn_server` int(11) NOT NULL DEFAULT 0, - `conn_auth` int(11) NOT NULL DEFAULT 0, - `conn_name` varchar(256) CHARACTER SET utf16 NOT NULL DEFAULT '', - `conn_ip` int(11) NOT NULL DEFAULT 0, - `conn_when_connect` bigint(20) NOT NULL DEFAULT 0, - `conn_when_disconnect` bigint(20) NOT NULL DEFAULT 0, - `conn_client_version` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '0', - `conn_script_version` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '0', - `conn_game_version` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '0', - `conn_status` int(11) NOT NULL DEFAULT 0, - `conn_how_disconnect` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`conn_id`), - KEY `conn_server` (`conn_server`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connections (Sessions)'; - --- Dumping data for table gtac_roleplay.conn_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `conn_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `conn_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.error_main -CREATE TABLE IF NOT EXISTS `error_main` ( - `error_id` int(11) NOT NULL AUTO_INCREMENT, - `error_server` int(11) NOT NULL DEFAULT 0, - `error_when_added` bigint(20) NOT NULL DEFAULT 0, - `error_script_ver` varchar(16) NOT NULL DEFAULT '0.0', - `error_module` int(11) NOT NULL DEFAULT 0, - `error_file` text NOT NULL, - `error_line` int(11) NOT NULL DEFAULT 0, - `error_locals` text NOT NULL, - `error_func` varchar(128) NOT NULL DEFAULT 'Unknown', - PRIMARY KEY (`error_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Error Reports'; - --- Dumping data for table gtac_roleplay.error_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `error_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `error_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.house_main -CREATE TABLE IF NOT EXISTS `house_main` ( - `house_id` int(11) NOT NULL AUTO_INCREMENT, - `house_server` int(11) NOT NULL DEFAULT 0, - `house_description` varchar(64) NOT NULL DEFAULT 'Unnamed', - `house_owner_type` int(11) NOT NULL DEFAULT 0, - `house_owner_id` int(11) NOT NULL DEFAULT 0, - `house_locked` tinyint(1) NOT NULL DEFAULT 0, - `house_buy_price` int(11) NOT NULL DEFAULT 0, - `house_rent_price` int(11) NOT NULL DEFAULT 0, - `house_renter` int(11) NOT NULL DEFAULT 0, - `house_entrance_pos_x` float NOT NULL DEFAULT 0, - `house_entrance_pos_y` float NOT NULL DEFAULT 0, - `house_entrance_pos_z` float NOT NULL DEFAULT 0, - `house_entrance_rot_z` float NOT NULL DEFAULT 0, - `house_entrance_int` smallint(6) NOT NULL DEFAULT 0, - `house_entrance_vw` int(11) NOT NULL DEFAULT 0, - `house_entrance_pickup` int(11) NOT NULL DEFAULT 0, - `house_entrance_blip` int(11) NOT NULL DEFAULT -1, - `house_exit_pos_x` float NOT NULL DEFAULT 0, - `house_exit_pos_y` float NOT NULL DEFAULT 0, - `house_exit_pos_z` float NOT NULL DEFAULT 0, - `house_exit_rot_z` float NOT NULL DEFAULT 0, - `house_exit_int` int(11) NOT NULL DEFAULT 0, - `house_exit_vw` int(11) NOT NULL DEFAULT 0, - `house_exit_pickup` int(11) NOT NULL DEFAULT 0, - `house_exit_blip` int(11) NOT NULL DEFAULT 0, - `house_has_interior` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`house_id`) USING BTREE, - KEY `house_server` (`house_server`), - KEY `house_owner` (`house_owner_type`,`house_owner_id`) -) ENGINE=InnoDB AUTO_INCREMENT=2235 DEFAULT CHARSET=utf16 COMMENT='Houses'; - --- Dumping data for table gtac_roleplay.house_main: ~2,193 rows (approximately) -/*!40000 ALTER TABLE `house_main` DISABLE KEYS */; -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1, 4, 'Madd Doggs House', 0, 0, 0, 5250000, 0, 0, 1298.55, -798.18, 84.14, 0, 0, 0, 0, -1, 1298.81, -796.66, 1084.01, 0, 5, 101, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2, 4, 'Small Cottage', 0, 0, 0, 25000, 0, 0, -418.65, -1759.54, 6.21, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 102, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (3, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 657.22, -1652.65, 15.4, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 103, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (4, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 693.76, -1645.79, 4.09, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 104, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (5, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 693.57, -1705.87, 3.81, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 105, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (6, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 766.9, -1606.18, 13.8, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 106, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (7, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 768.07, -1655.99, 5.6, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 107, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (8, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 769.22, -1696.74, 5.15, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 108, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (9, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 769.2, -1745.85, 13.07, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 109, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (10, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 653.58, -1714, 14.76, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 110, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (11, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 1906.04, -1112.94, 26.66, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 111, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (12, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 1939.23, -1114.51, 27.45, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 112, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (13, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 1999.97, -1114.05, 27.12, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 113, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (14, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 2022.92, -1120.26, 26.42, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 114, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (15, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 2095.33, -1145.13, 26.59, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 115, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (16, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 2092.24, -1166.36, 26.58, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 116, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (17, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 793.99, -1707.45, 14.03, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 117, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (18, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 1886.26, -1113.66, 26.27, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 118, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (19, 4, 'Simple House', 0, 0, 0, 65000, 100, 0, 1921.35, -1115.18, 27.08, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 119, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (20, 4, 'Simple House', 0, 0, 0, 65000, 400, 0, 1955.4, -1115.35, 27.83, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 120, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (21, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2045.5, -1116.63, 26.36, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 121, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (22, 4, 'Simple House', 0, 0, 0, 65000, 650, 0, 2093.99, -1122.78, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 122, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (23, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2091.67, -1184.45, 27.05, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 123, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (24, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 769.05, -1726.35, 13.43, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 124, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (25, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 794.89, -1691.99, 14.46, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 125, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (26, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2495.41, -1690.94, 14.76, 0, 0, 0, 0, -1, 2495.97, -1692.08, 1014.74, 0, 3, 126, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (28, 4, 'Simple House', 0, 0, 0, 800000, 0, 0, 2126.68, -1320.68, 26.62, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 128, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (29, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2091.05, -1278.14, 26.17, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 129, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (30, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2191.64, -1275.82, 25.15, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 130, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (31, 4, '2 Bedroom House', 0, 0, 0, 100000, 5, 0, 2229.66, -1241.52, 25.65, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 131, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (32, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2100.94, -1321.8, 25.95, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 132, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (33, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2132.32, -1280.12, 25.89, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 133, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (34, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2250.2, -1280.32, 25.47, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 134, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (35, 4, 'Big Living Style', 0, 0, 0, 80000, 1, 0, 2249.92, -1238.89, 25.89, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 135, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (36, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2153.82, -1243.53, 25.36, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 136, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (37, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2110.99, -1244.32, 25.85, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 137, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (38, 4, 'Small House', 0, 0, 0, 45000, 5000, 0, 2148.55, -1319.82, 25.74, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 138, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (39, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2150.21, -1285.45, 24.19, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 139, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (40, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2230.1, -1280.56, 25.36, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 140, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (41, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2209.74, -1239.99, 24.14, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 141, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (42, 4, 'Minor Manor', 0, 0, 0, 50000, 0, 0, 2133.39, -1232.84, 24.42, 0, 0, 0, 0, -1, 2333.12, -1077.13, 1049.02, 0, 6, 142, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (43, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 0, 2148.73, -1484.85, 26.62, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 143, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (44, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2023.31, -1053.15, 25.59, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 144, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (45, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2036.12, -1059.42, 25.65, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 145, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (46, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2050.9, -1065.83, 25.78, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 146, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (47, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2150.76, -1400.63, 25.79, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 147, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (48, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2151.7, -1446.33, 25.77, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 148, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (49, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2190.69, -1487.68, 25.77, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 149, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (50, 4, 'Small House', 0, 0, 0, 45000, 100, 0, 2196.48, -1404.19, 25.61, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 150, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (51, 4, 'Small House', 0, 0, 0, 45000, 200, 0, 2147.69, -1366.65, 25.64, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 151, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (52, 4, '2 Bedroom House', 0, 0, 0, 100000, 200, 0, 2188.83, -1419.29, 26.15, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 152, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (53, 4, 'Big Living Style', 0, 0, 0, 80000, 1500, 0, 2150.8, -1419.01, 25.92, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 153, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (54, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2190.55, -1470.42, 25.91, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 154, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (55, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2149.5, -1433.73, 25.94, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 155, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (56, 4, 'Cheap Stuff', 0, 0, 0, 25000, 0, 0, 2373.97, -1138.92, 29.05, 0, 0, 0, 0, -1, -68.85, 1351.31, 1080.21, 0, 6, 156, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (57, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2488.07, -1135.61, 39.43, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 157, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (58, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2394.96, -1133.67, 30.71, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 158, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (59, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2191.74, -1239.03, 24.15, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 159, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (60, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2090.73, -1234.89, 25.68, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 160, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (61, 4, 'Hallway House', 0, 0, 0, 70000, 100, 0, 2207.91, -1281.05, 24.79, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 161, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (62, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2202.75, -1363.93, 25.86, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 162, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (63, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2129.66, -1361.94, 25.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 163, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (64, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2146.49, -1470.47, 25.71, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 164, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (65, 4, 'Hallway House', 0, 0, 0, 70000, 100, 0, 2194.53, -1442.93, 25.74, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 165, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (66, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2230.44, -1396.88, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 166, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (67, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2243.47, -1396.96, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 167, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (68, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2256.46, -1396.92, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 168, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (69, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2263.89, -1469.58, 24.04, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 169, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (70, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2247.69, -1469.54, 24.14, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 170, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (71, 4, 'Hallway House', 0, 0, 0, 70000, 100, 0, 2232.56, -1469.54, 24.25, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 171, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (72, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2510.35, -1132.66, 41.29, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 172, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (73, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2185.15, -1364, 25.82, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 173, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (74, 4, 'Light Living', 0, 0, 0, 48000, 0, 0, 2061.06, -1075.35, 25.68, 0, 0, 0, 0, -1, 2218.35, -1076.26, 1050.48, 0, 1, 174, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (75, 4, 'House', 0, 0, 0, 10500, 500, 0, 1959.58, -1070.07, 24.79, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 175, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (76, 4, 'House', 0, 0, 0, 10500, 0, 0, 1954.38, -1074.93, 24.79, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 176, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (77, 4, 'House', 0, 0, 0, 10500, 0, 0, 1934.04, -1071.51, 24.41, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 177, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (78, 4, 'House', 0, 0, 0, 10500, 0, 0, 1939.27, -1066.39, 24.41, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 178, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (79, 4, 'House', 0, 0, 0, 10500, 0, 0, 1916.88, -1064.77, 24.12, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 179, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (80, 4, 'House', 0, 0, 0, 10500, 0, 0, 1912.61, -1070.55, 24.23, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 180, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (81, 4, 'House', 0, 0, 0, 10500, 500, 0, 1896.04, -1064.84, 23.93, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 181, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (82, 4, 'House', 0, 0, 0, 10500, 0, 0, 1891.77, -1070.53, 23.93, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 182, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (83, 4, 'Light Living', 0, 0, 0, 48000, 5000, 0, 2077.3, -1056.98, 31.34, 0, 0, 0, 0, -1, 2218.35, -1076.26, 1050.48, 0, 1, 183, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (84, 4, 'House', 0, 0, 0, 80000, 0, 0, 2157.15, -1072.39, 40.49, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 184, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (85, 4, 'House', 0, 0, 0, 80000, 1000, 0, 2188.76, -1081.51, 43.83, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 185, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (86, 4, 'House', 0, 0, 0, 80000, 0, 0, 2207.5, -1100.43, 31.55, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 186, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (87, 4, 'House', 0, 0, 0, 1000, 0, 0, 2213.22, -1000.31, 68.23, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 187, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (88, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1283.54, -897.85, 42.87, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 188, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (89, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.02, -896.89, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 189, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (90, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.02, -896.86, 46.62, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 190, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (91, 4, 'Little Apartment', 0, 0, 0, 50000, 40, 0, 1283.53, -897.82, 46.62, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 191, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (92, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.82, -903.07, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 192, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (93, 4, 'Little Apartment', 0, 0, 0, 50000, 100, 0, 1284.36, -903.98, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 193, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (94, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1284.34, -904.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 194, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (95, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.83, -903.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 195, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (96, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1288.34, -873.89, 43.06, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 196, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (97, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1280.86, -874.85, 42.93, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 197, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (98, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1287.53, -867.68, 43.14, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 198, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (99, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1280.08, -868.62, 42.92, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 199, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (100, 4, 'Little Apartment', 0, 0, 0, 50000, 5000, 0, 1287.53, -867.74, 46.83, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 200, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (101, 4, 'Little Apartment', 0, 0, 0, 50000, 250, 0, 1280.04, -868.61, 46.83, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 201, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (102, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1288.33, -873.82, 46.84, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 202, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (103, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1280.86, -874.86, 46.84, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 203, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (104, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1249.61, -877.3, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 204, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (105, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1242.11, -878.23, 42.87, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 205, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (106, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1248.8, -871.14, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 206, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (107, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1241.31, -872.09, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 207, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (108, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1248.8, -871.15, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 208, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (109, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1241.3, -872.06, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 209, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (110, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1249.61, -877.28, 46.64, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 210, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (111, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1242.12, -878.22, 46.64, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 211, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (112, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1252.88, -901.87, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 212, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (113, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1245.4, -902.83, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 213, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (114, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1253.7, -908.06, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 214, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (115, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1246.24, -909.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 215, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (116, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1246.21, -908.98, 46.6, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 216, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (117, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1253.71, -908.1, 46.6, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 217, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (118, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1245.4, -902.8, 46.59, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 218, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (119, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1252.89, -901.88, 46.59, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 219, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (120, 4, 'Major Manor', 0, 0, 0, 50000, 0, 0, 1111.5, -976.3, 42.76, 0, 0, 0, 0, -1, 2333.12, -1077.13, 1049.02, 0, 6, 220, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (121, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 1496.99, -687.89, 95.56, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 221, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (122, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 980.47, -677.26, 121.97, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 222, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (123, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 251.43, -1220.21, 76.1, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 223, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (124, 4, 'Fancy Mansion', 0, 0, 0, 1800000, 0, 0, 253.18, -1270.01, 74.42, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 224, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (125, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 0, 300.25, -1154.46, 81.39, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 225, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (126, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 0, 189.63, -1308.16, 70.24, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 226, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (127, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 1122.7, -2036.98, 69.89, 0, 0, 0, 0, -1, 1298.8, -796.9, 1084.01, 0, 5, 227, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (128, 4, 'Major Manor', 0, 0, 0, 800000, 5000, 0, 1981.07, -1682.85, 17.05, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 228, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (129, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 0, 1980.37, -1718.91, 17.03, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 229, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (130, 4, 'Idlewood House', 0, 0, 0, 100000, 0, 0, 2015.34, -1732.57, 14.23, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 230, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (131, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2017.97, -1703.38, 14.23, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 231, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (132, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2067.42, -1731.62, 13.87, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 232, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (133, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2068.06, -1628.89, 13.87, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 233, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (134, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2016.21, -1641.67, 13.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 234, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (135, 4, 'Cheap Stuff', 0, 0, 0, 35000, 5000, 0, 2015.82, -1716.99, 13.97, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 235, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (136, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2066.97, -1656.47, 14.07, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 236, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (137, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2191.58, -1455.88, 25.79, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 237, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (138, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2067.74, -1643.74, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 238, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (139, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2066.42, -1717.06, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 239, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (140, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2013.31, -1656.37, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 240, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (141, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2017.86, -1629.93, 13.71, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 241, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (142, 4, 'Low Light Living', 0, 0, 0, 70000, 1, 0, 2065.24, -1703.52, 14.14, 0, 0, 0, 0, -1, -42.58, 1405.59, 1084.42, 0, 8, 242, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (143, 4, 'Fancy Apartment', 0, 0, 0, 20000, 1500, 0, 1969.35, -1705.42, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 243, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (144, 4, 'Fancy Apartment', 0, 0, 0, 20000, 2000, 0, 1973.28, -1705.26, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 244, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (145, 4, 'Fancy Apartment', 0, 0, 0, 20000, 100, 0, 1969.4, -1654.77, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 245, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (146, 4, 'Fancy Apartment', 0, 0, 0, 20000, 0, 0, 1973.36, -1654.67, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 246, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (147, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1967.48, -1633.76, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 247, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (148, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1972.28, -1633.71, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 248, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (149, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 0, 1976.04, -1634.06, 16.21, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 249, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (150, 4, 'Light Apartment', 0, 0, 0, 20000, 1, 0, 1967.56, -1633.71, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 250, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (151, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1972.32, -1633.71, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 251, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (152, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 0, 1976.13, -1634.05, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 252, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (153, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1969.98, -1671.4, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 253, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (154, 4, 'Light Apartment', 0, 0, 0, 20000, 100, 0, 1974.85, -1671.26, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 254, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (155, 4, 'Light Apartment', 0, 0, 0, 20000, 5, 0, 1978.75, -1671.54, 16.18, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 255, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (156, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1970.06, -1671.19, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 256, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (157, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1974.86, -1671.2, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 257, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (158, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1978.74, -1671.51, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 258, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (159, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2082.44, -1085.14, 25.69, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 259, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (160, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 0, 2075.29, -1081.9, 25.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 260, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (161, 4, 'Apartment LS Small', 0, 0, 0, 20000, 500, 0, 2140.68, -1082.55, 25.03, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 261, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (162, 4, 'Apartment LS Small', 0, 0, 0, 20000, 1000, 0, 2145.24, -1084.66, 25.03, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 262, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (163, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 0, 2334.6, -1203.99, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 263, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (164, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2324.33, -1218.84, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 264, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (165, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2334.65, -1234.66, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 265, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (166, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2324.47, -1249.51, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 266, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (167, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2334.7, -1266.12, 27.97, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 267, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (168, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2324.44, -1280.97, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 268, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (169, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2427.38, -1135.77, 34.71, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 269, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (170, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2467.56, -1200.41, 36.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 270, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (171, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2492.17, -1239.01, 37.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 271, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (172, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2494.1, -1224.25, 37.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 272, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (173, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2472.9, -1238.12, 32.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 273, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (174, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2474.9, -1223.36, 32.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 274, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (175, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2469.18, -1278.36, 30.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 275, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (176, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2470.37, -1295.52, 30.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 276, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (177, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5, 0, 2434.8, -1289.29, 25.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 277, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (178, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2433.94, -1303.35, 25.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 278, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (179, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2433.93, -1320.68, 25.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 279, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (180, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2439.59, -1338.72, 24.1, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 280, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (181, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2439.59, -1357.14, 24.1, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 281, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (182, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2789.59, -181.41, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 282, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (183, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 500, 0, 2421.23, -1277.2, 24.76, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 283, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (184, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2420.02, -1287.25, 25.35, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 284, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (185, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2419.23, -1301.95, 25.57, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 285, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (186, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2419.23, -1319.22, 25.57, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 286, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (187, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2424.89, -1336.86, 24.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 287, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (188, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2424.89, -1355.15, 24.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 288, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (189, 4, 'Apartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.77, -175.21, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 289, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (190, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 2000, 0, 2487.35, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 290, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (191, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.3, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 291, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (192, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2492.25, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 292, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (193, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2495.38, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 293, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (194, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.4, -168.27, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 294, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (195, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.29, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 295, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (196, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.18, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 296, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (197, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.27, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 297, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (198, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2473.14, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 298, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (199, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1000, 0, 2468.25, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 299, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (200, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.99, -160.47, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 300, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (201, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.4, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 301, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (202, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2476.25, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 302, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (203, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2473.12, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 303, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (204, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.3, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 304, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (205, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2468.3, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 305, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (206, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.17, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 306, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (207, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 0, 2476.42, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 307, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (208, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 3000, 0, -2792.89, -153.15, 7.6, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 308, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (209, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.38, -1383.38, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 309, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (210, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.22, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 310, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (211, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2495.4, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 311, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (212, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.29, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 312, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (213, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 250, 0, 2492.12, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 313, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (214, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.86, -145.98, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 314, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (215, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.35, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 315, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (216, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.41, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 316, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (217, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2791.99, -134.46, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 317, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (218, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.3, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 318, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (219, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2492.09, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 319, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (220, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.27, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 320, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (221, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.35, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 321, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (222, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.34, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 322, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (223, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 50, 0, 2476.25, -1424.58, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 323, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (224, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.39, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 324, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (225, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.12, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 325, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (226, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.09, -1424.57, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 326, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (227, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2468.3, -1424.58, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 327, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (228, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2468.34, -1417.45, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 328, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (229, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2495.35, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 329, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (230, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.26, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 330, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (231, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 100, 0, 2487.3, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 331, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (232, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2476.45, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 332, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (233, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 500, 0, -2793.14, -126.99, 7.18, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 333, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (234, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 999, 0, 2473.24, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 334, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (235, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2468.35, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 335, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (236, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 20, 0, 2473.14, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 336, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (237, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.39, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 337, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (238, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.32, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 338, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (239, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.15, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 339, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (240, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2476.3, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 340, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (241, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.77, -118.26, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 341, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (242, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.17, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 342, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (243, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2468.38, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 343, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (244, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.37, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 344, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (245, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.39, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 345, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (246, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.34, -111.14, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 346, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (247, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.3, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 347, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (248, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2492.3, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 348, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (249, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 0, 2492.08, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 349, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (250, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.31, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 350, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (251, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2495.47, -1366.21, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 351, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (252, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.85, -107.45, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 352, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (253, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.99, -94.98, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 353, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (254, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.77, -89.71, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 354, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (255, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.42, -82.53, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 355, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (256, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.33, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 356, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (257, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.1, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 357, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (258, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.26, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 358, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (259, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.28, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 359, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (260, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.07, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 360, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (261, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.24, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 361, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (262, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2789.24, -52.58, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 362, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (263, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.91, -41.82, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 363, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (264, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 150, 0, 2483.95, -1280.35, 30.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 364, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (265, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2482.75, -1293.35, 30.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 365, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (266, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.83, -35.9, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 366, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (267, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2529.65, -1243.31, 43.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 367, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (268, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2531.05, -1228.61, 43.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 368, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (269, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.84, -24.28, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 369, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (270, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 600, 0, 2551.05, -1233.79, 49.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 370, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (271, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.59, -17.64, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 371, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (272, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2514.62, -1240.45, 39.34, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 372, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (273, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2516.52, -1225.75, 39.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 373, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (274, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.76, 0.27, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 374, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (275, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.48, 7.37, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 375, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (276, 4, 'Light Pink/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2793.14, 11.19, 7.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 376, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (277, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2550.3, -1209.05, 54.54, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 377, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (278, 4, 'Green Normal Size House In SF', 0, 0, 0, 120000, 0, 0, -2793.15, 21.32, 7.18, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 378, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (279, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2550.19, -1197.53, 60.84, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 379, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (280, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 5000, 0, 2520.65, -1209.48, 50.29, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 380, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (281, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2520.61, -1198, 56.6, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 381, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (282, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2787, 62.87, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 382, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (283, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.53, 69.66, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 383, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (284, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.79, 77.58, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 384, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (285, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1200.15, 59.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 385, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (286, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1203.08, 58.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 386, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (287, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1207.58, 57.79, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 387, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (288, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2792.85, 84.94, 7.62, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 388, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (289, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1207.54, 57.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 389, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (290, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1203, 58.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 390, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (291, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1200.09, 59.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 391, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (292, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 5000, 0, -2791.59, 92.18, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 392, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (293, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1211.81, 56.66, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 393, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (294, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1211.8, 56.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 394, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (295, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1216.41, 55.27, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 395, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (296, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1216.38, 55.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 396, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (297, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2791.82, 103.6, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 397, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (298, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 120, 0, 2601.05, -1220.59, 53.92, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 398, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (299, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 449, 0, 2594.5, -1220.49, 53.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 399, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (300, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1224.74, 52.63, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 400, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (301, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1224.71, 52.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 401, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (302, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1229.29, 51.34, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 402, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (303, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2793.14, 110.99, 7.18, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 403, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (304, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2594.5, -1229.26, 51.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 404, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (305, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1233.56, 50.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 405, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (306, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2594.5, -1233.55, 49.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 406, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (307, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 0, 2601.05, -1238.12, 48.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 407, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (308, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2594.5, -1238.05, 48.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 408, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (309, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.98, 119.9, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 409, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (310, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1200.07, 60.99, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 410, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (311, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1200.1, 60.78, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 411, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (312, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.59, 126.9, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 412, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (313, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1203, 60.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 413, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (314, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1203.1, 60, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 414, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (315, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 90, 0, 2608.15, -1207.57, 59.28, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 415, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (316, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1207.64, 59.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 416, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (317, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1211.73, 58.15, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 417, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (318, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1211.84, 57.94, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 418, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (319, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2608.15, -1216.28, 56.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 419, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (320, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 0, 2615.11, -1216.3, 56.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 420, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (321, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2608.15, -1220.51, 55.41, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 421, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (322, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1220.58, 55.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 422, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (323, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1224.64, 54.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 423, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (324, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.68, 130.62, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 424, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (325, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1224.75, 53.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 425, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (326, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1229.19, 52.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 426, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (327, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1229.28, 52.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 427, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (328, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2608.15, -1233.42, 51.6, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 428, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (329, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1233.57, 51.38, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 429, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (330, 4, 'House', 0, 0, 0, 10000, 0, 0, 2608.15, -1238.01, 50.2, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 430, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (331, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2615.11, -1238.09, 49.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 431, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (332, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.81, 143.25, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 432, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (333, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2587.4, -1238.14, 48.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 433, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (334, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2587.4, -1233.59, 49.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 434, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (335, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1229.28, 51.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 435, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (336, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2587.4, -1224.72, 52.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 436, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (337, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.39, -1220.59, 53.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 437, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (338, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1216.4, 55.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 438, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (339, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2587.4, -1211.86, 56.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 439, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (340, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 400, 0, 2587.4, -1207.67, 57.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 440, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (341, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1203.17, 58.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 441, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (342, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1200.11, 59.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 442, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (343, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2789.34, 183.69, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 443, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (344, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1237.97, 51.27, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 444, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (345, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1233.49, 52.66, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 445, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (346, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2622.21, -1229.17, 53.89, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 446, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (347, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1224.62, 55.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 447, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (348, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1220.51, 56.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 448, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (349, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1216.29, 57.82, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 449, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (350, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1211.76, 59.21, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 450, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (351, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.81, 194.57, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 451, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (352, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1207.58, 60.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 452, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (353, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1203.05, 61.28, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 453, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (354, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1199.95, 62.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 454, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (355, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.65, 200.58, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 455, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (356, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.81, 212, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 456, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (357, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.6, 218.57, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 457, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (358, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1238.14, 55.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 458, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (359, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1233.56, 57.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 459, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (360, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 0, 2663.18, -1229.27, 58.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 460, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (361, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1224.83, 59.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 461, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (362, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1220.59, 60.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 462, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (363, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1216.33, 62.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 463, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (364, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1211.8, 63.62, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 464, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (365, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1207.64, 64.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 465, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (366, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1203.19, 65.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 466, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (367, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2663.18, -1200.14, 66.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 467, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (368, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1200.04, 66.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 468, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (369, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1203.03, 65.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 469, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (370, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1207.56, 64.8, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 470, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (371, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1211.74, 63.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 471, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (372, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1216.36, 62.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 472, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (373, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 0, 2670.28, -1220.46, 60.92, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 473, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (374, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1224.74, 59.63, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 474, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (375, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1229.17, 58.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 475, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (376, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1233.48, 57.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 476, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (377, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1238.05, 55.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 477, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (378, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2683.44, -1238.05, 56.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 478, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (379, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1233.54, 57.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 479, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (380, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1229.32, 58.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 480, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (381, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1224.74, 59.93, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 481, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (382, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1220.6, 61.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 482, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (383, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1216.35, 62.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 483, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (384, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1211.88, 63.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 484, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (385, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1207.64, 65.1, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 485, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (386, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2683.44, -1203.14, 66.03, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 486, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (387, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1200.19, 66.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 487, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (388, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1200.05, 68.29, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 488, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (389, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.21, -1200.19, 68.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 489, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (390, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1202.95, 67.52, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 490, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (391, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.21, -1203.11, 68.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 491, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (392, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1207.56, 66.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 492, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (393, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1207.66, 67.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 493, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (394, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1211.84, 66.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 494, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (395, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2690.54, -1211.79, 65.45, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 495, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (396, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1216.36, 64.74, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 496, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (397, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1216.25, 64.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 497, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (398, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.21, -1220.59, 63.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 498, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (399, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.67, -191.32, 4.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 499, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (400, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1220.48, 62.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 500, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (401, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1224.74, 62.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 501, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (402, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.55, -1224.79, 61.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 502, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (403, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2700.21, -1229.31, 60.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 503, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (404, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1229.15, 60.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 504, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (405, 4, 'Appartment In SF 2nd Floor', 0, 0, 0, 80000, 0, 0, -2728.16, -184.18, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 505, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (406, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2700.21, -1233.57, 59.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 506, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (407, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1233.41, 58.91, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 507, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (408, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1238.05, 58.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 508, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (409, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2690.54, -1238.06, 57.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 509, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (410, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.15, -179.07, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 510, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (411, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2707.3, -1237.91, 59.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 511, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (412, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2707.31, -1233.54, 61.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 512, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (413, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.3, -1229.25, 62.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 513, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (414, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1224.67, 63.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 514, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (415, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2707.3, -1220.59, 64.88, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 515, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (416, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2707.3, -1216.32, 66.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 516, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (417, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2707.3, -1211.75, 67.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 517, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (418, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2723.32, -166.46, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 518, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (419, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1207.58, 68.75, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 519, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (420, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1203.04, 69.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 520, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (421, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1200.06, 70.46, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 521, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (422, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.67, -162.74, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 522, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (423, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2728.16, -155.7, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 523, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (424, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, 0, -2721.77, -146.75, 4.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 524, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (425, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2723.03, -139.4, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 525, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (426, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2723.33, -127.87, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 526, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (427, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2781.94, -1358.42, 26.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 527, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (428, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2722.05, -120.75, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 528, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (429, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2781.94, -1333.42, 32.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 529, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (430, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2782.15, -1306.33, 38.89, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 530, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (431, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2782.15, -1281.21, 44.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 531, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (432, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2809.53, -1324.86, 33.87, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 532, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (433, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2809.53, -1302.93, 38.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 533, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (434, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 1, 0, 2809.53, -1281.04, 43.9, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 534, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (435, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.02, -113.39, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 535, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (436, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2807.98, -1353.99, 27.22, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 536, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (437, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2807.98, -1369.6, 23.58, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 537, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (438, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.65, -105.62, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 538, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (439, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2728.17, -98.41, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 539, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (440, 4, 'Ls House Near Beach Medium', 0, 0, 0, 30000, 0, 0, 2846.99, -1309.7, 14.7, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 540, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (441, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2725.75, -92.38, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 541, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (442, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.7, -58.02, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 542, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (443, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2728.19, -51.06, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 543, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (444, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2851.85, -1365.97, 14.17, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 544, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (445, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2722.11, -44.71, 4.77, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 545, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (446, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2725.64, -36.6, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 546, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (447, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 0, 0, -2721.8, -23.27, 4.57, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 547, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (448, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2808.05, -1190.89, 25.34, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 548, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (449, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2808.01, -1175.92, 25.38, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 549, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (450, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.17, -17.31, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 550, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (451, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2723.05, 4.47, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 551, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (452, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2722.1, 14.48, 4.77, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 552, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (453, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2842.19, -1334.78, 14.74, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 553, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (454, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.12, 21.93, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 554, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (455, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2686.82, -188.19, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 555, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (456, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.41, -182.15, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 556, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (457, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2687.89, -175.08, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 557, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (458, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.4, -167.3, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 558, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (459, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2690.5, -159.76, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 559, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (460, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2755.71, -1400.45, 39.38, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 560, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (461, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2689.24, -152.92, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 561, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (462, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2689.38, -141.27, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 562, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (463, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2756.29, -1302.54, 53.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 563, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (464, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2755.85, -1276.47, 56.59, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 564, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (465, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, 0, -2690.79, -134.05, 4.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 565, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (466, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.42, -125.07, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 566, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (467, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2687.9, -118.16, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 567, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (468, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1000, 0, 2776.06, -1245.37, 49.58, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 568, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (469, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 2797.81, -1245.37, 47.38, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 569, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (470, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2689.25, -114.14, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 570, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (471, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.35, -101.62, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 571, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (472, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.55, -96.44, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 572, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (473, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2688.06, -89.44, 4.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 573, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (474, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2750.39, -1238.8, 61.52, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 574, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (475, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2750.39, -1222.23, 64.6, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 575, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (476, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2750.39, -1205.76, 67.48, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 576, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (477, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2756.27, -1182.81, 69.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 577, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (478, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.38, 57.09, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 578, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (479, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 1, 0, -2690.49, 64.59, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 579, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (480, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2689.49, 74.56, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 580, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (481, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2628.09, -1067.86, 69.71, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 581, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (482, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2627.64, -1085.13, 69.71, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 582, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (483, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.33, 96.31, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 583, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (484, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2625.93, -1098.64, 69.36, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 584, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (485, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2625.94, -1112.61, 68, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 585, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (486, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 1500, 0, -2690.78, 102.29, 4.57, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 586, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (487, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2611.24, -1111.19, 68.25, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 587, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (488, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2611.23, -1097.24, 69.6, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 588, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (489, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2612.94, -1083.18, 69.96, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 589, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (490, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2687.1, 115.56, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 590, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (491, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2613.39, -1065.9, 69.96, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 591, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (492, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2618.94, -1118.48, 68, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 592, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (493, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2690.51, 123.6, 4.75, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 593, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (494, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.4, 129.99, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 594, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (495, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2687.88, 137.03, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 595, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (496, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2572.3, -1091.85, 67.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 596, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (497, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2519.02, -1112.99, 56.59, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 597, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (498, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2576.68, -1070.67, 69.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 598, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (499, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2579.61, -1033.2, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 599, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (500, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2562.11, -1034.28, 69.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 600, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (501, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 5000, 0, -2692.95, 189.45, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 601, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (502, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2549.2, -1032.15, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 602, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (503, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2358.3, 820.03, 38.53, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 603, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (504, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2340.18, 819.85, 41.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 604, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (505, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2321.9, 820, 45.34, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 605, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (506, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2303.4, 819.97, 48.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 606, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (507, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.42, 873.14, 66.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 607, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (508, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2285.08, 849.13, 65.64, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 608, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (509, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2285.3, 828.92, 57.17, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 609, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (510, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2294.99, 969.98, 65.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 610, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (511, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2307.55, 944.26, 61.61, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 611, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (512, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2325.89, 944.26, 55.32, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 612, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (513, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.8, 943.84, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 613, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (514, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.89, 962.11, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 614, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (515, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.82, 980.75, 71.52, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 615, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (516, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2238.79, 998.81, 78.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 616, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (517, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2229.28, 934.38, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 617, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (518, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2210.94, 934.38, 68.97, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 618, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (519, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2192.54, 934.38, 75.02, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 619, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (520, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2174.13, 934.36, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 620, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (521, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 947.01, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 621, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (522, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.14, 965.32, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 622, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (523, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 983.75, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 623, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (524, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.11, 1002.05, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 624, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (525, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2440.48, -1057.34, 54.74, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 625, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (526, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2233.82, 888.8, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 626, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (527, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2233.83, 870.58, 66.64, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 627, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (528, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2233.27, 848.86, 61.89, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 628, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (529, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2233.27, 830.7, 54.3, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 629, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (530, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2223.85, 821.13, 49.44, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 630, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (531, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2205.37, 821.13, 50.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 631, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (532, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2187.07, 821.13, 57.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 632, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (533, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2168.71, 821.13, 64.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 633, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (534, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 1000, 0, 646.06, -1117.35, 44.21, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 634, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (535, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.21, 830.74, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 635, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (536, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 550, 0, 398.17, -1271.36, 50.02, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 636, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (537, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.22, 866.53, 75.35, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 637, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (538, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2158.67, 889.11, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 638, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (539, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2174.37, 902.73, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 639, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (540, 4, 'Mansion', 0, 0, 0, 450000, 0, 0, 298.84, -1338.5, 53.44, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 640, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (541, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2192.49, 902.68, 75.04, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 641, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (542, 4, 'Mansion', 0, 0, 0, 450000, 0, 0, 254.38, -1367.12, 53.11, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 642, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (543, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2211.06, 902.68, 68.93, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 643, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (544, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2224.88, 902.67, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 644, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (545, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2282.4, 979.39, 70.89, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 645, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (546, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2282.14, 999.63, 79.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 646, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (547, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.39, 1023.13, 84.11, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 647, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (548, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.42, 1046.67, 84.12, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 648, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (549, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.4, 1070.26, 81.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 649, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (550, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.42, 1088.93, 80.41, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 650, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (551, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2280.84, 1112.55, 76.98, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 651, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (552, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2280.83, 1130.83, 69.23, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 652, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (553, 4, 'Huge house at Vinewood', 0, 0, 0, 600000, 0, 0, 219.26, -1249.79, 78.33, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 653, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (554, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2280.83, 1149.17, 61.61, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 654, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (555, 4, 'Very Small House In SF', 0, 0, 0, 25000, 0, 0, -2358.98, 1118.09, 55.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 655, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (556, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, 0, -2369.4, 1122.32, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 656, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (557, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 662.43, -1466.81, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 657, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (558, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 657.39, -1481.28, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 658, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (559, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 499, 0, 662.43, -1487.5, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 659, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (560, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 648.85, -1489.52, 14.84, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 660, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (561, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 0, 648.86, -1442.35, 14.73, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 661, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (562, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 657.35, -1434.11, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 662, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (563, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 662.43, -1440.42, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 663, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (564, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 685.53, -1421.91, 14.77, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 664, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (565, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 739.09, -1418.51, 13.52, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 665, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (566, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 738.98, -1428.77, 13.9, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 666, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (567, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 725.6, -1440.45, 13.53, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 667, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (568, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 662.43, -1514.03, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 668, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (569, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 657.43, -1528.46, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 669, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (570, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 3000, 0, 662.43, -1534.8, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 670, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (571, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 648.85, -1536.7, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 671, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (572, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 653.24, -1619.92, 15, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 672, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (573, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 692.86, -1602.77, 15.04, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 673, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (574, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 697.28, -1627, 3.75, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 674, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (575, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 813.69, -1456.63, 14.22, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 675, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (576, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2383.75, 1128.1, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 676, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (577, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 100, 0, 822.38, -1505.51, 14.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 677, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (578, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2396.81, 1132.76, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 678, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (579, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 849.59, -1519.96, 14.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 679, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (580, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2407.02, 1135.82, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 680, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (581, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 0, 771.12, -1510.72, 13.54, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 681, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (582, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 761.07, -1564.08, 13.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 682, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (583, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 25000, 0, 0, 841.34, -1471.36, 14.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 683, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (584, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 782.79, -1464.49, 13.54, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 684, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (585, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 824.5, -1424.2, 14.5, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 685, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (586, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 852.2, -1423.27, 14.13, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 686, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (587, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2413.67, 1137.49, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 687, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (588, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 880.12, -1424.82, 14.48, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 688, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (589, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, 0, -2424.02, 1139.41, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 689, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (590, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 900.22, -1447.41, 14.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 690, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (591, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 898.28, -1445.64, 14.36, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 691, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (592, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2438.17, 1141, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 692, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (593, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 4999, 0, 900.2, -1471.03, 14.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 693, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (594, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 5000, 0, 898.36, -1472.83, 14.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 694, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (595, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 852.51, -1436.23, 15.04, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 695, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (596, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, 0, -2451.11, 1141.75, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 696, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (597, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 784.39, -1436.11, 13.54, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 697, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (598, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2461.57, 1141.9, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 698, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (599, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 0, 987.5, -1624.49, 14.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 699, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (600, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2468.52, 1141.91, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 700, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (601, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2478.92, 1141.96, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 701, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (602, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 0, 987.52, -1704.34, 14.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 702, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (603, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2493.18, 1141.98, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 703, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (604, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2506.44, 1142.08, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 704, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (605, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2517, 1142.41, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 705, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (606, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2523.88, 1142.67, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 706, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (607, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2534.53, 1143.77, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 707, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (608, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2549.06, 1145.72, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 708, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (609, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2563.2, 1149.12, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 709, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (610, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 675.14, -1430.51, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 710, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (611, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1, 0, 683.4, -1435.48, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 711, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (612, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 725.69, -1451.04, 17.69, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 712, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (613, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 877.97, -1514.64, 14.35, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 713, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (614, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 300, 0, 876.21, -1512.7, 14.35, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 714, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (615, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 901.71, -1514.66, 14.36, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 715, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (616, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 903.4, -1512.85, 14.36, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 716, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (617, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 2000, 0, 797.24, -1729.38, 13.54, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 717, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (618, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, 0, -2711.23, 967.59, 54.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 718, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (619, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, 0, -2656.6, 985.82, 64.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 719, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (620, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2584.18, 992.25, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 720, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (621, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 791.38, -1753.22, 13.46, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 721, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (622, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2573.6, 992.26, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 722, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (623, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 893.64, -1635.7, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 723, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (624, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2564.32, 992.25, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 724, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (625, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 846.72, -1717.4, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 725, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (626, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2553.66, 992.25, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 726, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (627, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 865.22, -1633.84, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 727, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (628, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2543.56, 922.38, 67.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 728, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (629, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2545.33, 920.34, 64.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 729, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (630, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2551.82, 920.38, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 730, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (631, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2562.42, 920.37, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 731, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (632, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2569.98, 920.36, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 732, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (633, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2580.92, 920.38, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 733, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (634, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1364.51, 1896.76, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 734, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (635, 4, 'Medium house at LV', 0, 0, 0, 150000, 5, 0, 1363.96, 1931.62, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 735, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (636, 4, '3 Floor House In SF', 0, 0, 0, 600000, 0, 0, -2641.24, 935.72, 71.95, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 736, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (637, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1412.63, 1951.25, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 737, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (638, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1439.76, 1951.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 738, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (639, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1462.3, 1949.81, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 739, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (640, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1464.5, 1919.98, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 740, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (641, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1464.49, 1895.12, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 741, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (642, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1409.36, 1920.01, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 742, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (643, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1365.41, 1974.17, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 743, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (644, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1364.39, 2003.71, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 744, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (645, 4, 'Large House In SF', 0, 0, 0, 470000, 2500, 0, -2661.96, 876.34, 79.77, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 745, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (646, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.26, 2026.93, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 746, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (647, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2583.77, 896.25, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 747, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (648, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2026.87, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 748, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (649, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.25, 2026.95, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 749, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (650, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2033.17, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 750, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (651, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.25, 2033.18, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 751, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (652, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2033.13, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 752, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (653, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.25, 2033.18, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 753, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (654, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2026.97, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 754, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (655, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2026.92, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 755, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (656, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2026.95, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 756, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (657, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2033.22, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 757, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (658, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2033.19, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 758, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (659, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2033.21, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 759, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (660, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2033.11, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 760, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (661, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2026.95, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 761, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (662, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2026.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 762, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (663, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2573.13, 896.26, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 763, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (664, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.53, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 764, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (665, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.48, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 765, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (666, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2566.5, 896.65, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 766, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (667, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.26, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 767, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (668, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.18, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 768, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (669, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.31, 1996.36, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 769, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (670, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.35, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 770, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (671, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.51, 1996.36, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 771, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (672, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.52, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 772, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (673, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2556.02, 896.64, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 773, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (674, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2026.97, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 774, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (675, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.24, 2027.01, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 775, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (676, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2033.25, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 776, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (677, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.24, 2033.15, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 777, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (678, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2033.16, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 778, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (679, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.25, 2033.2, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 779, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (680, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2027.01, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 780, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (681, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.24, 2026.85, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 781, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (682, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.72, 2026.98, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 782, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (683, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.26, 2026.88, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 783, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (684, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.72, 2033.18, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 784, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (685, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.27, 2033.22, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 785, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (686, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2541.55, 896.64, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 786, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (687, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.72, 2033.23, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 787, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (688, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.27, 2033.12, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 788, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (689, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.71, 2027, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 789, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (690, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.27, 2026.88, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 790, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (691, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.45, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 791, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (692, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.49, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 792, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (693, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.75, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 793, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (694, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.68, 1996.35, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 794, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (695, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.7, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 795, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (696, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.64, 1996.35, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 796, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (697, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.55, 2003.89, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 797, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (698, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.41, 1996.35, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 798, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (699, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1595.5, 2038.34, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 799, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (700, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2502.88, 921.37, 65.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 800, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (701, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1641.79, 2044.95, 11.32, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 801, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (702, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1594.96, 2071.07, 11.32, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 802, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (703, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2471.77, 921.42, 63.16, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 803, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (704, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1596.41, 2093.74, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 804, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (705, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1640.35, 2075.67, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 805, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (706, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1640.35, 2102.86, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 806, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (707, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2449.79, 921.4, 58.14, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 807, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (708, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1645.45, 2127.38, 11.2, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 808, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (709, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1641.26, 2149.74, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 809, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (710, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2431.38, 921.41, 50.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 810, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (711, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2413.09, 921.43, 45.47, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 811, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (712, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1595.5, 2123.37, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 812, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (713, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1596.41, 2147.43, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 813, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (714, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2412.98, 895.23, 45.47, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 814, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (715, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1684.51, 2123.46, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 815, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (716, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2431.45, 895.25, 50.54, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 816, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (717, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1685.42, 2093.88, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 817, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (718, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2449.8, 895.24, 58.15, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 818, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (719, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1680.26, 2069.24, 11.36, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 819, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (720, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1684.51, 2046.69, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 820, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (721, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2471.93, 895.26, 63.17, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 821, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (722, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2503.02, 895.26, 65.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 822, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (723, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2585.97, 794.18, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 823, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (724, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2569.11, 794.17, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 824, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (725, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2550.83, 794.17, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 825, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (726, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2056.5, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 826, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (727, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2037.04, 2664.5, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 827, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (728, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2018.03, 2664.67, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 828, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (729, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2548.68, 819.79, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 829, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (730, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1989.24, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 830, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (731, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2559.22, 819.79, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 831, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (732, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1969.62, 2664.5, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 832, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (733, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1950.53, 2664.67, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 833, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (734, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1921.7, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 834, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (735, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2565.91, 819.8, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 835, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (736, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2576.42, 819.79, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 836, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (737, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2590.88, 819.8, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 837, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (738, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 5000, 0, 1929.85, 2774.3, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 838, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (739, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2642.14, 820.32, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 839, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (740, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1931.29, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 840, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (741, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2652.47, 820.32, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 841, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (742, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1950.69, 2721.95, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 842, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (743, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2666.91, 820.32, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 843, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (744, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1967.32, 2766.54, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 844, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (745, 4, 'Small House In SF', 0, 0, 0, 30000, 5000, 0, -2645.52, 803.08, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 845, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (746, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1992.54, 2764.64, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 846, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (747, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2659.84, 803.09, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 847, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (748, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1969.78, 2721.78, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 848, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (749, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1998.72, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 849, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (750, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2670.57, 803.08, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 850, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (751, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2018.15, 2721.95, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 851, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (752, 4, 'Small House In SF', 0, 0, 0, 30000, 1000, 0, -2677.16, 803.09, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 852, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (753, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2018.49, 2766.54, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 853, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (754, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2039.63, 2766.55, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 854, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (755, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2687.88, 803.09, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 855, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (756, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2698.92, 803.1, 49.97, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 856, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (757, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2049.62, 2764.29, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 857, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (758, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2066.01, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 858, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (759, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2709.85, 803.09, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 859, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (760, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2685.1, 820.49, 49.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 860, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (761, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2700.38, 820.84, 49.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 861, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (762, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2726.68, 822.98, 53.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 862, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (763, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2737.25, 822.99, 53.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 863, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (764, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2409.05, 819.96, 35.18, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 864, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (765, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2487.47, 821.3, 38.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 865, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (766, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1451.36, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 866, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (767, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2504.61, 821.31, 45.99, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 867, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (768, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1441.72, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 868, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (769, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1417.87, 2567.48, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 869, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (770, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1359.74, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 870, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (771, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1344.72, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 871, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (772, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2731.47, 723.69, 41.27, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 872, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (773, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1349.6, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 873, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (774, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1313.84, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 874, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (775, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1325.61, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 875, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (776, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2723.45, 722.82, 41.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 876, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (777, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2710.89, 722.82, 39.72, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 877, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (778, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1284.86, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 878, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (779, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2706.75, 722.85, 37.54, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 879, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (780, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1271.88, 2564.57, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 880, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (781, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1269.62, 2554.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 881, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (782, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2686.04, 722.86, 32.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 882, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (783, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1273.95, 2522.51, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 883, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (784, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1316.47, 2524.65, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 884, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (785, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2678.14, 722.25, 28.6, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 885, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (786, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2665.49, 722.24, 27.96, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 886, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (787, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2661.59, 722.23, 27.96, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 887, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (788, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1503.24, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 888, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (789, 4, 'Apartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2642.08, 728.03, 27.96, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 889, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (790, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1515.71, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 890, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (791, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2640.3, 730.54, 30.07, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 891, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (792, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1513.38, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 892, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (793, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1551.49, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 893, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (794, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1554.45, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 894, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (795, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 3500, 0, 1564.61, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 895, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (796, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1596.39, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 896, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (797, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1600.59, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 897, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (798, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2581.51, 719.02, 27.94, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 898, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (799, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1618.8, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 899, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (800, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1638.13, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 900, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (801, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1623.47, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 901, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (802, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2553.97, 719.02, 27.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 902, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (803, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1646.59, 2569.58, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 903, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (804, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1665.56, 2569.42, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 904, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (805, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1666.95, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 905, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (806, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.27, 733.1, 28.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 906, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (807, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.24, 750.92, 33.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 907, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (808, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1678.4, 2690.76, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 908, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (809, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.24, 768.14, 40.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 909, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (810, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1703.71, 2688.86, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 910, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (811, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.24, 785.26, 46.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 911, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (812, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1735.65, 2691.11, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 912, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (813, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1754.52, 2736.02, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 913, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (814, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1752.26, 2744.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 914, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (815, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.45, 2747.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 915, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (816, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1749.2, 2755.91, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 916, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (817, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.42, 2758.69, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 917, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (818, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1745.39, 2770.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 918, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (819, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1746.17, 2767.25, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 919, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (820, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1743.04, 2778.56, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 920, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (821, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1746.04, 2767.21, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 921, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (822, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1745.41, 2770.03, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 922, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (823, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.48, 2758.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 923, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (824, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1749.19, 2755.9, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 924, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (825, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.46, 2747.35, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 925, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (826, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1752.22, 2744.56, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 926, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (827, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1780.81, 2744.57, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 927, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (828, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.52, 830.84, 50, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 928, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (829, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1781.51, 2747.37, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 929, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (830, 4, 'lv project apartment small', 0, 0, 0, 40000, 500, 0, 1778.54, 2736.01, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 930, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (831, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.5, 849.08, 52.7, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 931, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (832, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1781.55, 2747.36, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 932, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (833, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1780.82, 2744.56, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 933, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (834, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1784.62, 2758.69, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 934, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (835, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.78, 2755.92, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 935, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (836, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1787.64, 2770.04, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 936, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (837, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.83, 2767.26, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 937, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (838, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.83, 2778.61, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 938, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (839, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1787.57, 2770.06, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 939, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (840, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.89, 2767.25, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 940, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (841, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1784.6, 2758.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 941, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (842, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.84, 2755.91, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 942, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (843, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.53, 867.49, 57.74, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 943, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (844, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.89, 2778.6, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 944, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (845, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1800.78, 2775.68, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 945, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (846, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1797.69, 2764.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 946, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (847, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.47, 2767.14, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 947, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (848, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.71, 2753, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 948, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (849, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.51, 885.73, 62.78, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 949, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (850, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.38, 2755.81, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 950, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (851, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1791.66, 2741.66, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 951, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (852, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1792.42, 2744.45, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 952, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (853, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.49, 2733.08, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 953, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (854, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1792.54, 2744.42, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 954, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (855, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1791.73, 2741.64, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 955, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (856, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.42, 2755.8, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 956, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (857, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.75, 2752.99, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 957, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (858, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.54, 2767.12, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 958, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (859, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1797.78, 2764.33, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 959, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (860, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1800.77, 2775.68, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 960, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (861, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1736.36, 2803.59, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 961, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (862, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1737.11, 2800.79, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 962, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (863, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2538.73, 830.01, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 963, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (864, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1739.42, 2792.25, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 964, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (865, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1737.08, 2800.78, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 965, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (866, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2540.51, 831.95, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 966, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (867, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1736.35, 2803.58, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 967, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (868, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1734.17, 2812.16, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 968, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (869, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1733.35, 2814.93, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 969, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (870, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1734.05, 2812.13, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 970, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (871, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1733.39, 2814.94, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 971, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (872, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1730.34, 2826.28, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 972, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (873, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1731, 2823.47, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 973, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (874, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1728.09, 2834.84, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 974, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (875, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1730.45, 2826.31, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 975, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (876, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1731.09, 2823.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 976, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (877, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1727.94, 2834.8, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 977, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (878, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2539.71, 845.18, 50.6, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 978, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (879, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2540.67, 855.14, 53.18, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 979, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (880, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2540, 874.76, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 980, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (881, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2540.18, 883.14, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 981, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (882, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2537.09, 929.45, 65.02, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 982, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (883, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1717.18, 2831.92, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 983, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (884, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2542.47, 942.63, 64, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 984, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (885, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1717.01, 2831.87, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 985, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (886, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1720.19, 2820.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 986, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (887, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1719.41, 2823.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 987, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (888, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1723.14, 2809.21, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 988, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (889, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1722.45, 2812.01, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 989, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (890, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 2514.28, -1691.66, 14.04, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 990, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (891, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 2523.27, -1679.38, 15.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 991, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (892, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 2524.71, -1658.59, 15.82, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 992, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (893, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2513.72, -1650.24, 14.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 993, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (894, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2498.47, -1642.25, 14.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 994, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (895, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2486.46, -1644.53, 14.08, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 995, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (896, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2469.45, -1646.35, 13.78, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 996, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (897, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2451.91, -1641.41, 14.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 997, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (898, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2413.86, -1646.79, 14.01, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 998, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (899, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2409.04, -1674.94, 14.38, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 999, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (900, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2393.13, -1646.04, 13.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1000, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (901, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2384.7, -1675.83, 15.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1001, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (902, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2362.8, -1643.14, 14.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1002, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (903, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2368.29, -1675.34, 14.17, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1003, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (904, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2326.89, -1681.94, 14.93, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1004, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (905, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 20, 0, 2385.39, -1711.66, 14.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1005, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (906, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2326.75, -1716.7, 14.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1006, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (907, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2308.89, -1714.34, 14.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1007, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (908, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2244.54, -1637.64, 16.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1008, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (909, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 2257.11, -1643.94, 15.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1009, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (910, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2282.29, -1641.21, 15.89, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1010, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (911, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2307, -1679.19, 14.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1011, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (912, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1928.69, -1915.91, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1012, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (913, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1938.54, -1911.32, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1013, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (914, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1913.47, -1911.9, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1014, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (915, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1891.92, -1914.4, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1015, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (916, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1872.21, -1911.79, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1016, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (917, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1854.06, -1914.26, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1017, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (918, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1848.15, -1593.75, 19.12, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1018, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (919, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1848.15, -1593.6, 23.88, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1019, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (920, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1986.75, -1604.9, 13.53, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1020, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (921, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1972.98, -1559.83, 13.64, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1021, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (922, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1958.67, -1560.35, 13.59, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1022, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (923, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2139.09, -1697.51, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1023, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (924, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2155.62, -1698.51, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1024, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (925, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 0, 2157.15, -1709.21, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1025, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (926, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 0, 2140.57, -1708.3, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1026, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (927, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2151.71, -1717.83, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1027, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (928, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2168.08, -1718.82, 15.17, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1028, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (929, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 1, 0, 2151.41, -1672.26, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1029, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (930, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 5000, 0, 2143.65, -1662.86, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1030, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (932, 4, 'Ghetto Home LS Medium', 0, 0, 0, 60000, 0, 0, 2163.74, -1661.21, 15.09, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1032, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (933, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1793.6, 2792.25, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1033, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (934, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.65, 2803.58, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1034, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (935, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.83, 2800.81, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1035, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (936, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2510.96, 967.65, 73.53, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1036, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (937, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1799.57, 2814.95, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1037, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (938, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.92, 2812.14, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1038, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (939, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1802.77, 2826.25, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1039, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (940, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1801.9, 2823.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1040, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (941, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2510.91, 951.26, 65.61, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1041, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (942, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1804.86, 2834.85, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1042, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (943, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2510.93, 942.7, 65.29, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1043, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (944, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1804.96, 2834.82, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1044, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (945, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1802.59, 2826.3, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1045, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (946, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1802.05, 2823.45, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1046, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (947, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.8, 2812.17, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1047, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (948, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1799.65, 2814.93, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1048, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (949, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.85, 2800.8, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1049, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (950, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.69, 2803.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1050, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (951, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1793.61, 2792.24, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1051, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (952, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1815.83, 2831.92, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1052, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (953, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1813.61, 2823.34, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1053, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (954, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1812.9, 2820.54, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1054, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (955, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1815.91, 2831.89, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1055, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (956, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1812.82, 2820.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1056, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (957, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1813.61, 2823.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1057, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (958, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1809.83, 2809.21, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1058, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (959, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1810.53, 2812.02, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1059, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (960, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2596.65, 986.27, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1060, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (961, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1806.77, 2797.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1061, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (962, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1807.6, 2800.65, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1062, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (963, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1804.57, 2789.3, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1063, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (964, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2597.34, 979.74, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1064, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (965, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1806.71, 2797.89, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1065, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (966, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1807.36, 2800.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1066, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (967, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1810.61, 2812, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1067, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (968, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1809.62, 2809.27, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1068, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (969, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2597.33, 968.95, 78.28, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1069, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (970, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1832.49, 2742.93, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1070, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (971, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1830.47, 2740.87, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1071, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (972, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1840.84, 2751.18, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1072, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (973, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1838.67, 2749.27, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1073, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (974, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2591.17, 960.76, 78.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1074, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (975, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1847.08, 2757.45, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1075, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (976, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1849.23, 2759.39, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1076, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (977, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1855.38, 2765.76, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1077, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (978, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1849.09, 2759.53, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1078, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (979, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1847.1, 2757.43, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1079, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (980, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1838.73, 2749.2, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1080, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (981, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2591.19, 944.33, 70.43, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1081, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (982, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1840.84, 2751.19, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1082, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (983, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1830.4, 2740.94, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1083, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (984, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1832.55, 2742.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1084, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (985, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1824.22, 2734.61, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1085, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (986, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2591.19, 935.9, 68.93, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1086, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (987, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2591.19, 927.88, 65.02, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1087, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (988, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1855.32, 2765.81, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1088, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (989, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1865.45, 2775.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1089, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (990, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1873.69, 2784.06, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1090, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (991, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1871.57, 2782.08, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1091, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (992, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1881.95, 2792.39, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1092, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (993, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1879.89, 2790.37, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1093, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (994, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1890.23, 2800.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1094, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (995, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1888.22, 2798.63, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1095, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (996, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2593.26, 883.22, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1096, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (997, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1896.51, 2806.95, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1097, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (998, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1888.25, 2798.6, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1098, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (999, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1890.32, 2800.62, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1099, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1000, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1879.96, 2790.31, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1100, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1001, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1882.05, 2792.29, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1101, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1002, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2593.42, 874.77, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1102, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1003, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1871.62, 2782.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1103, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1004, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1873.72, 2784.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1104, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1005, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1865.34, 2775.81, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1105, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1006, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2620.21, 883.01, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1106, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1007, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2620.02, 874.73, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1107, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1008, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1896.56, 2806.91, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1108, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1009, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2592.74, 854.98, 53.59, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1109, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1010, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2620.7, 855.15, 53.57, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1110, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1011, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1740.86, 2863.24, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1111, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1012, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1738.45, 2861.53, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1112, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1013, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.45, 2868.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1113, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1014, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.67, 2867.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1114, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1015, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2593.7, 845.08, 50.59, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1115, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1016, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1763.1, 2871.36, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1116, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1017, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1760.16, 2870.95, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1117, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1018, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2619.74, 845.31, 50.6, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1118, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1019, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1775, 2870.83, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1119, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1020, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1772.1, 2871.36, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1120, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1021, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.52, 2867.69, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1121, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1022, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.74, 2868.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1122, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1023, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.8, 2861.61, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1123, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1024, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2592.75, 832.84, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1124, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1025, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.42, 2863.38, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1125, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1026, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1731.81, 2855.49, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1126, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1027, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2594.69, 830.98, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1127, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1028, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1740.84, 2863.27, 14.26, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1128, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1029, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1738.33, 2861.68, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1129, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1030, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.44, 2868.75, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1130, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1031, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.65, 2867.74, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1131, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1032, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1763.12, 2871.13, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1132, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1033, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1760.17, 2870.92, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1133, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1034, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2620.37, 832.86, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1134, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1035, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1775.01, 2870.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1135, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1036, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1772.09, 2871.32, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1136, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1037, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.45, 2867.55, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1137, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1038, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.76, 2868.77, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1138, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1039, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2618.75, 831, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1139, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1040, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.79, 2861.59, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1140, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1041, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.38, 2863.32, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1141, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1042, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1803.38, 2855.49, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1142, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1043, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.43, 2733.1, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1143, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1044, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2621.68, 802.98, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1144, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1045, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2621.67, 790.74, 48.58, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1145, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1046, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1803.48, 2855.57, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1146, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1047, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.51, 782.55, 44.86, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1147, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1048, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1824.3, 2734.53, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1148, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1049, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.49, 766.35, 36.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1149, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1050, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.51, 758.04, 35.33, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1150, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1051, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.52, 749.84, 31.42, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1151, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1052, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1663.17, 2754.14, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1152, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1053, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1652.51, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1153, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1054, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2627.54, 735.33, 30.59, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1154, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1055, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1643.83, 2753.45, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1155, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1056, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1627.15, 2710.76, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1156, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1057, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2625.47, 733.21, 28.01, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1157, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1058, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1626.81, 2754.14, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1158, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1059, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1608.72, 2754.14, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1159, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1060, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1601.25, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1160, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1061, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1599.56, 2757.6, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1161, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1062, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1580.26, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1162, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1063, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.19, 733.11, 28.14, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1163, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1064, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1570.28, 2711.11, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1164, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1065, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.21, 750.87, 33.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1165, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1066, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1565.47, 2757.04, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1166, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1067, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.2, 768.05, 40.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1167, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1068, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1564.78, 2776.51, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1168, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1069, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.19, 785.26, 46.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1169, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1070, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1565.47, 2793.43, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1170, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1071, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1550.64, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1171, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1072, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1575.89, 2844.17, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1172, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1073, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1601.78, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1173, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1074, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1618.36, 2800.79, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1174, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1075, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1622.73, 2846.07, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1175, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1076, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1637.79, 2801.48, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1176, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1077, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1632.76, 2843.65, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1177, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1078, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1654.7, 2800.79, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1178, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1079, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2240.52, 753.48, 49.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1179, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1080, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1664.77, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1180, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1081, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1672.95, 2800.79, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1181, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1082, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2240.53, 786.16, 49.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1182, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1083, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2223.7, 795.72, 49.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1183, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1084, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1555.97, 2658.52, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1184, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1085, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2205.42, 795.73, 50.48, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1185, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1086, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1573, 2657.83, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1186, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1087, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1607.61, 2679.27, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1187, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1088, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2187.03, 795.7, 57.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1188, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1089, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1611.76, 2648.22, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1189, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1090, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2168.82, 795.76, 64.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1190, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1091, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.21, 786.09, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1191, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1092, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.18, 770, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1192, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1093, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1265.47, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1193, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1094, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.23, 753.49, 69.51, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1194, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1095, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1225.27, 2584.94, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1195, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1096, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1223.02, 2616.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1196, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1097, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2168.52, 744.01, 64.98, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1197, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1098, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2186.9, 744, 57.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1198, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1099, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2205.46, 744, 50.48, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1199, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1100, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 0, 1731.8, 2855.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1200, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1101, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2223.71, 743.99, 49.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1201, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1102, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2238.31, 1154.14, 59.69, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1202, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1103, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2651.65, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1203, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1104, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2649.77, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1204, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1105, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2642.47, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1205, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1106, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2640.47, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1206, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1107, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2633.06, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1207, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1108, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.36, 1135.89, 67.26, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1208, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1109, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.15, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1209, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1110, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.89, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1210, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1111, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.87, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1211, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1112, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.33, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1212, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1113, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2633.24, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1213, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1114, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2640.46, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1214, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1115, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2642.55, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1215, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1116, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2649.89, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1216, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1117, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2238.36, 1117.54, 74.82, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1217, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1118, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2651.66, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1218, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1119, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2659.23, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1219, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1120, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2656.5, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1220, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1121, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2654.39, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1221, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1122, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2647.14, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1222, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1123, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.16, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1223, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1124, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2239.76, 1070.74, 81.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1224, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1125, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2637.68, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1225, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1126, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2635.83, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1226, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1127, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2239.75, 1054.09, 82.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1227, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1128, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2628.55, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1228, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1129, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2626.6, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1229, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1130, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2239.75, 1037.69, 83.85, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1230, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1131, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.48, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1231, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1132, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2643.76, 2019.21, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1232, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1133, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2636.22, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1233, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1134, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2634.43, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1234, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1135, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2626.93, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1235, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1136, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2230.58, 1028, 83.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1236, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1137, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2625.15, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1237, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1138, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2617.69, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1238, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1139, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2625.16, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1239, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1140, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2627.05, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1240, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1141, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2634.48, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1241, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1142, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2169.63, 1028.01, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1242, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1143, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2636.22, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1243, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1144, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2643.66, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1244, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1145, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.58, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1245, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1146, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2653.25, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1246, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1147, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2650.33, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1247, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1148, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2648.34, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1248, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1149, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2640.71, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1249, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1150, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2638.92, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1250, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1151, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.54, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1251, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1152, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2629.68, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1252, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1153, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2622.22, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1253, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1154, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2620.37, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1254, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1155, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 1030.61, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1255, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1156, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.92, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1256, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1157, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2617.54, 2019.21, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1257, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1158, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 1048.61, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1258, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1159, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2620.54, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1259, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1160, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2622.34, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1260, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1161, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2629.8, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1261, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1162, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.65, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1262, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1163, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2639.07, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1263, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1164, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2641.14, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1264, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1165, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2648.34, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1265, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1166, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2650.35, 2029.23, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1266, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1167, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2039.4, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1267, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1168, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2046.99, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1268, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1169, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2048.81, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1269, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1170, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2056.16, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1270, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1171, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2058.1, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1271, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1172, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2065.44, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1272, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1173, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2067.4, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1273, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1174, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2074.85, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1274, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1175, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2074.93, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1275, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1176, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2067.53, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1276, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1177, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2065.52, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1277, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1178, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2058.19, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1278, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1179, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2056.03, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1279, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1180, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2048.66, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1280, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1181, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2206.32, 691.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1281, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1182, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2046.85, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1282, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1183, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2039.52, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1283, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1184, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2042.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1284, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1185, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2044.19, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1285, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1186, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2051.56, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1286, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1187, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2053.43, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1287, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1188, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2060.92, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1288, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1189, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2062.75, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1289, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1190, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2070.18, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1290, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1191, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2072.07, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1291, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1192, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 1066.91, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1292, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1193, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2626.63, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1293, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1194, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2628.41, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1294, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1195, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2635.94, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1295, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1196, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2637.82, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1296, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1197, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.3, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1297, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1198, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2647.13, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1298, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1199, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2654.56, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1299, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1200, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2656.5, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1300, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1201, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2158.36, 1117.61, 74.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1301, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1202, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2659.19, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1302, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1203, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2158.36, 1148.65, 61.85, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1303, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1204, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2071.98, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1304, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1205, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2070.12, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1305, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1206, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2062.79, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1306, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1207, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.63, 2060.82, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1307, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1208, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2053.51, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1308, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1209, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2051.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1309, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1210, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2044.13, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1310, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1211, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2042.09, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1311, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1212, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2172.59, 1163.75, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1312, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1213, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2189.18, 1163.76, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1313, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1214, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2205.8, 1163.76, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1314, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1215, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2222.19, 1163.75, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1315, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1216, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2102.54, 1159.83, 53.27, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1316, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1217, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2084.2, 1159.83, 49.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1317, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1218, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2065.95, 1159.84, 46.65, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1318, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1219, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2013.25, 730.36, 11.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1319, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1220, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2014.13, 775.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1320, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1221, 4, 'Medium house at LV', 0, 0, 0, 150000, 950, 0, 2042.44, 731.26, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1321, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1222, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2043.24, 776.1, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1322, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1223, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1761.05, 1174.03, 25.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1323, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1224, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2065.13, 729.82, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1324, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1225, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -1742.62, 1174.05, 25.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1325, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1226, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2071.62, 776.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1326, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1227, 4, 'Medium house at LV', 0, 0, 0, 150000, 1500, 0, 2093.41, 730.36, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1327, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1228, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2094, 775.2, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1328, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1229, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1728.32, 1158.79, 30.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1329, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1230, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 0, 2122.3, 731.26, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1330, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1231, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2123.41, 776.1, 11.44, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1331, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1232, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1728.31, 1138.95, 38.57, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1332, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1233, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2169.36, 772.38, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1333, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1234, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2177.18, 690.35, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1334, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1235, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 0, 2228.68, 689.81, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1335, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1236, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2206, 736.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1336, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1237, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2177.61, 736.1, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1337, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1238, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2228.25, 735.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1338, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1239, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1929.89, 1190.53, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1339, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1240, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2256.98, 690.34, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1340, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1241, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1915.56, 1190.54, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1341, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1242, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2257.52, 736.11, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1342, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1243, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1872.07, 1146.71, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1343, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1244, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2317.15, 690.35, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1344, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1245, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1872.08, 1125.38, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1345, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1246, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2346.6, 736.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1346, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1247, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2346.35, 691.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1347, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1248, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2369.11, 735.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1348, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1249, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1901.41, 1203.19, 42.38, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1349, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1250, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2368.45, 689.8, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1350, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1251, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2398.36, 736.1, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1351, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1252, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2396.96, 690.34, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1352, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1253, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2450.27, 742.54, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1353, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1254, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1852.62, 1162.22, 40.94, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1354, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1255, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2450.81, 714.31, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1355, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1256, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 0, 2449.23, 689.74, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1356, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1257, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2450.27, 662.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1357, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1258, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2397.68, 656.11, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1358, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1259, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2368.38, 655.21, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1359, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1260, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2346.09, 656.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1360, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1261, 4, 'Medium house at LV', 0, 0, 0, 150000, 100, 0, 2317.81, 656.1, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1361, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1262, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1831.8, 1165.88, 33.68, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1362, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1263, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2258.11, 655.98, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1363, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1264, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2229.04, 655.18, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1364, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1265, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2206.41, 656.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1365, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1266, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2178.16, 655.99, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1366, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1267, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -1732.27, 1115.52, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1367, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1268, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2123.27, 651.31, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1368, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1269, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2120.44, 696.09, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1369, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1270, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -1776.18, 1115.52, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1370, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1271, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2091.24, 695.19, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1371, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1272, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2094.12, 650.4, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1372, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1273, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1780.11, 1138.79, 38.59, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1373, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1274, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2068.96, 696.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1374, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1275, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1780.12, 1158.76, 30.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1375, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1276, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2065.82, 649.86, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1376, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1277, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2040.71, 696.09, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1377, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1278, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 0, 2043.26, 651.31, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1378, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1279, 4, 'Medium house at LV', 0, 0, 0, 150000, 400, 0, 2011.61, 695.19, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1379, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1280, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 0, 2013.96, 650.4, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1380, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1281, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1820.68, 1117.26, 46.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1381, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1282, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1842.59, 1115.52, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1382, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1283, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1860.83, 1115.51, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1383, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1284, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.53, 719.4, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1384, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1285, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 719.48, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1385, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1286, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2024.5, 1275.93, 7.19, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1386, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1287, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.53, 713.24, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1387, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1288, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2029, 1275.91, 7.19, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1388, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1289, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1389, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1290, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1390, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1291, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.7, 719.52, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1391, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1292, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2043.83, 1261.38, 9.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1392, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1293, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1393, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1294, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.51, 719.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1394, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1295, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.51, 719.47, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1395, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1296, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 719.4, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1396, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1297, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.5, 713.38, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1397, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1298, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1398, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1299, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.11, 1336.27, 12.8, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1399, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1300, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1400, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1301, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.51, 719.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1401, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1302, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.14, 1336.15, 12.79, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1402, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1303, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.5, 719.58, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1403, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1304, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 719.53, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1404, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1305, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 0, 2532.51, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1405, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1306, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 713.2, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1406, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1307, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1318.02, 16.22, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1407, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1308, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.16, 1299.56, 19.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1408, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1309, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.14, 1281.29, 22.94, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1409, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1310, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 719.42, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1410, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1311, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 719.49, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1411, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1312, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 719.52, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1412, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1313, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1262.93, 26.32, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1413, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1314, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 719.58, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1414, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1315, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1244.69, 29.68, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1415, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1316, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 713.16, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1416, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1317, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 713.32, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1417, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1318, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1226.37, 33.03, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1418, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1319, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 713.27, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1419, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1320, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.13, 1226.35, 33.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1420, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1321, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 713.33, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1421, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1322, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.09, 1244.63, 29.69, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1422, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1323, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.51, 713.39, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1423, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1324, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.14, 1262.96, 26.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1424, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1325, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 713.22, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1425, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1326, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.12, 1281.31, 22.96, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1426, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1327, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.14, 1299.71, 19.6, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1427, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1328, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 713.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1428, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1329, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.12, 1317.95, 16.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1429, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1330, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.53, 713.25, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1430, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1331, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 713.25, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1431, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1332, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.51, 713.37, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1432, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1333, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2526.21, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1433, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1334, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2433.08, 1338.17, 8.51, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1434, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1335, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2526.13, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1435, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1336, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2525.97, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1436, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1337, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2526.04, 750.09, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1437, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1338, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.76, 1318.71, 13.87, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1438, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1339, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2434.02, 1311.06, 15.42, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1439, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1340, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.3, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1440, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1341, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.36, 750.09, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1441, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1342, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.07, 1301.14, 18.38, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1442, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1343, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.43, 750.09, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1443, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1344, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.36, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1444, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1345, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.77, 1281.61, 23.74, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1445, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1346, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2434, 1274.07, 25.31, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1446, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1347, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2433.06, 1264.12, 28.26, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1447, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1348, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.31, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1448, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1349, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.28, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1449, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1350, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.5, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1450, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1351, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.72, 1244.43, 33.62, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1451, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1352, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.5, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1452, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1353, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2477.24, 1244.31, 33.61, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1453, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1354, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2477.93, 1264.22, 28.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1454, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1355, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2476.93, 1274.28, 25.31, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1455, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1356, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.21, 742.55, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1456, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1357, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.38, 750.1, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1457, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1358, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.43, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1458, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1359, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2477.19, 1281.51, 23.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1459, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1360, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.53, 750.1, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1460, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1361, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2477.88, 1301.24, 18.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1461, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1362, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2476.93, 1311.23, 15.41, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1462, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1363, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2477.2, 1318.62, 13.85, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1463, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1364, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2477.87, 1338.25, 8.5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1464, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1365, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 0, 1845.44, 661.13, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1465, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1366, 4, 'Medium house at LV', 0, 0, 0, 150000, 200, 0, 1844.53, 690.45, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1466, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1367, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1843.99, 718.83, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1467, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1368, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1845.44, 741.39, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1468, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1369, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.45, 1087.64, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1469, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1370, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.5, 1069.28, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1470, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1371, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2126.44, 1050.91, 80.01, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1471, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1372, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2126.47, 1032.53, 80.01, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1472, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1373, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.44, 1014.24, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1473, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1374, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.47, 996.32, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1474, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1375, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.44, 978.49, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1475, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1376, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2129.63, 942.58, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1476, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1377, 4, '2 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2116.77, 927.83, 86.08, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1477, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1378, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2129.25, 895.04, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1478, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1379, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.4, 832.82, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1479, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1380, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.04, 774.13, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1480, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1381, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.08, 755.7, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1481, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1382, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2112.56, 746.41, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1482, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1383, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2094.2, 746.42, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1483, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1384, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2066.57, 746.06, 64.89, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1484, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1385, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2048.12, 746.08, 57.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1485, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1386, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2029.84, 746.08, 49.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1486, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1387, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.55, 748.04, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1487, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1388, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.54, 766.22, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1488, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1389, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.53, 784.82, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1489, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1390, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2029.85, 796.12, 49.47, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1490, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1391, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2048.22, 796.1, 57.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1491, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1392, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2066.44, 796.12, 64.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1492, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1393, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2094.25, 795.75, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1493, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1394, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2112.67, 795.75, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1494, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1395, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2112.63, 823.53, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1495, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1396, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2094.18, 823.55, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1496, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1397, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2066.48, 820.69, 64.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1497, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1398, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2048.12, 820.69, 57.03, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1498, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1399, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2029.81, 820.68, 49.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1499, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1400, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.54, 832.17, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1500, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1401, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2018.54, 849.28, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1501, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1402, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2018.53, 865.8, 45.44, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1502, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1403, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2016.35, 897.46, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1503, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1404, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2034.17, 901.47, 50.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1504, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1405, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, 0, -2075.25, 898.65, 64.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1505, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1406, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, 0, -2084.75, 898.65, 64.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1506, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1407, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2099.46, 897.38, 76.71, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1507, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1408, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2018.29, 970.07, 45.44, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1508, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1409, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.3, 982.71, 47.69, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1509, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1410, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.29, 1000.03, 50.78, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1510, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1411, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.3, 1016.93, 53.87, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1511, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1412, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 984.47, 2343.69, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1512, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1413, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 985.48, 2314.3, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1513, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1414, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 986.49, 2271.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1514, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1415, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 0, 956.9, 2270.27, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1515, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1416, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.81, 2028.11, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1516, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1417, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1029.36, 2005.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1517, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1418, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 985.41, 2000.59, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1518, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1419, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 984.51, 2030.18, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1519, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1420, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.21, 1154.89, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1520, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1421, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.16, 1165.04, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1521, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1422, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.27, 1976.01, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1522, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1423, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.25, 1171.55, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1523, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1424, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.09, 1178.76, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1524, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1425, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 983.97, 1978.2, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1525, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1426, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 984.7, 1930.83, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1526, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1427, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.81, 1928.11, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1527, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1428, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2904.7, 1118.82, 27.07, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1528, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1429, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 0, 1029.36, 1905.92, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1529, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1430, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2904.8, 1111.52, 27.07, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1530, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1431, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 985.41, 1901.04, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1531, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1432, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2904.47, 1101.11, 27.07, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1532, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1433, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 983.97, 1878.94, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1533, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1434, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.37, 1876.35, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1534, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1435, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.81, 1847.93, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1535, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1436, 4, 'LS Project', 0, 0, 0, 4000, 1500, 0, 2158.34, -1611.31, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1536, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1437, 4, 'LS Project', 0, 0, 0, 4000, 1000, 0, 2129.11, -1663.94, 15.09, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1537, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1438, 4, 'LS Project', 0, 0, 0, 4000, 100, 0, 2141.49, -1652.85, 15.09, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1538, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1439, 4, '*LS Project', 0, 0, 0, 4000, 95, 0, 2172.59, -1615.28, 14.28, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1539, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1440, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2179.08, -1600.11, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1540, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1441, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2165.56, -1590.49, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1541, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1442, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2151.2, -1598.49, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1542, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1443, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2150.4, -1583.96, 14.34, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1543, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1444, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2136, -1591.98, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1544, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1445, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2143.29, -1571.2, 14.19, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1545, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1446, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2158.51, -1577.71, 14.28, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1546, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1447, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2191.91, -1592.97, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1547, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1448, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2185.31, -1608.14, 14.36, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1548, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1449, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2143.12, -1604.72, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1549, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1450, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2068.14, -1588.86, 13.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1550, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1451, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2073.36, -1583.05, 13.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1551, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1452, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2065.33, -1583.36, 13.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1552, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1453, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2076.11, -1588.67, 13.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1553, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1454, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2072.5, -1559.31, 13.41, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1554, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1455, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2066.81, -1554.09, 13.43, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1555, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1456, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2066.96, -1562.17, 13.43, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1556, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1457, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2072.27, -1551.3, 13.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1557, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1458, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 0, 1852.3, -2019.63, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1558, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1459, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 2000, 0, 1852.33, -2021.36, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1559, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1460, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1857.1, -2035.08, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1560, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1461, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.71, -2035.04, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1561, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1462, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.87, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1562, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1463, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1864.98, -2021.37, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1563, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1464, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1864.95, -2019.64, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1564, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1465, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 50, 0, 1865.96, -2003.88, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1565, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1466, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1867.77, -2003.87, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1566, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1467, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.88, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1567, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1468, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1888.93, -2000.94, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1568, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1469, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1877.32, -2001.01, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1569, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1470, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.75, -1998.07, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1570, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1471, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1866.01, -1998.09, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1571, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1472, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 0, 1867.79, -1985.4, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1572, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1473, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1866, -1985.45, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1573, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1474, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1852.28, -1990.19, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1574, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1475, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 449, 0, 1852.33, -1991.81, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1575, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1476, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.96, -2001, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1576, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1477, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1849.4, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1577, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1478, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1895.53, -2019.67, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1578, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1479, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1895.53, -2021.36, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1579, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1480, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.99, -2037.96, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1580, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1481, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.37, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1581, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1482, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1905.98, -2035.08, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1582, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1483, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.71, -2035.05, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1583, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1484, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1913.96, -2021.43, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1584, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1485, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 450, 0, 1913.95, -2019.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1585, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1486, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1901.33, -2019.64, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1586, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1487, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1901.34, -2021.43, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1587, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1488, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.9, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1588, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1489, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.76, -2021.34, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1589, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1490, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.76, -2019.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1590, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1491, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.9, -2000.38, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1591, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1492, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.89, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1592, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1493, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.28, -2001.01, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1593, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1494, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 730, 0, 1913.95, -1993.45, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1594, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1495, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1913.92, -1991.56, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1595, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1496, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.29, -1982.51, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1596, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1497, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 1900.31, -1979.61, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1597, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1498, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.66, -1979.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1598, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1499, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.76, -1982.03, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1599, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1500, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.72, -1993.24, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1600, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1501, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.72, -1991.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1601, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1502, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1900.21, -1985.39, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1602, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1503, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 145, 0, 1898.54, -1985.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1603, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1504, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1900.25, -1998.04, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1604, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1505, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.49, -1998.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1605, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1506, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1870.76, -2019.59, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1606, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1507, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1870.76, -2021.39, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1607, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1508, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 1868.35, -2037.97, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1608, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1509, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.79, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1609, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1510, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1857.02, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1610, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1511, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1906.17, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1611, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1512, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.74, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1612, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1513, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.99, -2037.92, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1613, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1514, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.42, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1614, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1515, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1846.53, -2021.35, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1615, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1516, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1846.53, -2019.77, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1616, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1517, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.45, -2001.46, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1617, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1518, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1838.7, -1995.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1618, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1519, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1838.7, -1994.18, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1619, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1520, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1846.53, -1991.87, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1620, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1521, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1846.53, -1990.15, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1621, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1522, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.35, -1983.11, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1622, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1523, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.96, -1982.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1623, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1524, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1888.93, -1982.5, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1624, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1525, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1917.35, -2037.98, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1625, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1526, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1835.86, -2005.48, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1626, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1527, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1835.93, -1987.13, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1627, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1528, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1835.24, -1977.53, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1628, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1529, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1828.37, -1980.44, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1629, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1530, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1826.53, -1980.51, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1630, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1531, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 1817.51, -1987.13, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1631, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1532, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1816.89, -1977.5, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1632, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1533, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 1826.53, -1974.69, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1633, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1534, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 1828.07, -1974.69, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1634, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1535, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1832.9, -1994.11, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1635, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1536, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1820.28, -1995.94, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1636, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1537, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 0, 1820.24, -1994.23, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1637, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1538, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1817.43, -2005.49, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1638, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1539, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1814.47, -1995.92, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1639, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1540, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 1814.48, -1994.15, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1640, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1541, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.74, -1979.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1641, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1542, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1865.92, -1979.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1642, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1543, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1877.32, -1982.49, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1643, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1544, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1801.99, -2098.94, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1644, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1545, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1804.19, -2124.9, 13.94, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1645, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1546, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1781.45, -2101.27, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1646, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1547, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1782.09, -2126.37, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1647, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1548, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1761.17, -2125.45, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1648, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1549, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1762.39, -2101.98, 13.85, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1649, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1550, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1734.15, -2097.98, 14.04, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1650, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1551, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1734.62, -2130.35, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1651, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1552, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1715.06, -2125.45, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1652, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1553, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1711.67, -2101.24, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1653, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1554, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 0, 1695.52, -2125.83, 13.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1654, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1555, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1684.72, -2098.16, 13.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1655, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1556, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1673.68, -2122.46, 14.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1656, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1557, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1616.15, -1897.58, 13.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1657, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1558, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1610.88, -1893.88, 13.54, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1658, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1559, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1628.69, -1903.36, 13.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1659, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1560, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 0, 1325.95, -1067.65, 31.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1660, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1561, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1326.26, -1090.61, 27.98, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1661, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1562, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1285.27, -1090.28, 28.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1662, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1563, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1242.26, -1099.51, 27.98, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1663, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1564, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1241.94, -1076.43, 31.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1664, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1565, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1285.26, -1067.31, 31.68, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1665, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1566, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1189.01, -1018.12, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1666, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1567, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 5000, 0, 1196.48, -1016.99, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1667, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1568, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1188.19, -1011.88, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1668, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1569, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1195.68, -1010.91, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1669, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1570, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 0, 1188.19, -1011.89, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1670, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1571, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1195.69, -1010.93, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1671, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1572, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 0, 1189.01, -1018.09, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1672, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1573, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1196.5, -1017.15, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1673, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1574, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 500, 0, 1234.73, -1016.13, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1674, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1575, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 50, 0, 1227.25, -1017.18, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1675, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1576, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1233.93, -1010.05, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1676, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1577, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1226.44, -1011.03, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1677, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1578, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 1500, 0, 1234.73, -1016.15, 36.34, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1678, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1579, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1227.25, -1017.18, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1679, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1580, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1233.92, -1009.97, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1680, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1581, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1226.44, -1011.01, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1681, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1582, 4, 'House Near Vinewood', 0, 0, 0, 150000, 1, 0, 1127.97, -1021.17, 34.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1682, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1583, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1118.05, -1021.17, 34.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1683, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1584, 4, 'House Near Vinewood', 0, 0, 0, 150000, 500, 0, 1051.03, -1059.3, 34.8, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1684, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1585, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 993.76, -1059.03, 33.7, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1685, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1586, 4, 'Mansion', 0, 0, 0, 5250000, 0, 0, 952.61, -909.1, 45.76, 0, 0, 0, 0, -1, 1298.81, -796.66, 1084.01, 0, 5, 1686, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1587, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 0, 1411.1, -920.86, 38.42, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1687, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1588, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1440.67, -926.13, 39.65, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1688, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1589, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1421.78, -886.23, 50.69, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1689, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1590, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1468.54, -906.18, 54.83, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1690, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1591, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 1535.72, -885.25, 57.66, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1691, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1592, 4, 'Small House at Vinewood', 0, 0, 0, 400000, 100, 0, 1540.47, -851.44, 64.33, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1692, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1593, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1535.03, -800.17, 72.85, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1693, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1594, 4, 'House', 0, 0, 0, 150000, 0, 0, 1527.88, -772.64, 80.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1694, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1595, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 1442.68, -628.83, 95.72, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1695, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1596, 4, 'Fancy Mansion with swimming pool', 0, 0, 0, 550000, 1500, 0, 1331.99, -633.55, 109.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1696, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1597, 4, 'House at Vinewood', 0, 0, 0, 400000, 0, 0, 1094.99, -647.91, 113.65, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1697, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1598, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 1045.16, -642.94, 120.11, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1698, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1599, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 897.93, -677.11, 116.89, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1699, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1600, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 946.3, -710.69, 122.62, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1700, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1601, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 867.49, -717.58, 105.68, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1701, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1602, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 847.99, -745.51, 94.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1702, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1603, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 500, 0, 891.14, -783.17, 101.31, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1703, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1604, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1, 0, 808.26, -759.38, 76.53, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1704, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1605, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 785.96, -828.58, 70.29, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1705, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1606, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 497.37, -1095.07, 82.36, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1706, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1607, 4, 'House at Vinewood', 0, 0, 0, 550000, 0, 0, 416.77, -1154.12, 76.68, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1707, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1608, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1000, 0, 352.32, -1198, 76.51, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1708, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1609, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 355.07, -1281.19, 53.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1709, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1610, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 228.05, -1405.49, 51.61, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1710, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1611, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 470.76, -1163.56, 67.22, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1711, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1612, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 558.76, -1161.09, 54.43, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1712, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1613, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 552.94, -1200.28, 44.83, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1713, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1614, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 432.03, -1253.96, 51.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1714, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1615, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 612.17, -1085.92, 58.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1715, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1616, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 559.13, -1076.41, 72.92, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1716, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1617, 4, 'small house at vinewood', 0, 0, 0, 150000, 5000, 0, 648.31, -1058.72, 52.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1717, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1618, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 673.11, -1020.17, 55.76, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1718, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1619, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 700.26, -1060.32, 49.42, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1719, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1620, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 724.66, -999.36, 52.73, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1720, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1621, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 923.9, -853.41, 93.46, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1721, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1622, 4, 'small house at vinewood', 0, 0, 0, 150000, 100, 0, 937.8, -848.74, 93.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1722, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1623, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 910.39, -817.55, 103.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1723, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1624, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 977.38, -771.71, 112.2, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1724, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1625, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1017.02, -763.36, 112.56, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1725, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1626, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1034.81, -813.18, 101.85, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1726, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1627, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 1500, 0, 989.74, -828.69, 95.47, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1727, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1628, 4, 'UFO House at vinewood', 0, 0, 0, 1000000, 0, 0, 1093.97, -807.13, 107.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1728, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1629, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 835.97, -894.86, 68.76, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1729, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1630, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 827.82, -857.98, 70.33, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1730, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1631, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 0, 0, 1112.64, -742.11, 100.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1731, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1632, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 168.14, -1768.4, 4.49, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1732, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1633, 4, 'Beach House', 0, 0, 0, 100000, 0, 0, 192.81, -1769.39, 4.33, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1733, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1634, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 206.88, -1768.88, 4.37, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1734, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1635, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 280.89, -1767.07, 4.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1735, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1636, 4, 'house at the beach', 0, 0, 0, 100000, 500, 0, 295.24, -1764.12, 4.87, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1736, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1637, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 305.37, -1770.22, 4.54, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1737, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1638, 4, 'Beach House with Garage', 0, 0, 0, 400000, 0, 0, 315.88, -1769.43, 4.62, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1738, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1639, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 902.92, -1815.45, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1739, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1640, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1, 0, 905.04, -1815.69, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1740, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1641, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 500, 0, 908.59, -1816.07, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1741, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1642, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 910.78, -1816.31, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1742, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1643, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 914.56, -1816.73, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1743, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1644, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 916.72, -1816.97, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1744, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1645, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 920.34, -1817.37, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1745, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1646, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 922.53, -1817.62, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1746, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1647, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 926.28, -1818.04, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1747, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1648, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 928.38, -1818.28, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1748, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1649, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 931.92, -1818.69, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1749, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1650, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 934.05, -1818.93, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1750, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1651, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 961.13, -1823.96, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1751, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1652, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 963.25, -1824.51, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1752, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1653, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 966.74, -1825.36, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1753, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1654, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 968.93, -1825.9, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1754, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1655, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 972.5, -1826.77, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1755, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1656, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 974.56, -1827.28, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1756, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1657, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 978.14, -1828.16, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1757, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1658, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 980.19, -1828.67, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1758, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1659, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 20, 0, 983.92, -1829.58, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1759, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1660, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1000, 0, 985.97, -1830.08, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1760, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1661, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 989.48, -1830.95, 13.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1761, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1662, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 991.72, -1831.49, 13.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1762, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1663, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2581.51, -969.3, 81.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1763, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1664, 4, 'house near the beach', 0, 0, 0, 55000, 0, 0, 655.95, -1635.87, 15.86, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1764, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1665, 4, 'house near the beach', 0, 0, 0, 55000, 0, 0, 660.41, -1599.85, 15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1765, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1666, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2388.42, -1279.65, 25.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1766, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1667, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2387.85, -1328.54, 25.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1767, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1668, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2389.73, -1346.29, 25.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1768, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1669, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2383.53, -1366.2, 24.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1769, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1670, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 2288.22, -1104.66, 38.59, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1770, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1671, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2249.32, -1060.31, 55.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1771, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1672, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2259.52, -1019, 59.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1772, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1673, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2218.78, -1031.73, 60.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1773, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1674, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2208.02, -1026.56, 61.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1774, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1675, 4, 'trailer LS', 0, 0, 0, 2000, 200, 0, 2154.11, -979.9, 63.29, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1775, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1676, 4, 'trailer LS', 0, 0, 0, 2000, 100, 0, 2142.69, -978.15, 61.38, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1776, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1677, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2139.79, -1008.43, 61.99, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1777, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1678, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2108.87, -1000.77, 60.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1778, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1679, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2089.52, -996.24, 53.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1779, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1680, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2073.48, -965.18, 49.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1780, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1681, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2045.18, -965.92, 44.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1781, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1682, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 800, 0, 2049.21, -987.28, 44.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1782, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1683, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2044.66, -991.32, 43.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1783, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1684, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2015.59, -977.56, 36.95, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1784, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1685, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 2007.36, -984.58, 34.46, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1785, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1686, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 150, 0, 2000.2, -991.65, 32.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1786, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1687, 4, 'trailer LS', 0, 0, 0, 2000, 200, 0, 2131.94, -974, 59.78, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1787, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1688, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2122.04, -970.34, 58.21, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1788, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1689, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2051.26, -954.76, 48.03, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1789, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1690, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2278.66, -1077.38, 48.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1790, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1691, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2355.77, -1058.81, 54.08, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1791, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1692, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2348.01, -1047.59, 53.85, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1792, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1693, 4, 'trailer LS', 0, 0, 0, 2000, 100, 0, 2350.99, -1039.79, 54.33, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1793, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1694, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2355.53, -1038.58, 54.33, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1794, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1695, 4, 'trailer LS', 0, 0, 0, 2000, 250, 0, 2370.25, -1034.55, 54.41, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1795, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1696, 4, 'trailer LS', 0, 0, 0, 2000, 5000, 0, 2362.67, -1046.43, 54.27, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1796, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1697, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2335.19, -1046.01, 52.55, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1797, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1698, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2325.48, -1060.97, 52.47, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1798, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1699, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2330.22, -1060.9, 52.47, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1799, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1700, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2297.73, -1053.08, 49.93, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1800, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1701, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2284.19, -1046.09, 49.89, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1801, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1702, 4, 'trailer LS', 0, 0, 0, 2000, 15, 0, 2319.77, -1053.31, 52.46, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1802, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1703, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2462.41, -1011.12, 60.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1803, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1704, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 350, 0, 2457.77, -1054.54, 59.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1804, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1705, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2491.37, -1012.27, 65.4, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1805, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1706, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2479.67, -1064.01, 67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1806, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1707, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2512.8, -1027.16, 70.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1807, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1708, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2526.09, -1060.67, 69.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1808, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1709, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2534.48, -1063.48, 69.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1809, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1710, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2526.9, -1033.52, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1810, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1711, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2470.59, -1105.32, 44.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1811, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1712, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2457.08, -1102.5, 43.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1812, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1713, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2438.62, -1105.78, 43.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1813, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1714, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2407.91, -1106.97, 40.29, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1814, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1715, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2751.49, -1962.88, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1815, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1716, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2787.07, -1952.57, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1816, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1717, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2751.5, -1936.56, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1817, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1718, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2787.07, -1926.17, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1818, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1719, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2736.65, -1926.18, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1819, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1720, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2736.65, -1952.58, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1820, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1721, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2801.92, -1936.32, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1821, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1722, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2801.92, -1962.9, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1822, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1723, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2696.39, -1990.36, 14.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1823, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1724, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2672.71, -1989.47, 14.32, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1824, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1725, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2695.24, -2020.55, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1825, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1726, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2673.27, -2020.29, 14.17, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1826, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1727, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2650.7, -2021.8, 14.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1827, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1728, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 2635.61, -2012.93, 14.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1828, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1729, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2637.01, -1991.77, 14.32, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1829, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1730, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2652.78, -1989.43, 14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1830, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1731, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2486.36, -2021.55, 14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1831, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1732, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2483.52, -1995.34, 13.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1832, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1733, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2465.22, -2020.79, 14.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1833, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1734, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2465.1, -1995.75, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1834, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1736, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2508.32, -1998.36, 13.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1836, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1737, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 4000, 0, 2507.84, -2021.05, 14.21, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1837, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1738, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2522.75, -2019, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1838, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1739, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2524.44, -1998.39, 14.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1839, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1740, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1667.53, -2106.94, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1840, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1741, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 192.78, -1747.76, 4.3, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1841, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1742, 4, 'small house at vinewood', 0, 0, 0, 150000, 2000, 0, 142.5, -1470.27, 25.21, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1842, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1743, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 161.45, -1455.95, 32.84, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1843, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1744, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1059.16, -1105.14, 28.05, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1844, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1745, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1103.41, -1092.54, 28.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1845, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1746, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1103.4, -1069.59, 31.89, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1846, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1747, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 0, 1142.12, -1092.77, 28.19, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1847, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1748, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1183.47, -1098.93, 28.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1848, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1749, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1183.47, -1076.04, 31.68, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1849, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1750, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 0, 1141.81, -1069.99, 31.76, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1850, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1751, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2582.89, -952.93, 81.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1851, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1752, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2552.05, -958.43, 82.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1852, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1753, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2517.86, -965.39, 82.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1853, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1754, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2499.51, -947, 82.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1854, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1755, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2492.1, -965.64, 82.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1855, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1756, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2472.35, -962.04, 80.53, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1856, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1757, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2454.18, -964.96, 80.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1857, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1758, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2459.37, -947.7, 80.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1858, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1759, 4, 'house at the beach', 0, 0, 0, 100000, 500, 0, 992.68, -1817.65, 13.89, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1859, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1760, 4, 'house at the beach', 0, 0, 0, 100000, 5000, 0, 980.88, -1814.81, 13.89, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1860, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1761, 4, 'house at the beach', 0, 0, 0, 100000, 500, 0, 969.6, -1812.02, 13.88, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1861, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1762, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 958.07, -1809.17, 13.88, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1862, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1763, 4, 'house at the beach', 0, 0, 0, 100000, 1000, 0, 933.65, -1805.2, 13.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1863, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1764, 4, 'house at the beach', 0, 0, 0, 100000, 900, 0, 921.97, -1803.89, 13.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1864, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1765, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 910.27, -1802.69, 13.8, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1865, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1766, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 883.24, -1800.39, 13.8, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1866, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1767, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 866.66, -1798.94, 13.81, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1867, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1768, 4, 'Little House at Dillimore', 0, 0, 0, 60000, 0, 0, 795.25, -506.15, 18.01, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1868, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1769, 4, 'Little House at Dillimore', 0, 0, 0, 50000, 0, 0, 818.26, -509.32, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1869, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1770, 4, 'House at Dillimore', 0, 0, 0, 85000, 0, 0, 768.34, -503.48, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1870, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1771, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 0, 743.24, -509.32, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1871, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1772, 4, 'House at Dillimore', 0, 0, 0, 100000, 150, 0, 745.13, -556.78, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1872, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1773, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 0, 766.59, -556.78, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1873, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1774, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 0, 759.29, -592.03, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1874, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1775, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 0, 745.67, -591.14, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1875, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1776, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 261.96, -269.98, 1.64, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1876, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1777, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 264.51, -288.42, 1.73, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1877, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1778, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 260.6, -302.99, 1.92, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1878, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1779, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 253.25, -289.94, 1.7, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1879, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1780, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 255.91, -278.5, 1.66, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1880, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1781, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 238.92, -286.29, 1.63, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1881, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1782, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 235.13, -309.46, 1.71, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1882, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1783, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 226.55, -302.81, 1.93, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1883, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1784, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 264.51, -283.67, 1.73, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1884, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1785, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 253.53, -274.55, 1.66, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1885, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1786, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 242.01, -298.6, 1.69, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1886, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1787, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 178.28, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1887, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1788, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 189.31, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1888, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1789, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.3, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1889, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1790, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.46, -94.97, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1890, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1791, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 160.63, -102.57, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1891, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1792, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 160.63, -112.59, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1892, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1793, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.19, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1893, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1794, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 178.26, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1894, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1795, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.25, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1895, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1796, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 178.37, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1896, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1797, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.39, -94.97, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1897, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1798, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 207.07, -112.39, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1898, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1799, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.41, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1899, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1800, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 189.41, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1900, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1801, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.37, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1901, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1802, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.45, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1902, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1803, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 158.64, -112.62, 1.56, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1903, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1804, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 209.08, -112.6, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1904, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1805, 4, 'House at Blue Berry', 0, 0, 0, 110000, 0, 0, 252.88, -92.42, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1905, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1806, 4, 'House at Blue Berry', 0, 0, 0, 110000, 500, 0, 252.89, -121.31, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1906, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1807, 4, 'House at Blue Berry', 0, 0, 0, 130000, 0, 0, 267.69, -54.54, 2.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1907, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1808, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 0, 295.07, -54.55, 2.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1908, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1809, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 0, 312.72, -92.34, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1909, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1810, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 0, 312.72, -121.25, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1910, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1811, 4, 'Small House near Blue Berry', 0, 0, 0, 40000, 0, 0, 342.63, 62.72, 3.86, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1911, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1812, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 317.74, 54.61, 3.38, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1912, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1813, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 309.11, 44.42, 3.09, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1913, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1814, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 286.06, 41.15, 2.55, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1914, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1815, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 316.56, 18.27, 4.52, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1915, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1816, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 340.2, 33.45, 6.41, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1916, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1817, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2323.84, 162.27, 28.44, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1917, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1818, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2364, 187.28, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1918, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1819, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2364, 166.09, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1919, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1820, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1, 0, 2323.84, 191.22, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1920, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1821, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1000, 0, 2323.84, 136.42, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1921, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1822, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 1, 0, 2323.84, 116.14, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1922, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1823, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2364, 116.13, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1923, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1824, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, 71.08, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1924, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1825, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, 42.28, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1925, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1826, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, 21.98, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1926, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1827, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, -8.65, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1927, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1828, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2367.38, -49.13, 28.15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1928, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1829, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2392.29, -54.96, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1929, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1830, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2415.57, -5.7, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1930, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1831, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2438.78, -54.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1931, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1832, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2442.86, -4.04, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1932, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1833, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2488.38, 11.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1933, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1834, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2484.49, -28.39, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1934, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1835, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 0, 2513.28, -28.4, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1935, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1836, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 0, 2417.01, 17.88, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1936, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1837, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2549.23, 25.14, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1937, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1838, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2551.22, -5.51, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1938, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1839, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2551.22, 57.14, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1939, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1840, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2557.01, 87.89, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1940, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1841, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 5000, 0, 2536.24, 128.99, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1941, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1842, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2518.44, 128.99, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1942, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1843, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 0, 0, 2514.05, 94.39, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1943, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1844, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2480.62, 126.99, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1944, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1845, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 500, 0, 2462.76, 134.78, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1945, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1846, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2443.84, 92.26, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1946, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1847, 4, 'House At Palomino Creek', 0, 0, 0, 80000, 5000, 0, 2481.22, 64.37, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1947, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1848, 4, 'House At Palomino Creek', 0, 0, 0, 70000, 0, 0, 2479.34, 94.39, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1948, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1849, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 0, 2439.56, 24.5, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1949, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1850, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 0, 2448.42, -11.02, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1950, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1851, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 0, 2415.44, -52.28, 28.15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1951, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1852, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2398.34, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1952, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1853, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2269.5, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1953, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1854, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2249.3, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1954, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1855, 4, 'House At Palomino Creek', 0, 0, 0, 95000, 0, 0, 2203.84, 106.15, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1955, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1856, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 0, 2203.84, 62.28, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1956, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1857, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 0, 2270.49, -7.5, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1957, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1858, 4, 'House At Palomino Creek', 0, 0, 0, 190000, 0, 0, 2245.52, -1.66, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1958, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1859, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 0, 2199.95, -37.35, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1959, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1860, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 0, 2197.27, -60.67, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1960, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1861, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 0, 2203.1, -89.22, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1961, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1862, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 0, 2245.53, -122.29, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1962, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1863, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 0, 2272.45, -119.14, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1963, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1864, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2293.74, -124.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1964, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1865, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2322.25, -124.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1965, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1866, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2285.84, 161.77, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1966, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1867, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2266.49, 168.34, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1967, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1868, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2236.53, 168.3, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1968, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1869, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2413.54, 61.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1969, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1870, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 0, 2443.41, 61.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1970, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1871, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 0, 2509.5, 11.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1971, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1872, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 0, 2511.69, 57.22, 27.68, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1972, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1873, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1283.31, 158.37, 20.79, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1973, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1874, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1295.41, 174.55, 20.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1974, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1875, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 5000, 0, 1294.51, 157.65, 20.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1975, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1876, 4, 'Trailer at Montgomery', 0, 0, 0, 30000, 0, 0, 1299.14, 140.34, 20.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1976, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1877, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1303.61, 186.1, 20.54, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1977, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1878, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1300.44, 193.27, 20.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1978, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1879, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1315.63, 180.16, 20.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1979, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1880, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1311.76, 169.57, 20.63, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1980, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1881, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1307.29, 153.32, 20.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1981, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1882, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1409.27, 346.89, 19.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1982, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1883, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1403.22, 333.85, 18.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1983, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1884, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1415.88, 324.62, 18.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1984, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1885, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1428.64, 356.43, 18.88, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1985, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1886, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1413.14, 363.12, 19.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1986, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1887, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1419.53, 389.47, 19.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1987, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1888, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1475.32, 372.75, 19.66, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1988, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1889, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1465.74, 364.2, 19.26, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1989, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1890, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1469.66, 351.45, 18.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1990, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1891, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1451.58, 375.79, 19.4, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1991, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1892, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1447.45, 361.74, 18.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1992, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1893, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1461.13, 342.47, 18.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1993, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1894, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1434.89, 334.77, 18.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1994, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1895, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1488.61, 360.9, 19.41, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1995, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1896, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 723.71, 269.67, 22.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1996, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1897, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 705.47, 292.1, 20.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1997, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1898, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 719.07, 300.58, 20.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1998, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1899, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 746.4, 305, 20.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1999, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1900, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 747.13, 278.17, 27.22, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2000, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1901, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 748.16, 257.11, 27.09, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2001, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1902, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 1, 0, 748.43, 350.9, 20.59, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2002, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1903, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 0, 0, 808.07, 372.29, 19.45, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2003, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1904, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 500, 0, 783.17, 377.56, 21.3, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2004, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1905, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 5000, 0, 751.72, 375.22, 23.37, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2005, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1906, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 783.88, 352.59, 19.59, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2006, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1907, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 805.33, 358.37, 19.76, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2007, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1908, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 758.92, 375.02, 23.39, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2008, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1909, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 772.92, 348.27, 20.15, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2009, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1910, 4, 'Farm', 0, 0, 0, 75000, 0, 0, -1061.35, -1205.56, 129.76, 0, 0, 0, 0, -1, 2317.82, -1024.75, 1050.21, 0, 9, 2010, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1911, 4, 'Shack', 0, 0, 0, 75000, 0, 0, 1566.6, 23.26, 24.16, 0, 0, 0, 0, -1, 422.57, 2536.12, 10, 0, 10, 2011, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1912, 4, 'Ranch', 0, 0, 0, 25000, 0, 0, 870.4, -24.92, 63.99, 0, 0, 0, 0, -1, 422.29, 2536.68, 10, 0, 10, 2012, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1913, 4, 'Shack', 0, 0, 0, 1000000, 0, 0, -1051.73, 1549.97, 33.44, 0, 0, 0, 0, -1, 422.29, 2536.68, 10, 0, 10, 2013, 0, -1, 1); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1914, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1108.48, -606.32, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2014, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1915, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1098.4, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2015, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1916, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1088.51, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2016, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1917, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1078.4, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2017, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1918, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.39, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2018, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1919, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.51, -556.32, 17.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2019, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1920, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.51, -546.2, 18.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2020, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1921, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.51, -536.26, 19.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2021, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1922, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1108.68, -516.08, 20.73, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2022, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1923, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1098.55, -516.09, 19.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2023, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1924, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1088.67, -516.08, 18.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2024, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1925, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1078.69, -516.09, 17.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2025, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1926, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.6, -516.09, 16.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2026, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1927, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -481.08, 21.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2027, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1928, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -466.16, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2028, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1929, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -461.01, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2029, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1930, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -446.14, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2030, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1931, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -441.12, 21.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2031, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1932, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1140.85, -485.21, 20.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2032, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1933, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1150.99, -485.21, 21.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2033, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1934, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1160.85, -485.21, 22.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2034, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1935, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1170.93, -485.21, 23.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2035, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1936, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1181.01, -485.21, 24.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2036, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1937, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1207.81, -556.04, 22.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2037, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1938, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1207.81, -546.03, 23.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2038, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1939, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1207.8, -536.01, 24.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2039, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1940, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1208.62, -515.88, 26.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2040, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1941, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1218.7, -515.88, 27.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2041, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1942, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1228.62, -515.88, 28.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2042, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1943, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1238.57, -515.88, 29.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2043, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1944, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1248.61, -515.88, 30.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2044, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1945, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1210.81, -485.21, 25.52, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2045, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1946, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1220.87, -485.21, 26.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2046, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1947, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1230.72, -485.21, 27.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2047, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1948, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1240.87, -485.21, 28.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2048, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1949, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1250.85, -485.21, 29.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2049, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1950, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1260.8, -484.17, 31.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2050, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1951, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1270.66, -484.16, 33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2051, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1952, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1280.93, -484.16, 35.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2052, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1953, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1290.9, -484.17, 36.99, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2053, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1954, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1300.93, -484.16, 38.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2054, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1955, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -436.17, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2055, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1956, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -426.17, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2056, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1957, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -416.24, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2057, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1958, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.09, -408.74, 51.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2058, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1959, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.09, -398.62, 51.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2059, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1960, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.01, -386.14, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2060, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1961, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.02, -376.26, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2061, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1962, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.02, -366.29, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2062, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1963, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.1, -358.71, 51.61, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2063, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1964, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -346.21, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2064, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1965, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -336.23, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2065, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1966, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -326.23, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2066, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1967, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.11, -318.79, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2067, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1968, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.11, -308.72, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2068, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1969, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.1, -298.72, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2069, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1970, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1347.55, -293.39, 48.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2070, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1971, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1337.53, -293.39, 46.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2071, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1972, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1327.53, -293.39, 44.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2072, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1973, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1317.63, -293.39, 42.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2073, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1974, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1351.08, -274.15, 49.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2074, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1975, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1340.99, -274.15, 47.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2075, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1976, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1330.87, -274.16, 45.28, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2076, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1977, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1320.77, -274.16, 43.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2077, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1978, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1310.89, -274.16, 41.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2078, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1979, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1300.94, -274.17, 39.16, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2079, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1980, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1290.84, -274.17, 37.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2080, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1981, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1280.85, -274.18, 35.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2081, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1982, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1270.73, -274.17, 33.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2082, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1983, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1260.86, -274.19, 31.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2083, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1984, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1250.9, -274.2, 29.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2084, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1985, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1240.84, -274.2, 28.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2085, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1986, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1230.75, -274.2, 27.62, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2086, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1987, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1220.83, -274.2, 26.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2087, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1988, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1210.83, -274.21, 25.54, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2088, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1989, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1210.82, -293.45, 25.54, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2089, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1990, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1220.79, -293.45, 26.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2090, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1991, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1230.84, -293.45, 27.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2091, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1992, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1240.67, -293.43, 28.61, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2092, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1993, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1250.84, -293.45, 29.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2093, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1994, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1180.91, -293.45, 24.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2094, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1995, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1170.65, -293.45, 23.46, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2095, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1996, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1160.82, -293.45, 22.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2096, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1997, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1150.77, -293.45, 21.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2097, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1998, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1140.81, -293.45, 20.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2098, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (1999, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1111.69, -281.12, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2099, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2000, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1111.69, -291.18, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2100, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2001, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1111.69, -301.08, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2101, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2002, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -311.09, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2102, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2003, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -321.12, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2103, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2004, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -331.2, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2104, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2005, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -341.18, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2105, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2006, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -351.11, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2106, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2007, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.68, -366.12, 21.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2107, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2008, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1148.57, -366.12, 22.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2108, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2009, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1158.71, -366.12, 23.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2109, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2010, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1168.57, -366.12, 24.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2110, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2011, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1178.72, -366.12, 25.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2111, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2012, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1180.97, -334.19, 24.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2112, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2013, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1170.78, -334.19, 23.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2113, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2014, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1160.74, -334.19, 22.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2114, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2015, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1150.78, -334.19, 21.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2115, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2016, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1140.75, -334.19, 20.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2116, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2017, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -268.95, 19.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2117, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2018, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -258.65, 18.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2118, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2019, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -248.91, 17.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2119, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2020, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -238.83, 16.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2120, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2021, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -228.77, 15.51, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2121, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2022, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -188.85, 14.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2122, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2023, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -178.76, 13.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2123, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2024, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -168.88, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2124, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2025, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -158.82, 11.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2125, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2026, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.17, -148.87, 10.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2126, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2027, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.03, -146.68, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2127, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2028, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.03, -156.64, 12.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2128, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2029, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.03, -166.69, 13.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2129, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2030, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.02, -176.73, 14.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2130, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2031, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.02, -186.72, 15.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2131, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2032, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.09, -186.55, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2132, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2033, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -176.41, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2133, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2034, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -166.48, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2134, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2035, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -156.65, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2135, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2036, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -146.44, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2136, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2037, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.07, -246.55, 6.69, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2137, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2038, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.07, -256.65, 7.68, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2138, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2039, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.03, -296.67, 11.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2139, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2040, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.03, -306.61, 12.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2140, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2041, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.03, -316.62, 13.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2141, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2042, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.02, -326.75, 14.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2142, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2043, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.02, -336.54, 15.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2143, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2044, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 894.07, -464.94, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2144, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2045, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 860.88, -463.47, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2145, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2046, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.35, -400.24, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2146, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2047, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.29, -368.99, 12.6, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2147, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2048, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.29, -350.17, 10.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2148, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2049, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.28, -325.24, 8.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2149, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2050, 1, 'Safehouse', 0, 0, 0, 0, 0, 0, 890.41, -308.33, 8.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2150, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2051, 1, 'Projects', 0, 0, 0, 0, 0, 0, 944.05, -272.57, 4.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2151, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2052, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 942.95, -348.47, 9.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2152, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2053, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 867.21, -671.82, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2153, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2054, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 875.12, -671.3, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2154, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2055, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 872.96, -659.17, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2155, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2056, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 882.49, -708.41, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2156, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2057, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 854.34, -689.18, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2157, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2058, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 854.23, -759.09, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2158, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2059, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -119.92, -1379.99, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2159, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2060, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -129.3, -1380, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2160, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2061, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -134.95, -1389.72, 26.33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2161, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2062, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -149.13, -1382.05, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2162, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2063, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -140.61, -1385.4, 26.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2163, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2064, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -163.41, -1386.55, 26.34, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2164, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2065, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -153.9, -1382.77, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2165, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2066, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -168.32, -1382.13, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2166, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2067, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -176.51, -1384.51, 26.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2167, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2068, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -185.88, -1380.46, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2168, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2069, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -157.18, -1476.82, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2169, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2070, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -163.18, -1462.64, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2170, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2071, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -168.42, -1449.97, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2171, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2072, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -149.72, -1489.55, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2172, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2073, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -124.5, -1519.6, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2173, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2074, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -103.41, -1540.97, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2174, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2075, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -73.55, -1564.37, 26.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2175, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2076, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -50.96, -1575.5, 26.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2176, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2077, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -15.36, -1587.86, 26.21, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2177, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2078, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 15.51, -1590.52, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2178, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2079, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 125.07, -1489.57, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2179, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2080, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -742.4, 286.64, 55.29, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2180, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2081, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -677.95, 307.89, 59.85, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2181, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2082, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -554.83, 309.9, 70.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2182, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2083, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -491.27, 286.25, 74.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2183, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2084, 1, 'Mansion', 0, 0, 0, 250000, 0, 0, -380.6, 299.86, 63.92, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2184, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2085, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -832.62, 294.62, 41.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2185, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2086, 1, 'Projects', 0, 0, 0, 0, 0, 0, -458.33, -46.19, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2186, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2087, 1, 'Projects', 0, 0, 0, 0, 0, 0, -501.08, -64.36, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2187, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2088, 1, 'Projects', 0, 0, 0, 0, 0, 0, -521.21, -65.17, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2188, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2089, 1, 'Projects', 0, 0, 0, 0, 0, 0, -459.48, -25.3, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2189, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2090, 1, 'Projects', 0, 0, 0, 0, 0, 0, -468.29, 52.11, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2190, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2091, 1, 'Projects', 0, 0, 0, 0, 0, 0, -488.71, 51.2, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2191, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2092, 1, 'Projects', 0, 0, 0, 0, 0, 0, -546.12, 31.71, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2192, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2093, 1, 'Projects', 0, 0, 0, 0, 0, 0, -545.19, 11.49, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2193, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2094, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -789.69, -1212.64, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2194, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2095, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -797.15, -1213.46, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2195, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2096, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -797.43, -1217.4, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2196, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2097, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -803.89, -1202.53, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2197, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2098, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -805.51, -1197.92, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2198, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2099, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -811.25, -1181.36, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2199, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2100, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -810.78, -1177.46, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2200, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2101, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -803.38, -1176.86, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2201, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2102, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -801.07, -1182.84, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2202, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2103, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -807.4, -1187.39, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2203, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2104, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -817.18, -1166.56, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2204, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2105, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -818.59, -1161.96, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2205, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2106, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -813.84, -1147.13, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2206, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2107, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -819.99, -1151.34, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2207, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2108, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -823.63, -1145.27, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2208, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2109, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -823.28, -1141.7, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2209, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2110, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -815.79, -1141.42, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2210, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2111, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -828.82, -1131.07, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2211, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2112, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -830.02, -1126.36, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2212, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2113, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -834.29, -1109.49, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2213, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2114, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -833.38, -1106.25, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2214, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2115, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -831, -1115.65, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2215, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2116, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -824.42, -1111.64, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2216, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2117, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -825.86, -1106.34, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2217, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2118, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -838.46, -1095.65, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2218, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2119, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.43, -1090.78, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2219, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2120, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -832.84, -1077.57, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2220, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2121, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.62, -1080.14, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2221, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2122, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -842.75, -1074.18, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2222, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2123, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -841.66, -1071.16, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2223, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2124, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -834.22, -1071.72, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2224, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2125, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -846.31, -1034.93, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2225, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2126, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -847.9, -1018, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2226, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2127, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -848.65, -1001.6, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2227, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2128, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.55, -988.95, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2228, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2129, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.31, -981.23, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2229, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2130, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -850.77, -968.19, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2230, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2131, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -849.29, -951.89, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2231, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2132, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -833.4, -934.17, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2232, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2133, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -834.59, -940.38, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2233, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2134, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -844.7, -769.72, 12.66, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2234, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2135, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -845.79, -764.26, 12.66, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2235, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2136, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1192.55, -504.65, 10.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2236, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2137, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1193.41, -505.95, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2237, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2138, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1190.01, -508.94, 10.9, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2238, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2139, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1178.3, -475.48, 10.81, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2239, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2140, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1177.23, -470.62, 10.76, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2240, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2141, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1176.77, -475.23, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2241, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2142, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1182.65, -447.05, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2242, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2143, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1207.93, -477.02, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2243, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2144, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1215.94, -463.12, 10.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2244, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2145, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1214.25, -459.01, 10.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2245, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2146, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1215.79, -458.66, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2246, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2147, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1214.81, -434.73, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2247, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2148, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1216.02, -414.29, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2248, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2149, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1220.18, -394.39, 10.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2249, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2150, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1221.87, -398.81, 10.76, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2250, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2151, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1221.73, -394.22, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2251, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2152, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1190.03, -392.43, 10.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2252, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2153, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1195.05, -371.74, 10.92, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2253, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2154, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1193.68, -367.1, 10.9, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2254, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2155, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1193.5, -371.72, 14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2255, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2156, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1186.01, -420.01, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2256, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2157, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1164.05, -360.16, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2257, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2158, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1164.28, -358.39, 10.88, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2258, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2159, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1159.66, -359.92, 10.81, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2259, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2160, 2, 'Large House', 0, 0, 0, 0, 0, 0, -1131.96, -356.51, 15.04, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2260, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2161, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1118.77, -424.2, 11.52, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2261, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2162, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1120.06, -394.38, 10.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2262, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2163, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1120.34, -389.87, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2263, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2164, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1118.81, -389.63, 10.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2264, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2165, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1050.45, -55.8, 11.31, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2265, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2166, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1048.94, -63.38, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2266, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2167, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1052.15, -76.78, 10.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2267, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2168, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1052.41, -92.23, 11.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2268, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2169, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1038.58, -110.44, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2269, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2170, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1025.35, -109.01, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2270, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2171, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1011.3, -108.9, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2271, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2172, 2, 'Small House', 0, 0, 0, 0, 0, 0, -969.03, -125.16, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2272, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2173, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.42, -141.69, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2273, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2174, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.32, -159.96, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2274, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2175, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.98, -175.81, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2275, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2176, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.93, -194.17, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2276, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2177, 2, 'Small House', 0, 0, 0, 0, 0, 0, -971.47, -208.9, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2277, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2178, 2, 'Small House', 0, 0, 0, 0, 0, 0, -970.67, -225.57, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2278, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2179, 2, 'Small House', 0, 0, 0, 0, 0, 0, -970.98, -243.26, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2279, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2180, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -998.03, -237.5, 10.95, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2280, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2181, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -999.61, -241.49, 10.87, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2281, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2182, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1000.23, -237.58, 13.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2282, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2183, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1001.8, -220.75, 10.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2283, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2184, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1002.15, -209.04, 11.31, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2284, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2185, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1003.66, -200.93, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2285, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2186, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1000.5, -187.95, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2286, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2187, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1000.19, -171.7, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2287, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2188, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1002.35, -151.92, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2288, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2189, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.98, -106.02, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2289, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2190, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.32, -90.14, 10.92, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2290, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2191, 2, 'Small House', 0, 0, 0, 0, 0, 0, -998.54, -92.43, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2291, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2192, 2, 'Small House', 0, 0, 0, 0, 0, 0, -996.84, -77.86, 10.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2292, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2193, 2, 'Small House', 0, 0, 0, 0, 0, 0, -996.71, -65.69, 10.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2293, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2194, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.42, -72, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2294, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2195, 2, 'Small House', 0, 0, 0, 0, 0, 0, -969.9, -56.3, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2295, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2196, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -997.37, -21.25, 10.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2296, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2197, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -995.38, -17.39, 10.73, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2297, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2198, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -997.56, -17.12, 13.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2298, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2199, 2, 'Small House', 0, 0, 0, 0, 0, 0, -969.12, -40, 10.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2299, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2200, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.81, -22.63, 10.91, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2300, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2201, 2, 'Small House', 0, 0, 0, 0, 0, 0, -965.65, -6.91, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2301, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2202, 2, 'Small House', 0, 0, 0, 0, 0, 0, -967.16, 4.17, 11.31, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2302, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2203, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -979.66, 86.99, 10.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2303, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2204, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -985.78, 87.18, 10.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2304, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2205, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -993.11, 86.94, 10.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2305, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2206, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -1006.07, 87.25, 10.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2306, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2207, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -994, 105.07, 9.33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2307, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2208, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -981.44, 105.09, 9.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2308, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2209, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.15, 104.86, 9.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2309, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2210, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.15, 111.28, 9.23, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2310, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2211, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.11, 120.72, 9.24, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2311, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2212, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.29, 127.41, 9.24, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2312, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2213, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -960.85, 87.13, 10.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2313, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2214, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -967.22, 87.06, 10.22, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2314, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2215, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -954.9, 87.18, 10.26, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2315, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2216, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -949.21, 86.33, 10.29, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2316, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2217, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -951.57, 136.68, 9.3, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2317, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2218, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -962.8, 146.1, 9.4, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2318, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2219, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -979.32, 143.39, 9.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2319, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2220, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -985.23, 143.57, 9.22, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2320, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2221, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -992.6, 143.34, 9.24, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2321, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2222, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -998.35, 143.68, 9.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2322, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2223, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -981.63, 131.18, 9.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2323, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2224, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -993.96, 123.36, 9.28, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2324, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2225, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -940.06, 201.21, 9.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2325, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2226, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -948.04, 201.21, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2326, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2227, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -940.2, 201.22, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2327, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2228, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -933.92, 209.09, 9.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2328, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2229, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 233.34, 9.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2329, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2230, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 233.3, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2330, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2231, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 247.23, 12.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2331, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2232, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 240.95, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2332, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2233, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -923.37, 227.09, 9.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2333, 0, -1, 0); -INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES - (2234, 2, 'Mansion', 0, 0, 0, 0, 0, 0, -378.55, -556.1, 19.57, 0, 0, 0, 0, -1, -379.14, -551.65, 19.32, 0, 2, 100, 0, 0, 1); -/*!40000 ALTER TABLE `house_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.idea_main -CREATE TABLE IF NOT EXISTS `idea_main` ( - `idea_id` int(11) NOT NULL AUTO_INCREMENT, - `idea_server` int(11) NOT NULL DEFAULT 0, - `idea_who_added` int(11) NOT NULL DEFAULT 0, - `idea_when_added` bigint(20) NOT NULL DEFAULT 0, - `idea_script_ver` varchar(16) NOT NULL DEFAULT '0.0', - `idea_pos_x` float NOT NULL DEFAULT 0, - `idea_pos_y` float NOT NULL DEFAULT 0, - `idea_pos_z` float NOT NULL DEFAULT 0, - `idea_rot_z` float NOT NULL DEFAULT 0, - `idea_message` varchar(256) NOT NULL DEFAULT '(No Message)', - `idea_svr_start` int(32) NOT NULL DEFAULT 0, - `idea_session` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`idea_id`), - KEY `idea_server` (`idea_server`), - KEY `idea_who_added` (`idea_who_added`) -) ENGINE=InnoDB AUTO_INCREMENT=278 DEFAULT CHARSET=utf16 COMMENT='User Submitted Ideas'; - --- Dumping data for table gtac_roleplay.idea_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `idea_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `idea_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.ins_acct -CREATE TABLE IF NOT EXISTS `ins_acct` ( - `ins_acct_id` int(11) NOT NULL AUTO_INCREMENT, - `ins_acct_server` tinyint(2) NOT NULL DEFAULT 0, - `ins_acct_provider` int(11) NOT NULL DEFAULT 0, - `ins_acct_type` tinyint(2) NOT NULL DEFAULT 0, - `ins_acct_plan` int(11) NOT NULL DEFAULT 0, - `ins_acct_owner_type` int(11) NOT NULL DEFAULT 0, - `ins_acct_owner_id` int(11) NOT NULL DEFAULT 0, - `ins_acct_active` tinyint(1) NOT NULL DEFAULT 0, - `ins_acct_entity_type` int(11) NOT NULL DEFAULT 0, - `ins_acct_entity_id` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`ins_acct_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Insurance - Accounts'; - --- Dumping data for table gtac_roleplay.ins_acct: ~0 rows (approximately) -/*!40000 ALTER TABLE `ins_acct` DISABLE KEYS */; -/*!40000 ALTER TABLE `ins_acct` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.ins_acct_history -CREATE TABLE IF NOT EXISTS `ins_acct_history` ( - `ins_acct_history_id` int(11) NOT NULL AUTO_INCREMENT, - `ins_acct_history_acct` int(11) NOT NULL DEFAULT 0, - `ins_acct_history_type` int(11) NOT NULL DEFAULT 0, - `ins_acct_history_paid` int(11) NOT NULL DEFAULT 0, - `ins_acct_history_total` int(11) NOT NULL DEFAULT 0, - `ins_acct_history_deleted` tinyint(1) NOT NULL DEFAULT 0, - `ins_acct_history_comment` varchar(256) CHARACTER SET utf16 NOT NULL DEFAULT '0', - PRIMARY KEY (`ins_acct_history_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Insurance - Account History'; - --- Dumping data for table gtac_roleplay.ins_acct_history: ~0 rows (approximately) -/*!40000 ALTER TABLE `ins_acct_history` DISABLE KEYS */; -/*!40000 ALTER TABLE `ins_acct_history` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.ins_plan -CREATE TABLE IF NOT EXISTS `ins_plan` ( - `ins_plan_id` int(11) NOT NULL AUTO_INCREMENT, - `ins_plan_name` varchar(64) CHARACTER SET utf16 NOT NULL DEFAULT 'Unnamed', - `ins_plan_provider` int(11) NOT NULL DEFAULT 0, - `ins_plan_entity_type` int(11) NOT NULL DEFAULT 0, - `ins_plan_enabled` int(11) NOT NULL DEFAULT 0, - `ins_plan_setup_fee` int(11) NOT NULL DEFAULT 0, - `ins_plan_max_coverage` int(11) NOT NULL DEFAULT 0, - `ins_plan_min_coverage` int(11) NOT NULL DEFAULT 0, - `ins_plan_max_payout` int(11) NOT NULL DEFAULT 0, - `ins_plan_rate` int(11) NOT NULL DEFAULT 0, - `ins_plan_rate_multiplier` int(11) NOT NULL DEFAULT 0, - `ins_plan_minscore` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`ins_plan_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Insurance - Plans'; - --- Dumping data for table gtac_roleplay.ins_plan: ~0 rows (approximately) -/*!40000 ALTER TABLE `ins_plan` DISABLE KEYS */; -/*!40000 ALTER TABLE `ins_plan` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.ins_provider -CREATE TABLE IF NOT EXISTS `ins_provider` ( - `insurance_provider_id` mediumint(9) NOT NULL DEFAULT 0, - `insurance_provider_server` tinyint(2) NOT NULL DEFAULT 0, - `insurance_provider_name` varchar(64) NOT NULL DEFAULT '0', - `insurance_provider_type_flags` int(32) NOT NULL DEFAULT 0, - `insurance_provider_active` tinyint(1) NOT NULL DEFAULT 1, - `insurance_provider_owner_type` tinyint(1) NOT NULL DEFAULT 0, - `insurance_provider_owner_id` mediumint(9) NOT NULL DEFAULT 0, - PRIMARY KEY (`insurance_provider_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Insurance - Providers'; - --- Dumping data for table gtac_roleplay.ins_provider: ~0 rows (approximately) -/*!40000 ALTER TABLE `ins_provider` DISABLE KEYS */; -/*!40000 ALTER TABLE `ins_provider` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.int_main -CREATE TABLE IF NOT EXISTS `int_main` ( - `int_id` int(11) NOT NULL AUTO_INCREMENT, - `int_server` int(11) NOT NULL DEFAULT 0, - `int_name` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT 'Unnamed', - `int_type` int(11) NOT NULL DEFAULT 0, - `int_entrance_pos_x` float NOT NULL DEFAULT 0, - `int_entrance_pos_y` float NOT NULL DEFAULT 0, - `int_entrance_pos_z` float NOT NULL DEFAULT 0, - `int_entrance_rot_z` float NOT NULL DEFAULT 0, - `int_entrance_int` int(11) NOT NULL DEFAULT 0, - `int_entrance_vw` int(11) NOT NULL DEFAULT 0, - `int_exit_pos_x` float NOT NULL DEFAULT 0, - `int_exit_pos_y` float NOT NULL DEFAULT 0, - `int_exit_pos_z` float NOT NULL DEFAULT 0, - `int_exit_rot_z` float NOT NULL DEFAULT 0, - `int_exit_int` int(11) NOT NULL DEFAULT 0, - `int_exit_vw` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`int_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Interiors'; - --- Dumping data for table gtac_roleplay.int_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `int_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `int_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.item_main -CREATE TABLE IF NOT EXISTS `item_main` ( - `item_id` int(11) NOT NULL AUTO_INCREMENT, - `item_server` int(11) NOT NULL DEFAULT 0, - `item_type` int(11) NOT NULL DEFAULT 0, - `item_buy_price` int(11) NOT NULL DEFAULT 0, - `item_owner_type` int(11) NOT NULL DEFAULT 0, - `item_owner_id` int(11) NOT NULL DEFAULT 0, - `item_amount` int(11) NOT NULL DEFAULT 0, - `item_pos_x` float NOT NULL DEFAULT 0, - `item_pos_y` float NOT NULL DEFAULT 0, - `item_pos_z` float NOT NULL DEFAULT 0, - `item_int` int(11) NOT NULL DEFAULT 0, - `item_vw` int(11) NOT NULL DEFAULT 0, - `item_value` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`item_id`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Items'; - --- Dumping data for table gtac_roleplay.item_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `item_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `item_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.item_type -CREATE TABLE IF NOT EXISTS `item_type` ( - `item_type_id` int(11) NOT NULL AUTO_INCREMENT, - `item_type_server` int(11) NOT NULL DEFAULT 0, - `item_type_name` varchar(64) CHARACTER SET utf16 NOT NULL DEFAULT '', - `item_type_use_type` int(11) NOT NULL DEFAULT 0, - `item_type_use_id` int(11) NOT NULL DEFAULT 0, - `item_type_use_value` int(11) NOT NULL DEFAULT 0, - `item_type_order_price` int(11) NOT NULL DEFAULT 0, - `item_type_drop_type` int(11) NOT NULL DEFAULT 0, - `item_type_drop_model` int(11) NOT NULL DEFAULT 0, - `item_type_drop_pos_x` float NOT NULL DEFAULT 0, - `item_type_drop_pos_y` float NOT NULL DEFAULT 0, - `item_type_drop_pos_z` float NOT NULL DEFAULT 0, - `item_type_drop_rot_x` float NOT NULL DEFAULT 0, - `item_type_drop_rot_y` float NOT NULL DEFAULT 0, - `item_type_drop_rot_z` float NOT NULL DEFAULT 0, - `item_type_drop_scale_x` float NOT NULL DEFAULT 0, - `item_type_drop_scale_y` float NOT NULL DEFAULT 0, - `item_type_drop_scale_z` float NOT NULL DEFAULT 0, - `item_type_image_small` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT 'no-image.png', - `item_type_image_large` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT 'no-image.png', - `item_type_image_hotbar` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT 'no-image.png', - `item_type_size` int(11) NOT NULL DEFAULT 0, - `item_type_capacity` int(11) NOT NULL DEFAULT 0, - `item_type_demand_multiplier` float NOT NULL DEFAULT 1, - `item_type_supply_multiplier` float NOT NULL DEFAULT 1, - `item_type_risk_multiplier` float NOT NULL DEFAULT 1, - `item_type_enabled` tinyint(4) NOT NULL DEFAULT 1, - `item_type_delay_switch` int(11) NOT NULL DEFAULT 0, - `item_type_delay_use` int(11) NOT NULL DEFAULT 0, - `item_type_delay_pickup` int(11) NOT NULL DEFAULT 0, - `item_type_delay_put` int(11) NOT NULL DEFAULT 0, - `item_type_delay_take` int(11) NOT NULL DEFAULT 0, - `item_type_delay_give` int(11) NOT NULL DEFAULT 0, - `item_type_delay_drop` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`item_type_id`), - KEY `item_type_server` (`item_type_server`) -) ENGINE=InnoDB AUTO_INCREMENT=212 DEFAULT CHARSET=utf8 COMMENT='Item Types'; - --- Dumping data for table gtac_roleplay.item_type: ~194 rows (approximately) -/*!40000 ALTER TABLE `item_type` DISABLE KEYS */; -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (1, 1, 'Baseball Bat', 1, 1, 0, 25, 1, 172, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (5, 1, 'Colt 45', 1, 2, 0, 350, 1, 173, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 2, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (6, 1, 'Uzi', 1, 3, 0, 500, 1, 178, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (7, 1, 'Shotgun', 1, 4, 0, 450, 1, 176, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (8, 1, 'AK-47', 1, 5, 0, 1000, 1, 171, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (9, 1, 'M16', 1, 6, 0, 2000, 1, 180, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (10, 1, 'Sniper Rifle', 1, 7, 0, 2500, 1, 177, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (11, 1, 'RPG', 1, 8, 0, 10000, 1, 175, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 8, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (12, 1, 'Flamethrower', 1, 9, 0, 7500, 1, 181, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 6, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (13, 1, 'Molotov', 1, 10, 0, 150, 1, 174, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (14, 1, 'Grenade', 1, 11, 0, 500, 1, 170, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (15, 1, 'Remote', 1, 0, 0, 0, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (16, 1, 'Phone', 3, 0, 0, 250, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0.5, 1.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (25, 1, 'Radio', 32, 0, 0, 0, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (29, 1, 'Pot Seed', 13, 0, 0, 2, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (30, 1, 'Weed', 14, 0, 0, 20, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (31, 1, 'Meth', 16, 0, 0, 100, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (32, 1, 'Coke', 15, 0, 0, 250, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 4, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (33, 1, 'Wallet', 9, 0, 0, 10, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (34, 1, 'Crate', 9, 0, 0, 25, 1, 1343, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (35, 1, 'Outfit', 6, 0, 0, 50, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (36, 1, 'Megaphone', 15, 0, 0, 35, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (37, 1, 'Bottle of Water', 18, 1, 10, 3, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (38, 1, 'Can of Beer', 35, 3, 5, 5, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (39, 1, 'Bottle of Vodka', 35, 3, 5, 10, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (40, 1, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (41, 1, 'Handcuffs', 24, 0, 0, 100, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (42, 1, 'Rope', 25, 0, 0, 20, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (43, 1, 'Blindfold', 26, 0, 0, 20, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (44, 1, 'Bulletproof Vest', 28, 0, 0, 500, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 2, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (45, 1, 'Uniform', 6, 0, 0, 0, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (46, 1, 'Fire Extinguisher', 36, 0, 0, 0, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (47, 1, 'Tazer', 27, 2, 0, 350, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (48, 1, 'Pepper Spray', 38, 0, 0, 150, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (49, 1, 'Flashlight', 39, 0, 0, 35, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (50, 1, 'First Aid Kit', 29, 0, 50, 75, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (51, 1, 'AED', 29, 0, 100, 3000, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (52, 1, 'Morphine Syringe', 29, 0, 100, 650, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (54, 1, 'Cheeseburger', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (55, 1, 'Slice of Pizza', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (56, 1, 'Chicken Wing', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (57, 1, 'Pizza', 19, 0, 10, 15, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 0, 750, 750, 750, 500, 500); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (58, 1, 'Walkie Talkie', 31, 0, 0, 50, 0, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 0, 750, 750, 750, 750, 750); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (61, 1, 'Bottle of Soda', 35, 2, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (62, 1, 'Can of Soda', 35, 2, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (63, 1, 'Badge', 34, 0, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (64, 2, 'Brass Knuckles', 1, 1, 0, 25, 0, 259, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (65, 2, 'Screwdriver', 1, 2, 0, 10, 0, 260, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (66, 2, 'Golf Club', 1, 3, 0, 40, 0, 261, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (67, 2, 'Nitestick', 1, 4, 0, 40, 0, 262, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (68, 2, 'Knife', 1, 5, 0, 35, 0, 263, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (69, 2, 'Baseball Bat', 1, 6, 0, 25, 0, 264, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (70, 2, 'Hammer', 1, 7, 0, 12, 0, 265, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (71, 2, 'Meat Cleaver', 1, 8, 0, 12, 0, 266, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (72, 2, 'Machete', 1, 9, 0, 100, 0, 267, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (73, 2, 'Katana', 1, 10, 0, 250, 0, 268, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (74, 2, 'Chainsaw', 1, 11, 0, 350, 0, 269, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (75, 2, 'Grenade', 1, 12, 0, 500, 0, 270, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (76, 2, 'Remote Grenade', 1, 13, 0, 1000, 0, 270, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (77, 2, 'Teargas', 1, 14, 0, 150, 0, 271, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (78, 2, 'Molotov Cocktail', 1, 15, 0, 150, 0, 272, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (79, 2, 'Rocket (Unfirable)', 1, 16, 0, 0, 0, 273, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (80, 2, 'Colt .45', 1, 17, 0, 350, 0, 274, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (81, 2, 'Python', 1, 18, 0, 450, 0, 275, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (82, 2, 'Shotgun', 1, 19, 0, 450, 0, 277, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (83, 2, 'Spaz Shotgun', 1, 20, 0, 1250, 0, 278, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (84, 2, 'Stubby Shotgun', 1, 21, 0, 350, 0, 279, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (85, 2, 'Tec-9', 1, 22, 0, 500, 0, 281, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (86, 2, 'Uzi', 1, 23, 0, 550, 0, 282, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (87, 2, 'Ingram', 1, 24, 0, 575, 0, 283, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (88, 2, 'MP5', 1, 25, 0, 800, 0, 284, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (89, 2, 'M4', 1, 26, 0, 1500, 0, 280, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (90, 2, 'Ruger', 1, 27, 0, 1250, 0, 276, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (91, 2, 'Sniper Rifle', 1, 28, 0, 1500, 0, 285, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (92, 2, 'Laser Sniper', 1, 29, 0, 2000, 0, 286, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (93, 2, 'RPG', 1, 30, 0, 5000, 0, 287, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (94, 2, 'Flame Thrower', 1, 31, 0, 3000, 0, 288, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (95, 2, 'M60', 1, 32, 0, 10000, 0, 289, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (96, 2, 'Minigun', 1, 33, 0, 25000, 0, 290, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (97, 2, 'Camera', 1, 34, 0, 25, 0, 292, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (98, 2, 'Detonator', 1, 36, 0, 0, 0, 291, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (99, 2, 'Phone', 3, 0, 0, 250, 1, 258, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (100, 2, 'Radio', 32, 0, 0, 0, 1, 291, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (101, 2, 'Pot Seed', 13, 0, 0, 2, 1, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (102, 2, 'Weed', 14, 0, 0, 20, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (103, 2, 'Meth', 16, 0, 0, 100, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (104, 2, 'Coke', 15, 0, 0, 250, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (105, 2, 'Wallet', 9, 0, 0, 10, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (106, 2, 'Crate', 9, 0, 0, 25, 1, 349, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (107, 2, 'Cardboard Box', 9, 0, 0, 25, 1, 346, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (108, 2, 'Barrel', 9, 0, 0, 25, 1, 342, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (109, 2, 'Outfit', 6, 0, 0, 50, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (110, 2, 'Megaphone', 15, 0, 0, 35, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (111, 2, 'Bottle of Water', 18, 1, 10, 3, 1, 596, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (112, 2, 'Can of Beer', 35, 3, 5, 5, 1, 594, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (113, 2, 'Bottle of Vodka', 35, 3, 5, 10, 1, 596, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (114, 2, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 592, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (115, 2, 'Handcuffs', 24, 0, 0, 100, 0, 502, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (116, 2, 'Rope', 25, 0, 0, 20, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (117, 2, 'Blindfold', 26, 0, 0, 20, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (118, 2, 'Bulletproof Vest', 28, 0, 0, 0, 1, 500, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (119, 2, 'Uniform', 6, 0, 0, 0, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (120, 2, 'Fire Extinguisher', 36, 0, 0, 0, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (121, 2, 'Tazer', 27, 17, 0, 350, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (122, 2, 'Pepper Spray', 38, 0, 0, 150, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (123, 2, 'Flashlight', 39, 0, 0, 35, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (124, 2, 'First Aid Kit', 29, 0, 50, 75, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (125, 2, 'AED', 29, 0, 100, 3000, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (126, 2, 'Morphine Syringe', 29, 0, 100, 650, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (127, 2, 'Cheeseburger', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (128, 2, 'Slice of Pizza', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (129, 2, 'Chicken Wing', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (130, 2, 'Pizza', 19, 0, 10, 15, 0, 510, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (131, 2, 'Walkie Talkie', 31, 0, 0, 50, 0, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (132, 2, 'Bottle of Soda', 35, 2, 0, 0, 0, 597, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (133, 2, 'Can of Soda', 35, 2, 0, 0, 0, 594, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (134, 2, 'Badge', 34, 0, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (135, 4, 'Brass Knuckles', 1, 1, 0, 25, 0, 331, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (136, 4, 'Golf Club', 1, 2, 0, 40, 0, 333, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (137, 4, 'Nightstick', 1, 3, 0, 40, 0, 334, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (138, 4, 'Knife', 1, 4, 0, 35, 0, 335, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (139, 4, 'Baseball Bat', 1, 5, 0, 25, 0, 336, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (140, 4, 'Shovel', 1, 6, 0, 10, 0, 337, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (141, 4, 'Pool Cue', 1, 7, 0, 15, 0, 338, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (142, 4, 'Katana', 1, 8, 0, 250, 0, 339, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (143, 4, 'Chainsaw', 1, 9, 0, 350, 0, 341, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (144, 4, 'Purple Dildo', 1, 10, 0, 30, 0, 321, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (145, 4, 'Dildo', 1, 11, 0, 10, 0, 322, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (146, 4, 'Vibrator', 1, 12, 0, 25, 0, 323, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (147, 4, 'Silver Vibrator', 1, 13, 0, 15, 0, 324, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (148, 4, 'Flowers', 1, 14, 0, 10, 0, 325, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (149, 4, 'Cane', 1, 15, 0, 10, 0, 326, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (150, 4, 'Grenade', 1, 16, 0, 500, 0, 342, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (151, 4, 'Tear Gas', 1, 17, 0, 150, 0, 343, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (152, 4, 'Molotov Cocktail', 1, 18, 0, 150, 0, 344, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (153, 4, '9mm', 1, 22, 0, 350, 0, 346, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (154, 4, 'Silenced 9mm', 1, 23, 0, 400, 0, 347, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (155, 4, 'Desert Eagle', 1, 24, 0, 500, 0, 348, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (156, 4, 'Shotgun', 1, 25, 0, 450, 0, 349, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (157, 4, 'Sawnoff Shotgun', 1, 26, 0, 400, 0, 350, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (158, 4, 'Combat Shotgun', 1, 27, 0, 1250, 0, 351, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (159, 4, 'Micro SMG/Uzi', 1, 28, 0, 550, 0, 352, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (160, 4, 'MP5', 1, 29, 0, 800, 0, 353, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (161, 4, 'AK-47', 1, 30, 0, 850, 0, 355, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (162, 4, 'M4', 1, 31, 0, 1500, 0, 356, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (163, 4, 'Tec-9', 1, 32, 0, 500, 0, 372, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (164, 4, 'Country Rifle', 1, 33, 0, 1100, 0, 357, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (165, 4, 'Sniper Rifle', 1, 34, 0, 1500, 0, 358, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (166, 4, 'RPG', 1, 35, 0, 5000, 0, 359, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (167, 4, 'HS Rocket', 1, 36, 0, 7500, 0, 360, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (168, 4, 'Flamethrower', 1, 37, 0, 3000, 0, 361, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (169, 4, 'Minigun', 1, 38, 0, 25000, 0, 362, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (170, 4, 'Satchel Charge', 1, 39, 0, 3000, 0, 363, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (171, 4, 'Detonator', 1, 40, 0, 0, 0, 364, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (172, 4, 'Spraycan', 1, 41, 0, 10, 0, 365, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (173, 4, 'Pepper Spray', 1, 41, 0, 15, 0, 365, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (174, 4, 'Fire Extinguisher', 1, 42, 0, 35, 0, 366, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (175, 4, 'Camera', 1, 43, 0, 25, 0, 367, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (176, 4, 'Night Vision Goggles', 1, 44, 0, 300, 0, 368, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (177, 4, 'Thermal Goggles', 1, 45, 0, 500, 0, 369, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (178, 4, 'Parachute', 1, 46, 0, 100, 0, 371, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (179, 4, 'Phone', 3, 0, 0, 250, 1, 330, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (180, 4, 'Radio', 32, 0, 0, 0, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (181, 4, 'Pot Seed', 13, 0, 0, 2, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (182, 4, 'Weed', 14, 0, 0, 20, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (183, 4, 'Meth', 16, 0, 0, 100, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (184, 4, 'Coke', 15, 0, 0, 250, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (185, 4, 'Wallet', 9, 0, 0, 10, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (186, 4, 'Crate', 9, 0, 0, 25, 1, 1271, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (187, 4, 'Barrel', 9, 0, 0, 25, 1, 3632, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (188, 4, 'Outfit', 6, 0, 0, 50, 1, 1275, 0, 0, -1.1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (189, 4, 'Megaphone', 15, 0, 0, 35, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (190, 4, 'Bottle of Water', 18, 1, 10, 3, 1, 1484, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (191, 4, 'Can of Beer', 35, 3, 5, 5, 1, 594, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (192, 4, 'Bottle of Vodka', 35, 3, 5, 10, 1, 1484, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (193, 4, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 1512, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (194, 4, 'Handcuffs', 24, 0, 0, 100, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (195, 4, 'Rope', 25, 0, 0, 20, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (196, 4, 'Blindfold', 26, 0, 0, 20, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (197, 4, 'Bulletproof Vest', 28, 0, 0, 0, 1, 373, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (198, 4, 'Uniform', 6, 0, 0, 0, 1, 1275, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (199, 4, 'Tazer', 27, 23, 0, 350, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (200, 4, 'Flashlight', 39, 0, 0, 35, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (201, 4, 'First Aid Kit', 29, 0, 50, 75, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (202, 4, 'AED', 29, 0, 100, 3000, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (203, 4, 'Morphine Syringe', 29, 0, 100, 650, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (204, 4, 'Cheeseburger', 19, 0, 10, 5, 0, 2880, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (205, 4, 'Slice of Pizza', 19, 0, 10, 5, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (206, 4, 'Chicken Wing', 19, 0, 10, 5, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (207, 4, 'Pizza', 19, 0, 10, 15, 0, 1582, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (208, 4, 'Walkie Talkie', 31, 0, 0, 50, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (209, 4, 'Bottle of Soda', 35, 2, 0, 0, 0, 1544, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (210, 4, 'Can of Soda', 35, 2, 0, 0, 0, 2601, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES - (211, 4, 'Badge', 34, 0, 0, 0, 0, 1581, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); -/*!40000 ALTER TABLE `item_type` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.job_bl -CREATE TABLE IF NOT EXISTS `job_bl` ( - `job_bl_id` int(11) NOT NULL AUTO_INCREMENT, - `job_bl_job` int(11) NOT NULL DEFAULT 0, - `job_bl_sacct` int(11) NOT NULL DEFAULT 0, - `job_bl_when_added` int(11) NOT NULL DEFAULT 0, - `job_bl_who_added` int(11) NOT NULL DEFAULT 0, - `job_bl_deleted` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`job_bl_id`), - KEY `job_bl_job` (`job_bl_job`), - KEY `job_bl_sacct` (`job_bl_sacct`), - KEY `job_bl_who_added` (`job_bl_who_added`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job - Blacklist'; - --- Dumping data for table gtac_roleplay.job_bl: ~0 rows (approximately) -/*!40000 ALTER TABLE `job_bl` DISABLE KEYS */; -/*!40000 ALTER TABLE `job_bl` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.job_equip -CREATE TABLE IF NOT EXISTS `job_equip` ( - `job_equip_id` int(11) NOT NULL AUTO_INCREMENT, - `job_equip_job` int(11) NOT NULL DEFAULT 0, - `job_equip_minrank` int(11) NOT NULL DEFAULT 0, - `job_equip_name` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '0', - `job_equip_enabled` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`job_equip_id`), - KEY `job_equip_job` (`job_equip_job`) -) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Job Equipments'; - --- Dumping data for table gtac_roleplay.job_equip: ~20 rows (approximately) -/*!40000 ALTER TABLE `job_equip` DISABLE KEYS */; -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (1, 1, 0, 'Police Officer', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (2, 2, 0, 'Police Officer', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (3, 3, 0, 'Police Officer', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (4, 4, 0, 'Police Officer', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (5, 1, 1, 'Detective', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (6, 2, 1, 'Detective', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (7, 3, 1, 'Detective', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (8, 4, 1, 'Detective', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (9, 1, 2, 'SWAT', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (10, 2, 2, 'SWAT', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (11, 3, 2, 'SWAT', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (12, 4, 2, 'SWAT', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (13, 1, 3, 'Supervisor', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (14, 2, 3, 'Supervisor', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (15, 3, 3, 'Supervisor', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (16, 4, 3, 'Supervisor', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (17, 9, 0, 'Firefighter', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (18, 10, 0, 'Firefighter', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (19, 11, 0, 'Firefighter', 1); -INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES - (20, 12, 0, 'Firefighter', 1); -/*!40000 ALTER TABLE `job_equip` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.job_equip_item -CREATE TABLE IF NOT EXISTS `job_equip_item` ( - `job_equip_item_id` int(11) NOT NULL AUTO_INCREMENT, - `job_equip_item_equip` int(11) NOT NULL DEFAULT 0, - `job_equip_item_type` int(11) NOT NULL DEFAULT 0, - `job_equip_item_value` int(11) NOT NULL DEFAULT 0, - `job_equip_item_enabled` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`job_equip_item_id`) USING BTREE, - KEY `job_equip_item_equip` (`job_equip_item_equip`), - KEY `job_equip_item_type` (`job_equip_item_type`) -) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 COMMENT='Job Equipments - Items'; - --- Dumping data for table gtac_roleplay.job_equip_item: ~36 rows (approximately) -/*!40000 ALTER TABLE `job_equip_item` DISABLE KEYS */; -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (1, 1, 1, 1, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (2, 1, 5, 50, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (3, 1, 7, 20, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (4, 5, 5, 150, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (5, 9, 1, 1, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (6, 9, 5, 250, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (7, 9, 7, 50, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (8, 9, 9, 500, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (9, 9, 10, 15, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (10, 13, 1, 1, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (11, 13, 5, 50, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (12, 13, 6, 300, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (13, 13, 7, 50, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (14, 17, 46, 500, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (15, 17, 50, 1, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (16, 1, 58, 1, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (18, 4, 137, 1, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (19, 4, 153, 150, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (20, 4, 156, 20, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (21, 8, 155, 150, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (22, 8, 175, 50, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (23, 4, 208, 0, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (24, 4, 194, 1, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (25, 16, 155, 150, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (26, 16, 156, 20, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (27, 16, 160, 300, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (29, 12, 162, 500, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (30, 12, 165, 30, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (31, 16, 158, 100, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (32, 12, 151, 5, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (33, 20, 174, 99999, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (34, 8, 211, 1, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (35, 16, 211, 1, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (37, 4, 199, 5, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (38, 1, 41, 1, 1); -INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES - (39, 1, 47, 5, 1); -/*!40000 ALTER TABLE `job_equip_item` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.job_loc -CREATE TABLE IF NOT EXISTS `job_loc` ( - `job_loc_id` int(11) NOT NULL AUTO_INCREMENT, - `job_loc_job` int(11) NOT NULL DEFAULT 0, - `job_loc_pos_x` float NOT NULL DEFAULT 0, - `job_loc_pos_y` float NOT NULL DEFAULT 0, - `job_loc_pos_z` float NOT NULL DEFAULT 0, - `job_loc_enabled` float NOT NULL DEFAULT 0, - `job_loc_uniform` int(11) NOT NULL DEFAULT 0, - `job_loc_int` int(11) NOT NULL DEFAULT 0, - `job_loc_vw` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`job_loc_id`), - KEY `job_loc_job` (`job_loc_job`) -) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8 COMMENT='Job - Locations'; - --- Dumping data for table gtac_roleplay.job_loc: ~51 rows (approximately) -/*!40000 ALTER TABLE `job_loc` DISABLE KEYS */; -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (1, 1, 1143.87, -675.18, 14.97, 1, 1, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (3, 5, -1253, -138.18, 58.75, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (4, 2, 401.94, -482.55, 12.34, 1, 3, 12, 5326); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (5, 2, 508.96, 512.07, 12.1, 1, 3, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (6, 2, -657.43, 762.31, 11.59, 1, 3, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (7, 6, -885.08, -470.44, 13.11, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (8, 4, 254.38, 77.72, 1003.64, 1, 0, 6, 2); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (11, 5, 1144.25, -596.87, 14.97, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (12, 1, -1259.5, -44.5, 58.89, 1, 1, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (13, 5, 183.5, -17.75, 16.21, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (14, 9, 1103.7, -52.45, 7.49, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (15, 9, -78.48, -436.8, 16.17, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (16, 9, -1202.1, -14.67, 53.2, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (17, 13, 1229.2, -740.1, 15.17, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (18, 17, -57.1661, -334.266, 16.9324, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (19, 17, 0, 0, 0, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (20, 17, 1310.2, -1016.3, 14.88, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (21, 21, -66.8, -932.2, 16.47, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (22, 21, 1121.8, 27.8, 1.99, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (23, 3, 894.99, -357.39, 18.185, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (24, 3, 435.4, 1592.29, 17.353, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (25, 3, 974.93, 1870.45, 23.073, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (26, 3, 1233.25, -89.13, 28.034, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (27, 3, 50.12, 679.88, 15.316, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (28, 3, 85.21, 1189.82, 14.755, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (29, 3, 2170.87, 448.87, 6.085, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (30, 3, 213.12, -211.7, 10.752, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (31, 3, -1714.95, 276.31, 22.134, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (32, 3, -1220.73, -231.53, 3.024, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (33, 3, -927.66, 1263.63, 24.587, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (34, 6, -826.06, 1144.41, 12.41, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (35, 2, 401.94, -482.55, 12.34, 1, 3, 12, 5291); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (36, 10, -698.22, 942.38, 11.08, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (37, 18, -1146.06, -285.65, 11.2, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (38, 14, -994.88, 185.1, 12.43, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (39, 6, 493.14, 709.31, 11.8, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (40, 22, -1264.42, 6.05, 11.45, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (41, 8, 1172.96, -1323.42, 15.4, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (42, 8, 2034.04, -1405.07, 17.24, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (43, 24, 2309.22, -2088.32, 13.55, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (44, 20, 1765.89, -1885.48, 13.55, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (45, 16, 1808.64, -1938.58, 13.55, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (46, 12, 1133.7, -1312.92, 13.58, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (47, 4, 2290.49, 2430.09, 10.82, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (48, 12, 1744.95, 2082.8, 10.82, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (49, 4, -1605.38, 711.5, 13.87, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (50, 8, -2655.15, 638.72, 14.45, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (51, 12, -2026.34, 67.17, 28.69, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (52, 17, -1130.99, -177.76, 43.72, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (53, 1, 345.588, -1122.58, 25.9809, 1, 0, 0, 0); -INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES - (60, 4, 254.643, 77.1645, 1003.64, 1, 0, 6, 5230); -/*!40000 ALTER TABLE `job_loc` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.job_main -CREATE TABLE IF NOT EXISTS `job_main` ( - `job_id` int(11) NOT NULL AUTO_INCREMENT, - `job_server` int(11) NOT NULL DEFAULT 0, - `job_enabled` int(11) NOT NULL DEFAULT 1, - `job_name` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT 'Unnamed', - `job_pickup` int(11) NOT NULL DEFAULT 0, - `job_type` int(11) NOT NULL DEFAULT 0, - `job_blip` int(11) NOT NULL DEFAULT 0, - `job_colour_r` int(11) NOT NULL DEFAULT 255, - `job_colour_g` int(11) NOT NULL DEFAULT 255, - `job_colour_b` int(11) NOT NULL DEFAULT 255, - `job_whitelist` tinyint(1) NOT NULL DEFAULT 0, - `job_blacklist` tinyint(1) NOT NULL DEFAULT 0, - `job_walkietalkiefreq` int(11) NOT NULL DEFAULT 5000, - PRIMARY KEY (`job_id`), - KEY `job_server` (`job_server`) -) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='Jobs'; - --- Dumping data for table gtac_roleplay.job_main: ~24 rows (approximately) -/*!40000 ALTER TABLE `job_main` DISABLE KEYS */; -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (1, 1, 1, 'Police', 1383, 1, 0, 70, 150, 200, 0, 0, 268500); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (2, 2, 1, 'Police', 375, 1, 0, 70, 130, 180, 0, 0, 233400); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (3, 3, 1, 'Police', 0, 1, 0, 70, 130, 180, 0, 0, 656700); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (4, 4, 1, 'Police', 1247, 1, 30, 70, 130, 180, 0, 0, 788500); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (5, 1, 1, 'Paramedic', 1362, 2, 0, 219, 112, 147, 0, 0, 696500); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (6, 2, 1, 'Paramedic', 366, 2, 0, 219, 112, 147, 0, 0, 466500); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (7, 3, 1, 'Paramedic', 0, 2, 0, 219, 112, 147, 0, 0, 855700); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (8, 4, 1, 'Paramedic', 1240, 2, 22, 219, 112, 147, 0, 0, 239800); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (9, 1, 1, 'Firefighter', 1364, 3, 0, 205, 92, 92, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (10, 2, 1, 'Firefighter', 365, 3, 0, 205, 92, 92, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (11, 3, 1, 'Firefighter', 0, 3, 0, 205, 92, 92, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (12, 4, 1, 'Firefighter', 1318, 3, 20, 205, 92, 92, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (13, 1, 1, 'Taxi Driver', 1361, 5, 0, 240, 230, 140, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (14, 2, 1, 'Taxi Driver', 365, 5, 0, 240, 230, 140, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (15, 3, 1, 'Taxi Driver', 0, 5, 0, 240, 230, 140, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (16, 4, 1, 'Taxi Driver', 1318, 5, 0, 240, 230, 140, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (17, 1, 1, 'Bus Driver', 1361, 4, 0, 50, 205, 50, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (18, 2, 1, 'Bus Driver', 365, 4, 0, 50, 205, 50, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (19, 3, 1, 'Bus Driver', 0, 4, 0, 50, 205, 50, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (20, 4, 1, 'Bus Driver', 1318, 4, 0, 50, 205, 50, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (21, 1, 1, 'Trash Collector', 1351, 6, 0, 150, 150, 150, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (22, 2, 1, 'Trash Collector', 365, 6, 0, 150, 150, 150, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (23, 3, 1, 'Trash Collector', 0, 6, 0, 150, 150, 150, 0, 0, 0); -INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES - (24, 4, 1, 'Trash Collector', 1318, 6, 0, 150, 150, 150, 0, 0, 0); -/*!40000 ALTER TABLE `job_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.job_uniform -CREATE TABLE IF NOT EXISTS `job_uniform` ( - `job_uniform_id` int(11) NOT NULL AUTO_INCREMENT, - `job_uniform_job` int(11) NOT NULL DEFAULT 0, - `job_uniform_skin` int(11) NOT NULL DEFAULT 0, - `job_uniform_enabled` tinyint(1) NOT NULL DEFAULT 0, - `job_uniform_minrank` int(11) NOT NULL DEFAULT 0, - `job_uniform_name` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT 'Unnamed', - PRIMARY KEY (`job_uniform_id`), - KEY `job_uniform_job` (`job_uniform_job`) -) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8 COMMENT='Jobs - Uniforms'; - --- Dumping data for table gtac_roleplay.job_uniform: ~60 rows (approximately) -/*!40000 ALTER TABLE `job_uniform` DISABLE KEYS */; -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (1, 1, 1, 1, 0, 'Police Officer 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (2, 1, 92, 1, 0, 'Police Officer 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (3, 2, 1, 1, 0, 'Police Officer 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (4, 2, 120, 1, 0, 'Officer Lance Vance'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (5, 2, 97, 1, 1, 'Detective 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (6, 2, 98, 1, 1, 'Detective 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (7, 2, 99, 1, 1, 'Detective 3'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (8, 2, 100, 1, 1, 'Detective 4'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (9, 2, 101, 1, 1, 'Detective 5'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (10, 2, 102, 1, 1, 'Detective 6'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (11, 4, 280, 1, 0, 'Los Santos Police Officer'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (12, 4, 281, 1, 0, 'San Fierro Police Officer'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (13, 4, 282, 1, 0, 'Las Venturas Police Officer'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (14, 4, 284, 1, 0, 'Motorcycle Cop'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (15, 4, 165, 1, 0, 'Detective 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (16, 4, 166, 1, 0, 'Detective 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (17, 4, 285, 1, 2, 'SWAT'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (18, 4, 283, 1, 3, 'Sheriff 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (19, 4, 288, 1, 3, 'Sheriff 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (20, 4, 265, 1, 0, 'Officer Frank Tenpenny'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (21, 4, 266, 1, 0, 'Officer Eddie Pulaski'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (22, 4, 267, 1, 0, 'Officer Jimmy Hernandez'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (23, 3, -183203150, 1, 0, 'Police Officer 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (24, 3, -1518937979, 1, 0, 'Police Officer 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (25, 3, -370395528, 1, 0, 'Fat Police Officer'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (26, 3, -999506922, 1, 1, 'Detective 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (27, 5, 5, 1, 0, 'Paramedic 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (28, 5, 72, 1, 0, 'Paramedic 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (29, 5, 73, 1, 0, 'Paramedic 3'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (30, 6, 5, 1, 0, 'Paramedic 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (31, 6, 5, 1, 0, 'Paramedic 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (32, 7, -1175077216, 1, 0, 'Paramedic 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (33, 8, 274, 1, 0, 'Paramedic 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (34, 8, 275, 1, 0, 'Paramedic 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (35, 8, 276, 1, 0, 'Paramedic 3'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (36, 11, -610224615, 1, 0, 'Firefighter'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (37, 11, 610888851, 1, 0, 'Fire Chief'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (38, 11, 277, 1, 0, 'Firefighter 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (39, 12, 278, 1, 0, 'Firefighter 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (40, 12, 279, 1, 0, 'Firefighter 3'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (42, 13, 8, 1, 0, 'Taxi Driver 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (43, 14, 8, 1, 0, 'Taxi Driver 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (44, 16, 7, 1, 0, 'Taxi Driver 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (45, 16, 142, 1, 0, 'Taxi Driver 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (46, 17, 8, 1, 0, 'Bus Driver 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (47, 18, 8, 1, 0, 'Bus Driver 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (48, 20, 7, 1, 0, 'Bus Driver 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (49, 20, 142, 1, 0, 'Bus Driver 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (50, 21, 53, 1, 0, 'Garbage Collector 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (51, 21, 54, 1, 0, 'Garbage Collector 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (52, 22, 53, 1, 0, 'Garbage Collector 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (53, 22, 54, 1, 0, 'Garbage Collector 2'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (54, 24, 16, 1, 0, 'Garbage Collector 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (55, 23, 1136499716, 1, 0, 'Garbage Collector 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (56, 19, 134077503, 1, 0, 'Bus Driver 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (57, 15, 8772846, 1, 0, 'Taxi Driver 1'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (58, 3, -89302119, 1, 3, 'State Trooper'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (59, 3, -1004762946, 1, 2, 'SWAT'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (60, 2, 166, 1, 0, 'Officer Tommy Vercetti'); -INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES - (61, 9, 6, 1, 0, 'Firefighter'); -/*!40000 ALTER TABLE `job_uniform` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.job_wl -CREATE TABLE IF NOT EXISTS `job_wl` ( - `job_wl_id` int(11) NOT NULL AUTO_INCREMENT, - `job_wl_job` int(11) NOT NULL DEFAULT 0, - `job_wl_sacct` int(11) NOT NULL DEFAULT 0, - `job_wl_who_added` int(11) NOT NULL DEFAULT 0, - `job_wl_when_added` int(11) NOT NULL DEFAULT 0, - `job_wl_enabled` int(11) NOT NULL DEFAULT 1, - PRIMARY KEY (`job_wl_id`), - KEY `job_wl_job` (`job_wl_job`), - KEY `job_wl_sacct` (`job_wl_sacct`), - KEY `job_wl_who_added` (`job_wl_who_added`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Jobs - Whitelist'; - --- Dumping data for table gtac_roleplay.job_wl: ~0 rows (approximately) -/*!40000 ALTER TABLE `job_wl` DISABLE KEYS */; -/*!40000 ALTER TABLE `job_wl` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.log_admin -CREATE TABLE IF NOT EXISTS `log_admin` ( - `log_admin_id` int(11) NOT NULL AUTO_INCREMENT, - `log_admin_target` int(11) NOT NULL DEFAULT 0, - `log_admin_msg` varchar(128) NOT NULL DEFAULT '', - `log_admin_type` int(11) NOT NULL DEFAULT 0, - `log_admin_admin` int(11) NOT NULL DEFAULT 0, - `log_admin_timestamp` int(32) NOT NULL DEFAULT 0, - PRIMARY KEY (`log_admin_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Log - Admin Actions'; - --- Dumping data for table gtac_roleplay.log_admin: ~0 rows (approximately) -/*!40000 ALTER TABLE `log_admin` DISABLE KEYS */; -/*!40000 ALTER TABLE `log_admin` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.log_chat -CREATE TABLE IF NOT EXISTS `log_chat` ( - `log_chat_id` int(11) NOT NULL AUTO_INCREMENT, - `log_chat_server` int(11) NOT NULL DEFAULT 0, - `log_chat_sacct` int(11) NOT NULL DEFAULT 0, - `log_chat_type` int(11) NOT NULL DEFAULT 0, - `log_chat_msg` varchar(128) NOT NULL DEFAULT '', - `log_chat_timestamp` int(32) NOT NULL DEFAULT 0, - PRIMARY KEY (`log_chat_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Log - Game Chat'; - --- Dumping data for table gtac_roleplay.log_chat: ~0 rows (approximately) -/*!40000 ALTER TABLE `log_chat` DISABLE KEYS */; -/*!40000 ALTER TABLE `log_chat` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.log_conn -CREATE TABLE IF NOT EXISTS `log_conn` ( - `log_conn_id` int(11) NOT NULL AUTO_INCREMENT, - `log_conn_name` varchar(64) NOT NULL DEFAULT 'Unknown', - `log_conn_server` int(11) NOT NULL DEFAULT 0, - `log_conn_ip` int(11) NOT NULL DEFAULT 0, - `log_conn_when_connect` int(32) NOT NULL DEFAULT 0, - `log_conn_when_disconnect` int(32) NOT NULL DEFAULT 0, - `log_conn_gameversion` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`log_conn_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Log - Connections'; - --- Dumping data for table gtac_roleplay.log_conn: ~0 rows (approximately) -/*!40000 ALTER TABLE `log_conn` DISABLE KEYS */; -/*!40000 ALTER TABLE `log_conn` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.log_death -CREATE TABLE IF NOT EXISTS `log_death` ( - `log_death_id` int(11) NOT NULL AUTO_INCREMENT, - `log_death_server` int(11) NOT NULL DEFAULT 0, - `log_death_who_died` int(11) NOT NULL DEFAULT 0, - `log_death_who_killed` int(11) NOT NULL DEFAULT 0, - `log_death_timestamp` int(32) NOT NULL DEFAULT 0, - `log_death_pedpiece` int(11) NOT NULL DEFAULT 0, - `log_death_weapon` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`log_death_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Log - Deaths'; - --- Dumping data for table gtac_roleplay.log_death: ~0 rows (approximately) -/*!40000 ALTER TABLE `log_death` DISABLE KEYS */; -/*!40000 ALTER TABLE `log_death` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.log_pns -CREATE TABLE IF NOT EXISTS `log_pns` ( - `log_pns_id` int(11) NOT NULL AUTO_INCREMENT, - `log_pns_pns` int(11) DEFAULT 0, - `log_pns_when_used` int(32) DEFAULT 0, - `log_pns_conn` int(11) DEFAULT 0, - `log_pns_veh` int(11) DEFAULT 0, - `log_pns_action` float DEFAULT 0, - `log_pns_paid` int(11) DEFAULT 0, - `log_pns_detail` int(11) DEFAULT 0, - PRIMARY KEY (`log_pns_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Log - Pay and Spray'; - --- Dumping data for table gtac_roleplay.log_pns: ~0 rows (approximately) -/*!40000 ALTER TABLE `log_pns` DISABLE KEYS */; -/*!40000 ALTER TABLE `log_pns` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.npc_cond -CREATE TABLE IF NOT EXISTS `npc_cond` ( - `npc_cond_id` int(11) NOT NULL AUTO_INCREMENT, - `npc_cond_npc` int(11) NOT NULL DEFAULT 0, - `npc_cond_trig` int(11) NOT NULL DEFAULT 0, - `npc_cond_type` int(11) NOT NULL DEFAULT 0, - `npc_cond_data` varchar(11) NOT NULL DEFAULT '0', - `npc_cond_logic` varchar(11) NOT NULL DEFAULT '0', - `npc_cond_enabled` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`npc_cond_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='NPCs - Action Conditions'; - --- Dumping data for table gtac_roleplay.npc_cond: ~0 rows (approximately) -/*!40000 ALTER TABLE `npc_cond` DISABLE KEYS */; -/*!40000 ALTER TABLE `npc_cond` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.npc_main -CREATE TABLE IF NOT EXISTS `npc_main` ( - `npc_id` int(11) NOT NULL AUTO_INCREMENT, - `npc_server` tinyint(2) NOT NULL DEFAULT 0, - `npc_name` varchar(128) NOT NULL DEFAULT '', - `npc_model` int(11) NOT NULL DEFAULT 0, - `npc_type_flags` int(32) NOT NULL DEFAULT 0, - `npc_ped_health` int(4) NOT NULL DEFAULT 100, - `npc_ped_armour` int(4) NOT NULL DEFAULT 0, - `npc_ped_threats` int(32) NOT NULL DEFAULT 0, - `npc_ped_heedthreats` tinyint(1) NOT NULL DEFAULT 0, - `npc_ped_stay` tinyint(1) NOT NULL DEFAULT 1, - `npc_ped_walkstyle` int(11) NOT NULL DEFAULT 0, - `npc_owner_type` int(11) DEFAULT NULL, - `npc_owner_id` int(11) DEFAULT NULL, - PRIMARY KEY (`npc_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='NPCs'; - --- Dumping data for table gtac_roleplay.npc_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `npc_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `npc_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.npc_resp -CREATE TABLE IF NOT EXISTS `npc_resp` ( - `npc_resp_id` int(11) NOT NULL AUTO_INCREMENT, - `npc_resp_npc` int(11) NOT NULL DEFAULT 0, - `npc_resp_type` int(11) NOT NULL DEFAULT 0, - `npc_resp_trig` int(11) NOT NULL DEFAULT 0, - `npc_resp_data` varchar(11) NOT NULL DEFAULT '0', - `npc_resp_logic` varchar(11) NOT NULL DEFAULT '0', - `npc_resp_enabled` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`npc_resp_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='NPCs - Action Responses'; - --- Dumping data for table gtac_roleplay.npc_resp: ~0 rows (approximately) -/*!40000 ALTER TABLE `npc_resp` DISABLE KEYS */; -/*!40000 ALTER TABLE `npc_resp` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.npc_trig -CREATE TABLE IF NOT EXISTS `npc_trig` ( - `npc_trig_id` int(11) NOT NULL AUTO_INCREMENT, - `npc_trig_npc` int(11) NOT NULL DEFAULT 0, - `npc_trig_type` int(11) NOT NULL DEFAULT 0, - `npc_trig_enabled` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`npc_trig_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='NPCs - Action Triggers'; - --- Dumping data for table gtac_roleplay.npc_trig: ~0 rows (approximately) -/*!40000 ALTER TABLE `npc_trig` DISABLE KEYS */; -/*!40000 ALTER TABLE `npc_trig` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.radio_main -CREATE TABLE IF NOT EXISTS `radio_main` ( - `radio_id` smallint(6) NOT NULL DEFAULT 0, - `radio_name` varchar(64) NOT NULL DEFAULT '', - `radio_url` text NOT NULL, - `radio_enabled` tinyint(4) NOT NULL DEFAULT 0, - `radio_genre` varchar(32) NOT NULL DEFAULT '', - `radio_codec` int(11) NOT NULL DEFAULT 0 -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Radio Stations'; - --- Dumping data for table gtac_roleplay.radio_main: ~14 rows (approximately) -/*!40000 ALTER TABLE `radio_main` DISABLE KEYS */; -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (0, 'Wild Rock Radio', 'http://209.133.216.3:7100/;?1587459616178', 1, 'Rock/Heavy Metal', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (3, 'KRXQ', 'http://208.80.54.70/KRXQFM_SC', 1, 'Rock', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (11, '181.FM The Buzz', 'https://listen.181fm.com/181-buzz_128k.mp3', 1, 'Rock/Alternative', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (4, 'KCNV-FM', 'http://208.80.54.70/KRXQFM_SC', 1, 'Rock', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (12, '100 XR', 'https://broadcast.miami/proxy/westend?mp=/stream/', 1, 'Disco', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (6, 'Hanks Old Time Radio', 'https://streamfinder.info/streamproxy/stream-proxy.php?lid=43393', 1, 'Talk & Oldies', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (2, 'RadioActiveFM Dance', 'https://streamradioactive.co.uk/radio/8000/radio.mp3?1612741824', 1, 'Electronic Dance', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (7, 'FuturePop Radio', 'https://ais-edge09-live365-dal02.cdnstream.com/a73808', 1, 'Synthpop & Electronic Dance', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (10, '70s Great Hits', 'https://streamfinder.info/streamproxy/stream-proxy.php?lid=70412', 1, '60s, 70s, and 80s Hits', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (5, 'Jake Radio', 'https://streamfinder.info/streamproxy/stream-proxy.php?lid=77328', 1, 'Hip-Hop & Top 40', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (8, 'Club Lux: Euphoria Pop', 'https://streamfinder.info/streamproxy/stream-proxy.php?lid=76580', 1, 'Pop & Top 40', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (1, 'Rother Radio', 'https://streamfinder.info/streamproxy/stream-proxy.php?lid=76567', 1, 'Pop & Contemporary', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (9, 'Angel Fire Radio', 'https://ais-edge09-live365-dal02.cdnstream.com/a63504', 1, '2000s and Pop', 1); -INSERT INTO `radio_main` (`radio_id`, `radio_name`, `radio_url`, `radio_enabled`, `radio_genre`, `radio_codec`) VALUES - (13, 'AmpUpRadio', 'https://api.ampupradio.com:8443/TOP40.mp3', 1, 'Pop/Top Hits', 1); -/*!40000 ALTER TABLE `radio_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.sacct_main -CREATE TABLE IF NOT EXISTS `sacct_main` ( - `sacct_id` int(11) NOT NULL AUTO_INCREMENT, - `sacct_acct` int(11) NOT NULL DEFAULT 0, - `sacct_server` int(11) NOT NULL DEFAULT 0, - `sacct_name_first` varchar(50) NOT NULL DEFAULT '', - `sacct_name_last` varchar(50) NOT NULL DEFAULT '', - `sacct_name_middle` varchar(50) NOT NULL DEFAULT '', - `sacct_when_born` varchar(50) NOT NULL DEFAULT '', - `sacct_origin` varchar(50) NOT NULL DEFAULT '', - `sacct_job` int(11) NOT NULL DEFAULT 0, - `sacct_clan` int(11) NOT NULL DEFAULT 0, - `sacct_clan_rank` int(11) NOT NULL DEFAULT 0, - `sacct_clan_flags` int(11) NOT NULL DEFAULT 0, - `sacct_clan_title` varchar(32) NOT NULL DEFAULT '', - `sacct_clan_tag` varchar(32) NOT NULL DEFAULT '', - `sacct_last_ip` int(11) NOT NULL DEFAULT 0, - `sacct_last_uid` varchar(128) NOT NULL DEFAULT '', - `sacct_total_time` int(11) NOT NULL DEFAULT 0, - `sacct_pos_x` float NOT NULL DEFAULT 0, - `sacct_pos_y` float NOT NULL DEFAULT 0, - `sacct_pos_z` float NOT NULL DEFAULT 0, - `sacct_angle` float NOT NULL DEFAULT 0, - `sacct_cash` int(11) NOT NULL DEFAULT 0, - `sacct_bank` int(11) NOT NULL DEFAULT 0, - `sacct_skin` int(11) NOT NULL DEFAULT 0, - `sacct_health` int(11) NOT NULL DEFAULT 0, - `sacct_armour` int(11) NOT NULL DEFAULT 0, - `sacct_licenses` int(11) NOT NULL DEFAULT 0, - `sacct_last_session` int(11) NOT NULL DEFAULT 0, - `sacct_when_made` bigint(20) NOT NULL DEFAULT 0, - `sacct_when_lastlogin` bigint(20) NOT NULL DEFAULT 0, - `sacct_arrest_state` int(11) NOT NULL DEFAULT 0, - `sacct_arrest_time` int(32) NOT NULL DEFAULT 0, - `sacct_int` int(11) NOT NULL DEFAULT 0, - `sacct_vw` int(11) NOT NULL DEFAULT 0, - `sacct_needs_setup` int(11) NOT NULL DEFAULT 1, - `sacct_scale_x` float NOT NULL DEFAULT 1, - `sacct_scale_y` float NOT NULL DEFAULT 1, - `sacct_scale_z` float NOT NULL DEFAULT 1, - `sacct_walkstyle` int(11) NOT NULL DEFAULT 0, - `sacct_fightstyle` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_hair_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_hair_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_head_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_head_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_upper_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_upper_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_lower_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_lower_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_feet_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_feet_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_hands_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_part_hands_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_hair_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_hair_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_head_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_head_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_eyes_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_eyes_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_ears_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_ears_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_mouth_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_mouth_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_lefthand_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_lefthand_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_righthand_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_righthand_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_leftwrist_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_leftwrist_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_rightwrist_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_rightwrist_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_hip_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_hip_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_leftfoot_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_leftfoot_texture` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_rightfoot_model` int(11) NOT NULL DEFAULT 0, - `sacct_hd_prop_rightfoot_texture` int(11) NOT NULL DEFAULT 0, - `sacct_voice` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`sacct_id`) -) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf16 COMMENT='Sub Accounts (Characters)'; - --- Dumping data for table gtac_roleplay.sacct_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `sacct_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `sacct_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.sacct_pay -CREATE TABLE IF NOT EXISTS `sacct_pay` ( - `sacct_pay_id` int(11) NOT NULL AUTO_INCREMENT, - `sacct_pay_server` int(11) NOT NULL DEFAULT 0, - `sacct_pay_from_sacct_id` int(11) NOT NULL DEFAULT 0, - `sacct_pay_to_sacct_id` int(11) NOT NULL DEFAULT 0, - `sacct_pay_amount` int(11) NOT NULL DEFAULT 0, - `sacct_pay_when` int(32) NOT NULL DEFAULT 0, - `sacct_pay_pos_x` float NOT NULL DEFAULT 0, - `sacct_pay_pos_y` float NOT NULL DEFAULT 0, - `sacct_pay_pos_z` float NOT NULL DEFAULT 0, - PRIMARY KEY (`sacct_pay_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Sub Accounts - Cash Exchanges'; - --- Dumping data for table gtac_roleplay.sacct_pay: ~0 rows (approximately) -/*!40000 ALTER TABLE `sacct_pay` DISABLE KEYS */; -/*!40000 ALTER TABLE `sacct_pay` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.sacct_stat -CREATE TABLE IF NOT EXISTS `sacct_stat` ( - `sacct_stat_id` int(32) NOT NULL DEFAULT 0, - `sacct_stat_sacct` int(32) NOT NULL DEFAULT 0, - `sacct_stat_max_kill_streak` int(32) NOT NULL DEFAULT 0, - `sacct_stat_furthest_headshot` float NOT NULL DEFAULT 0, - `sacct_stat_packages_picked` int(32) NOT NULL DEFAULT 0, - `sacct_stat_health_picked` int(32) NOT NULL DEFAULT 0, - `sacct_stat_weapons_picked` int(32) NOT NULL DEFAULT 0, - `sacct_stat_armour_picked` int(32) NOT NULL DEFAULT 0, - `sacct_stat_distance_foot` float NOT NULL DEFAULT 0, - `sacct_stat_distance_car` float NOT NULL DEFAULT 0, - `sacct_stat_distance_boat` float NOT NULL DEFAULT 0, - `sacct_stat_distance_plane` float NOT NULL DEFAULT 0, - `sacct_stat_longest_server_time` int(32) NOT NULL DEFAULT 0, - `sacct_stat_veh_resprays` int(32) NOT NULL DEFAULT 0, - `sacct_stat_wanted_veh_resprays` int(32) NOT NULL DEFAULT 0, - `sacct_stat_spent_on_weapons` int(32) NOT NULL DEFAULT 0, - `sacct_stat_weapons_purchased` int(32) NOT NULL DEFAULT 0, - `sacct_stat_businesses_purchased` int(32) NOT NULL DEFAULT 0, - `sacct_stat_houses_purchased` int(32) NOT NULL DEFAULT 0, - `sacct_stat_times_busted` int(32) NOT NULL DEFAULT 0, - `sacct_stat_stars_obtained` int(32) NOT NULL DEFAULT 0, - `sacct_stat_stars_evaded` int(32) NOT NULL DEFAULT 0, - `sacct_stat_highest_wanted_level` int(32) NOT NULL DEFAULT 0, - PRIMARY KEY (`sacct_stat_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Subaccounts - Stats'; - --- Dumping data for table gtac_roleplay.sacct_stat: ~0 rows (approximately) -/*!40000 ALTER TABLE `sacct_stat` DISABLE KEYS */; -/*!40000 ALTER TABLE `sacct_stat` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.sacct_svr -CREATE TABLE IF NOT EXISTS `sacct_svr` ( - `sacct_svr_id` int(11) NOT NULL AUTO_INCREMENT, - `sacct_svr_sacct` int(11) NOT NULL DEFAULT 0, - `sacct_svr_server` int(11) NOT NULL DEFAULT 0, - `sacct_svr_skin` int(11) NOT NULL DEFAULT 0, - `sacct_svr_scale_x` float NOT NULL DEFAULT 1, - `sacct_svr_scale_y` float NOT NULL DEFAULT 1, - `sacct_svr_scale_z` float NOT NULL DEFAULT 1, - `sacct_svr_hd_part_head_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_head_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_hair_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_hair_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_upper_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_upper_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_lower_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_lower_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_feet_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_feet_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_hands_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_part_hands_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_hair_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_hair_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_head_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_head_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_eyes_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_eyes_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_ears_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_ears_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_mouth_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_mouth_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_lefthand_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_lefthand_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_fightstyle` int(11) NOT NULL DEFAULT 0, - `sacct_svr_walkstyle` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_righthand_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_righthand_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_leftwrist_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_leftwrist_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_rightwrist_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_rightwrist_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_hip_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_hip_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_leftfoot_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_leftfoot_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_rightfoot_model` int(11) NOT NULL DEFAULT 0, - `sacct_svr_hd_prop_rightfoot_texture` int(11) NOT NULL DEFAULT 0, - `sacct_svr_voice` int(11) NOT NULL DEFAULT 0, - `sacct_svr_clan` int(11) NOT NULL DEFAULT 0, - `sacct_svr_clan_rank` int(11) NOT NULL DEFAULT 0, - `sacct_svr_clan_title` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', - `sacct_svr_clan_flags` bigint(20) NOT NULL DEFAULT 0, - `sacct_svr_clan_tag` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', - `sacct_svr_job` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`sacct_svr_id`), - KEY `sacct_svr_sacct` (`sacct_svr_sacct`), - KEY `sacct_svr_server` (`sacct_svr_server`) -) ENGINE=InnoDB AUTO_INCREMENT=145 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Subaccounts - Per-Server Data'; - --- Dumping data for table gtac_roleplay.sacct_svr: ~0 rows (approximately) -/*!40000 ALTER TABLE `sacct_svr` DISABLE KEYS */; -/*!40000 ALTER TABLE `sacct_svr` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.sus_main -CREATE TABLE IF NOT EXISTS `sus_main` ( - `sus_id` int(11) NOT NULL AUTO_INCREMENT, - `sus_server` tinyint(2) NOT NULL DEFAULT 0, - `sus_suspect` int(11) NOT NULL DEFAULT 0, - `sus_officer` int(11) NOT NULL DEFAULT 0, - `sus_minutes` int(11) NOT NULL DEFAULT 0, - `sus_reason` varchar(128) NOT NULL DEFAULT '', - `sus_state` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`sus_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf16 COMMENT='Crimes'; - --- Dumping data for table gtac_roleplay.sus_main: ~0 rows (approximately) -/*!40000 ALTER TABLE `sus_main` DISABLE KEYS */; -/*!40000 ALTER TABLE `sus_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.svr_main -CREATE TABLE IF NOT EXISTS `svr_main` ( - `svr_id` int(11) NOT NULL AUTO_INCREMENT, - `svr_game` int(11) NOT NULL DEFAULT 0, - `svr_port` int(11) NOT NULL DEFAULT 0, - `svr_start_time_hour` int(11) NOT NULL DEFAULT 0, - `svr_start_time_min` int(11) NOT NULL DEFAULT 0, - `svr_start_weather` int(11) NOT NULL DEFAULT 0, - `svr_start_snow_falling` tinyint(1) NOT NULL DEFAULT 0, - `svr_start_snow_ground` tinyint(1) NOT NULL DEFAULT 0, - `svr_newchar_pos_x` float NOT NULL DEFAULT 0, - `svr_newchar_pos_y` float NOT NULL DEFAULT 0, - `svr_newchar_pos_z` float NOT NULL DEFAULT 0, - `svr_newchar_rot_z` float NOT NULL DEFAULT 0, - `svr_newchar_money` int(11) NOT NULL DEFAULT 0, - `svr_newchar_bank` int(11) NOT NULL DEFAULT 0, - `svr_newchar_skin` int(11) NOT NULL DEFAULT 0, - `svr_manager` int(11) NOT NULL DEFAULT 0, - `svr_connectcam_pos_x` float NOT NULL DEFAULT 0, - `svr_connectcam_pos_y` float NOT NULL DEFAULT 0, - `svr_connectcam_pos_z` float NOT NULL DEFAULT 0, - `svr_connectcam_lookat_x` float NOT NULL DEFAULT 0, - `svr_connectcam_lookat_y` float NOT NULL DEFAULT 0, - `svr_connectcam_lookat_z` float NOT NULL DEFAULT 0, - `svr_gui` tinyint(1) NOT NULL DEFAULT 1, - `svr_gui_col1_r` smallint(6) NOT NULL DEFAULT 200, - `svr_gui_col1_g` smallint(6) NOT NULL DEFAULT 200, - `svr_gui_col1_b` smallint(6) NOT NULL DEFAULT 200, - `svr_logo` tinyint(1) NOT NULL DEFAULT 1, - `svr_ac_enabled` tinyint(1) NOT NULL DEFAULT 1, - `svr_ac_check_scripts` tinyint(1) NOT NULL DEFAULT 1, - `svr_ac_script_wl` tinyint(1) NOT NULL DEFAULT 0, - `svr_ac_script_bl` tinyint(1) NOT NULL DEFAULT 1, - `svr_inflation_multiplier` float NOT NULL DEFAULT 1, - `svr_job_pickups` tinyint(1) NOT NULL DEFAULT 1, - `svr_job_blips` tinyint(1) NOT NULL DEFAULT 1, - `svr_biz_pickups` tinyint(1) NOT NULL DEFAULT 1, - `svr_biz_blips` tinyint(1) NOT NULL DEFAULT 1, - `svr_house_pickups` tinyint(1) NOT NULL DEFAULT 1, - `svr_house_blips` tinyint(1) NOT NULL DEFAULT 1, - `svr_discord_bot_enabled` tinyint(1) NOT NULL DEFAULT 0, - `svr_discord_bot` int(11) NOT NULL DEFAULT 0, - `svr_time_min_duration` int(11) NOT NULL DEFAULT 60000, - `svr_intro_music` varchar(256) NOT NULL DEFAULT '', - PRIMARY KEY (`svr_id`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Servers'; - --- Dumping data for table gtac_roleplay.svr_main: ~4 rows (approximately) -/*!40000 ALTER TABLE `svr_main` DISABLE KEYS */; -INSERT INTO `svr_main` (`svr_id`, `svr_game`, `svr_port`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`, `svr_intro_music`) VALUES - (1, 1, 22000, 0, 0, 0, 0, 0, 1038.4, -666.7, 14.97, 1, 1000, 0, 0, 1, -1176.48, -17.694, 95.992, -1175.73, -17.055, 95.847, 1, 40, 110, 185, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000, 'https://dl.dropboxusercontent.com/s/jge8uf0u63auwto/iii-theme.mp3'); -INSERT INTO `svr_main` (`svr_id`, `svr_game`, `svr_port`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`, `svr_intro_music`) VALUES - (2, 2, 22000, 0, 0, 0, 0, 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 15, 1, 210.04, -1492.01, 55.071, 240.19, -1282.52, 10.902, 1, 255, 110, 199, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000, 'https://dl.dropboxusercontent.com/s/td86sq7w354v7ad/vc-theme.mp3'); -INSERT INTO `svr_main` (`svr_id`, `svr_game`, `svr_port`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`, `svr_intro_music`) VALUES - (3, 5, 22000, 0, 0, 0, 0, 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -2020305438, 1, 8.75, -826.53, 331.072, -63.58, 240.71, 26.373, 1, 128, 128, 128, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000, 'https://dl.dropboxusercontent.com/s/mww83ujmnj29t5o/iv-theme.mp3'); -INSERT INTO `svr_main` (`svr_id`, `svr_game`, `svr_port`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`, `svr_intro_music`) VALUES - (4, 3, 22000, 0, 0, 10, 0, 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 1, 1292.31, -2037.57, 109.596, 1291.31, -2037.57, 109.171, 1, 64, 64, 64, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 60000, 'https://dl.dropboxusercontent.com/s/nr6lt5i9oxojxk3/sa-theme.mp3'); -/*!40000 ALTER TABLE `svr_main` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.veh_history -CREATE TABLE IF NOT EXISTS `veh_history` ( - `veh_history_id` int(11) NOT NULL AUTO_INCREMENT, - `veh_history_veh` int(11) NOT NULL, - `veh_history_type` int(11) NOT NULL, - `veh_history_when` bigint(20) NOT NULL DEFAULT 0, - `veh_history_value` int(11) NOT NULL, - `veh_history_details` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '', - PRIMARY KEY (`veh_history_id`), - KEY `veh_history_veh` (`veh_history_veh`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vehicle - History'; - --- Dumping data for table gtac_roleplay.veh_history: ~0 rows (approximately) -/*!40000 ALTER TABLE `veh_history` DISABLE KEYS */; -/*!40000 ALTER TABLE `veh_history` ENABLE KEYS */; - --- Dumping structure for table gtac_roleplay.veh_main -CREATE TABLE IF NOT EXISTS `veh_main` ( - `veh_id` int(11) NOT NULL AUTO_INCREMENT, - `veh_server` tinyint(2) NOT NULL DEFAULT 0, - `veh_model` int(11) NOT NULL DEFAULT 0, - `veh_col1_isrgb` tinyint(1) NOT NULL DEFAULT 0, - `veh_col2_isrgb` tinyint(1) NOT NULL DEFAULT 0, - `veh_col3_isrgb` tinyint(1) NOT NULL DEFAULT 0, - `veh_col4_isrgb` tinyint(1) NOT NULL DEFAULT 0, - `veh_col1` smallint(6) NOT NULL DEFAULT 0, - `veh_col2` smallint(6) NOT NULL DEFAULT 0, - `veh_col3` smallint(6) NOT NULL DEFAULT 0, - `veh_col4` smallint(6) NOT NULL DEFAULT 0, - `veh_col1_r` smallint(6) NOT NULL DEFAULT 0, - `veh_col1_g` smallint(6) NOT NULL DEFAULT 0, - `veh_col1_b` smallint(6) NOT NULL DEFAULT 0, - `veh_col1_a` smallint(6) NOT NULL DEFAULT 0, - `veh_col2_r` smallint(6) NOT NULL DEFAULT 0, - `veh_col2_g` smallint(6) NOT NULL DEFAULT 0, - `veh_col2_b` smallint(6) NOT NULL DEFAULT 0, - `veh_col2_a` smallint(6) NOT NULL DEFAULT 0, - `veh_col3_r` smallint(6) NOT NULL DEFAULT 0, - `veh_col3_g` smallint(6) NOT NULL DEFAULT 0, - `veh_col3_b` smallint(6) NOT NULL DEFAULT 0, - `veh_col3_a` smallint(6) NOT NULL DEFAULT 0, - `veh_col4_r` smallint(6) NOT NULL DEFAULT 0, - `veh_col4_g` smallint(6) NOT NULL DEFAULT 0, - `veh_col4_b` smallint(6) NOT NULL DEFAULT 0, - `veh_col4_a` smallint(6) NOT NULL DEFAULT 0, - `veh_locked` tinyint(1) NOT NULL DEFAULT 0, - `veh_health` float NOT NULL DEFAULT 1000, - `veh_pos_x` float NOT NULL DEFAULT 0, - `veh_pos_y` float NOT NULL DEFAULT 0, - `veh_pos_z` float NOT NULL DEFAULT 0, - `veh_rot_x` float NOT NULL DEFAULT 0, - `veh_rot_y` float NOT NULL DEFAULT 0, - `veh_rot_z` float NOT NULL DEFAULT 0, - `veh_owner_type` int(11) NOT NULL DEFAULT 0, - `veh_owner_id` int(11) NOT NULL DEFAULT 0, - `veh_engine` tinyint(1) NOT NULL DEFAULT 0, - `veh_rank` tinyint(1) NOT NULL DEFAULT 0, - `veh_lights` tinyint(1) NOT NULL DEFAULT 0, - `veh_siren` tinyint(1) NOT NULL DEFAULT 0, - `veh_sirenlight` tinyint(1) NOT NULL DEFAULT 0, - `veh_taxilight` tinyint(1) NOT NULL DEFAULT 0, - `veh_radio_custom` tinyint(1) NOT NULL DEFAULT 0, - `veh_radio_station` smallint(6) NOT NULL DEFAULT 0, - `veh_radio_volume` tinyint(4) NOT NULL DEFAULT 0, - `veh_fuel` smallint(6) NOT NULL DEFAULT 0, - `veh_spawned` tinyint(1) NOT NULL DEFAULT 0, - `veh_ins_acct` tinyint(1) NOT NULL DEFAULT 0, - `veh_price` int(8) NOT NULL DEFAULT 0, - `veh_deleted` tinyint(1) NOT NULL DEFAULT 0, - `veh_flags` int(32) NOT NULL DEFAULT 0, - `veh_spawn_lock` tinyint(1) NOT NULL DEFAULT 0, - `veh_buy_price` int(11) NOT NULL DEFAULT 0, - `veh_rent_price` int(11) NOT NULL DEFAULT 0, - `veh_destroyed` tinyint(1) NOT NULL DEFAULT 0, - `veh_mod_enginemult` int(11) NOT NULL DEFAULT 0, - `veh_mod_wheelmult` int(11) NOT NULL DEFAULT 0, - `veh_mod_brakemult` int(11) NOT NULL DEFAULT 0, - `veh_mod_hydraulics` tinyint(1) NOT NULL DEFAULT 0, - `veh_mod_nos` tinyint(1) NOT NULL DEFAULT 0, - `veh_tire_fl` tinyint(1) NOT NULL DEFAULT 0, - `veh_tire_fr` tinyint(1) NOT NULL DEFAULT 0, - `veh_tire_rl` tinyint(1) NOT NULL DEFAULT 0, - `veh_tire_rr` tinyint(1) NOT NULL DEFAULT 0, - `veh_light_fl` tinyint(1) NOT NULL DEFAULT 0, - `veh_light_fr` tinyint(1) NOT NULL DEFAULT 0, - `veh_light_rl` tinyint(1) NOT NULL DEFAULT 0, - `veh_light_rr` tinyint(1) NOT NULL DEFAULT 0, - `veh_door_fl` tinyint(1) NOT NULL DEFAULT 0, - `veh_door_fr` tinyint(1) NOT NULL DEFAULT 0, - `veh_door_rl` tinyint(1) NOT NULL DEFAULT 0, - `veh_door_rr` tinyint(1) NOT NULL DEFAULT 0, - `veh_boot` tinyint(1) NOT NULL DEFAULT 0, - `veh_bonnet` tinyint(1) NOT NULL DEFAULT 0, - `veh_panel_bumper_front` tinyint(1) NOT NULL DEFAULT 0, - `veh_panel_bumper_rear` tinyint(1) NOT NULL DEFAULT 0, - `veh_panel_front_left` tinyint(1) NOT NULL DEFAULT 0, - `veh_panel_front_right` tinyint(1) NOT NULL DEFAULT 0, - `veh_panel_rear_left` tinyint(1) NOT NULL DEFAULT 0, - `veh_panel_rear_right` tinyint(1) NOT NULL DEFAULT 0, - `veh_panel_windshield` tinyint(1) NOT NULL DEFAULT 0, - `veh_dirt_level` int(11) NOT NULL DEFAULT 0, - `veh_damage_visual` int(11) NOT NULL DEFAULT 0, - `veh_damage_engine` float NOT NULL DEFAULT 0, - `veh_damage_normal` float NOT NULL DEFAULT 0, - `veh_when_added` bigint(32) NOT NULL DEFAULT 0, - `veh_how_added` int(11) NOT NULL DEFAULT 0, - `veh_who_added` bigint(32) NOT NULL DEFAULT 0, - `veh_hd_extra1` int(11) NOT NULL DEFAULT 0, - `veh_hd_extra2` int(11) NOT NULL DEFAULT 0, - `veh_hd_extra3` int(11) NOT NULL DEFAULT 0, - `veh_hd_extra4` int(11) NOT NULL DEFAULT 0, - `veh_hd_extra5` int(11) NOT NULL DEFAULT 0, - `veh_hd_extra6` int(11) NOT NULL DEFAULT 0, - `veh_hd_extra7` int(11) NOT NULL DEFAULT 0, - `veh_hd_extra8` int(11) NOT NULL DEFAULT 0, - `veh_hd_extra9` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`veh_id`), - KEY `veh_server` (`veh_server`), - KEY `veh_owner` (`veh_owner_type`,`veh_owner_id`) -) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=utf16 COMMENT='Vehicles'; - --- Dumping data for table gtac_roleplay.veh_main: ~333 rows (approximately) -/*!40000 ALTER TABLE `veh_main` DISABLE KEYS */; -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (1, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -691.413, 14.7679, 0, 0, -0.00433205, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (2, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1146.75, -691.522, 14.7632, 0, 0, 0.0311547, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (3, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -647.976, 14.7432, 0, 0, 1.58688, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (4, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.05, -644.664, 14.7377, 0, 0, 1.63214, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (5, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.03, -641.414, 14.7305, 0, 0, 1.58556, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (6, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1137.77, -637.964, 14.7565, 0, 0, 3.12411, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (7, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1141.03, -637.832, 14.7565, 0, 0, 3.13313, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (8, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.97, -671.216, 18.9339, 0, 0, -3.12864, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (9, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.88, -659.962, 18.9344, 0, 0, -3.13742, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (10, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.99, -648.106, 18.8026, 0, 0, -1.54444, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (11, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.71, -644.208, 18.8018, 0, 0, -1.56368, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (12, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.51, -546.982, 21.8099, 0, 0, 1.54116, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (13, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1144.34, -526.256, 21.811, 0, 0, 3.10339, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (14, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1149.82, -526.413, 21.8051, 0, 0, 3.12915, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (15, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.33, -47.3277, 7.6909, 0, 0, -1.58177, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (16, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.44, -56.9672, 7.68915, 0, 0, -1.55498, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (17, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.07, -36.7668, 7.68907, 0, 0, -1.54614, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (18, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1143.85, 24.7314, 0.193595, 0, 0, 0.030849, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (19, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1127.04, 42.6658, 0.0965313, 0, 0, -1.59613, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (20, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1160.02, 63.4447, 0.0918589, 0, 0, -3.06856, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (21, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.63, -687.404, 14.7563, 0, 0, -1.5751, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (22, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1281.16, -964.567, 15.006, 0, 0, -2.35689, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (23, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1274.07, -971.255, 14.9847, 0, 0, -2.36657, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (24, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1255.04, -993.608, 14.9642, 0, 0, -0.875785, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (25, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1262.9, -1001.84, 14.966, 0, 0, -0.898034, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (26, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1226.42, -725.875, 14.9189, 0, 0, -2.34667, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (27, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1229.62, -722.578, 14.9188, 0, 0, -2.35245, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (28, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1257.41, -752.06, 14.9186, 0, 0, 0.734189, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (29, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1254.04, -755.676, 14.9186, 0, 0, 0.767078, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (30, 1, 128, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1249.93, -736.377, 15.1166, 0, 0, 2.33642, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (31, 1, 128, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1246.99, -733.376, 15.1162, 0, 0, 2.33641, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (32, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.41, -683.735, 14.7565, 0, 0, -1.55153, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (33, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 355.017, -1135.91, 22.7644, 0, 0, -2.41669, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (34, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 350.109, -1135.89, 22.7647, 0, 0, -2.46912, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (35, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 345.608, -1135.62, 22.7649, 0, 0, -2.53825, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (36, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 341.261, -1135.68, 22.7642, 0, 0, -2.54692, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (37, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 336.717, -1135.68, 22.7706, 0, 0, -2.56974, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (38, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 332.574, -1135.79, 22.7643, 0, 0, -2.54837, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (39, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.361, -1143.6, 22.7644, 0, 0, -1.53463, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (40, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.33, -1147.05, 22.7647, 0, 0, -1.55975, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (41, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.239, -1150.96, 22.7647, 0, 0, -1.59091, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (42, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.082, -1154.76, 22.7643, 0, 0, -1.59227, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (43, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.062, -1158.64, 22.764, 0, 0, -1.56752, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (44, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.123, -1162.56, 22.757, 0, 0, -1.57938, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (45, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 349.266, -1175.87, 22.7646, 0, 0, 0.0401467, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (46, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.866, -1175.72, 22.7649, 0, 0, 0.0375325, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (47, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 356.565, -1175.68, 22.7649, 0, 0, 0.0262495, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (48, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 360.123, -1175.56, 22.765, 0, 0, 0.00383999, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (49, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.628, -1175.71, 22.7647, 0, 0, 0.0135003, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (50, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 344.813, -1175.93, 22.7648, 0, 0, 0.0261305, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (51, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.039, -1056.26, 26.0159, 0, 0, -3.13414, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (52, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 357.656, -1056.36, 26.016, 0, 0, 3.12152, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (53, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.455, -1056.27, 26.0166, 0, 0, 3.1086, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (54, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 346.23, -1055.48, 25.8838, 0, 0, 3.1377, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (55, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 342.364, -1055.36, 25.8839, 0, 0, 3.12213, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (56, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 338.239, -1055.29, 25.8841, 0, 0, 3.07547, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (57, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 333.56, -1055.31, 25.8841, 0, 0, 3.09697, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (58, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -863.201, -666.353, 11.0311, 0, 0, -3.04091, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (59, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -859.264, -665.929, 11.0121, 0, 0, -3.02909, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (60, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -855.519, -665.594, 10.9943, 0, 0, -3.03498, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (61, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -851.826, -665.276, 10.9767, 0, 0, -3.02548, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (62, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -843.97, -679.789, 10.9396, 0, 0, 1.72875, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (63, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -844.578, -675.52, 10.9427, 0, 0, 1.70593, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (64, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -845.17, -671.403, 10.9455, 0, 0, 1.69794, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (65, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.775, -710.286, 11.1915, 0, 0, -2.06147, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (66, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -881.43, -705.81, 11.2087, 0, 0, -2.22486, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (67, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -897.515, -698.598, 10.9724, 0, 0, -3.01881, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (68, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.148, -698.128, 10.9701, 0, 0, -3.01433, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (69, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.135, -719.859, 10.9428, 0, 0, -1.41224, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (70, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.683, -715.826, 10.9485, 0, 0, -1.42683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (71, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -650.832, 754.237, 11.2032, 0, 0, 1.50302, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (72, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -639.172, 753.413, 11.2032, 0, 0, 1.50092, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (73, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -621.907, 752.278, 11.2033, 0, 0, 1.49172, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (74, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -610.695, 751.54, 11.2031, 0, 0, 1.5242, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (75, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.312, 812.778, 11.4341, 0, 0, -1.51886, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (76, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.318, 808.625, 11.4343, 0, 0, -1.54175, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (77, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.262, 804.179, 11.4321, 0, 0, -1.55996, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (78, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.455, 777.717, 11.3721, 0, 0, -1.56567, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (79, 2, 236, 0, 0, 0, 0, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.427, 781.32, 11.372, 0, 0, -1.57976, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (80, 2, 236, 0, 0, 0, 0, 7, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.614, 785.262, 11.3678, 0, 0, -1.53095, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (81, 2, 227, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -614.282, 804.889, 29.667, 0, 0, -3.13458, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (82, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.011, 766.586, 10.8582, 0, 0, -3.12432, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (83, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.185, 777.893, 11.0314, 0, 0, 3.13051, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (84, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.29, 793.478, 11.0371, 0, 0, -3.13675, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (85, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.178, 804.984, 11.0372, 0, 0, 3.13152, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (86, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.476, 917.25, 11.193, 0, 0, -1.5752, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (87, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.799, 933.069, 11.1976, 0, 0, -1.59279, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (88, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.642, 927.235, 11.2813, 0, 0, 1.58276, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (89, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 520.53, 503.127, 10.8484, 0, 0, -0.00178437, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (90, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 516.364, 503.18, 10.9362, 0, 0, -0.0254137, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (91, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 498.01, 503.081, 11.193, 0, 0, 0.0146382, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (92, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 502.233, 503.026, 11.1357, 0, 0, 0.0138817, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (93, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 493.552, 503.077, 11.2541, 0, 0, -0.0044642, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (94, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 528.832, 11.3465, 0, 0, 1.54742, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (95, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 525.464, 11.3455, 0, 0, 1.57115, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (96, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.527, 519.161, 11.6082, 0, 0, 3.12121, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (97, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 372.272, -526.059, 12.1009, 0, 0, -0.731552, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (98, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 369.489, -523.585, 12.0988, 0, 0, -0.718855, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (99, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 366.674, -521.239, 12.0989, 0, 0, -0.712901, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (100, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 363.691, -518.751, 12.0982, 0, 0, -0.698761, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (101, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 361.239, -516.717, 12.0989, 0, 0, -0.705683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (102, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 358.335, -514.321, 12.0942, 0, 0, -0.696986, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (103, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 355.575, -511.957, 12.0989, 0, 0, -0.701771, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (104, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 348.887, -491.942, 12.3596, 0, 0, 2.45143, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (105, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 351.751, -494.224, 12.3596, 0, 0, 2.44634, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (106, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -119.267, -918.579, 10.6751, 0, 0, 1.83377, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (107, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -117.954, -924.926, 10.6753, 0, 0, 1.8211, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (108, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -116.5, -931.549, 10.6753, 0, 0, 1.76665, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (129, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.326, 1155.62, 12.6228, 0, 0, -3.14049, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (130, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -773.948, 1155.64, 12.6228, 0, 0, 3.13857, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (131, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.568, 1131.04, 12.6227, 0, 0, -0.010725, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (132, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -774.835, 1131.13, 12.6229, 0, 0, -0.0206099, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (133, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 458.814, 702.22, 11.49, 0, 0, 1.51274, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (134, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 467.202, 701.723, 11.6151, 0, 0, 1.50174, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (135, 2, 150, 0, 0, 0, 0, 6, 73, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1005.69, 208.713, 11.1279, 0, 0, 3.03758, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (136, 2, 150, 0, 0, 0, 0, 6, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1002.12, 203.73, 11.4539, 0, 0, 3.01694, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (137, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1008.54, 186.246, 11.3789, 0, 0, -0.157828, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (138, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -995.796, 193.143, 11.4015, 0, 0, 1.41776, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (139, 2, 167, 0, 0, 0, 0, 56, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1141.98, -283.386, 11.3194, 0, 0, -3.09345, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (140, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.05, -270.229, 11.4251, 0, 0, -3.05214, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (141, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.99, -256.669, 11.5147, 0, 0, -3.07535, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (142, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.256, -482.571, 11.3251, 0, 0, -1.5271, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (143, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.249, -478.507, 11.3193, 0, 0, -1.55587, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (144, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1243.33, 23.4004, 12.013, 0, 0, 3.12587, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (145, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1247.7, 23.4549, 12.0141, 0, 0, 3.1171, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (146, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1251.99, 23.5308, 12.0096, 0, 0, 3.12793, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (147, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.73, -1703.95, 5.62027, 0, 0, 1.59558, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (148, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.74, -1700.18, 5.61885, 0, 0, 1.59013, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (149, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.68, -1696.18, 5.61891, 0, 0, 1.57734, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (150, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.67, -1691.93, 5.61976, 0, 0, 1.59322, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (151, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2083.1, -1706.03, 13.104, 0, 0, 0.635562, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (152, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1595.43, -1711.89, 5.61871, 0, 0, -0.0106168, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (153, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1591.43, -1711.87, 5.61965, 0, 0, 0.00642908, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (154, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1587.33, -1711.86, 5.61184, 0, 0, 0.00975822, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (155, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.72, -1644.82, 6.02297, 0, 0, -3.13362, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (156, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1530.62, -1644.78, 6.02321, 0, 0, -3.11574, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (157, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1534.72, -1644.71, 6.03863, 0, 0, -3.13567, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (158, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.99, -1651.07, 6.08226, 0, 0, 1.56824, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (159, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1546.03, -1654.96, 6.03352, 0, 0, 1.54986, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (160, 4, 426, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.79, -1667.84, 5.62373, 0, 0, 1.56514, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (161, 4, 426, 0, 0, 0, 0, 10, 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.98, -1672.1, 5.63141, 0, 0, 1.5917, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (162, 2, 131, 0, 0, 0, 0, 5, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -979.65, -882.122, 12.8471, 0, 0, 0.706624, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (163, 2, 175, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -982.328, -884.745, 12.8644, 0, 0, 0.752705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (164, 2, 134, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -984.716, -887.286, 12.7108, 0, 0, 0.798329, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (165, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.17, -1680.36, 5.45989, 0, 0, -0.797715, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (166, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.06, -1674.86, 5.46142, 0, 0, -2.37213, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (167, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.73, -1674.89, 5.4601, 0, 0, -2.37606, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (168, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.64, -1680.68, 5.46212, 0, 0, -0.793975, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (169, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.73, -1338.94, 14.0094, 0, 0, -1.54939, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (170, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.46, -1308.67, 13.9791, 0, 0, -1.56455, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (171, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2036.82, -1425.53, 17.1413, 0, 0, -0.00217407, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (172, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2024.7, -1409.68, 17.1419, 0, 0, 1.55537, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (173, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.19, -2085.52, 14.0841, 0, 0, 1.56666, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (174, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.24, -2090.4, 14.097, 0, 0, 1.57921, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (175, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.3, -2095.48, 14.0909, 0, 0, 1.57749, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (176, 4, 431, 0, 0, 0, 0, 47, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.16, -1887.68, 13.493, 0, 0, -1.54371, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (177, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.08, -1892.33, 13.492, 0, 0, -1.55517, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (178, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1780.83, -1897.52, 13.4905, 0, 0, -1.56997, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (179, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1804.27, -1932.53, 13.1664, 0, 0, -0.015131, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (180, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1800.35, -1932.4, 13.166, 0, 0, -0.0127972, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (181, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1796.72, -1932.55, 13.1653, 0, 0, -0.000382929, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (182, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1792.65, -1932.66, 13.3902, 0, 0, 0.00784995, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (183, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1788.85, -1932.83, 13.3847, 0, 0, 0.025678, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (184, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1295.9, 13.8958, 0, 0, 0.00109566, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (185, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1308.6, 13.9144, 0, 0, 0.00538338, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (186, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.26, 2442.01, 10.5652, 0, 0, -0.0100905, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (187, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.82, 2441.92, 10.5665, 0, 0, 0.0142917, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (188, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.75, 2441.84, 10.5656, 0, 0, 0.00445989, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (189, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.03, 2441.76, 10.565, 0, 0, 0.02489, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (190, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.94, 2478.61, 10.5693, 0, 0, 3.13522, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (191, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.44, 2478.64, 10.5671, 0, 0, 3.12822, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (192, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.09, 2478.64, 10.5649, 0, 0, 3.13244, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (193, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.15, 2478.59, 10.5668, 0, 0, -3.12538, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (194, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1751.1, 2077.36, 11.0579, 0, 0, 3.13707, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (195, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1756.99, 2077.55, 11.0555, 0, 0, -3.13337, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (196, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1763.96, 2077.97, 11.0573, 0, 0, -3.10259, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (197, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.66, 742.629, -5.47258, 0, 0, 1.57093, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (198, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.64, 738.657, -5.47407, 0, 0, 1.5799, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (199, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.6, 734.641, -5.47307, 0, 0, 1.57367, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (200, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.56, 730.619, -5.47164, 0, 0, 1.57203, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (201, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.46, 726.494, -5.47229, 0, 0, 1.57229, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (202, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1579.91, 750.258, -5.47212, 0, 0, 3.13972, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (203, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1584.04, 750.231, -5.47137, 0, 0, -3.13672, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (204, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1588.07, 750.247, -5.47243, 0, 0, 3.13574, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (205, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1592.38, 750.296, -5.47143, 0, 0, 3.13692, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (206, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.79, 730.701, -5.67174, 0, 0, 0.560641, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (207, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.18, 730.908, -5.66764, 0, 0, -0.753548, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (208, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.58, 733.413, -5.67532, 0, 0, 0.526106, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (209, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.37, 733.199, -5.67666, 0, 0, -0.764526, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (210, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.29, 705.876, -5.49726, 0, 0, 1.58725, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (211, 4, 426, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.31, 710.11, -5.49697, 0, 0, 1.55664, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (212, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.36, 714.22, -5.49761, 0, 0, 1.58512, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (213, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1596.07, 676.545, -5.10801, 0, 0, 0.0186245, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (214, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1600.28, 676.495, -5.10837, 0, 0, 0.0136404, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (215, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2677.4, 630.025, 14.6044, 0, 0, 1.57874, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (216, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2666.93, 629.908, 14.6044, 0, 0, 1.56592, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (217, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2686.18, 628.286, 14.6058, 0, 0, 1.9158, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (218, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.76, 75.2526, 28.3631, 0, 0, -1.47777, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (219, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.92, 84.3134, 28.3332, 0, 0, -1.5322, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (220, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.93, 92.2289, 28.3678, 0, 0, -1.51043, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (221, 4, 411, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 564.59, -1291.1, 16.9753, 0, 0, 0.0255753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (222, 4, 541, 0, 0, 0, 0, 36, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 561, -1291.44, 16.8732, 0, 0, 0.00172557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (223, 4, 480, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 557.632, -1291.24, 17.022, 0, 0, 0.0362236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (224, 4, 477, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 554.015, -1291.05, 17.0018, 0, 0, -0.0592367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (227, 1, 102, 0, 0, 0, 0, 57, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.59, -85.9233, 12.6336, 0, 0, -2.23509, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (228, 1, 129, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.51, -81.4913, 12.1281, 0, 0, -2.20648, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (229, 1, 112, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.65, -77.2701, 11.9, 0, 0, -2.20789, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (230, 1, 91, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1211.41, -66.0152, 10.4973, 0, 0, -2.52612, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (231, 1, 100, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1210.97, -73.589, 11.1925, 0, 0, -2.19468, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (232, 1, 94, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1214.52, -63.2275, 10.152, 0, 0, -2.81749, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (233, 1, 90, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1218.85, -62.5937, 10.422, 0, 0, 3.0997, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (234, 1, 109, 0, 0, 0, 0, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1222.63, -63.0764, 10.2099, 0, 0, 3.10392, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (235, 1, 105, 0, 0, 0, 0, 51, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1244.93, -120.808, 14.604, 0, 0, -0.0421777, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (236, 1, 101, 0, 0, 0, 0, 57, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1241.28, -120.641, 14.6288, 0, 0, 0.0264841, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (237, 1, 119, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1237.61, -121, 14.5594, 0, 0, 0.00477941, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (238, 1, 92, 0, 0, 0, 0, 53, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1233.86, -120.93, 14.6328, 0, 0, -0.0198187, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (239, 1, 134, 0, 0, 0, 0, 72, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.55, -107.909, 14.7097, 0, 0, 1.50495, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (240, 1, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.63, -104.151, 14.2887, 0, 0, 1.54257, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (241, 1, 135, 0, 0, 0, 0, 11, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.29, -100.391, 14.0073, 0, 0, 1.52489, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 22000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (243, 1, 139, 0, 0, 0, 0, 9, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.41, -96.6294, 13.9466, 0, 0, 1.55603, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (244, 1, 138, 0, 0, 0, 0, 54, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.62, -92.3873, 13.426, 0, 0, 1.51434, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (245, 1, 102, 0, 0, 0, 0, 26, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.01, -535.337, 8.80389, 0, 0, -1.13589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (246, 1, 102, 0, 0, 0, 0, 34, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -750.797, -539.199, 8.80304, 0, 0, -1.10576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (247, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.052, -543.618, 8.80374, 0, 0, -1.07295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (248, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.566, -552.963, 8.59979, 0, 0, -1.61011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (249, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.576, -556.203, 8.59965, 0, 0, -1.59793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (250, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.577, -559.737, 8.59964, 0, 0, -1.57346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (251, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.575, -563.115, 8.60021, 0, 0, -1.57212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (252, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.37, -927.334, 11.6627, 0, 0, -1.51896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (253, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.94, -920.765, 11.6717, 0, 0, -1.51945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (254, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1525.38, -914.304, 11.6674, 0, 0, -1.49781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (255, 1, 142, 0, 0, 0, 0, 1, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 620.768, -665.364, -0.327586, 0, 0, -0.0217677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (256, 1, 143, 0, 0, 0, 0, 12, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 627.834, -666.615, -0.505819, 0, 0, -0.0385386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (258, 1, 146, 0, 0, 0, 0, 34, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.45, -803.581, 11.9599, 0, 0, 1.56821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (259, 1, 104, 0, 0, 0, 0, 52, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.62, -795.533, 11.8912, 0, 0, 1.56813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 30000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (260, 1, 93, 0, 0, 0, 0, 39, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.01, -786.663, 12.4028, 0, 0, 1.56679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 40000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (261, 4, 547, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.31, -1150.2, 23.9743, 0, 0, 0.748413, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (262, 4, 516, 0, 0, 0, 0, 122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.18, -1145.37, 24.6024, 0, 0, 0.789813, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (263, 4, 466, 0, 0, 0, 0, 78, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2125.15, -1152.9, 23.7633, 0, 0, -0.783476, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (264, 4, 410, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.76, -1141.11, 24.8917, 0, 0, 0.786093, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (265, 4, 445, 0, 0, 0, 0, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.76, -1155.76, 24.126, 0, 0, -0.705611, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (266, 4, 405, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.4, -1151.21, 24.2249, 0, 0, -0.645516, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (267, 4, 458, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.36, -1136, 25.5515, 0, 0, 0.777684, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (268, 4, 496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.21, -1145.71, 24.3037, 0, 0, -1.09275, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (269, 4, 418, 0, 0, 0, 0, 95, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.32, -1141.57, 24.9918, 0, 0, -1.07252, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (271, 4, 549, 0, 0, 0, 0, 79, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.42, -1131.45, 25.3818, 0, 0, 0.778913, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (272, 4, 404, 0, 0, 0, 0, 83, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.1, -1128.71, 25.0533, 0, 0, -1.00972, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (273, 4, 422, 0, 0, 0, 0, 113, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.91, -1132.57, 25.2674, 0, 0, -1.04863, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (274, 4, 419, 0, 0, 0, 0, 47, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.37, -1123.81, 25.1752, 0, 0, -0.824258, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (275, 4, 559, 0, 0, 0, 0, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 543.558, -1291.16, 16.8736, 0, 0, -0.140231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (276, 4, 506, 0, 0, 0, 0, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 539.57, -1291.52, 16.949, 0, 0, 0.0129029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (277, 4, 451, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 529.109, -1291.35, 16.9441, 0, 0, 0.007333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (278, 4, 415, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 532.506, -1291.65, 17.0134, 0, 0, 0.0241039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (279, 4, 429, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 535.97, -1291.55, 16.9238, 0, 0, -0.00909396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (280, 4, 565, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 525.643, -1291.94, 16.8666, 0, 0, 0.0016915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (281, 4, 602, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 522.465, -1291.49, 17.0442, 0, 0, -0.0111869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 60000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (282, 4, 589, 0, 0, 0, 0, 114, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 518.795, -1291.31, 16.9074, 0, 0, 0.0178289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (283, 4, 519, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.15, -2367.1, 14.4654, 0, 0, 1.57039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (284, 4, 511, 0, 0, 0, 0, 37, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1994.14, -2388.79, 14.9204, 0, 0, 1.59079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (285, 4, 593, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.97, -2407.75, 14.0243, 0, 0, 1.54898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 200000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (286, 4, 553, 0, 0, 0, 0, 55, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2025.74, -2418.28, 14.8912, 0, 0, 2.46133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 500000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (287, 4, 487, 0, 0, 0, 0, 74, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.52, -2332.31, 13.7254, 0, 0, 1.58853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (288, 4, 548, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.24, -2316.92, 15.1977, 0, 0, 1.58742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (289, 4, 469, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.62, -2303.97, 13.5477, 0, 0, 1.53661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 250000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (290, 4, 417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.1, -2255.76, 13.6483, 0, 0, 1.54044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 900000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (293, 1, 127, 0, 0, 0, 0, 44, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 331.266, -1573.11, 26.0381, 0, 0, -0.879107, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (294, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.1733, -349.082, 16.2603, 0, 0, -0.0165034, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (295, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.4793, -367.01, 16.2607, 0, 0, -0.0240202, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (296, 4, 529, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.54, -1137.2, 24.7795, 0, 0, -1.06224, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (297, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1583.14, -1711.82, 5.60978, 0, 0, -0.0255531, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (298, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1578.54, -1711.84, 5.6025, 0, 0, 0.00653891, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (299, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1574.12, -1711.96, 5.61197, 0, 0, 0.00792556, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (300, 2, 221, 0, 0, 0, 0, 30, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -987.238, -890.147, 12.7976, 0, 0, 0.861982, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (301, 2, 135, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -975.756, -878.166, 12.9318, 0, 0, 0.813128, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (302, 2, 226, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.656, -864.78, 12.8917, 0, 0, 1.16068, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (303, 2, 152, 0, 0, 0, 0, 8, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -971.067, -873.153, 13.2271, 0, 0, 0.834572, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (304, 2, 130, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -968.206, -868.967, 13.2656, 0, 0, 1.08971, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (305, 2, 140, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -973.192, -875.855, 12.8791, 0, 0, 0.822114, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (306, 2, 164, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -989.644, -824.774, 7.12597, 0, 0, 3.12791, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (307, 2, 204, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.592, -860.48, 12.8871, 0, 0, 1.1847, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (308, 2, 149, 0, 0, 0, 0, 59, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.155, -855.875, 12.9219, 0, 0, 1.39879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (309, 2, 205, 0, 0, 0, 0, 41, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.04, -852.363, 12.8994, 0, 0, 1.44163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (310, 2, 197, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.029, -848.421, 12.8642, 0, 0, 1.43081, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (311, 2, 208, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.721, -844.608, 13.1339, 0, 0, 1.52394, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (312, 2, 209, 0, 0, 0, 0, 14, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.016, -841.054, 12.9559, 0, 0, 1.53651, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (313, 2, 211, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.673, -837.367, 12.8576, 0, 0, 1.51387, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (314, 2, 222, 0, 0, 0, 0, 33, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.774, -832.762, 12.8844, 0, 0, 1.51272, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (315, 2, 230, 0, 0, 0, 0, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.115, -828.989, 13.2367, 0, 0, 1.55643, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (316, 2, 219, 0, 0, 0, 0, 32, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.923, -824.966, 13.3115, 0, 0, 1.56249, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (317, 2, 179, 0, 0, 0, 0, 16, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -985.562, -824.846, 7.45749, 0, 0, -3.1114, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (318, 2, 174, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -993.506, -825.182, 7.22026, 0, 0, -3.13612, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (319, 2, 142, 0, 0, 0, 0, 13, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -997.382, -825.397, 7.10469, 0, 0, 3.12664, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (320, 2, 193, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.23, -823.644, 6.2945, 0, 0, 1.56423, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (321, 2, 166, 0, 0, 0, 0, 14, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.043, -825.686, 6.29443, 0, 0, 1.61558, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (322, 2, 198, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.063, -827.738, 6.43505, 0, 0, 1.54959, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (323, 2, 191, 0, 0, 0, 0, 22, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.07, -829.886, 6.31988, 0, 0, 1.58164, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (324, 2, 192, 0, 0, 0, 0, 33, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.719, -831.972, 6.35928, 0, 0, 1.58748, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (325, 2, 210, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1019.12, -844.436, 12.85, 0, 0, -1.61629, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (326, 2, 132, 0, 0, 0, 0, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1015.09, -848.702, 12.8354, 0, 0, -1.52303, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (327, 2, 141, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1010.9, -852.751, 12.7769, 0, 0, -1.23101, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (328, 2, 159, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1007.32, -856.729, 12.8655, 0, 0, -1.08926, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (329, 2, 145, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1004.13, -860.21, 12.8584, 0, 0, -0.843169, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (330, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 212.281, -41.5702, 16.4286, 0, 0, -0.00175398, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (331, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 220.664, -41.2063, 16.4286, 0, 0, -0.00824242, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (332, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 240.307, -41.481, 16.4286, 0, 0, -0.00575317, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (333, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 248.963, -41.6128, 16.4285, 0, 0, -0.0129603, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (334, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -72.9919, -331.528, 16.2616, 0, 0, -0.0204993, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (335, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3733, -442.729, 16.3754, 0, 0, 1.53779, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (336, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3866, -432.508, 16.3646, 0, 0, 1.56684, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (337, 1, 116, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -662.811, -422.455, 18.5614, 0, 0, -0.227887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (338, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -739.187, -576.721, 8.54147, 0, 0, -0.412251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (339, 2, 236, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 349.923, -507.823, 12.098, 0, 0, -0.695444, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (340, 2, 236, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 352.536, -509.998, 12.098, 0, 0, -0.71261, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (342, 1, 111, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.73, -90.2957, 12.9842, 0, 0, -2.2061, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (343, 4, 462, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.43, -2264.18, 13.1445, 0, 0, 1.56442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (344, 4, 462, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.42, -2260.71, 13.1447, 0, 0, 1.56546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (345, 4, 462, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.43, -2257.49, 13.144, 0, 0, 1.57553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (346, 4, 462, 0, 0, 0, 0, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.32, -2254.05, 13.1433, 0, 0, 1.60366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (347, 4, 462, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.39, -2250.88, 13.1434, 0, 0, 1.5767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (348, 4, 462, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.54, -2308.67, 13.1443, 0, 0, 1.56716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (349, 4, 462, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.43, -2312.21, 13.1413, 0, 0, 1.57362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (350, 4, 462, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.37, -2315.54, 13.1502, 0, 0, 1.57955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (351, 4, 462, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.46, -2318.79, 13.1152, 0, 0, 1.70434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (352, 4, 462, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.57, -2321.93, 13.1452, 0, 0, 1.5955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (353, 4, 462, 0, 0, 0, 0, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.83, -2325.31, 13.1411, 0, 0, 1.58323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (354, 4, 463, 0, 0, 0, 0, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.59, -1353.73, 12.9093, 0, 0, -1.54904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (355, 4, 586, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.701, -1355.77, 12.8884, 0, 0, -1.54248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (356, 4, 462, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.4, -1357.84, 12.9707, 0, 0, -1.5026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (357, 4, 468, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.512, -1359.94, 13.0338, 0, 0, -1.52087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (358, 4, 581, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.615, -1361.65, 12.9657, 0, 0, -1.62156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (359, 4, 461, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.65, -1363.27, 12.9532, 0, 0, -1.58056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (360, 4, 522, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.505, -1364.99, 12.9362, 0, 0, -1.60842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES - (361, 4, 471, 0, 0, 0, 0, 66, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.345, -1367.09, 12.8528, 0, 0, -1.6018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); -/*!40000 ALTER TABLE `veh_main` ENABLE KEYS */; - -/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; -/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */; From ea31b69bd31ff536a1eac06839236c037ba205ff Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Tue, 27 Dec 2022 23:31:54 -0600 Subject: [PATCH 05/23] Update config files --- config/database.json | 8 ++++++++ config/discord.json | 4 ++-- config/email.json | 27 +++++++++++++++++++++++++++ 3 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 config/database.json create mode 100644 config/email.json diff --git a/config/database.json b/config/database.json new file mode 100644 index 00000000..e21d53c4 --- /dev/null +++ b/config/database.json @@ -0,0 +1,8 @@ +{ + "host": "", + "user": "", + "pass": "", + "name": "", + "port": 3306, + "usePersistentConnection": false +} \ No newline at end of file diff --git a/config/discord.json b/config/discord.json index d9e9456d..095e5293 100644 --- a/config/discord.json +++ b/config/discord.json @@ -9,7 +9,7 @@ "sendAction": false, "webhook": { "enabled": false, - "webhookBaseURL": "http://127.0.0.1:8090/discord.php?message={0}&server={1}&type={2}&pass={3}", - "pass": "LWb7T3ZyCam7Nzen" + "webhookBaseURL": "", + "pass": "" } } \ No newline at end of file diff --git a/config/email.json b/config/email.json new file mode 100644 index 00000000..ff5f5560 --- /dev/null +++ b/config/email.json @@ -0,0 +1,27 @@ +{ + "enabled": false, + "method": "http", + "smtp": { + "host": "", + "port": 0, + "username": "", + "password": "", + "from": "", + "fromName": "", + "useTLS": true + }, + "http": { + "password": "", + "baseURL": "" + }, + "bodyContent": { + "confirmEmail": "Welcome to {SERVERNAME}!\nPlease confirm your email by using the command /verifyemail in-game.\n\nYour verification code is: {VERIFICATIONCODE}", + "emailConfirmed": "Your email has been confirmed on {SERVERNAME}!\nYou may now use this email to reset your password, require two-factor authentication on login, receive offline notifications, and more!", + "twoFactorAuthentication": "Please enter the following code to login on {SERVERNAME} for {GAMENAME}: {2FACODE}", + "accountAuthSuccessAlert": "You or someone else has successfully logged in to your account on {SERVERNAME} for {GAMENAME}.\nIP Address: {IPADDRESS}\nLocation: {LOCATION}\nTimestamp: {TIMESTAMP}", + "accountAuthFailAlert": "You or someone else has failed to login to your account on {SERVERNAME} for {GAMENAME}.\nIP Address: {IPADDRESS}\nLocation: {LOCATION}\nTimestamp: {TIMESTAMP}", + "offlineMessageAlert": "You have received a private message on {SERVERNAME} for {GAMENAME}. \nYou are receiving this notification because you enabled email message notifications when you're not connected to the server.\nFrom: {FROMNAME}\nTimestamp: {TIMESTAMP}\nMessage: {MESSAGE}", + "confirmPasswordReset": "You (or someone else) requested to reset your password on {SERVERNAME}!\nPlease confirm this request by entering the code below into the password reset window in-game.\n\nYour verification code is: {VERIFICATIONCODE}\n\n\nIf you did not request a password reset, then there's nothing to worry about since your password can only be reset with the code above.", + "passwordChanged": "Your password on {SERVERNAME} has been changed successfully!" + } +} \ No newline at end of file From bacb54423b233f9e0e485399abce0952a3884834 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Tue, 27 Dec 2022 23:32:41 -0600 Subject: [PATCH 06/23] Add locale files --- locale/arabic.json | 756 +++++++++++++++++++++++++++++++++++ locale/canadian-french.json | 754 +++++++++++++++++++++++++++++++++++ locale/chinese.json | 752 +++++++++++++++++++++++++++++++++++ locale/english.json | 754 +++++++++++++++++++++++++++++++++++ locale/finnish.json | 751 +++++++++++++++++++++++++++++++++++ locale/french.json | 752 +++++++++++++++++++++++++++++++++++ locale/german.json | 751 +++++++++++++++++++++++++++++++++++ locale/japanese.json | 752 +++++++++++++++++++++++++++++++++++ locale/latvian.json | 754 +++++++++++++++++++++++++++++++++++ locale/lithuanian.json | 753 +++++++++++++++++++++++++++++++++++ locale/persian.json | 753 +++++++++++++++++++++++++++++++++++ locale/polish.json | 751 +++++++++++++++++++++++++++++++++++ locale/russian.json | 752 +++++++++++++++++++++++++++++++++++ locale/slovak.json | 752 +++++++++++++++++++++++++++++++++++ locale/spanish.json | 758 ++++++++++++++++++++++++++++++++++++ 15 files changed, 11295 insertions(+) create mode 100644 locale/arabic.json create mode 100644 locale/canadian-french.json create mode 100644 locale/chinese.json create mode 100644 locale/english.json create mode 100644 locale/finnish.json create mode 100644 locale/french.json create mode 100644 locale/german.json create mode 100644 locale/japanese.json create mode 100644 locale/latvian.json create mode 100644 locale/lithuanian.json create mode 100644 locale/persian.json create mode 100644 locale/polish.json create mode 100644 locale/russian.json create mode 100644 locale/slovak.json create mode 100644 locale/spanish.json diff --git a/locale/arabic.json b/locale/arabic.json new file mode 100644 index 00000000..33d5c301 --- /dev/null +++ b/locale/arabic.json @@ -0,0 +1,756 @@ +{ + "TranslationProvidedBy": "Kasir", + "LocaleEnglishName": "Arabic", + + "LocaleNativeName": "عربى", + "LocaleOffer": ".الخادم متاح باللغة الإنجليزية.استخدم {1} لاستخدامه", + "LocaleChanged1": "لغتك الآن على {1}", + "LocaleChanged2": "سيعرض الخادم الآن الرسائل في {1}", + "LocaleChangedNote": "هذا لا يغير الرسائل من اللاعبين الآخرين", + "AccentsListHeader": "لهجآت", + "HelpMainListHeader": "فئة الدعم", + "AccentNotFound": "اللكنة الحالية غير متوفرة", + "AccentSet": "قمت بتعيين لهجتك على {1}", + "InvalidAnimation": "هذه الرسوم المتحركة غير متوفرة", + "AnimationCommandTip": "استخدم {1} لمشاهدة قائمة الرسوم المتحركة المتاحة", + "InvalidAnimationDistance": "يجب المسافة تكون بين 0 و 3", + "AnimationStopCommandTip": "استخدم {1} لإيقاف الرسوم المتحركة", + "CantBanClient": "لا يمكنك حظر هذا الإعب", + "PlayerAccountBanned": "تم حظر حساب {1}", + "ClanNotFound": "لم يتم العثور على المجموعة", + "ClanNameTaken": "توجد مجموعة بهذا الاسم بالفعل", + "PlayerNotFound": "الاعب غير موجود", + "ClanCantRemoveRanks": "لا يمكنك إزالة رتب المجموعة", + "ClanCantAddRanks": "لأ يمكنك إضافة رتب", + "ClanRankNotFound": "رتبة غير موجودهـ", + "ClanCantChangeMemberTag": "ليس لديك الصلاحيات لتعديل على علامات رتب الاعضاء", + "ClanPlayerNotInSameClan": "الاعب غير موجود بمجموعتك", + "ClanCantChangeRankLevel": "ليس لديك صلاحيات لتغيير مستوى رتبة المجموعة", + "ClanCantChangeRankTag": "لا يمكنك تغيير علامات رتب المجموعة", + "NameNotRegistered": "اسمك غير مسجل! استخدم {1} لإنشاء حساب.", + "AutomaticLoginIPToggle": "IP تم تفعيل {1} تسجيل الدخول التلقائي عن طربق", + "CouldNotRegisterAccount": "حدثت مشكلة في إنشاء حسابك, يرجى التواصل بـ إلاداره.", + "RandomTipsToggle": "النصائح العشوائية{1}", + "ActionTipsToggle": "نصائح العمل{1}", + "AutoSpawnLastCharToggle": "النشر التلقائي كأخر حرف تم استخدامه هو {1}", + "AccountGUISettingToggle": "واجهة المستخدم الرسومية هي الآن {1}", + "On": "تشغيل", + "Off": "إيقاف", + "Yes": "موافق", + "No": "لا", + "True": "صحيح", + "False": "خطأ", + "Locked": "مغلق", + "Unlocked": "مفتوح", + "PasswordNotGoodEnough": "كلمة المرور الجديدة يجب أن تفي بالمتطلبات!", + "PasswordNeedsBase": " {1} يجب أن تحتوي كلمات المرور على الأقل", + "PasswordNeedsCapitals": "{1}من الأحرف الكبيرة", + "PasswordNeedsNumbers": "{1} أرقام", + "PasswordNeedsSymbols": "{1} حروف او رموز", + "PasswordsDontMatch": "كلمة المرور الجديدة وتأكيد كلمة المرور الجديدة ليسا متطابقين!!", + "PasswordChanged": "تم بنجاح تغيير كلمة المرور!", + "AutoLoggedInIP": "IP تم تسجيل دخولك تلقائيًا بواسطة!", + "WelcomeBack": "مرحبًا بك مرة أخرى في {1} ، {2}! من فضلك {3} للمتابعة.", + "WelcomeNewPlayer": "مرحبًا بك في {1} ، {2}! من فضلك {3} للعب.", + "InvalidPlayer": "اللاعب غير موجود!", + "InvalidBusiness": "لم يتم العثور على الأعمال!", + "InvalidHouse": "البيت غير موجود!", + "InvalidVehicle": "لم يتم ايجاد السيارة!", + "InvalidClan": "لم يتم العثور على المجموعة!", + "InvalidClanRank": "رتبة غير موجوده!", + "InvalidJob": "لم يتم العثور على الوظيفة!", + "InvalidItem": "العنصر غير موجود!", + "InvalidItemType": "نوع العنصر غير موجود!", + "InvalidRadioStation": "لم يتم العثور على محطة راديو!", + "InvalidGate": "البوابة غير موجودة!", + "EntersProperty": "({2}) يفتح الباب ويدخل {1}", + "ExitsProperty": "({2}) يفتح الباب ويخرج من {1}", + "EnterExitPropertyDoorLocked": "يحاول فتح الباب {1} ولكنه يفشل لأنه مغلق", + "PropertyNoInterior": "هذا ليس له جزء داخلي {1}، ولكن لا يزال بإمكانك استخدام الأوامر على أيقونة الباب.", + "NoBusinessWithItemType": "لا يوجد عمل مع هذا الخيار متاح", + "HeaderKeyBinds": "مفتاح الروابط", + "HeaderAccountHelp": "مساعدة الحساب", + "HeaderVehicleHelp": "تعليمات السيارة", + "HeaderVehicleDealershipHelp": "مساعدة بيع سيارات", + "HeaderJobHelp": "تعليمات الوظيفة", + "HeaderChatHelp": "تعليمات الدردشة", + "HeaderServerRules": "قوانين سيرفر", + "HeaderWebsiteInfo": "الموقع الرسمي", + "HeaderDiscordInfo": "ديسكورد", + "HeaderAnimationsList": "قائمة الرسوم المتحركة", + "HeaderPayAndSprayHelp": "الدفع ,ورشٌ المساعده", + "HeaderAmmunationHelp": "مساعدة الذخيرة", + "HeaderVehicleTuneupHelp": "مساعدة تعديل السيارة", + "HeaderBindableKeysHelp": "مفاتيح قابلة للربط", + "HeaderSkinHelp": "مساعدة الملابس / الجلد", + "HeaderBusinessHelp": "تعليمات الأعمال", + "HeaderClanHelp": "تعليمات المجموعة", + "HeaderPlayerVehiclesList": "مركبات المشغل ({1})", + "HeaderPlayerBusinessesList": "أعمال اللاعب ({1})", + "HeaderClansList": "قائمة المجموعة", + "HeaderAdminsList": "قائمة الادمن", + "HeaderAccentsList": "قائمة اللغة", + "HeaderPlayerInfo": "معلومات الاعب", + "HeaderWealthandTaxHelp": "معلومات المال", + "HeaderCommandInfo": "معلومات الإوامر ({1})", + "HeaderRadioHelp": "تعليمات راديو", + "HeaderRadioStationsList": "محطات الردايو", + "HeaderKeyBindsList": "قائمة روابط المفاتيح", + "RadioVolumeChanged": "{1} لقد {2} غيرت مستوى صوت البث اللاسلكى إلى٪", + "VolumeLevelNotNumber": "يجب أن يكون مستوى الصوت رقمًا", + "RadioStationLocationInvalid": "يجب أن تكون في سيارة أو منزل أو عمل أو لديك جهاز شخصي لتغيير المحطة!", + "ActionBusinessRadioStationChange": "تغيير محطة راديو الأعمال إلى {1} ({2})", + "ActionHouseRadioStationChange": "تغيير محطة راديو المنزل إلى {1} ({2})", + "ActionVehicleRadioStationChange": "يغير محطة راديو السيارة إلى {1} ({2})", + "ActionItemRadioStationChange": "يغير محطة {1} إلى {2} ({3})", + "RandomVehicleCommandsDisabled": "هذه مركبة مرور عشوائية ولا يمكن استخدام الأوامر لها.", + "HouseDoorLock": "البيت {1} {2}!", + "BusinessDoorLock": "الأعمال {1} {2}!", + "ServerGameModeRestarting": "يتم إعادة تشغيل وضع لعبة الخادم!", + "HeaderSelfItemList": "المخزون الخاص بك", + "HeaderPlayerItemList": "مخزون الاعب ({1})", + "HeaderHouseItemList": "بيت الاعب", + "HeaderBusinessFloorItemList": "جرد الأعمال (للبيع)", + "HeaderBusinessStorageItemList": "جرد الأعمال (التخزين)", + "HeaderItemItemList": "مخزون {1}", + "ItemSlotNotNumber": "يجب أن تكون خانة العنصر رقمًا", + "ItemSlotMustBeBetween": "The item slot must be between {1} and {2}!", + "UseItemBugged": "العنصر الذي تحاول استخدامه به التنصت. تم إرسال تقرير خطأ إلى مطوري الخادم.", + "PickupItemBugged": "العنصر الذي تحاول استلامه به التنصت. تم إرسال تقرير خطأ إلى مطوري الخادم.", + "DropItemBugged": "تم التنصت على العنصر الذي تحاول إسقاطه. تم إرسال تقرير خطأ إلى مطوري الخادم.", + "HandsBusy": "يديك مشغولتان", + "CantUseItemInSkinChange": "لا يمكنك استخدام عنصر أثناء تخصيص مظهرك", + "CantDropItemInSkinChange": "لا يمكنك إسقاط عنصر أثناء تخصيص مظهرك", + "CantPickupItemInSkinChange": "لا يمكنك التقاط عنصر أثناء تخصيص مظهرك", + "CantSwitchItemInSkinChange": "لا يمكنك تبديل عنصر أثناء تخصيص مظهرك", + "CantGiveItemInSkinChange": "لا يمكنك إعطاء عنصر أثناء تخصيص مظهرك", + "CantTakeItemInSkinChange": "لا يمكنك أن تأخذ عنصرًا أثناء تخصيص مظهرك", + "ItemUnequippableNoAmmo": "لا تحتوي الفتحة {1} الموجودة في الفتحة {2} على ذخيرة ، ولا يمكن تجهيزها!", + "NoSpaceSelfInventory": "ليس لديك أي مساحة إضافية في مخزونك", + "Business": "الاعمال", + "House": "البيت", + "Clan": "المجموعة", + "Vehicle": "السيارة", + "Item": "الاغراض", + "ItemType": "نوع العنصر", + "Gate": "بوابة", + "Door": "باب", + "ClanRank": "رتبة المجموعة", + "JobRank": "رتبة الوظيفة", + "RadioStation": "المحطة الإذاعية", + "Months": [ + "يناير", + "فبراير", + "مارس", + "أبريل", + "مايو", + "يونيو", + "يوليو", + "أغسطس", + "سبتمبر", + "أكتوبر", + "نوفمبر", + "ديسمبر" + ], + "WeekDays": [ + "الأحد", + "الإثنين", + "الثلاثاء", + "الاربعاء", + "الخميس", + "الجمعه", + "السبت" + ], + "CardinalDirections": { + "North": "شمال", + "Northeast": "الشمال الشرقي", + "East": "شرق", + "Southeast": "الجنوب الشرقي", + "South": "جنوب", + "Southwest": "جنوب غرب", + "West": "غرب", + "Northwest": "الشمال الغربي" + }, + "NewPlayerReadyToPlay": [ + "لقد حصلت على بعض من المال. استخدم {1} للبحث عن أماكن لشراء العناصر.", + "إذا كنت بحاجة إلى المال،الوظائف هي النقاط الصفراء على الخريطة.", + "للحصول على سيارة ، قم بزيارة وكالة السيارات. يمكنك أيضًا استخدام سيارة مستأجرة بالقرب من السباون أو ركوب القطار", + "تأكد من قراءة {1} واستخدم {2} للحصول على معلومات." + ], + "YourCurrentVehicleDeleted": "تم حذف السيارة التي كنت بداخلها.", + "Distance": "مسافة", + "Meters": "أمتار", + "Feet": "قدم", + "Kilometers": "كيلومترات", + "Miles": "اميال", + "MustBeVehicleDriver": "يجب أن تكون سائق السيارة!", + "PlayerJoinedServer": "انضم إلى اللعبة من {1}!", + "PlayerLeftServer": "غادر {1} اللعبة! ({2})", + "TakeItemFromHouse": "يأخذ {1} من المنزل", + "TakeItemFromBusinessStorage": "يأخذ {1} من تخزين الشركة", + "TakeItemFromBusiness": "يأخذ {1} من الأعمال", + "TakeItemFromItem": "يأخذ {1} من {2}", + "TakeItemFromVehicleTrunk": "يأخذ {1} من صندوق السيارة", + "TakeItemFromVehicleDash": "يأخذ {1} من صندوق القفازات", + "AccountHelp": [ + "لا تشارك كلمة مرورك مع أي شخص آخر. لن يطالبك فريق عمل {1} بكلمة المرور مطلقًا", + "استخدم {1} لتغيير كلمة المرور الخاصة بك ، و {2} إذا نسيتها", + "بعض الإعدادات التي يمكنك استخدامها: {1}" + ], + "VehicleHelp": [ + "ستوفر مركباتك الشخصية أينما تتركها أنت أو أي شخص آخر!", + "قم بزيارة المعرض لشراء مركبات جديدة (استخدم {1} لمزيد من المعلومات)", + "Some commands: {1}", + "قم بزيارة مرآب ميكانيكي لإصلاح وتلوين وضبط سيارتك! {1} للحصول على معلومات" + ], + "VehicleDealershipHelp": [ + "قم بزيارة تاجر سيارات لشراء مركبات جديدة. استخدم {1} للعثور على واحد.", + "عند التاجر ، أدخل السيارة التي تريد شراءها ، وسيظهر لك السعر", + "إذا كنت ترغب في شراء السيارة ، فاستخدم {1} وستحصل على مفاتيح لاختبار قيادتها حول ساحة الانتظار.", + "ابتعد عن الوكالة مع السيارة الجديدة لتأكيد الشراء." + ], + "JobHelp": [ + "قم بزيارة مواقع العمل للحصول على وظيفة وكسب المال. ابحث عن علامات الصفراء على الخريطة", + "في موقع العمل ، استخدم {1} للحصول على الوظيفة. استخدم {2} لإنهاء عملك", + "استخدم {1} لبدء العمل. يمكنك أيضًا الحصول على وظيفة {2} و {3}", + "يتم تأمين معظم مركبات العمل. استخدم {1} بالقرب من واحد للدخول إليه.", + "عند دخول مركبة عمل ، ستظهر لك معلومات حول كيفية القيام بالمهمة." + ], + "ChatHelp": [ + "(IC)والشخصية(OOC)هناك نوعان رئيسيان من الدردشة: خارج الطابع الشخصي", + "الخلط بين هذين النوعين ليس لعب الأدوار المناسب. راجع {1} للحصول على معلومات.", + "بعض أوامر الدردشة: {1}", + "يتوفر لبعضها أسماء أقصر ({1} للتحدث ، {2} للصراخ ، إلخ)" + ], + "ServerRulesHelp": [ + ".غير مسموح بها.انت لست سوبر مان(powergaming)الإجراءات غير الواقعية", + "لا يسمح بأدوار إرهابية", + "اتبع دائمًا التعليمات التي قدمها المشرفون والاداره", + "لا تخلط الدردشات (metagaming). لا يمكنك استخدام المعلومات في IC التي تم استلامها OOC", + "حافظ على اللغة الإنجليزية في الدردشات الرئيسية. إذا لم تكن جيدًا في اللغة الإنجليزية ، فاستخدم {1}" + ], + "AnimationHelp": [ + "تتيح لك الرسوم المتحركة تحسين لعب الأدوار من خلال الإجراءات المرئية", + "استخدم {1} أو {2} مع اسم لاستخدام الرسم المتحرك.", + "لمشاهدة قائمة الرسوم المتحركة ، استخدم {1}" + ], + "WeaponHelp": [ + "قم بزيارة متجر أسلحة لشراء أسلحة. استخدم {1} للعثور على واحد.", + "شراء سلاح يتطلب رخصة سلاح.", + "يتم إدارة تراخيص الأسلحة من قبل قسم الشرطة. قدم طلبًا للحصول على واحدة ", + "يمكن أيضًا شراء الأسلحة بشكل غير قانوني من بعض الشركات وتجار الأسلحة والعصابات." + ], + "SkinHelp": [ + "في متجر الملابس ، استخدم {1} لشراء الملابس", + "عندما يكون لديك عنصر من الملابس ، قم بتجهيزه واستخدامه مثل أي عنصر آخر لإظهار اختيار الجلد (حدد {1} لمعرفة كيفية استخدام العناصر)", + "تقتصر بعض الأشكال على الوظائف أو المجموعات أو لأسباب أخرى." + ], + "KeyBindHelp": [ + "يمكنك تعيين روابط المفاتيح الخاصة بك. استخدم {1} لرؤية المفاتيح التي تم ربطها.", + "استخدم {1} لإضافة رابط مفتاح جديد و {2} لإزالة واحد.", + "المفاتيح الافتراضية هي: {1} لمحرك السيارة و {2} للأضواء و {3} للقفل / فتح القفل", + "اضغط على {1} لمشاهدة عناصرك و {2} لتجهيز عنصر أو {3} لإلغاء تجهيز الكل.", + "اضغط على {1} لاستخدام العنصر الذي تمسكه ، أو اضغط على {2} لإسقاطه ، أو اضغط على {3} لالتقاط عنصر من الأرض." + ], + "BusinessHelp": [ + "استخدم {1} لشراء العناصر أو {2} لمشاهدة قائمة بما هو معروض للبيع في أي شركة", + "تظهر الشركات بأسماء زرقاء فوق الرمز عند مدخلها.", + "أوامر صاحب العمل: {1}", + "ستظهر سيارة جديدة معروضة للبيع عندما تبتعد عن الوكيل." + ], + "ClanHelp": [ + "اطلب من الإدارة إنشاء تيم(القبيلة) (على غرار الفصائل / المجموعات / العائلات)", + "يتمتع مالكو التيم(القبيلة) بالسيطرة الكاملة على افراد المجموعة بمجرد إنشائها", + "أوامر القبيلة: {1}", + "أوامر القبيلة: {1}" + ], + "RadioStationHelp": [ + "استخدم {1} لتعيين المحطة لمركبتك أو منزلك أو عملك", + "استخدم {2} لمشاهدة قائمة المحطات", + "يمكنك تغيير حجم تدفق الراديو باستخدام {1} مع 0-100 كنسبة مئوية" + ], + "WealthAndTaxHelp": [ + "ضرائبك في يوم الدفع هي {1} بالمائة من ثروتك المحسوبة.", + "ثروتك المحسوبة هي مجموع إجمالي يعتمد على عدد المركبات والمنازل والشركات التي لديك.", + "كل سيارة {1} ، كل منزل {2} ، وكل عمل {3}", + "استخدم {1} لمعرفة ثروتك الحالية ، و {2} لمعرفة المبلغ الذي ستدفعه كضريبة في كل يوم دفع" + ], + "MustBeInAVehicle": "يجب أن تكون في مركبة!", + "MustBeInOrNearVehicle": "أنت بحاجة إلى أن تكون في السيارة أو بالقرب منها!", + "MustBeInVehicleFrontSeat": "يجب أن تكون في المقاعد الأمامية للسيارة!", + "MustBeInVehicleDriverSeat": "يجب أن تكون السائق!", + "DontHaveVehicleKey": "ليس لديك مفتاح لهذه السيارة!", + "NoGateAccess": "لا يمكنك الوصول إلى هذه البوابة!", + "GateBroken": "هذه البوابة مكسورة!", + "GateHacked": "البوابة لا تستجيب!", + "RadioJammed": "تسمع صوتًا ثابتًا فقط من الراديو.", + "VehicleNotForSale": "هذه السيارة ليست للبيع!", + "VehicleNotForRent": "هذه السيارة ليست للإيجار!", + "BusinessNotForSale": "هذا العمل ليس للبيع!", + "BusinessNotForRent": "هذا العمل ليس للإيجار!", + "HouseNotForSale": "هذا المنزل ليس للبيع!", + "HouseNotForRent": "هذا المنزل ليس للإيجار!", + "DealershipPurchaseTestDrive": "قم بقيادة السيارة بعيدًا عن الوكالة لشرائها ، أو اخرج للإلغاء.", + "DealershipPurchaseExitedVehicle": "لقد ألغيت شراء السيارة بالخروج من السيارة!", + "VehiclePurchaseComplete": "هذه السيارة الآن لك!", + "VehiclePurchaseNotEnoughMoney": "ليس لديك ما يكفي من المال لشراء هذه السيارة!", + "HousePurchaseNotEnoughMoney": "ليس لديك ما يكفي من المال لشراء هذا المنزل!", + "BusinessPurchaseNotEnoughMoney": "ليس لديك ما يكفي من المال لشراء هذا العمل!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "بيوت اللاعبين ({1})", + "HeaderPlayerStaffFlagsList": "أعلام طاقم العمل ({1})", + "HeaderStaffFlagsList": "أعلام الموظفين", + "NonRPName": "اسم غير RP! اختر واحدة جديدة:", + "InvalidStaffFlag": "لم يتم العثور على علم الموظفين!", + "InvalidClanFlag": "علم القبيلة غير موجود!", + "InvalidLocale": "اللغة غير موجودة!", + "HeaderJobUniformList": "زي العمل ({1})", + "HeaderJobEquipmentList": "معدات العمل ({1})", + "InvalidJobUniform": "زي العمل غير موجود!", + "InvalidJobEquipment": "لم يتم العثور على معدات العمل!", + "HeaderVehiclesInRangeList": "مركبات داخل {1}", + "NoVehiclesWithinRange": "لا توجد مركبات داخل {1}", + "AmountNotNumber": "المبلغ يجب أن يكون رقما!", + "NeedToBeWorking": "يجب أن تعمل! استخدم {1} في موقع العمل أو بالقرب من سيارات العمل.", + "NeedToBeOnJobRoute": "عليك أن تفعل طريق عمل! استخدم {1} في مركبة عمل", + "CurrentJobRouteVehicleColoursChanged": "تم تغيير ألوان السيارة لمسار وظيفتك بواسطة الإدمن", + "NotYourJob": "هذه ليست وظيفتك!", + "JobPoints": "يمكنك الحصول على وظيفة من خلال الذهاب إلى النقاط الصفراء على الخريطة.", + "QuitJobToTakeAnother": "إذا كنت تريد هذه الوظيفة ، فاستخدم {1} لإنهاء وظيفتك الحالية.", + "NotAJobVehicle": "هذه ليست وسيلة عمل!", + "NotYourJobVehicle": "هذه ليست مركبة عملك!", + "HeaderPickupTypes": "أنواع الالتقاط", + "HeaderBlipTypes": "أنواع أيقونات الخريطة", + "InvalidGPSLocation": "لا توجد مواقع بهذا الاسم أو النوع", + "HeaderBusinessList": "الأعمال", + "VehicleForSale": "يمكن شراء {1} مقابل {2}! استخدم {3} إذا كنت ترغب في شرائه", + "VehicleForRent": "هذا {1} قابل للتأجير لـ {2}! استخدم {3} إذا كنت تريد استئجاره", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "رمز مرور خاطئ! عدد المحاولات المتبقية: {1}", + "LoginFailedNoPassword": "يجب عليك إدخال كلمة المرور! ! عدد المحاولات المتبقية: {1}", + "RegistrationFailedNoPassword": "يجب عليك إدخال كلمة المرور!", + "RegistrationFailedNoPasswordConfirm": "يجب عليك تأكيد كلمة المرور!", + "RegistrationFailedNoEmail": "يجب إدخال البريد الإلكتروني!", + "AccountNameAlreadyRegistered": "تم تسجيل اسمك بالفعل!", + "AlreadyLoggedIn": "انت بالفعل بداخل!", + "RegistrationFailedInvalidEmail": "هذا البريد الإلكتروني غير صالح!", + "RegistrationFailedPasswordMismatch": "كلمات المرور غير متطابقة!", + "RegistrationFailedCreateError": "تعذر إنشاء حسابك!", + "RegistrationSuccess": "لقد تم إنشاء حسابك!", + "RegistrationEmailVerifyReminder": "لا تنس التحقق من بريدك الإلكتروني! تم إرسال رمز التحقق لك.", + "RegistrationCreateCharReminder": "للعب على الخادم ، ستحتاج إلى تكوين شخصية.", + "NoCharactersGUIMessage": "ليس لديك أحرف. هل ترغب في صنع واحدة؟", + "NoCharactersGUIWindowTitle": "لا أحرف", + "NoCharactersChatMessage": "ليس لديك أحرف. استخدم {1} لإنشاء واحدة.", + "NeedEmailFor2FA": "تحتاج إلى إضافة بريدك الإلكتروني إلى حسابك لاستخدام المصادقة ذات العاملين.", + "NeedEmailVerifiedFor2FA": "تحتاج إلى التحقق من بريدك الإلكتروني لاستخدام المصادقة ذات العاملين.", + "SetEmailHelpTip": "استخدم {1} لتعيين بريدك الإلكتروني.", + "VerifyEmailHelpTip": "استخدم {1} للتحقق من بريدك الإلكتروني.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "راديو قريب", + "FromRadio": "من الراديو", + "ToRadio": "في الراديو", + "NeedToEnterPropertyCommand": "تحتاج إلى إدخال {1} أولاً! استخدم {2} للدخول والخروج", + "NeedToEnterPropertyKeyPress": "تحتاج إلى إدخال {1} أولاً! اضغط على {2} للدخول والخروج", + "InventoryFullCantCarry": "ليس لديك أي مساحة لحمل هذا (جرد كامل)!", + "NotEnoughCashNeedAmountMore": "ليس لديك ما يكفي من المال! أنت بحاجة إلى {1} أكثر!", + "AmountMustBeMoreThan": "يجب أن يكون المبلغ أكثر من {1}!", + "WeaponBanned": "لا يسمح لك بشراء أو استخدام الأسلحة!", + "TimeNotNumber": "يجب أن يكون الوقت رقمًا", + "HeaderDefaultBusinessItemTypes": "قوالب عناصر الأعمال", + "FixingStuck": "إصلاح موقعك والعالم الافتراضي ...", + "CantUseCommandYet": "يجب أن تنتظر قبل أن تتمكن من استخدام هذا الأمر مرة أخرى!", + "NotATester": "أنت لست مختبرا!", + "AccessDenied": "تم الرفض", + "InvalidSkin": "هذا الجلد غير صالح!", + "HeaderInteriorTypes": "قائمة التصميمات الداخلية", + "ViewInventoryKeyPressTip": "اضغط على {1} لرؤية العناصر الخاصة بك", + "ViewInventoryCommandTip": "استخدم {1} لمشاهدة عناصرك", + "GUIAccountSettingToggle": "لقد قمت بتحويل {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "يمكنك شراء سيارة من خلال زيارة متجر سيارات. استخدم {1} لمزيد من المعلومات.", + "SkinCommandHelp": "يمكنك تغيير بشرتك من خلال زيارة متجر الملابس. استخدم {1} لمزيد من المعلومات.", + "BusinessVehiclesRespawned": "تم تجديد جميع المركبات التجارية من قبل الإدارة!", + "JobVehiclesRespawned": "تم تجديد جميع مركبات العمل من قبل الإدارة!", + "PlayerVehiclesRespawned": "تمت إعادة نشر جميع مركبات اللاعب من قبل الإدارة", + "ClanVehiclesRespawned": "تمت إعادة نشر جميع مركبات العشيرة من قبل الإدارة!", + "PublicVehiclesRespawned": "تمت إعادة نشر كل الجمهور من قبل الإدارة", + "EmptyVehiclesRespawned": "تم إعادة نشر جميع المركبات الفارغة من قبل الإدارة", + "AllVehiclesRespawned": "تم تجديد جميع المركبات من قبل الإدارة", + "AllVehiclesReloaded": "تم إعادة تحميل جميع المركبات من قبل الإدارة", + "YourVehicleRespawned": "تمت إعادة سيارتك", + "PlayerIPBanned": "تم حظر عنوان IP {1}!", + "PlayerCharacterBanned": "تم حظر شخصية {1}!", + "PlayerSubNetBanned": "تم حظر الشبكة الفرعية {1}!", + "CantModifyBusiness": "لا يمكنك إدارة أو تعديل هذا العمل", + "CantModifyHouse": "لا يمكنك إدارة أو تعديل هذا العمل", + "ServerTimeSet": "{1} اضبط الوقت على {2}", + "ServerWeatherSet": "{1} ضبط الطقس على {2}", + "ServerSnowSet": "{1} تحول الثلج المتساقط {2} وثلوجًا على سطح الأرض {3}", + "AllJobsReloaded": "تم إعادة تحميل جميع وظائف الخادم من قبل الإدمن", + "ServerLogoSet": "{1} صورة شعار الخادم {2}", + "ServerGUISet": "{1} شغّل واجهة المستخدم الرسومية لهذا الخادم {2}", + "ServerBusinessBlipsSet": "{1} قلب كل الإشارات المقلدة للأعمال {2}", + "ServerHouseBlipsSet": "{1} قلب كل الصور المظللة بالمنزل {2}", + "ServerJobBlipsSet": "{1} قلب كل إشارات المهام {2}", + "ServerBusinessPickupsSet": "قام {1} بتحويل جميع انتعاش الشركات {2}", + "ServerHousePickupsSet": "{1} قلبت جميع شاحنات المنزل {2}", + "ServerJobPickupsSet": "شغّل {1} كافة عمليات التقاط الوظائف {2}", + "BusinessBuyItemsLabel": "استخدم {1} لشراء العناصر", + "PropertyEnterCommandLabel": "استخدم {1} للدخول", + "PropertyEnterKeyPressLabel": "اضغط على {1} للدخول", + "PropertyForSaleLabel": "للبيع: {1} دولار", + "PropertyForRentLabel": "للإيجار: {1} دولار كل يوم دفع", + "RemainingTaxPaidInMoney": "لقد غطيت الضرائب المتبقية بمبلغ {1} دولار أمريكي نقدًا.", + "LostMoneyFromTaxes": "لقد خسرت المال لأن ضرائبك تزيد عن راتبك!", + "NextPaycheckRepossessionWarning": "إذا لم يكن لديك نقود كافية لتغطية الضرائب على شيك الراتب التالي ، فستفقد أشياء!", + "NotEnoughMoneyForTax": "ليس لديك ما يكفي من المال لتغطية ضرائبك!", + "AssetsRepossessedForTax": "لقد فقدت {1} من المركبات و {2} المنازل و {3} الأنشطة التجارية نظرًا لعدم قدرتك على دفع الضرائب!", + "Closed": "مغلق", + "Open": "فتح", + "VehicleDealershipLabel": "أدخل السيارة كسائق لشرائها", + "TakeJobLabel": "استخدم {1} للعمل هنا", + "StartWorkLabel": "استخدم {1} لبدء العمل", + "JobEquipAndUniformLabel": "استخدم الوظيفة {1} و {2} ، أو {3} للتوقف عن العمل", + "NotYourJobLabel": "لديك بالفعل وظيفة مختلفة. استخدم {1} إذا كنت تريد هذا", + "JobLabel": "{1} وظيفة", + "PaydayBonusSet": "🤑 {1} اضبط مكافأة يوم الدفع على {2} دولار", + "AllHousesReloaded": "🏘️ تم إعادة تحميل جميع المنازل من قبل الإدارة", + "AllRadioStationsReloaded": "📻 تم إعادة تحميل جميع محطات الراديو من قبل الإدارة", + "PlayerKicked": "🦶 تم طرد {1} من الخادم", + "AllBusinessesReloaded": "🏢 تم إعادة تحميل جميع الأعمال من قبل الإدارة", + "UnableToDoThat": "أنت غير قادر على القيام بذلك", + "SetVehicleClanConfirmMessage": "هل أنت متأكد أنك تريد إعطاء هذه السيارة لمجموعتك", + "SetVehicleClanConfirmTitle": "تحذير!", + "SetItemPriceBelowOrderPriceMessage": "هل أنت متأكد أنك تريد تعيين سعر العنصر أسفل سعر الأمر؟ ستخسر {1} دولارًا أمريكيًا في كل عملية شراء!", + "SetItemPriceBelowOrderPriceTitle": "تحذير!", + "MustOwnVehicle": "أنت لا تملك هذه السيارة!", + "RandomTips": [ + "ابحث عن النقاط الصفراء على خريطتك لمواقع العمل", + "يمكنك تعيين روابط مفاتيح مخصصة. استخدم {1} للحصول على التفاصيل", + "استخدم {1} إذا كنت لا تريد مشاهدة النصائح والمعلومات الإضافية", + "يمكنك تحرير روابط المفاتيح الخاصة بك باستخدام {1} و {2}", + "اضغط على ℹ️ لرؤية مخزونك ، واستخدم مفاتيح الأرقام لتحديد عنصر", + "استخدم {1} في الشركة لشراء العناصر", + "وجدت خطأ؟ الإبلاغ عن ذلك مع {1}", + "تريد شراء عمل؟ استخدم {1} بسعر واحد للبيع", + "تريد شراء عمل؟ استخدم {1} بسعر واحد للبيع", + "تريد شراء منزل؟ استخدم {1} بسعر واحد للبيع", + "تريد شراء سيارة؟ قم بزيارة أحد الوكلاء وأدخل واحدًا للحصول على معلومات حول كيفية شرائه!", + "التبديل إلى أي من الشخصيات الخاصة بك مع {1}", + "استخدم {1} لتسجيل الدخول تلقائيًا عند الاتصال بنفس عنوان IP", + "استخدم {1} لتشغيل / إطفاء الأنوار في منزلك أو عملك", + "استخدم {1} لتشغيل محطة راديو عبر الإنترنت في سيارتك أو منزلك أو عملك", + "تريد تكوين مجموعة؟ استخدم {1} للحصول على التفاصيل", + "يمكن شراء الأسلحة القانونية بأي ذخيرة" + ], + "PromptResponseTip": "استخدم {1} للقبول أو {2} للرفض", + "PlayerConnecting": "👋يتم الاتصال بالخادم {1}", + "GetStartedJobVehicle": "احصل على {1} لتبدأ.", + "VehicleTypes": { + "Car": "سيارة", + "Truck": "شاحنة", + "Van": "سيارة نقل", + "Taxi": "تاكسي", + "Bus": "باص", + "PoliceCar": "سيارة شرطة", + "Ambulance": "سياره اسعاف", + "FireTruck": "سيارة إطفاء", + "Bike": "دراجة", + "Motorbike": "دراجات نارية", + "Boat": "قارب", + "Helicopter": "هليكوبتر", + "Plane": "طائرة", + "Train": "قطار" + }, + "AlreadyOnJobRoute": "أنت تقوم بالفعل بطريق عمل!", + "GaveVehicleToClan": "لقد أعطيت هذا {1} لمجموعتك", + "JobDisabled": "تم تعطيل هذه الوظيفة!", + "SetHouseClanConfirmMessage": "هل أنت متأكد أنك تريد إعطاء هذا المنزل لمجموعتك?", + "SetHouseClanConfirmTitle": "تحذير!", + "SetBusinessClanConfirmMessage": "هل أنت متأكد أنك تريد إعطاء هذا العمل لمجموعتك", + "SetBusinessClanConfirmTitle": "تحذير!", + "MustOwnHouse": "أنت لا تملك هذا المنزل!", + "MustOwnBusiness": "أنت لا تملك هذا العمل!", + "GaveHouseToClan": "لقد أعطيت هذا المنزل لمجموعتك", + "GaveBusinessToClan": "لقد أعطيت هذا العمل لمجموعتك", + "BuyBusinessConfirmMessage": "هل أنت متأكد أنك تريد شراء هذا العمل؟", + "BuyBusinessConfirmTitle": "تحذير!", + "BuyHouseConfirmMessage": "هل أنت متأكد أنك تريد شراء هذا المنزل؟", + "BuyHouseConfirmTitle": "تحذير!", + "BuyBusinessLabel": "استخدم {1} لشراء هذا النشاط التجاري", + "BuyHouseLabel": "استخدم {1} لشراء هذا المنزل", + "RentHouseLabel": "استخدم {1} لاستئجار هذا المنزل", + "AccountEmailAlreadyVerified": "لقد قمت بالفعل بتعيين والتحقق من بريدك الإلكتروني!", + "EmailVerificationCodeSent": "تم إرسال رمز التحقق والتعليمات إلى بريدك الإلكتروني.", + "GUIPlayAsCharacterButton": "لعب", + "GUINewCharacterButton": "شخصية جديدة", + "GUIPreviousCharacterButton": "سابق", + "GUINextCharacterButton": "التالي", + "GUICharacterSelectWindowTitle": "حدد شخصية", + "GUICharacterSelectMoneyLabel": "المال: {1} دولار", + "GUICharacterSelectClanLabel": "المجموعة: {1}", + "GUICharacterSelectLastPlayedLabel": "آخر زيارة: قبل {1} يوم و {2} ساعة و {3} دقيقة", + "GUILoginWindowLabelEnterPassword": "من فضلك أدخل كلمة السر", + "GUILoginWindowSubmitButton": "تسجيل الدخول", + "GUILoginWindowResetPasswordButton": "إعادة ضبط", + "GUILoginWindowPasswordPlaceholder": "كلمة المرور", + "GUILoginWindowForgotPasswordLabel": "هل نسيت كلمة المرور ؟", + "GUIRegisterWindowLabelCreateAccount": "انشاء حساب", + "GUIRegisterWindowPasswordPlaceholder": "كلمة المرور", + "GUIRegisterWindowConfirmPasswordPlaceholder": "تأكيد كلمة المرور", + "GUIRegisterWindowEmailPlaceholder": "ايميل", + "GUIRegisterWindowSubmitButton": "انشاء حساب", + "GUINewCharacterMessageLabel": "قم بتسميه شخصيتك", + "GUINewCharacterFirstNamePlaceholder": "الاسم الأول", + "GUINewCharacterLastNamePlaceholder": "الكنية", + "GUINewCharacterSubmitButton": "إنشاء إختصار", + "GUIChangePasswordWindowTitle": "تغيير كلمة المرور", + "GUIChangePasswordPasswordLabel": "أدخل كلمة مرور جديدة", + "GUIChangePasswordPasswordPlaceholder": "كلمة المرور", + "GUIChangePasswordConfirmPasswordPlaceholder": "تأكيد كلمة المرور", + "GUIChangePasswordSubmitButton": "تغيير كلمة المرور", + "GUIResetPasswordWindowMessage": "إعادة تعيين كلمة المرور", + "GUIResetPasswordConfirmEmailLabel": "برجاء تأكيد بريدك الالكترونى", + "GUIResetPasswordEmailPlaceholder": "ايميل", + "GUIResetPasswordSubmitButton": "إعادة تعيين كلمة المرور", + "GUIResetPasswordLoginButton": "تسجيل", + "GUIResetPasswordRememberMessage": "حفظ كلمة المرور الخاصة بك؟", + "HeaderJobList": "وظائف", + "HeaderBusinessInfo": "معلومات العمل", + "HeaderHouseInfo": "معلومات المنزل", + "HeaderClanInfo": "معلومات المجموعة", + "Locales": { + "English": "انجلزي", + "Russian": "روسي", + "Spanish": "الإسبانية", + "German": "الإلمانية", + "Dutch": "الهولندية", + "Polish": "البولندية", + "Chinese": "الصينية", + "French": "French", + "Japanese": "Japanese", + "Slovak": "Slovak", + "Arabic": "Arabic" + }, + "TwoFactorAuthSet": "⚙️لقد قمت بتشغيل المصادقة الثنائية {1}", + "AccountServerLogoSet": "⚙️ شعار الخادم", + "ChatScrollLinesNotNumber": "يجب أن يكون مبلغ البند رقمًا", + "ChatScrollLinesMustBeBetween": "يجب أن يكون مبلغ البند بين {1} و {2}", + "ChatScrollLinesSet": "سيقوم مربع الدردشة الآن بتمرير {1} سطورًا في المرة الواحدة", + "InvalidEmailVerificationCode": "رمز التحقق من البريد الإلكتروني غير صالح! تم إنشاء واحد جديد وإرساله إلى بريدك الإلكتروني.", + "EmailVerified": "تم التحقق من بريدك الالكتروني", + "EmailVerifiedTip": "يمكنك الآن استخدام بريدك الإلكتروني لإعادة تعيين كلمة المرور والمصادقة ذات العاملين وتنبيهات تسجيل الدخول", + "CommandRequiresLogin": "يجب أن تقوم بتسجيل الدخول لاستخدام الأمر {1}", + "CommandDisabled": "تم تعطيل الأمر {1}", + "CommandDisabledOnDiscord": "الأمر {1} غير متاح في الدسكورد", + "CommandNotFoundHelpTip": "الأمر {1} غير موجود! استخدم {2} للأوامر والمعلومات.", + "CommandNotFoundPossibleMatchTip": "الأمر {1} غير موجود! هل تقصد {2}؟", + "CommandNoPermissions": "ليس لديك إذن لاستخدام الأمر {1}", + "GUIResetPasswordCodeInputLabel": "تحقق من بريدك الإلكتروني للحصول على رمز", + "GUIResetPasswordCodePlaceholder": "رمز التحقق", + "GUIErrorTitle": "خطأ", + "GUIWarningTitle": "تحذير", + "GUIInfoTitle": "معلومات", + "GUIOkButton": "موافق", + "GUIErrorResetPasswordFailedInvalidEmail": "بريد إلكتروني خاطئ!", + "HeaderVehicleInfo": "معلومات السيارة", + "HeaderClanRanksList": "رتبة الكلان", + "HeaderNPCInfo": "معلومات الشخصية", + "NPCAnimationSet": "تم تحديد الشخصية {1} على {2}", + "NPCNameSet": "قمت بتعيين اسم الشخصية {1} على {2}", + "VehicleTooFar": "أنت بعيد جدًا عن السيارة!", + "HeaderPropertyTemplateTypes": "أنواع العقارات", + "MustBeLoggedInAndSpawnedToChat": "تحتاج إلى تسجيل الدخول ونشرها قبل أن تتمكن من الدردشة!", + "MutedCantChat": "تم إعطاءك ميوت ولا يمكنك الدردشة!", + "CantUseMegaphone": "يجب عليك تجهيز عنصر مكبر الصوت أو أن تكون في سيارة طوارئ!", + "HeaderAnimationHelp": "معلومات الرسوم المتحركة", + "HeaderBadgeInfo": "معلومات الشارة ({1})", + "NoItemCloseEnough": "لا يوجد عنصر قريب بما فيه الكفاية", + "CantDropJobEquipmentItem": "لا يمكنك إسقاط عناصر العمل", + "CantPutJobEquipmentItem": "لا يمكنك تخزين عناصر العمل", + "NoItemEquipped": "ليس لديك أي عنصر محدد", + "NoItemInActiveSlot": "ليس لديك عنصر في خانة العنصر النشط", + "CantPutItemInSkinChange": "لايمكنك تخزين عنصرأثناء تخصيص مظهرك", + "NothingToTakeItemFrom": "أنت لست بالقرب من أي شيء لأخذ العناصر منه", + "NoAmmoToLoadIntoWeapon": "ليس لديك أي ذخيرة لتحميلها في {1}", + "LoadAmmoIntoWeaponHelpCommand": "لتحميل هذه الذخيرة في سلاح ، جهز السلاح واكتب {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "لتحميل هذه الذخيرة في سلاح ، جهز السلاح واضغط {1}", + "NobodyCloseEnoughToHandcuff": "لا أحد قريب بما يكفي لتقييد يديه", + "NobodyCloseEnoughToTie": "لا أحد قريب بما يكفي لربطه", + "PlayerNotSurrenderedHandcuff": "لا يمكن تقييد {1}! هم إما يحتاجون إلى رفع أيديهم ، أو طردهم ، أو صعقهم", + "PlayerNotSurrenderedTie": "لا يمكن تقييد {1}! هم إما يحتاجون إلى رفع أيديهم ، أو طردهم ، أو صعقهم", + "HeaderCharactersListSelf": "شخصياتك", + "HeaderCharactersListOther": "شخصيات {1}", + "CharacterSelectHelpText": "استخدم {1} لتحديد حرف ، أو {2} لإنشاء شخصية جديدة", + "ItemDoesntDoAnythingOnUse": "لا يفعل {1} أي شيء عند محاولة استخدامه.", + "ItemRadioStationTip": "استخدم {1} لتعيين محطة الراديو", + "VehicleLockedCommandTip": "🔒 تم قفل {1} هذا. استخدم {2} لفتحه", + "VehicleLockedKeyPressTip": "🔒 تم قفل {1} هذا. اضغط على {2} لفتحه", + "VehicleLockedCantUnlock": "🔒 تم قفل هذا {1} وليس لديك المفاتيح لفتحه", + "CurrentlyRentingThisVehicle": "أنت تستأجر {1} مقابل {2} في الدقيقة. استخدم {3} إذا كنت تريد التوقف عن تأجيره.", + "VehicleBelongsTo": "هذا {1} ينتمي إلى {2} ({3})", + "NotOwned": "لا يملكه", + "NotCloseEnoughToItemContainer": "أنت لست قريبًا بدرجة كافية من أي شيء يحتوي على عناصر", + "Job": "وظيفة", + "Player": "لاعب", + "BusinessIsNowPaintBall": "هذا العمل هو الآن ساحة كرات الطلاء", + "JoinedPaintBall": "لقد انضممت إلى لعبة كرات الطلاء.", + "ItemsStoredForPaintBall": "يتم تخزين العناصر الخاصة بك في الخزانة الخاصة بك وسيتم إرجاعها عندما تغادر لعبة كرات الطلاء", + "LeftPaintBall": "لقد غادرت لعبة كرات الطلاء. تم إرجاع العناصر الخاصة بك.", + "PaintBallEnded": "انتهت مباراة كرة الطلاء. تم إرجاع العناصر الخاصة بك.", + "HeaderEventWinners": "الفائزون", + "YourPaintBallResults": "لقد تلقيت {1} عمليات قتل و {2} حالة وفاة في مباراة كرات الطلاء", + "NoPrivateMessageToReply": "لم تتلق رسالة خاصة للرد عليها", + "PrivateMessageReplyCommandTip": "استخدم {1} للرد بسرعة على الرسالة الخاصة", + "WeaponDoesNotUseAmmo": "لا يستخدم {1} الذخيرة", + "ChatBoxTimestampsToggle": "لقد أدرت عرض الوقت {1} في مربع الدردشة", + "ProfanityFilterSet": "لقد قمت بإدخال عامل تصفية الألفاظ النابية في الدردشة {1}", + "ResetAllKeyBindsConfirm": "هل أنت متأكد من أنك تريد إعادة تعيين كافة روابط المفاتيح الخاصة بك إلى الوضع الافتراضي؟", + "NotRentingAVehicle": "أنت لا تستأجر سيارة!", + "StoppedRentingVehicle": "لقد توقفت عن استئجار {1}", + "VehicleEngineStartKeyPressTip": "محرك {1} متوقف. اضغط على {2} لبدء تشغيله.", + "VehicleEngineStartCommandTip": "محرك {1} متوقف. استخدم {2} لبدء تشغيله.", + "StartedRentingVehicle": "أنت الآن تستأجر {1} مقابل {2} في الدقيقة. للتوقف عن الاستئجار ، استخدم {3}", + "VehicleAlreadyRentedByOther": "هذه السيارة مستأجرة بالفعل من قبل شخص آخر", + "VehicleAlreadyRentedBySelf": "أنت تستأجر هذه السيارة بالفعل", + "JobRankTooLow": "أنت لست رتبة عالية بما يكفي!", + "InvalidKeyName": "معرف المفتاح أو الاسم الذي أدخلته غير صالح!", + "KeyBindsReset": "تمت إعادة تعيين جميع روابط المفاتيح إلى الوضع الافتراضي", + "KeyBindNameTip": "أستخدم أسماء مفاتيح أو أحرف أو ارقام.لاتضف مسافات", + "UniversalInlineExamplesList": "أمثلة: {1}", + "KeyBindRemoved": "لقد قمت بإزالة رابط المفتاح للمفتاح {1}", + "KeyBindAdded": "لقد ربطت المفتاح {1} بـ {2}", + "CopyAllKeyBindsToServerConfirm": "هل تريد بالتأكيد نسخ جميع روابط المفاتيح إلى خادم {1}؟", + "CopiedAllKeyBindsToServer": "تم نسخ جميع روابط المفاتيح الخاصة بك إلى خادم {1}", + "MustBeSpawned": "يجب أن تولد!", + "ChatEmojiSet": "لقد قمت بتشغيل الرموز التعبيرية تلقائيًا في الدردشة {1}", + "FishingLineNotCast": "خط الصيد الخاص بك لا يلقي!", + "CantFishHere": "لا يمكنك الصيد هنا! يجب أن تكون بالقرب من الماء أو على متن قارب!", + "NeedFishingRod": "عليك أن تمسك صنارة الصيد!", + "FishingCastCommandHelp": "استخدم {1} لرمي خط الصيد الخاص بك", + "FishingCastKeyBindHelp": "اضغط على {1} لإلقاء خط الصيد الخاص بك", + "Paused": "متوقف مؤقتًا", + "PaintBallAlmostWin": "{1} يحتاج فقط إلى {2} عمليات قتل أخرى للفوز بمباراة كرة الطلاء!", + "HeaderClanFlagsList": "أعلام القبيلة ({1})", + "PleaseWait": "برجاء الإنتظار ...", + "HeaderServerRulesList": "قوانين سيرفر", + "FrequencyChannelChanged": "قمت بتعيين قناة {1} في الفتحة {2} على {3}", + "ItemTurnedOnOff": "لقد أدرت {1} {2} في الفتحة {3}", + "SkinSelectHelpTextSkin": "اضغط على {1} أو {2} لتبديل السطح ، أو {3} للحفظ ، أو {4} للإلغاء", + "SkinSelectHelpTextBodyPart": "اضغط على {1} أو {2} لتبديل جزء من الجسم", + "SkinSelectBodyPartNames": { + "Head": "رأس", + "UpperBody": "الجزء العلوي من الجسم", + "LowerBody": "الجسم السفلي", + "Hair": "شعر", + "Hat": "قبعة", + "Glasses": "نظارات", + "LeftHand": "اليد اليسرى", + "RightHand": "اليد اليمنى", + "LeftWrist": "معصم اليد اليسرى", + "RightWrist": "معصم اليد اليمنى" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "استخدم {1} لتشغيل أو إيقاف تشغيل محرك السيارة", + "VehicleLockedAfterEntryAttempt": "استخدم {1} لقفل أو إلغاء تأمين مركبة", + "ShowItemsAfterPurchase": "استخدم {1} لمشاهدة مخزونك", + "BuyCommandAfterEnterBusiness": "استخدم {1} لشراء عناصر من شركة", + "UseItemKeyAfterEquipping": "استخدم {1} لاستخدام العنصر المجهز الخاص بك", + "UseItemKeyAfterEquippingWalkieTalkie": "استخدم {1} لتشغيل الراديو أو إيقاف تشغيله", + "RadioCommandAfterEnablingWalkieTalkie": "استخدم {1} للتحدث في الراديو الخاص بك", + "ReplyToDirectMessage": "استخدم {1} للرد بسهولة على رسالة خاصة", + "UseItemKeyAmmoAfterEquippingWeapon": "استخدم {1} لتحميل ذخيرة في سلاحك المجهز", + "AnimationStop": "استخدم {1} لإيقاف الرسم المتحرك", + "JobEquipmentInventory": "معدات العمل موجودة في مخزونك. استخدم {1} لمشاهدتها.", + "ViewInventory": "استخدم {1} لمشاهدة عناصرك", + "VehicleRepairItemUsage": "قف بجانب سيارة واستخدم {1} لإصلاحها", + "VehicleColourItemUsage": "قف بجوار سيارة واستخدم {1} لتغيير لونها", + "VehiclePartItemUsage": "قف بجوار سيارة واستخدم {1} للترقية باستخدام {2}", + "AmmoClipItemUsage": "جهز السلاح واستخدم {1} لتحميل الذخيرة فيه", + "GenericItemUsage": "استخدم {1} لاستخدام {2}", + "EnterJobVehicleForRoute": "أدخل سيارة عمل قريبة لبدء مسار عمل", + "JobLocations": "قم بزيارة موقع العمل للحصول على وظيفة. استخدم {1} للعثور على موقع عمل", + "JobRouteStart": "استخدم {1} لبدء مسار عمل بهذه السيارة" + }, + "DisconnectReasons": { + "Unknown": "غير معروف", + "LostConnection": "انقطع الإتصال", + "Disconnected": "انقطع الاتصال", + "UnsupportedClient": "عميل غير مدعوم", + "WrongGame": "تحذير اللعبة", + "IncorrectPassword": "كلمة سر خاطئة", + "UnsupportedExecutable": "قابل للتنفيذ غير معتمد", + "Kicked": "انقطع الاتصال", + "Banned": "حظر", + "Failed": "باءت بالفشل", + "InvalidName": "اسم غير صحيح", + "Crashed": "تحطم اداء", + "ModifiedGame": "لعبة معدلة", + "FailedToLogin": "كيك - فشل في تسجيل الدخول", + "NotATester": "كيك - ليس مختبرا", + "ClientScriptVerificationFail": "فشل التحقق من البرنامج النصي للعميل (الاختراقات المحتملة)", + "ServerRestarting": "يتم إعادة تشغيل الخادم", + "Desync": "منبوذ", + "FailedToCreateCharacter": "كيك - لم يخلق شخصية" + }, + "DevelopersNotified": "تم إخطار المطورين بالمشكلة", + "NoJobLocationCloseEnough": "لا توجد مواقع عمل قريبة بما فيه الكفاية!", + "NotAllowedToUseJobs": "لا يسمح لك باستخدام أي وظائف!", + "CantUseThisJob": "لا يمكنك استخدام هذه الوظيفة!", + "JobChanged": "💼 لديك الآن وظيفة {1}", + "NeedToBeNearJob": "يجب أن تكون بالقرب من موقع عملك أو من سيارة تنتمي لعملك!", + "DontHaveAJob": "ليس لديك عمل!", + "StartedWorking": "💼 أنت تعمل الآن في وظيفة {1}", + "StoppedWorking": "لقد توقفت عن العمل", + "ItemsStoredForJob": "تم تخزين أغراضك الشخصية في خزانتك أثناء عملك", + "NoJobRoutesForLocation": "عملك ليس له أي طرق لهذا الموقع!", + "CurrentJobRouteDeleted": "تم حذف مسار الوظيفة الذي كنت تعمل فيه أو تعطيله من قبل الإدمن", + "YourTax": "الضريبة الخاصة بك في يوم الدفع هي: {1}. استخدم {2} لمزيد من المعلومات.", + "YourWealth": "ثروتك هي: {1}. استخدم {2} لمزيد من المعلومات.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} diff --git a/locale/canadian-french.json b/locale/canadian-french.json new file mode 100644 index 00000000..755fb280 --- /dev/null +++ b/locale/canadian-french.json @@ -0,0 +1,754 @@ +{ + "TranslationProvidedBy": "BlowMe-Wan Kenobi", + "LocaleEnglishName": "Canadian French", + + "LocaleNativeName": "Canadian French", + "LocaleOffer": "This server is available in Canadian French. Use {1} to use it.", + "LocaleChanged1": "Your language is now set to {1}", + "LocaleChanged2": "The server will now display messages in {1}", + "LocaleChangedNote": "This does not change messages from other players", + "AccentsListHeader": "Accents", + "HelpMainListHeader": "Help Categories", + "AccentNotFound": "Accent not found", + "AccentSet": "You set your accent to {1}", + "InvalidAnimation": "That animation doesn't exist", + "AnimationCommandTip": "Use {1} to see a list of valid animations", + "InvalidAnimationDistance": "The distance must be between 0 and 3", + "CantBanClient": "You cannot ban this person", + "PlayerAccountBanned": "{1} has been account banned", + "ClanNotFound": "Clan not found", + "ClanNameTaken": "A clan with that name already exists", + "PlayerNotFound": "Player not found", + "ClanCantRemoveRanks": "You can't remove clan ranks", + "ClanCantAddRanks": "You can't add clan ranks", + "ClanRankNotFound": "Clan rank not found", + "ClanCantChangeMemberTag": "You can not change clan member's tags", + "ClanPlayerNotInSameClan": "That player is not in your clan", + "ClanCantChangeRankLevel": "You can not change clan rank's level", + "ClanCantChangeRankTag": "You can not change clan rank's tags", + "NameNotRegistered": "Your name is not registered! Use {1} to make an account.", + "AutomaticLoginIPToggle": "Automatic login by IP is now {1}", + "CouldNotRegisterAccount": "There was a problem creating your account. Please contact an admin.", + "RandomTipsToggle": "Random tips are now {1}", + "ActionTipsToggle": "Action tips are now {1}", + "AutoSpawnLastCharToggle": "Automatic spawn as last used character is {1}", + "AccountGUISettingToggle": "🖥️ GUI is now {1}", + "On": "On", + "Off": "Off", + "Yes": "Yes", + "No": "No", + "True": "True", + "False": "False", + "Locked": "Locked", + "Unlocked": "Unlocked", + "PasswordNotGoodEnough": "The new password must meet the requirements!", + "PasswordNeedsBase": "Passwords must have at least {1}", + "PasswordNeedsCapitals": "{1} capital letters", + "PasswordNeedsNumbers": "{1} numbers", + "PasswordNeedsSymbols": "{1} symbols", + "PasswordsDontMatch": "The new password and confirm new password aren't the same!", + "PasswordChanged": "Your password has been changed!", + "AutoLoggedInIP": "You have been automatically logged in by IP!", + "WelcomeBack": "Welcome back to {1}, {2}! Please {3} to continue.", + "WelcomeNewPlayer": "Welcome to {1}, {2}! Please {3} to play.", + "InvalidPlayer": "Player not found!", + "InvalidBusiness": "Business not found!", + "InvalidHouse": "House not found!", + "InvalidVehicle": "Vehicle not found!", + "InvalidClan": "Clan not found!", + "InvalidClanRank": "Clan rank not found!", + "InvalidJob": "Job not found!", + "InvalidItem": "Item not found!", + "InvalidItemType": "Item type not found!", + "InvalidRadioStation": "Radio station not found!", + "InvalidGate": "Gate not found!", + "EntersProperty": "opens the door and enters the {1} ({2})", + "ExitsProperty": "opens the door and exits the {1} ({2})", + "EnterExitPropertyDoorLocked": "tries to open the {1} door but fails because it's locked", + "PropertyNoInterior": "This {1} does not have an interior, but you can still use commands at the door icon.", + "NoBusinessWithItemType": "There is no business with that item available", + "HeaderKeyBinds": "Key Binds", + "HeaderAccountHelp": "Account Help", + "HeaderVehicleHelp": "Vehicle Help", + "HeaderVehicleDealershipHelp": "Vehicle Dealership Help", + "HeaderJobHelp": "Job Help", + "HeaderChatHelp": "Chat Help", + "HeaderServerRules": "Server Rules", + "HeaderWebsiteInfo": "Website", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Animation List", + "HeaderPayAndSprayHelp": "Pay and Spray Help", + "HeaderAmmunationHelp": "Ammunation Help", + "HeaderVehicleTuneupHelp": "Vehicle Tune Help", + "HeaderBindableKeysHelp": "Bindable Keys", + "HeaderSkinHelp": "Clothes/Skin Help", + "HeaderBusinessHelp": "Business Help", + "HeaderClanHelp": "Clan Help", + "HeaderPlayerVehiclesList": "Player Vehicles ({1})", + "HeaderPlayerBusinessesList": "Player Businesses ({1})", + "HeaderClansList": "Clan List", + "HeaderAdminsList": "Admin List", + "HeaderAccentsList": "Accent List", + "HeaderPlayerInfo": "Player Information ({1})", + "HeaderWealthandTaxHelp": "Wealth and Tax Information", + "HeaderCommandInfo": "Command Information ({1})", + "HeaderRadioHelp": "Radio Help", + "HeaderRadioStationsList": "Radio Stations", + "HeaderKeyBindsList": "Key Binds List", + "RadioVolumeChanged": "{1} You changed your streaming radio volume to {2}%", + "VolumeLevelNotNumber": "The volume level must be a number", + "RadioStationLocationInvalid": "You must be in a vehicle, house, or business or have a personal device to change the station!", + "ActionBusinessRadioStationChange": "changes the business radio station to {1} ({2})", + "ActionHouseRadioStationChange": "changes the house radio station to {1} ({2})", + "ActionVehicleRadioStationChange": "changes the vehicle radio station to {1} ({2})", + "ActionItemRadioStationChange": "changes the {1}'s station to {2} ({3})", + "RandomVehicleCommandsDisabled": "This is a random traffic vehicle and commands can't be used for it.", + "HouseDoorLock": "House {1} {2}!", + "BusinessDoorLock": "Business {1} {2}!", + "ServerGameModeRestarting": "The server game mode is restarting!", + "HeaderSelfItemList": "Your Inventory", + "HeaderPlayerItemList": "Player Inventory ({1})", + "HeaderHouseItemList": "House Inventory", + "HeaderBusinessFloorItemList": "Business Inventory (For Sale)", + "HeaderBusinessStorageItemList": "Business Inventory (Storage)", + "HeaderItemItemList": "{1}'s Inventory", + "ItemSlotNotNumber": "The item slot must be a number", + "ItemSlotMustBeBetween": "The item slot must be between {1} and {2}!", + "UseItemBugged": "The item you're trying to use is bugged. A bug report has been sent to the server developers.", + "PickupItemBugged": "The item you're trying to pickup is bugged. A bug report has been sent to the server developers.", + "DropItemBugged": "The item you're trying to drop is bugged. A bug report has been sent to the server developers.", + "HandsBusy": "Your hands are busy", + "CantUseItemInSkinChange": "You can't use an item while customizing your appearance", + "CantDropItemInSkinChange": "You can't drop an item while customizing your appearance", + "CantPickupItemInSkinChange": "You can't pickup an item while customizing your appearance", + "CantSwitchItemInSkinChange": "You can't switch an item while customizing your appearance", + "CantGiveItemInSkinChange": "You can't give an item while customizing your appearance", + "CantTakeItemInSkinChange": "You can't take an item while customizing your appearance", + "ItemUnequippableNoAmmo": "The {1} in slot {2} has no ammo, and can't be equipped!", + "NoSpaceSelfInventory": "You don't have any more space in your inventory", + "Business": "business", + "House": "house", + "Clan": "clan", + "Vehicle": "vehicle", + "Item": "item", + "ItemType": "item type", + "Gate": "gate", + "Door": "door", + "ClanRank": "clan rank", + "JobRank": "job rank", + "RadioStation": "radio station", + "Months": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + "WeekDays": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "CardinalDirections": { + "North": "North", + "Northeast": "Northeast", + "East": "East", + "Southeast": "Southeast", + "South": "South", + "Southwest": "Southwest", + "West": "West", + "Northwest": "Northwest" + }, + "NewPlayerReadyToPlay": [ + "You have been given some cash. Use {1} to find places to buy items.", + "If you need money, jobs are the yellow dots on the radar.", + "For a car, visit the car dealership. You can also use a rental vehicle near spawn or take the train", + "Be sure to read the {1} and use {2} for info." + ], + "YourCurrentVehicleDeleted": "The vehicle you were in was deleted.", + "Distance": "Distance", + "Meters": "Meters", + "Feet": "Feet", + "Kilometers": "Kilometers", + "Miles": "Miles", + "MustBeVehicleDriver": "You must be the driver of the vehicle!", + "PlayerJoined": "{1} has joined the game from {2}!", + "PlayerLeftServer": "{1} has left the game! ({2})", + "TakeItemFromHouse": "takes a {1} from the house", + "TakeItemFromBusinessStorage": "takes a {1} from the business storage", + "TakeItemFromBusiness": "takes a {1} from the business", + "TakeItemFromItem": "takes a {1} from the {2}", + "TakeItemFromVehicleTrunk": "takes a {1} from the trunk", + "TakeItemFromVehicleDash": "takes a {1} from the glove compartment", + "AccountHelp": [ + "Do NOT share your password with anybody else. {1} staff will never ask you for your password", + "Use {1} to change your password, and {2} if you forgot it", + "Some settings you can use: {1}" + ], + "VehicleHelp": [ + "Your personal vehicles will save wherever you or somebody else leaves them!", + "Visit dealerships to buy new vehicles (Use {1} for more information)", + "Some commands: {1}", + "Visit a mechanic garage to repair, colour, and tune up your car! {1} for info" + ], + "VehicleDealershipHelp": [ + "Visit a vehicle dealer to buy new vehicles. Use {1} to find one.", + "At the dealer, enter a car you want to buy, and the price will be shown to you", + "If you want to buy the vehicle, use {1} and you will be given keys to test drive it around the parking lot.", + "Drive away from the dealership with the new vehicle to confirm the purchase." + ], + "JobHelp": [ + "Visit job locations to get a job and earn money. Look for yellow spots on the map", + "At a job location, use {1} to get the job. Use {2} to quit your job", + "Use {1} to begin working. You can also get a job {2} and {3}", + "Most job vehicles are locked. Use {1} near one to enter it.", + "When entering a job vehicle, information on how to do the job will be shown to you." + ], + "ChatHelp": [ + "There are two main types of chat: out-of-character (OOC) and in-character (IC)", + "Mixing these two types is not proper roleplay. See {1} for info.", + "Some chat commands: {1}", + "Some have shorter names available ({1} to talk, {2} to shout, etc)" + ], + "ServerRulesHelp": [ + "Unrealistic actions (powergaming) are not allowed. You aren't superman.", + "No terrorist or terrorism roleplay is allowed.", + "Always follow instructions given by moderators and admins.", + "Do not mix the chats (metagaming). You can't use info in IC that was received OOC", + "Keep English in main chats. If you aren't good at English, use {1}" + ], + "AnimationHelp": [ + "Animations allow you to enhance roleplay with visual actions", + "Use {1} or {2} with a name to use an animation.", + "To see a list of animations, use {1}" + ], + "WeaponHelp": [ + "Visit an gun store to buy weapons. Use {1} to find one.", + "Buying a weapon requires a weapon license.", + "Weapon licenses are managed by the police department. Apply there to get one.", + "Weapons can also be purchased illegally from some businesses, weapon dealers, and clans." + ], + "SkinHelp": [ + "At a clothing store, use {1} to purchase clothes", + "When you have a clothing item, equip and use it like any other item to show the skin selection (check {1} to learn how to use items)", + "Some skins are restricted to jobs, clans, or for other reasons." + ], + "KeyBindHelp": [ + "You can set your own key binds. Use {1} to see your binded keys.", + "Use {1} to add a new keybind and {2} to remove one.", + "Default keys are: {1} for vehicle engine, {2} for lights, and {3} for lock/unlock", + "Press {1} to see your items and {2} to equip an item or {3} to unequip all.", + "Press {1} to use the item you're holding, press {2} to drop it, or press {3} to pickup an item from the ground." + ], + "BusinessHelp": [ + "Use {1} to purchase items or {2} to see a list of what's for sale at any business", + "Businesses are shown with blue names above the icon at their entrance.", + "Business owner commands: {1}", + "A new car for sale will appear when you drive away from the dealer." + ], + "ClanHelp": [ + "Ask an administrator to create a clan (Similar to factions/groups/families)", + "Clan owners have full control over their clan once it's created", + "Clan commands: {1}", + "More clan commands: {1}" + ], + "RadioStationHelp": [ + "Use {1} to set the station for your vehicle, house, or business", + "Use {2} to see a list of stations", + "You can change your radio streaming volume using {1} with 0-100 as the percent" + ], + "WealthAndTaxHelp": [ + "Your taxes on payday are {1} percent of your calculated wealth.", + "Your calculated wealth is a total sum based on how many vehicles, houses, and businesses you have.", + "Each vehicle is {1}, each house is {2}, and each business is {3}", + "Use {1} to see your current wealth, and {2} to see how much you'll pay in tax each payday" + ], + "MustBeInAVehicle": "You need to be in a vehicle!", + "MustBeInOrNearVehicle": "You need to be in or near a vehicle!", + "MustBeInVehicleFrontSeat": "You need to be in the vehicle front seats!", + "MustBeInVehicleDriverSeat": "You need to be the driver!", + "DontHaveVehicleKey": "You don't have a key for this vehicle!", + "NoGateAccess": "You don't have access to this gate!", + "GateBroken": "This gate is broken!", + "GateHacked": "The gate does not respond!", + "RadioJammed": "You hear only static from the radio.", + "VehicleNotForSale": "This vehicle is not for sale!", + "VehicleNotForRent": "This vehicle is not for rent!", + "BusinessNotForSale": "This business is not for sale!", + "BusinessNotForRent": "This business is not for rent!", + "HouseNotForSale": "This house is not for sale!", + "HouseNotForRent": "This house is not for rent!", + "DealershipPurchaseTestDrive": "Drive the vehicle away from the dealership to buy it, or get out to cancel.", + "DealershipPurchaseExitedVehicle": "You canceled the vehicle purchase by exiting the vehicle!", + "VehiclePurchaseComplete": "This vehicle is now yours! It will save wherever you leave it.", + "VehiclePurchaseNotEnoughMoney": "You don't have enough money to buy this vehicle!", + "HousePurchaseNotEnoughMoney": "You don't have enough money to buy this house!", + "BusinessPurchaseNotEnoughMoney": "You don't have enough money to buy this business!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Player Houses ({1})", + "HeaderPlayerStaffFlagsList": "Player Staff Flags ({1})", + "HeaderStaffFlagsList": "Staff Flags", + "NonRPName": "Non-RP name! Choose a new one:", + "InvalidStaffFlag": "Staff flag not found!", + "InvalidClanFlag": "Clan flag not found!", + "InvalidLocale": "Language not found!", + "HeaderJobUniformList": "Job Uniforms ({1})", + "HeaderJobEquipmentList": "Job Equipment ({1})", + "InvalidJobUniform": "Job uniform not found!", + "InvalidJobEquipment": "Job equipment not found!", + "HeaderVehiclesInRangeList": "Vehicles within {1}", + "NoVehiclesWithinRange": "There are no vehicles within {1}", + "AmountNotNumber": "The amount must be a number!", + "NeedToBeWorking": "You need to be working! Use {1} at a job location or near a job vehicle.", + "NeedToBeOnJobRoute": "You need to be doing a job route! Use {1} in a job vehicle", + "CurrentJobRouteVehicleColoursChanged": "Your job route's vehicle colours were changed by an admin", + "NotYourJob": "This is not your job!", + "JobPoints": "You can get a job by going the yellow points on the map.", + "QuitJobToTakeAnother": "If you want this job, use {1} to quit your current job.", + "NotAJobVehicle": "This is not a job vehicle!", + "NotYourJobVehicle": "This is not your job's vehicle!", + "HeaderPickupTypes": "Pickup Types", + "HeaderBlipTypes": "Map Icon Types", + "InvalidGPSLocation": "There are no locations with that name or type", + "HeaderBusinessList": "Businesses", + "VehicleForSale": "This {1} is buyable for {2}! Use {3} if you want to buy it", + "VehicleForRent": "This {1} is rentable for {2}! Use {3} if you want to rent it", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Invalid password! {1} attempts remaining", + "LoginFailedNoPassword": "You must enter a password! ! {1} attempts remaining", + "RegistrationFailedNoPassword": "You must enter a password!", + "RegistrationFailedNoPasswordConfirm": "You must confirm the password!", + "RegistrationFailedNoEmail": "You must enter an email!", + "AccountNameAlreadyRegistered": "Your name is already registered!", + "AlreadyLoggedIn": "You are already logged in!", + "RegistrationFailedInvalidEmail": "That email is invalid!", + "RegistrationFailedPasswordMismatch": "The passwords don't match!", + "RegistrationFailedCreateError": "Your account couldn't be created!", + "RegistrationSuccess": "Your account has been created!", + "RegistrationEmailVerifyReminder": "Don't forget to verify your email! A verification code has been sent to you.", + "RegistrationCreateCharReminder": "To play on the server, you will need to make a character.", + "NoCharactersGUIMessage": "You have no characters. Would you like to make one?", + "NoCharactersGUIWindowTitle": "No characters", + "NoCharactersChatMessage": "You have no characters. Use {1} to make one.", + "NeedEmailFor2FA": "You need to add your email to your account to use two-factor authentication.", + "NeedEmailVerifiedFor2FA": "You need to verify your email to use two-factor authentication.", + "SetEmailHelpTip": "Use {1} to set your email.", + "VerifyEmailHelpTip": "Use {1} to verify your email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Nearby radio", + "FromRadio": "From radio", + "ToRadio": "To radio", + "NeedToEnterPropertyCommand": "You need to enter the {1} first! Use {2} to enter and exit", + "NeedToEnterPropertyKeyPress": "You need to enter the {1} first! Press {2} to enter and exit", + "InventoryFullCantCarry": "You don't have any space to carry this (full inventory)!", + "NotEnoughCashNeedAmountMore": "You don't have enough money! You need {1} more!", + "AmountMustBeMoreThan": "The amount must be more than {1}!", + "WeaponBanned": "You are not allowed to buy or use weapons!", + "TimeNotNumber": "The time must be a number", + "HeaderDefaultBusinessItemTypes": "Business Item Templates", + "FixingStuck": "Fixing your position and virtual world ...", + "CantUseCommandYet": "You must wait before you can use this command again!", + "NotATester": "You are not a tester!", + "AccessDenied": "Access Denied", + "InvalidSkin": "That skin is invalid!", + "HeaderInteriorTypes": "Interiors List", + "GUIAccountSettingToggle": "You have turned {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "You can buy a car by visiting a vehicle dealership. Use {1} for more information.", + "SkinCommandHelp": "You can change your skin by visiting a clothes store. Use {1} for more info.", + "BusinessVehiclesRespawned": "🚗 All business vehicles have been respawned by an admin!", + "JobVehiclesRespawned": "🚗 All job vehicles have been respawned by an admin!", + "PlayerVehiclesRespawned": "🚗 All player vehicles have been respawned by an admin!", + "ClanVehiclesRespawned": "🚗 All clan vehicles have been respawned by an admin!", + "PublicVehiclesRespawned": "🚗 All public have been respawned by an admin!", + "EmptyVehiclesRespawned": "🚗 All empty vehicles have been respawned by an admin!", + "AllVehiclesRespawned": "🚗 All vehicles have been respawned by an admin!", + "AllVehiclesReloaded": "🚗 All vehicles have been reloaded by an admin!", + "YourVehicleRespawned": "🚗 Your vehicle has been respawned!", + "PlayerIPBanned": "💀 {1} has been IP banned!", + "PlayerCharacterBanned": "💀 {1} has been character banned!", + "PlayerSubNetBanned": "💀 {1} has been subnet banned!", + "CantModifyBusiness": "You can't manage or modify this business!", + "CantModifyHouse": "You can't manage or modify this house!", + "ServerTimeSet": "⏰ {1} set the time to {2}", + "ServerWeatherSet": "☁️ {1} set the weather to {2}", + "ServerSnowSet": "❄️ {1} turned falling snow {2} and ground snow {3}", + "AllJobsReloaded": "💼 All server jobs have been reloaded by an admin", + "ServerLogoSet": "{1} turned the server logo image {2}", + "ServerGUISet": "🖥️ {1} turned GUI for this server {2}", + "ServerBusinessBlipsSet": "🏢 {1} turned all business blips {2}", + "ServerHouseBlipsSet": "🏘️ {1} turned all house blips {2}", + "ServerJobBlipsSet": "💼 {1} turned all job blips {2}", + "ServerBusinessPickupsSet": "🏢 {1} turned all business pickups {2}", + "ServerHousePickupsSet": "🏘️ {1} turned all house pickups {2}", + "ServerJobPickupsSet": "💼 {1} turned on all job pickups {2}", + "BusinessBuyItemsLabel": "Use {1} to purchase items", + "PropertyEnterCommandLabel": "Use {1} to enter", + "PropertyEnterKeyPressLabel": "Press {1} to enter", + "PropertyForSaleLabel": "For sale: {1}", + "PropertyForRentLabel": "For rent: {1} every payday", + "RemainingTaxPaidInMoney": "You covered the remaining taxes with {1} in cash.", + "LostMoneyFromTaxes": "You lost money since your taxes are more than your paycheck!", + "NextPaycheckRepossessionWarning": "If you don't have enough cash to cover taxes on next paycheck, you will lose stuff!", + "NotEnoughMoneyForTax": "You don't have enough money to cover your taxes!", + "AssetsRepossessedForTax": "You lost {1} vehicles, {2} houses, and {3} businesses because you couldn't pay taxes!", + "Closed": "Closed", + "Open": "Open", + "VehicleDealershipLabel": "Enter a vehicle as driver to buy it", + "TakeJobLabel": "Use {1} to work here", + "StartWorkLabel": "Use {1} to start working", + "JobEquipAndUniformLabel": "Use {1} and {2} for job stuff, or {3} to stop working", + "NotYourJobLabel": "You already have a different job. Use {1} if you want this one", + "JobLabel": "{1} Job", + "PaydayBonusSet": "🤑 {1} set the payday bonus to {2}", + "AllHousesReloaded": "🏘️ All houses have been reloaded by an admin", + "AllRadioStationsReloaded": "📻 All radio stations have been reloaded by an admin!", + "PlayerKicked": "🦶 {1} has been kicked from the server", + "AllBusinessesReloaded": "🏢 All businesses have been reloaded by an admin!", + "UnableToDoThat": "You aren't able to do that", + "SetVehicleClanConfirmMessage": "Are you sure you want to give this vehicle to your clan?", + "SetVehicleClanConfirmTitle": "Warning!", + "SetItemPriceBelowOrderPriceMessage": "Are you sure you want to set the item price below it's order price? You will lose {1} every purchase!", + "SetItemPriceBelowOrderPriceTitle": "Warning!", + "MustOwnVehicle": "You don't own this vehicle!", + "RandomTips": [ + "Look for yellow dots on your map for job locations", + "You can set custom key binds. Use {1} for details", + "Use {1} if you don't want to see tips and extra information", + "You can edit your keybinds using {1} and {2}", + "Press ℹ️ to see your inventory, and use number keys to select an item", + "Use {1} at a business to purchase items", + "Found a bug? Report it with {1}", + "Have an idea or suggestion for the server? Let the devs know using {1}", + "Want to buy a business? Use {1} at one for sale", + "Want to buy a house? Use {1} at one for sale", + "Want to buy a vehicle? Visit a dealership and enter one for info on how to buy it!", + "Switch to any of your characters with {1}", + "Use {1} to automatically login when connecting with the same IP", + "Use {1} to turn on/off the lights in your house or business", + "Use {1} to play an internet radio station in your car, house, or business", + "Want to make a clan? Use {1} for details", + "Legal weapons can be purchased at any ammunation" + ], + "PromptResponseTip": "Use {1} to accept or {2} to decline", + "PlayerConnecting": "👋 {1} is connecting to the server ...", + "GetStartedJobVehicle": "Get in a {1} to get started.", + "VehicleTypes": { + "Car": "Car", + "Truck": "Truck", + "Van": "Van", + "Taxi": "Taxi", + "Bus": "Bus", + "PoliceCar": "Police Car", + "Ambulance": "Ambulance", + "FireTruck": "Fire Truck", + "Bike": "Bike", + "Motorbike": "Motorbike", + "Boat": "Boat", + "Helicopter": "Helicopter", + "Plane": "Plane", + "Train": "Train" + }, + "AlreadyOnJobRoute": "You are already doing a job route! Finish the route or use {1}", + "GaveVehicleToClan": "You gave this {1} to your clan!", + "JobDisabled": "This job is disabled!", + "SetHouseClanConfirmMessage": "Are you sure you want to give this house to your clan?", + "SetHouseClanConfirmTitle": "Warning!", + "SetBusinessClanConfirmMessage": "Are you sure you want to give this business to your clan?", + "SetBusinessClanConfirmTitle": "Warning!", + "MustOwnHouse": "You don't own this house!", + "MustOwnBusiness": "You don't own this business!", + "GaveHouseToClan": "You gave this house to your clan!", + "GaveBusinessToClan": "You gave this business to your clan!", + "BuyBusinessConfirmMessage": "Are you sure you want to buy this business?", + "BuyBusinessConfirmTitle": "Attention!", + "BuyHouseConfirmMessage": "Are you sure you want to buy this house?", + "BuyHouseConfirmTitle": "Attention!", + "BuyBusinessLabel": "Use {1} to buy this business", + "BuyHouseLabel": "Use {1} to buy this house", + "RentHouseLabel": "Use {1} to rent this house", + "AccountEmailAlreadyVerified": "You already set and verified your email!", + "EmailVerificationCodeSent": "A verification code and instructions have been sent to your email.", + "GUIPlayAsCharacterButton": "Play", + "GUINewCharacterButton": "New character", + "GUIPreviousCharacterButton": "Previous", + "GUINextCharacterButton": "Next", + "GUICharacterSelectWindowTitle": "Select a character", + "GUICharacterSelectMoneyLabel": "Money: {1}", + "GUICharacterSelectClanLabel": "Clan: {1}", + "GUICharacterSelectLastPlayedLabel": "Last Played: {1} days, {2} hours, {3} minutes ago", + "GUILoginWindowLabelEnterPassword": "Please enter your password", + "GUILoginWindowSubmitButton": "Login", + "GUILoginWindowResetPasswordButton": "Reset", + "GUILoginWindowPasswordPlaceholder": "Password", + "GUILoginWindowForgotPasswordLabel": "Forgot your password?", + "GUIRegisterWindowLabelCreateAccount": "Create an account", + "GUIRegisterWindowPasswordPlaceholder": "Password", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Confirm password", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Create account", + "GUINewCharacterMessageLabel": "Name your character", + "GUINewCharacterFirstNamePlaceholder": "First Name", + "GUINewCharacterLastNamePlaceholder": "Last Name", + "GUINewCharacterSubmitButton": "Create Character", + "GUIChangePasswordWindowTitle": "Change Password", + "GUIChangePasswordPasswordLabel": "Enter a new password", + "GUIChangePasswordPasswordPlaceholder": "Password", + "GUIChangePasswordConfirmPasswordPlaceholder": "Confirm password", + "GUIChangePasswordSubmitButton": "Change Password", + "GUIResetPasswordWindowMessage": "Reset Password", + "GUIResetPasswordConfirmEmailLabel": "Please confirm your email", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Reset Password", + "GUIResetPasswordLoginButton": "Login", + + "GUIResetPasswordRememberMessage": "Remember your password?", + "HeaderJobList": "Jobs", + "HeaderBusinessInfo": "Business Info", + "HeaderHouseInfo": "House Info", + "HeaderClanInfo": "Clan Info", + "Locales": { + "English": "English", + "Russian": "Russian", + "Spanish": "Spanish", + "German": "German", + "Dutch": "Dutch", + "Polish": "Polish", + "Chinese": "Chinese", + "French": "French", + "Japanese": "Japanese", + "Slovak": "Slovak", + "Arabic": "Arabic" + }, + "TwoFactorAuthSet": "⚙️ You have turned two factor authentication {1}", + "AccountServerLogoSet": "⚙️ You turned the server logo {1}", + "ChatScrollLinesNotNumber": "The line amount must be a number", + "ChatScrollLinesMustBeBetween": "The line amount must be between {1} and {2}", + "ChatScrollLinesSet": "The chatbox will now scroll {1} lines at a time", + "InvalidEmailVerificationCode": "Invalid email verification code! A new one has been created and sent to your email.", + "EmailVerified": "Your email has been verified", + "EmailVerifiedTip": "You can now use your email for password resets, two-factor authentication, login alerts, and more", + "CommandRequiresLogin": "You must be logged in to use the {1} command", + "CommandDisabled": "The {1} command is disabled", + "CommandDisabledOnDiscord": "The {1} command isn't available on discord", + "CommandNotFoundHelpTip": "The command {1} does not exist! Use {2} for commands and information.", + "CommandNotFoundPossibleMatchTip": "The command {1} does not exist! Did you mean {2}?", + "CommandNoPermissions": "You don't have permission to use the {1} command", + "GUIResetPasswordCodeInputLabel": "Check your email for a code", + "GUIResetPasswordCodePlaceholder": "Verification code", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Warning", + "GUIInfoTitle": "Info", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Invalid email!", + "HeaderVehicleInfo": "Vehicle Info", + "HeaderClanRanksList": "Clan Ranks ({1})", + "HeaderNPCInfo": "NPC Info", + "NPCAnimationSet": "You set NPC {1} animation to {2}", + "NPCNameSet": "You set NPC {1} name to {2}", + "VehicleTooFar": "You are too far away from the vehicle!", + "HeaderPropertyTemplateTypes": "Property Types", + "MustBeLoggedInAndSpawnedToChat": "You need to be logged in and spawned before you can chat!", + "MutedCantChat": "You are muted and can't chat!", + "CantUseMegaphone": "You must equip a megaphone item or be in an emergency vehicle!", + "HeaderAnimationHelp": "Animation Info", + "HeaderBadgeInfo": "Badge Information ({1})", + "NoItemCloseEnough": "There is no item close enough", + "CantDropJobEquipmentItem": "You can't drop job items", + "CantPutJobEquipmentItem": "You can't store job items", + "NoItemEquipped": "You don't have any item selected", + "NoItemInActiveSlot": "You don't have an item in your active item slot", + "CantPutItemInSkinChange": "You can't store an item while customizing your appearance", + "NothingToTakeItemFrom": "You aren't near anything to take items from", + "NoAmmoToLoadIntoWeapon": "You don't have any ammo to load into the {1}", + "LoadAmmoIntoWeaponHelpCommand": "To load this ammo into a weapon, equip the weapon and type {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "To load this ammo into a weapon, equip the weapon and press {1}", + "NobodyCloseEnoughToHandcuff": "Nobody is close enough to handcuff", + "NobodyCloseEnoughToTie": "Nobody is close enough to tie up", + "PlayerNotSurrenderedHandcuff": "{1} can't be handcuffed! They either need to have their hands up, be knocked out, or tazed", + "PlayerNotSurrenderedTie": "{1} can't be tied! They either need to have their hands up, be knocked out, or tazed", + "HeaderCharactersListSelf": "Your Characters", + "HeaderCharactersListOther": "{1}'s Characters", + "CharacterSelectHelpText": "Use {1} to select a character, or {2} to create a new character", + "ItemDoesntDoAnythingOnUse": "The {1} doesn't do anything when you try to use it.", + "ItemRadioStationTip": "Use {1} to set the radio station", + "VehicleLockedCommandTip": "🔒 This {1} is locked. Use {2} to unlock it", + "VehicleLockedKeyPressTip": "🔒 This {1} is locked. Press {2} to unlock it", + "VehicleLockedCantUnlock": "🔒 This {1} is locked and you don't have the keys to unlock it", + "CurrentlyRentingThisVehicle": "You are renting this {1} for {2} per minute. Use {3} if you want to stop renting it.", + "VehicleBelongsTo": "This {1} belongs to {2} ({3})", + "NotOwned": "Not Owned", + "NotCloseEnoughToItemContainer": "You are not close enough to anything that holds items", + "Job": "Job", + "Player": "Player", + "BusinessIsNowPaintBall": "This business is now a paintball arena", + "JoinedPaintBall": "You have joined the paintball game.", + "ItemsStoredForPaintBall": "Your items are stored in your locker and will be returned when you leave the paintball game", + "LeftPaintBall": "You have left the paintball game. Your items have been returned.", + "PaintBallEnded": "The paintball match has ended. Your items have been returned.", + "HeaderEventWinners": "Winners", + "YourPaintBallResults": "You got {1} kills and {2} deaths in the paintball match", + "NoPrivateMessageToReply": "You haven't received a private message to reply to", + + "WeaponDoesNotUseAmmo": "The {1} doesn't use ammo", + "ChatBoxTimestampsToggle": "You turned {1} time display in the chatbox", + "ProfanityFilterSet": "You turned chat profanity filter {1}", + "ResetAllKeyBindsConfirm": "Are you sure you want to reset all your keybinds to default?", + "NotRentingAVehicle": "You are not renting a vehicle!", + "StoppedRentingVehicle": "You stopped renting the {1}", + "VehicleEngineStartKeyPressTip": "The {1} engine is off. Press {2} to start it.", + "VehicleEngineStartCommandTip": "The {1} engine is off. Use {2} to start it.", + "StartedRentingVehicle": "You are now renting this {1} for {2} per minute. To stop renting, use {3}", + "VehicleAlreadyRentedByOther": "This vehicle is already rented by someone else", + "VehicleAlreadyRentedBySelf": "You are already renting this vehicle", + "JobRankTooLow": "You are not high enough rank!", + "InvalidKeyName": "The key ID or name you input is invalid!", + "KeyBindsReset": "All your keybinds have been reset to default", + "KeyBindNameTip": "Use simple key names, letters, or numbers. Don't add spaces.", + "UniversalInlineExamplesList": "Examples: {1}", + "KeyBindRemoved": "You removed the keybind for the {1} key", + "KeyBindAdded": "You binded key {1} to {2}", + "CopyAllKeyBindsToServerConfirm": "Are you sure you want to copy all your keybinds to the {1} server?", + "CopiedAllKeyBindsToServer": "All your keybinds have been copied to the {1} server", + "MustBeSpawned": "You must be spawned!", + "ChatEmojiSet": "You turned automatic emoji in chat {1}", + "FishingLineNotCast": "Your fishing line isn't cast!", + "CantFishHere": "You can't fish here! You need to be near water or on a boat!", + "NeedFishingRod": "You need to be holding a fishing rod!", + "FishingCastCommandHelp": "Use {1} to cast your fishing line", + "FishingCastKeyBindHelp": "Press {1} to cast your fishing line", + "Paused": "Paused", + "PaintBallAlmostWin": "{1} only needs {2} more kills to win the paintball match!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOn": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} diff --git a/locale/chinese.json b/locale/chinese.json new file mode 100644 index 00000000..38f379ed --- /dev/null +++ b/locale/chinese.json @@ -0,0 +1,752 @@ +{ + "TranslationProvidedBy": "Renzuka_Ctone and ARSEnic", + "LocaleEnglishName": "Simplified Chinese", + "LocaleNativeName": "简体中文", + "LocaleOffer": "本服务器有可用的中文翻译版本,使用 {1} 以启用。", + "LocaleChanged1": "语言已设定为 {1}", + "LocaleChanged2": "服务器现将以 {1} 显示所有消息。", + "LocaleChangedNote": "这将不会影响到来自其他玩家的消息", + "AccentsListHeader": "口音", + "HelpMainListHeader": "帮助类别", + "AccentNotFound": "该口音不存在", + "AccentSet": " 口音已设置为 {1}", + "InvalidAnimation": "该动作不存在", + "AnimationCommandTip": "使用 {1} 以查看可用动作列表", + "InvalidAnimationDistance": "范围必须在 0 到 3 之间", + "AnimationStopCommandTip": "使用 {1} 以停止当前动作", + "CantBanClient": "你无法封禁该玩家", + "PlayerAccountBanned": "{1} 的账户已被封禁", + "ClanNotFound": "帮派不存在", + "ClanNameTaken": "该帮派名称已被占用", + "PlayerNotFound": "玩家不存在", + "ClanCantRemoveRanks": "无法清除帮派等级", + "ClanCantAddRanks": "无法增加帮派等级", + "ClanRankNotFound": "帮派等级不存在", + "ClanCantChangeMemberTag": "你无法更改帮派成员的标签", + "ClanPlayerNotInSameClan": "该玩家并不属于你的帮派", + "ClanCantChangeRankLevel": "你无法更改帮派等级", + "ClanCantChangeRankTag": "你无法更改帮派标签", + "NameNotRegistered": "你的游戏名尚未注册!使用 {1} 以创建一个新账户。", + "AutomaticLoginIPToggle": "通过 IP 自动登录功能现已 {1}", + "CouldNotRegisterAccount": "在创建你的账户时遇到一些问题,请与管理员联系。", + "RandomTipsToggle": "随机提示信息现已 {1}", + "ActionTipsToggle": "操作帮助现已 {1}", + "AutoSpawnLastCharToggle": "已自动以上次使用的角色 {1} 进行游戏。", + "AccountGUISettingToggle": "GUI 现已 {1}", + "On": "开启", + "Off": "关闭", + "Yes": "是", + "No": "否", + "True": "真", + "False": "假", + "Locked": "锁定", + "Unlocked": "解锁", + "PasswordNotGoodEnough": "新密码须合乎规范!", + "PasswordNeedsBase": "密码至少需要 {1}", + "PasswordNeedsCapitals": "{1} 个大写字母", + "PasswordNeedsNumbers": "{1} 个数字", + "PasswordNeedsSymbols": "{1} 个符号", + "PasswordsDontMatch": "新密码和确认密码不一致!", + "PasswordChanged": "已成功更改你的密码!", + "AutoLoggedInIP": "已通过 IP 自动登录!", + "WelcomeBack": "欢迎回到 {1}, {2}!请 {3} 以继续。", + "WelcomeNewPlayer": "欢迎来到 {1}, {2}!请 {3} 以开始游戏。", + "InvalidPlayer": "玩家不存在!", + "InvalidBusiness": "企业不存在!", + "InvalidHouse": "住宅不存在!", + "InvalidVehicle": "载具不存在!", + "InvalidClan": "帮派不存在!", + "InvalidClanRank": "帮派等级不存在!", + "InvalidJob": "工作不存在", + "InvalidItem": "物品不存在!", + "InvalidItemType": "物品种类不存在!", + "InvalidRadioStation": "电台不存在!", + "InvalidGate": "大门不存在!", + "EntersProperty": "开门并进入 {1} ({2})", + "ExitsProperty": "开门并退出 {1} ({2})", + "EnterExitPropertyDoorLocked": "试图打开 {1} 之门,却发现已上锁。", + "PropertyNoInterior": "{1} 暂无内部场景,但你仍可以在大门图标上使用相关指令。", + "NoBusinessWithItemType": "暂无可用项目的企业", + "HeaderKeyBinds": "快捷键设置", + "HeaderAccountHelp": "账户帮助", + "HeaderVehicleHelp": "载具帮助", + "HeaderVehicleDealershipHelp": "汽车经销商帮助 ", + "HeaderJobHelp": "工作帮助", + "HeaderChatHelp": "聊天帮助", + "HeaderServerRules": "服务器规则", + "HeaderWebsiteInfo": "官网", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "动作列表", + "HeaderPayAndSprayHelp": "付费喷漆帮助", + "HeaderAmmunationHelp": "弹药帮助", + "HeaderVehicleTuneupHelp": "载具改装帮助", + "HeaderBindableKeysHelp": "可绑定的按键", + "HeaderSkinHelp": "服装/皮肤帮助", + "HeaderBusinessHelp": "企业帮助", + "HeaderClanHelp": "帮派帮助", + "HeaderPlayerVehiclesList": "玩家载具 ({1})", + "HeaderPlayerBusinessesList": "玩家企业 ({1})", + "HeaderClansList": "帮派列表", + "HeaderAdminsList": "管理员列表", + "HeaderAccentsList": "口音列表", + "HeaderPlayerInfo": "玩家信息 ({1})", + "HeaderWealthandTaxHelp": "资产与税收帮助", + "HeaderCommandInfo": "指令帮助 ({1})", + "HeaderRadioHelp": "电台帮助", + "HeaderRadioStationsList": "电台", + "HeaderKeyBindsList": "按键绑定列表", + "RadioVolumeChanged": "{1} 已将电台音量调整为 {2}%", + "VolumeLevelNotNumber": "确保输入的音量大小为有效数值", + "RadioStationLocationInvalid": "你必须在车辆、住宅或企业中,或拥有个人设备才能更改电台!", + "ActionBusinessRadioStationChange": "企业电台已设置为 {1} ({2})", + "ActionHouseRadioStationChange": "住宅电台已设置为 {1} ({2})", + "ActionVehicleRadioStationChange": "载具电台已设置为 {1} ({2})", + "ActionItemRadioStationChange": "{1} 的电台已设置为 {2} ({3})", + "RandomVehicleCommandsDisabled": "这是一辆随机刷出的街车,无法对其使用指令。", + "HouseDoorLock": "住宅 {1} {2}!", + "BusinessDoorLock": "企业 {1} {2}!", + "ServerGameModeRestarting": "游戏模式正在重启!", + "HeaderSelfItemList": "你的库存", + "HeaderPlayerItemList": "玩家库存 ({1})", + "HeaderHouseItemList": "住宅库存", + "HeaderBusinessFloorItemList": "企业库存 (供售)", + "HeaderBusinessStorageItemList": "企业库存 (暂存)", + "HeaderItemItemList": "{1} 的库存", + "ItemSlotNotNumber": "物品槽位必须为整数", + "ItemSlotMustBeBetween": "物品槽位应在 {1} 与 {2} 之间!", + "UseItemBugged": "尝试操作的物品出现错误!错误报告已发送给服务器开发人员。", + "PickupItemBugged": "尝试拾取的物品出现错误!错误报告已发送给服务器开发人员。", + "DropItemBugged": "尝试丢弃的物品出现错误!错误报告已发送给服务器开发人员。", + "HandsBusy": "操作频繁", + "CantUseItemInSkinChange": "自定义外观时无法使用该物品", + "CantDropItemInSkinChange": "自定义外观时无法丢弃该物品", + "CantPickupItemInSkinChange": "自定义外观时无法拾取物品", + "CantSwitchItemInSkinChange": "自定义外观时无法切换物品", + "CantGiveItemInSkinChange": "自定义外观时无法赠送物品", + "CantTakeItemInSkinChange": "自定义外观时无法取出物品", + "ItemUnequippableNoAmmo": "槽位 {2} 中的 {1} 弹药已耗尽,无法装备!", + "NoSpaceSelfInventory": "库存已无更多空间", + "Business": "企业", + "House": "住宅", + "Clan": "帮派", + "Vehicle": "载具", + "Item": "物品", + "ItemType": "物品种类", + "Gate": "大门", + "Door": "门", + "ClanRank": "帮派等级", + "JobRank": "工作等级", + "RadioStation": "电台", + "Months": [ + "一月", + "二月", + "三月", + "四月", + "五月", + "六月", + "七月", + "八月", + "九月", + "十月", + "十一月", + "十二月" + ], + "WeekDays": [ + "周日", + "周一", + "周二", + "周三", + "周四", + "周五", + "周六" + ], + "CardinalDirections": { + "North": "北", + "Northeast": "东北", + "East": "东", + "Southeast": "东南", + "South": "南", + "Southwest": "西南", + "West": "西", + "Northwest": "西北" + }, + "NewPlayerReadyToPlay": [ + "你得到了一些现金,使用 {1} 以找到买东西的地方。", + "赚钱靠劳动,求职请前往雷达上的小黄点。", + "买车可以到汽车经销店,你也可以在出生点附近租车或者直接乘火车。", + "确保已阅读 {1},使用 {2} 以获取相关信息。" + ], + "YourCurrentVehicleDeleted": "当前乘坐的车辆已被删除。", + "Distance": "距离", + "Meters": "米", + "Feet": "英尺", + "Kilometers": "公里", + "Miles": "英里", + "MustBeVehicleDriver": "你并不是主驾驶!", + "PlayerJoinedServer": "{1} 加入游戏。来自:{2}", + "PlayerLeftServer": "{1} 退出游戏! ({2})", + "TakeItemFromHouse": "从住宅处拿到 {1}", + "TakeItemFromBusinessStorage": "从企业仓库拿到 {1}", + "TakeItemFromBusiness": "从企业处拿到 {1}", + "TakeItemFromItem": "从 {2} 处拿到 {1}", + "TakeItemFromVehicleTrunk": "从后备箱中取出 {1}", + "TakeItemFromVehicleDash": "从杂物箱中取出 {1}", + "AccountHelp": [ + "请不要将密码分享给任何人,且 {1} 工作人员不会询问你的密码。", + "使用 {1} 以更改密码,若遗忘密码请使用 {2} 。", + "可用设定:{1}" + ], + "VehicleHelp": [ + "你的私人车辆将会在离开车辆时自动保存!", + "前往汽车经销商购买新车 (使用 {1} 以获取更多信息)", + "相关指令:{1}", + "去修理厂修理、喷漆和改装你的汽车! 使用 {1} 以获取相关信息。" + ], + "VehicleDealershipHelp": [ + "前往汽车经销商购买新车,使用 {1} 可以找一家。", + "在经销商处进入你希望购买的车辆,对应价格将会自动显示。", + "确定车辆后使用 {1},即可开始试驾。", + "驾驶车辆离开经销商以确认购买。" + ], + "JobHelp": [ + "地图上的黄点为求职处,你可以在那里找工作挣大钱。", + "在求职处使用 {1} 以获得工作,不想干了就使用 {2} 跑路。", + "使用 {1} 即开始工作,你也可以在 {2} 与 {3} 中获得工作。", + "工作专用车一般都是锁着的,在其旁边使用 {1} 即可进入。", + "进入专用车时,将向你显示有关如何执行工作的信息。" + ], + "ChatHelp": [ + "聊天方式主要有两种:本我意识 (OOC 即 out-of-character) 和 角色意识 (IC 即 in-character)", + "在玩角色扮演的时候最好不要混用两种聊天方式,查看 {1} 以获取更多信息。", + "聊天指令:{1}", + "某些玩家有可用的简称 ({1} 用以正常交流, {2} 用以喊话等)" + ], + "ServerRulesHelp": [ + "不允许不切实际的行为 (powergaming),世界并不由你主宰。", + "不允许恐怖分子或恐怖主义式角色扮演。", + "请始终遵循版主和管理员的指示。", + "不建议混合式聊天 (metagaming), 你不能在 IC 中使用收到 OOC 的信息。", + "请使用英语与其他玩家进行交流,不大擅长英语的话可以试试 {1}" + ], + "AnimationHelp": [ + "虚拟动作可以提升你角色扮演的游戏体验。", + "使用 {1} 或 {2} + 动作名称 以做出一个动作。", + "要查看动作列表,使用 {1}" + ], + "WeaponHelp": [ + "前往枪店购买武器,使用 {1} 可以找一家。", + "购买武器是需要武器许可证的。", + "而武器许可证由警察局管理,在那里申请就可以办到一张。", + "武器也可以从一些企业、武器经销商和帮派那里非法购买。" + ], + "SkinHelp": [ + "在服装店里使用 {1} 即可买到衣服", + "当你拥有可穿戴式物品时,像其它物品一样直接装备即可。(查看 {1} 以了解如何使用物品)", + "某些服装将因工作、帮派或其它原因而受到限制。" + ], + "KeyBindHelp": [ + "你可以自定义快捷键,使用 {1} 以查看已绑定的按键。", + "使用 {1} 以新增快捷键,{2} 以移除。", + "默认按键如下: {1} 发动引擎,{2} 车灯开关,{3} 锁车/解锁", + "按下 {1} 查看你的物品,{2} 装备选定物品,{3} 卸下所有物品", + "按下 {1} 使用当前物品,{2} 丢弃当前物品,{3} 拾取地面物品" + ], + "BusinessHelp": [ + "使用 {1} 以购买物品,或者使用 {2} 以查看任意企业的待售物品列表。", + "企业名称以蓝色字体显示在图标上方。", + "企业主可用的指令:{1}", + "一辆待售的新车会在你开车离开经销商(即确认购买)后出现。" + ], + "ClanHelp": [ + "请求管理员以创建一个属于你自己的帮派 (类似于派系/团体/家庭)", + "帮派创建成功后,帮主将拥有其所有控制权。", + "帮派指令:{1}", + "更多帮派指令:{1}" + ], + "RadioStationHelp": [ + "使用 {1} 为你的车辆/住宅/企业设置电台", + "使用 {2} 以查看电台列表", + "你可以使用 {1} 来改变电台音量大小。(0-100%)" + ], + "WealthAndTaxHelp": [ + "发薪日那天需要缴税,而税款是你计算财富的 {1}%.", + "计算财富是基于你所拥有的车辆、住宅和企业的总和。", + "计算方式:每辆车 {1},每栋房 {2},每个企业 {3}。", + "使用 {1} 以查看你的当前财富,{2} 以查看发薪日当天你应当缴纳的税款。" + ], + "MustBeInAVehicle": "你先得坐在一辆车上!", + "MustBeInOrNearVehicle": "必须要有辆车在你旁边,或者你坐上那辆车!", + "MustBeInVehicleFrontSeat": "你必须坐在车辆前排座椅上!", + "MustBeInVehicleDriverSeat": "你必须是车辆主驾驶!", + "DontHaveVehicleKey": "你并没有这车的钥匙!", + "NoGateAccess": "你无法进入这个大门。", + "GateBroken": "这门已是破烂不堪。", + "GateHacked": "大门没什么反应。", + "RadioJammed": "电台似是被干扰了。", + "VehicleNotForSale": "本车不出售!", + "VehicleNotForRent": "本车不出租!", + "BusinessNotForSale": "本企业不出售!", + "BusinessNotForRent": "本企业不出租!", + "HouseNotForSale": "这处住宅不给卖!", + "HouseNotForRent": "这处住宅不给租!", + "DealershipPurchaseTestDrive": "将车辆驶离经销商处以确认购买,下车以取消。", + "DealershipPurchaseExitedVehicle": "已取消车辆购买。", + "VehiclePurchaseComplete": "这辆车现在是你的了!不管它在哪里都会自动保存。", + "VehiclePurchaseNotEnoughMoney": "你没有足够的钱买这辆车!", + "HousePurchaseNotEnoughMoney": "你没有足够的钱买这处住宅!", + "BusinessPurchaseNotEnoughMoney": "你没有足够的钱来买这家企业!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "玩家住宅 ({1})", + "HeaderPlayerStaffFlagsList": "玩家信号旗 ({1})", + "HeaderStaffFlagsList": "信号旗", + "NonRPName": "非角色扮演名称!请选择新的名称:", + "InvalidStaffFlag": "信号旗帜不存在!", + "InvalidClanFlag": "帮派旗帜不存在!", + "InvalidLocale": "语言不存在!", + "HeaderJobUniformList": "工作制服 ({1})", + "HeaderJobEquipmentList": "工作设备 ({1})", + "InvalidJobUniform": "工作制服不存在!", + "InvalidJobEquipment": "工作设备不存在!", + "HeaderVehiclesInRangeList": "{1} 内的车辆", + "NoVehiclesWithinRange": "{1} 内无任何车辆。", + "AmountNotNumber": "请输入有效数字!", + "NeedToBeWorking": "你得去工作!在求职处或工作专用车旁使用 {1} 。", + "NeedToBeOnJobRoute": "你需要进行一个工作路线!请在工作专用车内使用 {1} 。", + "CurrentJobRouteVehicleColoursChanged": "管理员已更改你的工作路线的车辆颜色", + "NotYourJob": "这不是你的工作!", + "JobPoints": "前往地图上的黄点找到工作。", + "QuitJobToTakeAnother": "要是想干这行,先使用 {1} 离开当前工作。", + "NotAJobVehicle": "这并不是辆工作专用车!", + "NotYourJobVehicle": "这不是你工作用的车!", + "HeaderPickupTypes": "拾取物类型", + "HeaderBlipTypes": "地图图标类型", + "InvalidGPSLocation": "没有具有该名称或类型的位置", + "HeaderBusinessList": "企业", + "VehicleForSale": "此 {1} 可被 {2} 购买到!购买请使用 {3}", + "VehicleForRent": "此 {1} 可被 {2} 租用!租用请使用 {3}", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "密码错误!还有 {1} 次尝试机会。", + "LoginFailedNoPassword": "密码不能为空!还有 {1} 次尝试机会。", + "RegistrationFailedNoPassword": "密码不能为空!", + "RegistrationFailedNoPasswordConfirm": "确认密码不能为空!", + "RegistrationFailedNoEmail": "电子邮件不能为空!", + "AccountNameAlreadyRegistered": "该游戏名已被注册。", + "AlreadyLoggedIn": "你已登录!", + "RegistrationFailedInvalidEmail": "该电子邮件无效!", + "RegistrationFailedPasswordMismatch": "密码不匹配!", + "RegistrationFailedCreateError": "无法创建你的账户!", + "RegistrationSuccess": "账户创建成功!", + "RegistrationEmailVerifyReminder": "验证码已发送至你的电子邮件,请前往并进行验证。", + "RegistrationCreateCharReminder": "在正式游玩之前,你需要创建一个角色。", + "NoCharactersGUIMessage": "暂无角色。要创建一个吗?", + "NoCharactersGUIWindowTitle": "无角色", + "NoCharactersChatMessage": "暂无角色。使用 {1} 新建一个角色。", + "NeedEmailFor2FA": "开启双重验证前,请先添加你的电子邮件。", + "NeedEmailVerifiedFor2FA": "开启双重验证前,请先验证你的电子邮件。", + "SetEmailHelpTip": "使用 {1} 以设置你的电子邮件。", + "VerifyEmailHelpTip": "使用 {1} 以验证你的电子邮件。", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "附近电台", + "FromRadio": "起始电台", + "ToRadio": "终止电台", + "NeedToEnterPropertyCommand": "你得先进入 {1} !使用 {2} 以进入或退出。", + "NeedToEnterPropertyKeyPress": "你得先进入 {1} !使用 {2} 以进入或退出。", + "InventoryFullCantCarry": "库存已满!", + "NotEnoughCashNeedAmountMore": "没有足够现金!你需要多加 {1} !", + "AmountMustBeMoreThan": "数额必须大于 {1}!", + "WeaponBanned": "你已被禁止购买及使用武器!", + "TimeNotNumber": "设定的时间非有效数值", + "HeaderDefaultBusinessItemTypes": "企业项目模板", + "FixingStuck": "修复你当前的位置和虚拟世界 ...", + "CantUseCommandYet": "稍后才能再次使用该指令!", + "NotATester": "非测试者", + "AccessDenied": "拒绝访问", + "InvalidSkin": "该皮肤无效!", + "HeaderInteriorTypes": "内部场景列表", + "GUIAccountSettingToggle": "已切换至 {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "前往汽车经销商购买新车,使用 {1} 以获取更多信息。", + "SkinCommandHelp": "前往服装店购买新衣服,使用 {1} 以获取更多信息。", + "BusinessVehiclesRespawned": "管理员已重置所有企业车辆!", + "JobVehiclesRespawned": "管理员已重置所有工作车辆!", + "PlayerVehiclesRespawned": "管理员已重置所有玩家车辆!", + "ClanVehiclesRespawned": "管理员已重置所有帮派车辆!", + "PublicVehiclesRespawned": "管理员已重置所有公众!", + "EmptyVehiclesRespawned": "管理员已重置所有空闲车辆!", + "AllVehiclesRespawned": "管理员已重置所有车辆!", + "AllVehiclesReloaded": "管理员已重载所有车辆!", + "YourVehicleRespawned": "你的车辆已重生!", + "PlayerIPBanned": "{1} 被封禁 IP!", + "PlayerCharacterBanned": "{1} 被封禁角色!", + "PlayerSubNetBanned": "{1} 被封禁网段!", + "CantModifyBusiness": "你无法操作或修改这个企业!", + "CantModifyHouse": "你无法操作或修改此住宅!", + "ServerTimeSet": "{1} 已将时间设定为 {2}", + "ServerWeatherSet": "{1} 已将天气设定为 {2}", + "ServerSnowSet": "{1} 已调整:落雪-{2},积雪-{3}", + "AllJobsReloaded": "管理员已重置所有工作!", + "ServerLogoSet": "{1} 已设定:服务器 LOGO 状态-{2}", + "ServerGUISet": "{1} 已设定:服务器 GUI 状态-{2}", + "ServerBusinessBlipsSet": "{1} 已设定:服务器企业图例显示状态-{2}", + "ServerHouseBlipsSet": "{1} 已设定:服务器住宅图例显示状态-{2}", + "ServerJobBlipsSet": "{1} 已设定:服务器工作图例显示状态-{2}", + "ServerBusinessPickupsSet": "{1} 已设定:服务器企业拾取物状态-{2}", + "ServerHousePickupsSet": "{1} 已设定:服务器住宅拾取物状态-{2}", + "ServerJobPickupsSet": "{1} 已设定:服务器工作拾取物状态-{2}", + "BusinessBuyItemsLabel": "使用 {1} 以购买物品", + "PropertyEnterCommandLabel": "使用 {1} 以进入", + "PropertyEnterKeyPressLabel": "按下 {1} 以进入", + "PropertyForSaleLabel": "售价:{1}", + "PropertyForRentLabel": "租价:每个发薪日需 {1}", + "RemainingTaxPaidInMoney": "你以 {1} 现金支付了剩下的税款", + "LostMoneyFromTaxes": "你应缴纳的税款超过了你的薪水!", + "NextPaycheckRepossessionWarning": "若无足够的现金来支付下一份薪水的税款,你将失去一些资产!", + "NotEnoughMoneyForTax": "没有足够的现金来支付税款", + "AssetsRepossessedForTax": "因未缴纳税款,你已失去 {1} 辆车,{2} 处住宅,{3} 处企业!", + "Closed": "关闭", + "Open": "开放", + "VehicleDealershipLabel": "驾驶一辆车以购买", + "TakeJobLabel": "使用 {1} 在此工作", + "StartWorkLabel": "使用 {1} 开始工作", + "JobEquipAndUniformLabel": "使用 {1} 与 {2} 以寻求工作用品,或使用 {3} 以停止工作", + "NotYourJobLabel": "你正进行一份与此不同的工作。若想改行,请使用 {1} ", + "JobLabel": "{1} 工作", + "PaydayBonusSet": "🤑 {1} 将结算奖金设定为 {2}", + "AllHousesReloaded": "🏘️ 所有住宅已刷新", + "AllRadioStationsReloaded": "📻 所有电台已刷新!", + "PlayerKicked": "🦶 {1} 被踢出服务器", + "AllBusinessesReloaded": "🏢 所有企业已刷新!", + "UnableToDoThat": "无法操作", + "SetVehicleClanConfirmMessage": "确定把这辆车送给你的帮派吗?", + "SetVehicleClanConfirmTitle": "警告!", + "SetItemPriceBelowOrderPriceMessage": "确定要将项目价格降到成本价以下吗?你将在每次交易中损失 {1} !", + "SetItemPriceBelowOrderPriceTitle": "警告!", + "MustOwnVehicle": "这辆车不属于你!", + "RandomTips": [ + "地图上的黄点代表工作地点", + "你可以绑定自定义键位功能,使用 {1} 以了解详细信息", + "如果不想看到提示和额外信息,请使用 {1} ", + "你可以使用 {1} 与 {2} 来更改键位绑定", + "按下 ℹ️ 显示库存,并使用数字键来选择一个项目", + "在商家使用 {1} 购买商品", + "发现错误?请使用 {1} 以报告给我们", + "对服务器有想法或建议?使用 {1} 以告诉开发人员", + "想买下一家企业?在你希望购买的企业中使用 {1} 即可", + "想买房?在你希望购买的住宅中使用 {1} 即可", + "想买车?去汽车销售店里看看吧", + "使用 {1} 以切换角色", + "使用 {1} 开启自动登录", + "在住宅或企业中使用 {1} 以控制灯光", + "使用 {1} 在你的汽车、住宅或企业中播放网络广播电台", + "想创立个帮派?使用 {1} 了解详细信息", + "你可以在任意一家武器店买到合法武器" + ], + "PromptResponseTip": "使用 {1} 以接受,{2} 以拒绝", + "PlayerConnecting": "👋 {1} 正在连接至服务器", + "GetStartedJobVehicle": "进入一辆 {1} 以开始。", + "VehicleTypes": { + "Car": "汽车", + "Truck": "卡车", + "Van": "货车", + "Taxi": "出租车", + "Bus": "公交车", + "PoliceCar": "警车", + "Ambulance": "救护车", + "FireTruck": "消防车", + "Bike": "自行车", + "Motorbike": "摩托车", + "Boat": "船", + "Helicopter": "直升机", + "Plane": "飞机", + "Train": "火车" + }, + "AlreadyOnJobRoute": "你正在进行工作路线!", + "GaveVehicleToClan": "已将这辆 {1} 送给你的帮派。", + "JobDisabled": "该工作暂时不可用。", + "SetHouseClanConfirmMessage": "确定要把这处住宅送给你的帮派吗?", + "SetHouseClanConfirmTitle": "警告!", + "SetBusinessClanConfirmMessage": "确定要把这家企业送给你的帮派吗?", + "SetBusinessClanConfirmTitle": "警告!", + "MustOwnHouse": "这处住宅并不属于你!", + "MustOwnBusiness": "这家企业并不属于你!", + "GaveHouseToClan": "已将这处住宅送给你的帮派!", + "GaveBusinessToClan": "已将这家企业送给你的帮派!", + "BuyBusinessConfirmMessage": "确定要买下这家企业吗?", + "BuyBusinessConfirmTitle": "注意!", + "BuyHouseConfirmMessage": "确定要买下这处住宅吗?", + "BuyHouseConfirmTitle": "注意!", + "BuyBusinessLabel": "使用 {1} 以买下这家企业", + "BuyHouseLabel": "使用 {1} 以买下这处住宅", + "RentHouseLabel": "使用 {1} 以租用这处住宅", + "AccountEmailAlreadyVerified": "成功设置并验证你的电子邮件!", + "EmailVerificationCodeSent": "验证码与相关说明已发送至你的电子邮件!", + "GUIPlayAsCharacterButton": "开始", + "GUINewCharacterButton": "新的角色", + "GUIPreviousCharacterButton": "上一个", + "GUINextCharacterButton": "下一个", + "GUICharacterSelectWindowTitle": "选择你的角色", + "GUICharacterSelectMoneyLabel": "价格:{1}", + "GUICharacterSelectClanLabel": "帮派:{1}", + "GUICharacterSelectLastPlayedLabel": "最后一次进入游戏:{1} 天, {2} 小时, {3} 分钟前", + "GUILoginWindowLabelEnterPassword": "请输入密码", + "GUILoginWindowSubmitButton": "登录", + "GUILoginWindowResetPasswordButton": "重置", + "GUILoginWindowPasswordPlaceholder": "密码", + "GUILoginWindowForgotPasswordLabel": "忘记密码?", + "GUIRegisterWindowLabelCreateAccount": "创建账户", + "GUIRegisterWindowPasswordPlaceholder": "密码", + "GUIRegisterWindowConfirmPasswordPlaceholder": "确认密码", + "GUIRegisterWindowEmailPlaceholder": "电子邮件", + "GUIRegisterWindowSubmitButton": "创建账户", + "GUINewCharacterMessageLabel": "为你的角色命名", + "GUINewCharacterFirstNamePlaceholder": "名字", + "GUINewCharacterLastNamePlaceholder": "姓氏", + "GUINewCharacterSubmitButton": "创建角色", + "GUIChangePasswordWindowTitle": "更改密码", + "GUIChangePasswordPasswordLabel": "输入新密码", + "GUIChangePasswordPasswordPlaceholder": "密码", + "GUIChangePasswordConfirmPasswordPlaceholder": "确认密码", + "GUIChangePasswordSubmitButton": "更改密码", + "GUIResetPasswordWindowMessage": "重置密码", + "GUIResetPasswordConfirmEmailLabel": "请验证你的电子邮件", + "GUIResetPasswordEmailPlaceholder": "电子邮件", + "GUIResetPasswordSubmitButton": "重置密码", + "GUIResetPasswordLoginButton": "登录", + "GUIResetPasswordRememberMessage": "还记得你的密码吗?", + "HeaderJobList": "工作", + "HeaderBusinessInfo": "企业信息", + "HeaderHouseInfo": "住宅信息", + "HeaderClanInfo": "帮派信息", + "Locales": { + "English": "英文", + "Russian": "俄文", + "Spanish": "西班牙文", + "German": "德文", + "Dutch": "荷兰文", + "Polish": "波兰文", + "Chinese": "中文", + "French": "法文", + "Japanese": "日文", + "Slovak": "斯洛伐克文", + "Arabic": "阿拉伯文" + }, + "TwoFactorAuthSet": "⚙️ 你已开启双重验证 {1}", + "AccountServerLogoSet": "⚙️ 已开启服务器 LOGO {1}", + "ChatScrollLinesNotNumber": "行的值必须为整数", + "ChatScrollLinesMustBeBetween": "行的值必须在 {1} 与 {2} 之间", + "ChatScrollLinesSet": "聊天框一次滚动 {1} 行", + "InvalidEmailVerificationCode": "此验证码无效!系统已重新发送新的验证码,请注意查收。", + "EmailVerified": "电子邮件已成功验证", + "EmailVerifiedTip": "你现在可以使用你的电子邮件进行密码重置、双重验证、登录提醒等", + "CommandRequiresLogin": "登录以使用 {1} 指令", + "CommandDisabled": "{1} 指令被禁用", + "CommandDisabledOnDiscord": "{1} 指令在 Discord 上不可用", + "CommandNotFoundHelpTip": "指令 {1} 不存在!使用 {2} 了解可用指令与相关信息。", + "CommandNotFoundPossibleMatchTip": "指令 {1} 不存在!你是否要查找 {2}?", + "CommandNoPermissions": "没有权限使用 {1} 指令", + "GUIResetPasswordCodeInputLabel": "验证码已发送,请注意查收", + "GUIResetPasswordCodePlaceholder": "验证码", + "GUIErrorTitle": "错误", + "GUIWarningTitle": "警告", + "GUIInfoTitle": "信息", + "GUIOkButton": "好", + "GUIErrorResetPasswordFailedInvalidEmail": "无效的电子邮件!", + "HeaderVehicleInfo": "载具信息", + "HeaderClanRanksList": "帮派排名", + "HeaderNPCInfo": "NPC 信息", + "NPCAnimationSet": "已将 NPC {1} 的动作设定为 {2}", + "NPCNameSet": "已将 NPC {1} 的名字更改为 {2}", + "VehicleTooFar": "你离那辆车太远了!", + "HeaderPropertyTemplateTypes": "资产类型", + "MustBeLoggedInAndSpawnedToChat": "发送消息前请先登录并进入游戏世界。", + "MutedCantChat": "你已被禁言。", + "CantUseMegaphone": "你没有扩音器,且不在紧急车辆中。", + "HeaderAnimationHelp": "动作信息", + "HeaderBadgeInfo": "徽章信息 ({1})", + "NoItemCloseEnough": "附近没有可用物品", + "CantDropJobEquipmentItem": "无法丢弃工作物品", + "CantPutJobEquipmentItem": "无法储存工作物品", + "NoItemEquipped": "没有选定任何物品", + "NoItemInActiveSlot": "当前物品槽中无任何物品", + "CantPutItemInSkinChange": "自定义皮肤时无法存储物品", + "NothingToTakeItemFrom": "附近没有可用物品", + "NoAmmoToLoadIntoWeapon": "没有装载进 {1} 的弹药", + "LoadAmmoIntoWeaponHelpCommand": "请先装备武器并使用 {1} 以装弹", + "LoadAmmoIntoWeaponHelpKeyPress": "请先装备武器并按下 {1} 以装弹", + "NobodyCloseEnoughToHandcuff": "无法使用手铐,请离目标近一些", + "NobodyCloseEnoughToTie": "无法绑起任何人,请离目标近一些", + "PlayerNotSurrenderedHandcuff": "不能把 {1} 铐起来!你只能让他举手投降,或直接进行暴力执政", + "PlayerNotSurrenderedTie": "不能把 {1} 绑起来!你只能让他举手投降,或直接进行暴力执政", + "HeaderCharactersListSelf": "你的角色", + "HeaderCharactersListOther": "{1} 的角色", + "CharacterSelectHelpText": "使用 {1} 以选择一个角色,或 {2} 以创建一个新角色", + "ItemDoesntDoAnythingOnUse": "你尝试使用 {1} ,但什么都没有发生。", + "ItemRadioStationTip": "使用 {1} 以设定电台", + "VehicleLockedCommandTip": "🔒 {1} 已被锁定。使用 {2} 尝试解锁", + "VehicleLockedKeyPressTip": "🔒 {1} 已被锁定。按下 {2} 尝试解锁", + "VehicleLockedCantUnlock": "🔒 {1} 已被锁定,你没有钥匙以解锁", + "CurrentlyRentingThisVehicle": "你正以每分钟 {2} 的价格租用这辆 {1},使用 {3} 以停止租用。", + "VehicleBelongsTo": "这辆 {1} 属于 {2} ({3})", + "NotOwned": "未获得", + "NotCloseEnoughToItemContainer": "旁边没有持有物品的玩家,请离目标近一些", + "Job": "工作", + "Player": "玩家", + "BusinessIsNowPaintBall": "这家企业现已成为彩弹竞技场", + "JoinedPaintBall": "你加入了彩弹竞技。", + "ItemsStoredForPaintBall": "你的物品已存放于储物柜中,在你离开彩弹竞技时将归还", + "LeftPaintBall": "已离开彩弹竞技,你的物品已归还。", + "PaintBallEnded": "彩弹竞技结束,你的物品已归还。", + "HeaderEventWinners": "获胜者", + "YourPaintBallResults": "你的彩弹竞技成绩:{1} 次击杀,{2} 次死亡", + "NoPrivateMessageToReply": "暂未收到未读私信", + "WeaponDoesNotUseAmmo": "{1} 无需装弹", + "ChatBoxTimestampsToggle": "聊天框时间显示现已 {1} ", + "ProfanityFilterSet": "过滤冒犯性词汇现已 {1}", + "ResetAllKeyBindsConfirm": "确定要恢复所有按键设置吗?", + "NotRentingAVehicle": "你没有在租车", + "StoppedRentingVehicle": "已停止租用 {1}", + "VehicleEngineStartKeyPressTip": "{1} 引擎已关闭。按下 {2} 以开启。", + "VehicleEngineStartCommandTip": "{1} 引擎已关闭。使用 {2} 以开启。", + "StartedRentingVehicle": "你正以每分钟 {2} 的价格租用这辆 {1},使用 {3} 以停止租用。", + "VehicleAlreadyRentedByOther": "这辆车正在被其他人租用", + "VehicleAlreadyRentedBySelf": "你正在租用这辆车", + "JobRankTooLow": "等级未达标!", + "InvalidKeyName": "输入的按键 ID 或名称无效!", + "KeyBindsReset": "所有按键已恢复默认设置", + "KeyBindNameTip": "使用简单的按键名称(字母或数字),且不要使用空格。", + "UniversalInlineExamplesList": "例如:{1}", + "KeyBindRemoved": "{1} 按键已被取消绑定", + "KeyBindAdded": "已将按键 {1} 绑定为 {2}", + "CopyAllKeyBindsToServerConfirm": "确定要将所有按键设置复制至 {1} 服务器吗?", + "CopiedAllKeyBindsToServer": "所有按键设置已复制至 {1} 服务器", + "MustBeSpawned": "请先复活!", + "ChatEmojiSet": "聊天自动贴表情现在 {1}", + "FishingLineNotCast": "先抛竿!", + "CantFishHere": "不能在这里钓鱼!你应在水边或者船上钓鱼。", + "NeedFishingRod": "先找根钓鱼竿!", + "FishingCastCommandHelp": "使用 {1} 以抛竿", + "FishingCastKeyBindHelp": "按下 {1} 以抛竿", + "Paused": "已暂停", + "PaintBallAlmostWin": "{1} 仅剩 {2} 次击杀即可赢得彩弹比赛!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOnOff": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} diff --git a/locale/english.json b/locale/english.json new file mode 100644 index 00000000..aba8ff15 --- /dev/null +++ b/locale/english.json @@ -0,0 +1,754 @@ +{ + "TranslationProvidedBy": "Vortrex", + "LocaleEnglishName": "English", + + "LocaleNativeName": "English", + "LocaleOffer": "This server is available in English. Use {1} to use it.", + "LocaleChanged1": "Your language is now set to {1}", + "LocaleChanged2": "The server will now display messages in {1}", + "LocaleChangedNote": "This does not change messages from other players", + "AccentsListHeader": "Accents", + "HelpMainListHeader": "Help Categories", + "AccentNotFound": "Accent not found", + "AccentSet": "You set your accent to {1}", + "InvalidAnimation": "That animation doesn't exist", + "AnimationCommandTip": "Use {1} to see a list of valid animations", + "InvalidAnimationDistance": "The distance must be between 0 and 3", + "CantBanClient": "You cannot ban this person", + "PlayerAccountBanned": "{1} has been account banned", + "ClanNotFound": "Clan not found", + "ClanNameTaken": "A clan with that name already exists", + "PlayerNotFound": "Player not found", + "ClanCantRemoveRanks": "You can't remove clan ranks", + "ClanCantAddRanks": "You can't add clan ranks", + "ClanRankNotFound": "Clan rank not found", + "ClanCantChangeMemberTag": "You can not change clan member's tags", + "ClanPlayerNotInSameClan": "That player is not in your clan", + "ClanCantChangeRankLevel": "You can not change clan rank's level", + "ClanCantChangeRankTag": "You can not change clan rank's tags", + "NameNotRegistered": "Your name is not registered! Use {1} to make an account.", + "AutomaticLoginIPToggle": "Automatic login by IP is now {1}", + "CouldNotRegisterAccount": "There was a problem creating your account. Please contact an admin.", + "RandomTipsToggle": "Random tips are now {1}", + "ActionTipsToggle": "Action tips are now {1}", + "AutoSpawnLastCharToggle": "Automatic spawn as last used character is {1}", + "AccountGUISettingToggle": "🖥️ GUI is now {1}", + "On": "On", + "Off": "Off", + "Yes": "Yes", + "No": "No", + "True": "True", + "False": "False", + "Locked": "Locked", + "Unlocked": "Unlocked", + "PasswordNotGoodEnough": "The new password must meet the requirements!", + "PasswordNeedsBase": "Passwords must have at least {1}", + "PasswordNeedsCapitals": "{1} capital letters", + "PasswordNeedsNumbers": "{1} numbers", + "PasswordNeedsSymbols": "{1} symbols", + "PasswordsDontMatch": "The new password and confirm new password aren't the same!", + "PasswordChanged": "Your password has been changed!", + "AutoLoggedInIP": "You have been automatically logged in by IP!", + "WelcomeBack": "Welcome back to {1}, {2}! Please {3} to continue.", + "WelcomeNewPlayer": "Welcome to {1}, {2}! Please {3} to play.", + "InvalidPlayer": "Player not found!", + "InvalidBusiness": "Business not found!", + "InvalidHouse": "House not found!", + "InvalidVehicle": "Vehicle not found!", + "InvalidClan": "Clan not found!", + "InvalidClanRank": "Clan rank not found!", + "InvalidJob": "Job not found!", + "InvalidItem": "Item not found!", + "InvalidItemType": "Item type not found!", + "InvalidRadioStation": "Radio station not found!", + "InvalidGate": "Gate not found!", + "EntersProperty": "opens the door and enters the {1} ({2})", + "ExitsProperty": "opens the door and exits the {1} ({2})", + "EnterExitPropertyDoorLocked": "tries to open the {1} door but fails because it's locked", + "PropertyNoInterior": "This {1} does not have an interior, but you can still use commands at the door icon.", + "NoBusinessWithItemType": "There is no business with that item available", + "HeaderKeyBinds": "Key Binds", + "HeaderAccountHelp": "Account Help", + "HeaderVehicleHelp": "Vehicle Help", + "HeaderVehicleDealershipHelp": "Vehicle Dealership Help", + "HeaderJobHelp": "Job Help", + "HeaderChatHelp": "Chat Help", + "HeaderServerRules": "Server Rules", + "HeaderWebsiteInfo": "Website", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Animation List", + "HeaderPayAndSprayHelp": "Pay and Spray Help", + "HeaderAmmunationHelp": "Ammunation Help", + "HeaderVehicleTuneupHelp": "Vehicle Tune Help", + "HeaderBindableKeysHelp": "Bindable Keys", + "HeaderSkinHelp": "Clothes/Skin Help", + "HeaderBusinessHelp": "Business Help", + "HeaderClanHelp": "Clan Help", + "HeaderPlayerVehiclesList": "Player Vehicles ({1})", + "HeaderPlayerBusinessesList": "Player Businesses ({1})", + "HeaderClansList": "Clan List", + "HeaderAdminsList": "Admin List", + "HeaderAccentsList": "Accent List", + "HeaderPlayerInfo": "Player Information ({1})", + "HeaderWealthandTaxHelp": "Wealth and Tax Information", + "HeaderCommandInfo": "Command Information ({1})", + "HeaderRadioHelp": "Radio Help", + "HeaderRadioStationsList": "Radio Stations", + "HeaderKeyBindsList": "Key Binds List", + "RadioVolumeChanged": "{1} You changed your streaming radio volume to {2}%", + "VolumeLevelNotNumber": "The volume level must be a number", + "RadioStationLocationInvalid": "You must be in a vehicle, house, or business or have a personal device to change the station!", + "ActionBusinessRadioStationChange": "changes the business radio station to {1} ({2})", + "ActionHouseRadioStationChange": "changes the house radio station to {1} ({2})", + "ActionVehicleRadioStationChange": "changes the vehicle radio station to {1} ({2})", + "ActionItemRadioStationChange": "changes the {1}'s station to {2} ({3})", + "RandomVehicleCommandsDisabled": "This is a random traffic vehicle and commands can't be used for it.", + "HouseDoorLock": "House {1} {2}!", + "BusinessDoorLock": "Business {1} {2}!", + "ServerGameModeRestarting": "The server game mode is restarting!", + "HeaderSelfItemList": "Your Inventory", + "HeaderPlayerItemList": "Player Inventory ({1})", + "HeaderHouseItemList": "House Inventory", + "HeaderBusinessFloorItemList": "Business Inventory (For Sale)", + "HeaderBusinessStorageItemList": "Business Inventory (Storage)", + "HeaderItemItemList": "{1}'s Inventory", + "ItemSlotNotNumber": "The item slot must be a number", + "ItemSlotMustBeBetween": "The item slot must be between {1} and {2}!", + "UseItemBugged": "The item you're trying to use is bugged. A bug report has been sent to the server developers.", + "PickupItemBugged": "The item you're trying to pickup is bugged. A bug report has been sent to the server developers.", + "DropItemBugged": "The item you're trying to drop is bugged. A bug report has been sent to the server developers.", + "HandsBusy": "Your hands are busy", + "CantUseItemInSkinChange": "You can't use an item while customizing your appearance", + "CantDropItemInSkinChange": "You can't drop an item while customizing your appearance", + "CantPickupItemInSkinChange": "You can't pickup an item while customizing your appearance", + "CantSwitchItemInSkinChange": "You can't switch an item while customizing your appearance", + "CantGiveItemInSkinChange": "You can't give an item while customizing your appearance", + "CantTakeItemInSkinChange": "You can't take an item while customizing your appearance", + "ItemUnequippableNoAmmo": "The {1} in slot {2} has no ammo, and can't be equipped!", + "NoSpaceSelfInventory": "You don't have any more space in your inventory", + "Business": "business", + "House": "house", + "Clan": "clan", + "Vehicle": "vehicle", + "Item": "item", + "ItemType": "item type", + "Gate": "gate", + "Door": "door", + "ClanRank": "clan rank", + "JobRank": "job rank", + "RadioStation": "radio station", + "Months": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + "WeekDays": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "CardinalDirections": { + "North": "North", + "Northeast": "Northeast", + "East": "East", + "Southeast": "Southeast", + "South": "South", + "Southwest": "Southwest", + "West": "West", + "Northwest": "Northwest" + }, + "NewPlayerReadyToPlay": [ + "You have been given some cash. Use {1} to find places to buy items.", + "If you need money, jobs are the yellow dots on the radar.", + "For a car, visit the car dealership. You can also use a rental vehicle near spawn or take the train", + "Be sure to read the {1} and use {2} for info." + ], + "YourCurrentVehicleDeleted": "The vehicle you were in was deleted.", + "Distance": "Distance", + "Meters": "Meters", + "Feet": "Feet", + "Kilometers": "Kilometers", + "Miles": "Miles", + "MustBeVehicleDriver": "You must be the driver of the vehicle!", + "PlayerJoined": "{1} has joined the game from {2}!", + "PlayerLeftServer": "{1} has left the game! ({2})", + "TakeItemFromHouse": "takes a {1} from the house", + "TakeItemFromBusinessStorage": "takes a {1} from the business storage", + "TakeItemFromBusiness": "takes a {1} from the business", + "TakeItemFromItem": "takes a {1} from the {2}", + "TakeItemFromVehicleTrunk": "takes a {1} from the trunk", + "TakeItemFromVehicleDash": "takes a {1} from the glove compartment", + "AccountHelp": [ + "Do NOT share your password with anybody else. {1} staff will never ask you for your password", + "Use {1} to change your password, and {2} if you forgot it", + "Some settings you can use: {1}" + ], + "VehicleHelp": [ + "Your personal vehicles will save wherever you or somebody else leaves them!", + "Visit dealerships to buy new vehicles (Use {1} for more information)", + "Some commands: {1}", + "Visit a mechanic garage to repair, colour, and tune up your car! {1} for info" + ], + "VehicleDealershipHelp": [ + "Visit a vehicle dealer to buy new vehicles. Use {1} to find one.", + "At the dealer, enter a car you want to buy, and the price will be shown to you", + "If you want to buy the vehicle, use {1} and you will be given keys to test drive it around the parking lot.", + "Drive away from the dealership with the new vehicle to confirm the purchase." + ], + "JobHelp": [ + "Visit job locations to get a job and earn money. Look for yellow spots on the map", + "At a job location, use {1} to get the job. Use {2} to quit your job", + "Use {1} to begin working. You can also get a job {2} and {3}", + "Most job vehicles are locked. Use {1} near one to enter it.", + "When entering a job vehicle, information on how to do the job will be shown to you." + ], + "ChatHelp": [ + "There are two main types of chat: out-of-character (OOC) and in-character (IC)", + "Mixing these two types is not proper roleplay. See {1} for info.", + "Some chat commands: {1}", + "Some have shorter names available ({1} to talk, {2} to shout, etc)" + ], + "ServerRulesHelp": [ + "Unrealistic actions (powergaming) are not allowed. You aren't superman.", + "No terrorist or terrorism roleplay is allowed.", + "Always follow instructions given by moderators and admins.", + "Do not mix the chats (metagaming). You can't use info in IC that was received OOC", + "Keep English in main chats. If you aren't good at English, use {1}" + ], + "AnimationHelp": [ + "Animations allow you to enhance roleplay with visual actions", + "Use {1} or {2} with a name to use an animation.", + "To see a list of animations, use {1}" + ], + "WeaponHelp": [ + "Visit an gun store to buy weapons. Use {1} to find one.", + "Buying a weapon requires a weapon license.", + "Weapon licenses are managed by the police department. Apply there to get one.", + "Weapons can also be purchased illegally from some businesses, weapon dealers, and clans." + ], + "SkinHelp": [ + "At a clothing store, use {1} to purchase clothes", + "When you have a clothing item, equip and use it like any other item to show the skin selection (check {1} to learn how to use items)", + "Some skins are restricted to jobs, clans, or for other reasons." + ], + "KeyBindHelp": [ + "You can set your own key binds. Use {1} to see your binded keys.", + "Use {1} to add a new keybind and {2} to remove one.", + "Default keys are: {1} for vehicle engine, {2} for lights, and {3} for lock/unlock", + "Press {1} to see your items and {2} to equip an item or {3} to unequip all.", + "Press {1} to use the item you're holding, press {2} to drop it, or press {3} to pickup an item from the ground." + ], + "BusinessHelp": [ + "Use {1} to purchase items or {2} to see a list of what's for sale at any business", + "Businesses are shown with blue names above the icon at their entrance.", + "Business owner commands: {1}", + "A new car for sale will appear when you drive away from the dealer." + ], + "ClanHelp": [ + "Ask an administrator to create a clan (Similar to factions/groups/families)", + "Clan owners have full control over their clan once it's created", + "Clan commands: {1}", + "More clan commands: {1}" + ], + "RadioStationHelp": [ + "Use {1} to set the station for your vehicle, house, or business", + "Use {2} to see a list of stations", + "You can change your radio streaming volume using {1} with 0-100 as the percent" + ], + "WealthAndTaxHelp": [ + "Your taxes on payday are {1} percent of your calculated wealth.", + "Your calculated wealth is a total sum based on how many vehicles, houses, and businesses you have.", + "Each vehicle is {1}, each house is {2}, and each business is {3}", + "Use {1} to see your current wealth, and {2} to see how much you'll pay in tax each payday" + ], + "MustBeInAVehicle": "You need to be in a vehicle!", + "MustBeInOrNearVehicle": "You need to be in or near a vehicle!", + "MustBeInVehicleFrontSeat": "You need to be in the vehicle front seats!", + "MustBeInVehicleDriverSeat": "You need to be the driver!", + "DontHaveVehicleKey": "You don't have a key for this vehicle!", + "NoGateAccess": "You don't have access to this gate!", + "GateBroken": "This gate is broken!", + "GateHacked": "The gate does not respond!", + "RadioJammed": "You hear only static from the radio.", + "VehicleNotForSale": "This vehicle is not for sale!", + "VehicleNotForRent": "This vehicle is not for rent!", + "BusinessNotForSale": "This business is not for sale!", + "BusinessNotForRent": "This business is not for rent!", + "HouseNotForSale": "This house is not for sale!", + "HouseNotForRent": "This house is not for rent!", + "DealershipPurchaseTestDrive": "Drive the vehicle away from the dealership to buy it, or get out to cancel.", + "DealershipPurchaseExitedVehicle": "You canceled the vehicle purchase by exiting the vehicle!", + "VehiclePurchaseComplete": "This vehicle is now yours! It will save wherever you leave it.", + "VehiclePurchaseNotEnoughMoney": "You don't have enough money to buy this vehicle!", + "HousePurchaseNotEnoughMoney": "You don't have enough money to buy this house!", + "BusinessPurchaseNotEnoughMoney": "You don't have enough money to buy this business!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Player Houses ({1})", + "HeaderPlayerStaffFlagsList": "Player Staff Flags ({1})", + "HeaderStaffFlagsList": "Staff Flags", + "NonRPName": "Non-RP name! Choose a new one:", + "InvalidStaffFlag": "Staff flag not found!", + "InvalidClanFlag": "Clan flag not found!", + "InvalidLocale": "Language not found!", + "HeaderJobUniformList": "Job Uniforms ({1})", + "HeaderJobEquipmentList": "Job Equipment ({1})", + "InvalidJobUniform": "Job uniform not found!", + "InvalidJobEquipment": "Job equipment not found!", + "HeaderVehiclesInRangeList": "Vehicles within {1}", + "NoVehiclesWithinRange": "There are no vehicles within {1}", + "AmountNotNumber": "The amount must be a number!", + "NeedToBeWorking": "You need to be working! Use {1} at a job location or near a job vehicle.", + "NeedToBeOnJobRoute": "You need to be doing a job route! Use {1} in a job vehicle", + "CurrentJobRouteVehicleColoursChanged": "Your job route's vehicle colours were changed by an admin", + "NotYourJob": "This is not your job!", + "JobPoints": "You can get a job by going the yellow points on the map.", + "QuitJobToTakeAnother": "If you want this job, use {1} to quit your current job.", + "NotAJobVehicle": "This is not a job vehicle!", + "NotYourJobVehicle": "This is not your job's vehicle!", + "HeaderPickupTypes": "Pickup Types", + "HeaderBlipTypes": "Map Icon Types", + "InvalidGPSLocation": "There are no locations with that name or type", + "HeaderBusinessList": "Businesses", + "VehicleForSale": "This {1} is buyable for {2}! Use {3} if you want to buy it", + "VehicleForRent": "This {1} is rentable for {2}! Use {3} if you want to rent it", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Invalid password! {1} attempts remaining", + "LoginFailedNoPassword": "You must enter a password! ! {1} attempts remaining", + "RegistrationFailedNoPassword": "You must enter a password!", + "RegistrationFailedNoPasswordConfirm": "You must confirm the password!", + "RegistrationFailedNoEmail": "You must enter an email!", + "AccountNameAlreadyRegistered": "Your name is already registered!", + "AlreadyLoggedIn": "You are already logged in!", + "RegistrationFailedInvalidEmail": "That email is invalid!", + "RegistrationFailedPasswordMismatch": "The passwords don't match!", + "RegistrationFailedCreateError": "Your account couldn't be created!", + "RegistrationSuccess": "Your account has been created!", + "RegistrationEmailVerifyReminder": "Don't forget to verify your email! A verification code has been sent to you.", + "RegistrationCreateCharReminder": "To play on the server, you will need to make a character.", + "NoCharactersGUIMessage": "You have no characters. Would you like to make one?", + "NoCharactersGUIWindowTitle": "No characters", + "NoCharactersChatMessage": "You have no characters. Use {1} to make one.", + "NeedEmailFor2FA": "You need to add your email to your account to use two-factor authentication.", + "NeedEmailVerifiedFor2FA": "You need to verify your email to use two-factor authentication.", + "SetEmailHelpTip": "Use {1} to set your email.", + "VerifyEmailHelpTip": "Use {1} to verify your email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Nearby radio", + "FromRadio": "From radio", + "ToRadio": "To radio", + "NeedToEnterPropertyCommand": "You need to enter the {1} first! Use {2} to enter and exit", + "NeedToEnterPropertyKeyPress": "You need to enter the {1} first! Press {2} to enter and exit", + "InventoryFullCantCarry": "You don't have any space to carry this (full inventory)!", + "NotEnoughCashNeedAmountMore": "You don't have enough money! You need {1} more!", + "AmountMustBeMoreThan": "The amount must be more than {1}!", + "WeaponBanned": "You are not allowed to buy or use weapons!", + "TimeNotNumber": "The time must be a number", + "HeaderDefaultBusinessItemTypes": "Business Item Templates", + "FixingStuck": "Fixing your position and virtual world ...", + "CantUseCommandYet": "You must wait before you can use this command again!", + "NotATester": "You are not a tester!", + "AccessDenied": "Access Denied", + "InvalidSkin": "That skin is invalid!", + "HeaderInteriorTypes": "Interiors List", + "GUIAccountSettingToggle": "You have turned {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "You can buy a car by visiting a vehicle dealership. Use {1} for more information.", + "SkinCommandHelp": "You can change your skin by visiting a clothes store. Use {1} for more info.", + "BusinessVehiclesRespawned": "🚗 All business vehicles have been respawned by an admin!", + "JobVehiclesRespawned": "🚗 All job vehicles have been respawned by an admin!", + "PlayerVehiclesRespawned": "🚗 All player vehicles have been respawned by an admin!", + "ClanVehiclesRespawned": "🚗 All clan vehicles have been respawned by an admin!", + "PublicVehiclesRespawned": "🚗 All public have been respawned by an admin!", + "EmptyVehiclesRespawned": "🚗 All empty vehicles have been respawned by an admin!", + "AllVehiclesRespawned": "🚗 All vehicles have been respawned by an admin!", + "AllVehiclesReloaded": "🚗 All vehicles have been reloaded by an admin!", + "YourVehicleRespawned": "🚗 Your vehicle has been respawned!", + "PlayerIPBanned": "💀 {1} has been IP banned!", + "PlayerCharacterBanned": "💀 {1} has been character banned!", + "PlayerSubNetBanned": "💀 {1} has been subnet banned!", + "CantModifyBusiness": "You can't manage or modify this business!", + "CantModifyHouse": "You can't manage or modify this house!", + "ServerTimeSet": "⏰ {1} set the time to {2}", + "ServerWeatherSet": "☁️ {1} set the weather to {2}", + "ServerSnowSet": "❄️ {1} turned falling snow {2} and ground snow {3}", + "AllJobsReloaded": "💼 All server jobs have been reloaded by an admin", + "ServerLogoSet": "{1} turned the server logo image {2}", + "ServerGUISet": "🖥️ {1} turned GUI for this server {2}", + "ServerBusinessBlipsSet": "🏢 {1} turned all business blips {2}", + "ServerHouseBlipsSet": "🏘️ {1} turned all house blips {2}", + "ServerJobBlipsSet": "💼 {1} turned all job blips {2}", + "ServerBusinessPickupsSet": "🏢 {1} turned all business pickups {2}", + "ServerHousePickupsSet": "🏘️ {1} turned all house pickups {2}", + "ServerJobPickupsSet": "💼 {1} turned on all job pickups {2}", + "BusinessBuyItemsLabel": "Use {1} to purchase items", + "PropertyEnterCommandLabel": "Use {1} to enter", + "PropertyEnterKeyPressLabel": "Press {1} to enter", + "PropertyForSaleLabel": "For sale: {1}", + "PropertyForRentLabel": "For rent: {1} every payday", + "RemainingTaxPaidInMoney": "You covered the remaining taxes with {1} in cash.", + "LostMoneyFromTaxes": "You lost money since your taxes are more than your paycheck!", + "NextPaycheckRepossessionWarning": "If you don't have enough cash to cover taxes on next paycheck, you will lose stuff!", + "NotEnoughMoneyForTax": "You don't have enough money to cover your taxes!", + "AssetsRepossessedForTax": "You lost {1} vehicles, {2} houses, and {3} businesses because you couldn't pay taxes!", + "Closed": "Closed", + "Open": "Open", + "VehicleDealershipLabel": "Enter a vehicle as driver to buy it", + "TakeJobLabel": "Use {1} to work here", + "StartWorkLabel": "Use {1} to start working", + "JobEquipAndUniformLabel": "Use {1} and {2} for job stuff, or {3} to stop working", + "NotYourJobLabel": "You already have a different job. Use {1} if you want this one", + "JobLabel": "{1} Job", + "PaydayBonusSet": "🤑 {1} set the payday bonus to {2}", + "AllHousesReloaded": "🏘️ All houses have been reloaded by an admin", + "AllRadioStationsReloaded": "📻 All radio stations have been reloaded by an admin!", + "PlayerKicked": "🦶 {1} has been kicked from the server", + "AllBusinessesReloaded": "🏢 All businesses have been reloaded by an admin!", + "UnableToDoThat": "You aren't able to do that", + "SetVehicleClanConfirmMessage": "Are you sure you want to give this vehicle to your clan?", + "SetVehicleClanConfirmTitle": "Warning!", + "SetItemPriceBelowOrderPriceMessage": "Are you sure you want to set the item price below it's order price? You will lose {1} every purchase!", + "SetItemPriceBelowOrderPriceTitle": "Warning!", + "MustOwnVehicle": "You don't own this vehicle!", + "RandomTips": [ + "Look for yellow dots on your map for job locations", + "You can set custom key binds. Use {1} for details", + "Use {1} if you don't want to see tips and extra information", + "You can edit your keybinds using {1} and {2}", + "Press ℹ️ to see your inventory, and use number keys to select an item", + "Use {1} at a business to purchase items", + "Found a bug? Report it with {1}", + "Have an idea or suggestion for the server? Let the devs know using {1}", + "Want to buy a business? Use {1} at one for sale", + "Want to buy a house? Use {1} at one for sale", + "Want to buy a vehicle? Visit a dealership and enter one for info on how to buy it!", + "Switch to any of your characters with {1}", + "Use {1} to automatically login when connecting with the same IP", + "Use {1} to turn on/off the lights in your house or business", + "Use {1} to play an internet radio station in your car, house, or business", + "Want to make a clan? Use {1} for details", + "Legal weapons can be purchased at any ammunation" + ], + "PromptResponseTip": "Use {1} to accept or {2} to decline", + "PlayerConnecting": "👋 {1} is connecting to the server ...", + "GetStartedJobVehicle": "Get in a {1} to get started.", + "VehicleTypes": { + "Car": "Car", + "Truck": "Truck", + "Van": "Van", + "Taxi": "Taxi", + "Bus": "Bus", + "PoliceCar": "Police Car", + "Ambulance": "Ambulance", + "FireTruck": "Fire Truck", + "Bike": "Bike", + "Motorbike": "Motorbike", + "Boat": "Boat", + "Helicopter": "Helicopter", + "Plane": "Plane", + "Train": "Train" + }, + "AlreadyOnJobRoute": "You are already doing a job route! Finish the route or use {1}", + "GaveVehicleToClan": "You gave this {1} to your clan!", + "JobDisabled": "This job is disabled!", + "SetHouseClanConfirmMessage": "Are you sure you want to give this house to your clan?", + "SetHouseClanConfirmTitle": "Warning!", + "SetBusinessClanConfirmMessage": "Are you sure you want to give this business to your clan?", + "SetBusinessClanConfirmTitle": "Warning!", + "MustOwnHouse": "You don't own this house!", + "MustOwnBusiness": "You don't own this business!", + "GaveHouseToClan": "You gave this house to your clan!", + "GaveBusinessToClan": "You gave this business to your clan!", + "BuyBusinessConfirmMessage": "Are you sure you want to buy this business?", + "BuyBusinessConfirmTitle": "Attention!", + "BuyHouseConfirmMessage": "Are you sure you want to buy this house?", + "BuyHouseConfirmTitle": "Attention!", + "BuyBusinessLabel": "Use {1} to buy this business", + "BuyHouseLabel": "Use {1} to buy this house", + "RentHouseLabel": "Use {1} to rent this house", + "AccountEmailAlreadyVerified": "You already set and verified your email!", + "EmailVerificationCodeSent": "A verification code and instructions have been sent to your email.", + "GUIPlayAsCharacterButton": "Play", + "GUINewCharacterButton": "New character", + "GUIPreviousCharacterButton": "Previous", + "GUINextCharacterButton": "Next", + "GUICharacterSelectWindowTitle": "Select a character", + "GUICharacterSelectMoneyLabel": "Money: {1}", + "GUICharacterSelectClanLabel": "Clan: {1}", + "GUICharacterSelectLastPlayedLabel": "Last Played: {1} days, {2} hours, {3} minutes ago", + "GUILoginWindowLabelEnterPassword": "Please enter your password", + "GUILoginWindowSubmitButton": "Login", + "GUILoginWindowResetPasswordButton": "Reset", + "GUILoginWindowPasswordPlaceholder": "Password", + "GUILoginWindowForgotPasswordLabel": "Forgot your password?", + "GUIRegisterWindowLabelCreateAccount": "Create an account", + "GUIRegisterWindowPasswordPlaceholder": "Password", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Confirm password", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Create account", + "GUINewCharacterMessageLabel": "Name your character", + "GUINewCharacterFirstNamePlaceholder": "First Name", + "GUINewCharacterLastNamePlaceholder": "Last Name", + "GUINewCharacterSubmitButton": "Create Character", + "GUIChangePasswordWindowTitle": "Change Password", + "GUIChangePasswordPasswordLabel": "Enter a new password", + "GUIChangePasswordPasswordPlaceholder": "Password", + "GUIChangePasswordConfirmPasswordPlaceholder": "Confirm password", + "GUIChangePasswordSubmitButton": "Change Password", + "GUIResetPasswordWindowMessage": "Reset Password", + "GUIResetPasswordConfirmEmailLabel": "Please confirm your email", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Reset Password", + "GUIResetPasswordLoginButton": "Login", + + "GUIResetPasswordRememberMessage": "Remember your password?", + "HeaderJobList": "Jobs", + "HeaderBusinessInfo": "Business Info", + "HeaderHouseInfo": "House Info", + "HeaderClanInfo": "Clan Info", + "Locales": { + "English": "English", + "Russian": "Russian", + "Spanish": "Spanish", + "German": "German", + "Dutch": "Dutch", + "Polish": "Polish", + "Chinese": "Chinese", + "French": "French", + "Japanese": "Japanese", + "Slovak": "Slovak", + "Arabic": "Arabic" + }, + "TwoFactorAuthSet": "⚙️ You have turned two factor authentication {1}", + "AccountServerLogoSet": "⚙️ You turned the server logo {1}", + "ChatScrollLinesNotNumber": "The line amount must be a number", + "ChatScrollLinesMustBeBetween": "The line amount must be between {1} and {2}", + "ChatScrollLinesSet": "The chatbox will now scroll {1} lines at a time", + "InvalidEmailVerificationCode": "Invalid email verification code! A new one has been created and sent to your email.", + "EmailVerified": "Your email has been verified", + "EmailVerifiedTip": "You can now use your email for password resets, two-factor authentication, login alerts, and more", + "CommandRequiresLogin": "You must be logged in to use the {1} command", + "CommandDisabled": "The {1} command is disabled", + "CommandDisabledOnDiscord": "The {1} command isn't available on discord", + "CommandNotFoundHelpTip": "The command {1} does not exist! Use {2} for commands and information.", + "CommandNotFoundPossibleMatchTip": "The command {1} does not exist! Did you mean {2}?", + "CommandNoPermissions": "You don't have permission to use the {1} command", + "GUIResetPasswordCodeInputLabel": "Check your email for a code", + "GUIResetPasswordCodePlaceholder": "Verification code", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Warning", + "GUIInfoTitle": "Info", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Invalid email!", + "HeaderVehicleInfo": "Vehicle Info", + "HeaderClanRanksList": "Clan Ranks ({1})", + "HeaderNPCInfo": "NPC Info", + "NPCAnimationSet": "You set NPC {1} animation to {2}", + "NPCNameSet": "You set NPC {1} name to {2}", + "VehicleTooFar": "You are too far away from the vehicle!", + "HeaderPropertyTemplateTypes": "Property Types", + "MustBeLoggedInAndSpawnedToChat": "You need to be logged in and spawned before you can chat!", + "MutedCantChat": "You are muted and can't chat!", + "CantUseMegaphone": "You must equip a megaphone item or be in an emergency vehicle!", + "HeaderAnimationHelp": "Animation Info", + "HeaderBadgeInfo": "Badge Information ({1})", + "NoItemCloseEnough": "There is no item close enough", + "CantDropJobEquipmentItem": "You can't drop job items", + "CantPutJobEquipmentItem": "You can't store job items", + "NoItemEquipped": "You don't have any item selected", + "NoItemInActiveSlot": "You don't have an item in your active item slot", + "CantPutItemInSkinChange": "You can't store an item while customizing your appearance", + "NothingToTakeItemFrom": "You aren't near anything to take items from", + "NoAmmoToLoadIntoWeapon": "You don't have any ammo to load into the {1}", + "LoadAmmoIntoWeaponHelpCommand": "To load this ammo into a weapon, equip the weapon and type {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "To load this ammo into a weapon, equip the weapon and press {1}", + "NobodyCloseEnoughToHandcuff": "Nobody is close enough to handcuff", + "NobodyCloseEnoughToTie": "Nobody is close enough to tie up", + "PlayerNotSurrenderedHandcuff": "{1} can't be handcuffed! They either need to have their hands up, be knocked out, or tazed", + "PlayerNotSurrenderedTie": "{1} can't be tied! They either need to have their hands up, be knocked out, or tazed", + "HeaderCharactersListSelf": "Your Characters", + "HeaderCharactersListOther": "{1}'s Characters", + "CharacterSelectHelpText": "Use {1} to select a character, or {2} to create a new character", + "ItemDoesntDoAnythingOnUse": "The {1} doesn't do anything when you try to use it.", + "ItemRadioStationTip": "Use {1} to set the radio station", + "VehicleLockedCommandTip": "🔒 This {1} is locked. Use {2} to unlock it", + "VehicleLockedKeyPressTip": "🔒 This {1} is locked. Press {2} to unlock it", + "VehicleLockedCantUnlock": "🔒 This {1} is locked and you don't have the keys to unlock it", + "CurrentlyRentingThisVehicle": "You are renting this {1} for {2} per minute. Use {3} if you want to stop renting it.", + "VehicleBelongsTo": "This {1} belongs to {2} ({3})", + "NotOwned": "Not Owned", + "NotCloseEnoughToItemContainer": "You are not close enough to anything that holds items", + "Job": "Job", + "Player": "Player", + "BusinessIsNowPaintBall": "This business is now a paintball arena", + "JoinedPaintBall": "You have joined the paintball game.", + "ItemsStoredForPaintBall": "Your items are stored in your locker and will be returned when you leave the paintball game", + "LeftPaintBall": "You have left the paintball game. Your items have been returned.", + "PaintBallEnded": "The paintball match has ended. Your items have been returned.", + "HeaderEventWinners": "Winners", + "YourPaintBallResults": "You got {1} kills and {2} deaths in the paintball match", + "NoPrivateMessageToReply": "You haven't received a private message to reply to", + + "WeaponDoesNotUseAmmo": "The {1} doesn't use ammo", + "ChatBoxTimestampsToggle": "You turned {1} time display in the chatbox", + "ProfanityFilterSet": "You turned chat profanity filter {1}", + "ResetAllKeyBindsConfirm": "Are you sure you want to reset all your keybinds to default?", + "NotRentingAVehicle": "You are not renting a vehicle!", + "StoppedRentingVehicle": "You stopped renting the {1}", + "VehicleEngineStartKeyPressTip": "The {1} engine is off. Press {2} to start it.", + "VehicleEngineStartCommandTip": "The {1} engine is off. Use {2} to start it.", + "StartedRentingVehicle": "You are now renting this {1} for {2} per minute. To stop renting, use {3}", + "VehicleAlreadyRentedByOther": "This vehicle is already rented by someone else", + "VehicleAlreadyRentedBySelf": "You are already renting this vehicle", + "JobRankTooLow": "You are not high enough rank!", + "InvalidKeyName": "The key ID or name you input is invalid!", + "KeyBindsReset": "All your keybinds have been reset to default", + "KeyBindNameTip": "Use simple key names, letters, or numbers. Don't add spaces.", + "UniversalInlineExamplesList": "Examples: {1}", + "KeyBindRemoved": "You removed the keybind for the {1} key", + "KeyBindAdded": "You binded key {1} to {2}", + "CopyAllKeyBindsToServerConfirm": "Are you sure you want to copy all your keybinds to the {1} server?", + "CopiedAllKeyBindsToServer": "All your keybinds have been copied to the {1} server", + "MustBeSpawned": "You must be spawned!", + "ChatEmojiSet": "You turned automatic emoji in chat {1}", + "FishingLineNotCast": "Your fishing line isn't cast!", + "CantFishHere": "You can't fish here! You need to be near water or on a boat!", + "NeedFishingRod": "You need to be holding a fishing rod!", + "FishingCastCommandHelp": "Use {1} to cast your fishing line", + "FishingCastKeyBindHelp": "Press {1} to cast your fishing line", + "Paused": "Paused", + "PaintBallAlmostWin": "{1} only needs {2} more kills to win the paintball match!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOn": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} diff --git a/locale/finnish.json b/locale/finnish.json new file mode 100644 index 00000000..87eede32 --- /dev/null +++ b/locale/finnish.json @@ -0,0 +1,751 @@ +{ + "TranslationProvidedBy": "SIMBA_MEOW", + "LocaleEnglishName": "Finnish", + + "LocaleNativeName": "Finnish", + "LocaleOffer": "Tämä Serveri on nyt käytettävissä suomen kielellä Käytä {1} jotta voit käyttää sitä", + "LocaleChanged1": "Sinun kieli on nyt vaihdettu suomeen. {1}", + "LocaleChanged2": "Tämä serveri nyt näyttää tekstit suomen kielellä. {1}", + "LocaleChangedNote": "Tämä ei vaihda tekstejä muilta pelaajilta.", + "AccentsListHeader": "Aksentit", + "HelpMainListHeader": "Ohje luokat", + "AccentNotFound": "Aksenttia ei löydetty", + "AccentSet": "Sinä vaihdoit sinun aksentin{1}", + "InvalidAnimation": "Tuo animaatio on väärä.", + "AnimationCommandTip": "Käytä {1} että näet listan toimivia animaatioita.", + "InvalidAnimationDistance": "etäisyyden pitää olla väliin 0 ja 3", + "CantBanClient": "Sinä et voi bannätä tätä pelaajaa", + "PlayerAccountBanned": "{1} Käyttäjä on nyt bannätty", + "ClanNotFound": "Claania ei löydetty", + "ClanNameTaken": "Claani tuolla nimellä on jo otettu", + "PlayerNotFound": "Pelaajaa ei löytynyt ", + "ClanCantRemoveRanks": "Sinä et voi poistaa tämän claanin rankkejä", + "ClanCantAddRanks": "sinä et voi lisätä claani ranksejä", + "ClanRankNotFound": "Claanin nimeä ei loytynyt", + "ClanCantChangeMemberTag": " Sinä et voi vaihtaa claanin jäsenen tagejä", + "ClanPlayerNotInSameClan": "Tuo pelaaja ei ole sinun claanissa.", + "ClanCantChangeRankLevel": "Sinä et voi vaihtaa claanin rankin leveleitä", + "ClanCantChangeRankTag": "Sinä et voi vaihtaa claanin rankin tägeja", + "NameNotRegistered": "Sinun käyttäjä ei ole Rekisteröitu! Käytä {1} että voit tehdä käyttäjän", + "AutomaticLoginIPToggle": "Automaatinen Kirjautuminen IP ltä on nyt päällä {1}", + "CouldNotRegisterAccount": "tässä oli ongelma luodettasi käyttäjää. Ole hyvä ja kysy adminilta.", + "RandomTipsToggle": "Randomi vinkit ovat nyt {1}", + "ActionTipsToggle": "toiminta vinkit ovat nyt {1}", + "AutoSpawnLastCharToggle": "Automaattinen spawni viimeksi käytettynä hahmo on {1}", + "AccountGUISettingToggle": "🖥️ Käyttöliitymä on nyt päällä {1}", + "On": "On", + "Off": "Off", + "Yes": "Kyllä", + "No": "Ei", + "True": "oikea", + "False": "väärin", + "Locked": "Lukittu", + "Unlocked": "Lukitsematon", + "PasswordNotGoodEnough": "Uusi salasana ei täytä vaatimuksia!", + "PasswordNeedsBase": "Salasanallasi pitää olla ainakin yksi {1}", + "PasswordNeedsCapitals": "{1} ISON alku kirjaimen", + "PasswordNeedsNumbers": "{1} Numerot", + "PasswordNeedsSymbols": "{1} Symboolit", + "PasswordsDontMatch": "Uusi salasana ja salasanan vahvistus eivät ole samat!", + "PasswordChanged": "Sinun salasanasi on vaihdettu!", + "AutoLoggedInIP": "Olet kirjautunut automaattisesti sisään IP osoitteella!", + "WelcomeBack": "Tervetuloa takaisin {1}, {2}! ole hyvä {3} jatkaaksesi.", + "WelcomeNewPlayer": "Tervetuloa {1}, {2}! ole hyvä {3} pelataaksesi.", + "InvalidPlayer": "Pelaajaa ei löytynyt!", + "InvalidBusiness": "Bisnestä ei löytynyt!", + "InvalidHouse": "Taloa ei löytynyt!", + "InvalidVehicle": "Ajoneuvoa ei löytynyt!", + "InvalidClan": "Claania ei löytynyt!", + "InvalidClanRank": "Claanin rankkiä ei löytynyt!", + "InvalidJob": "Työtä ei löytynyt!", + "InvalidItem": "kohdetta ei löytynyt!", + "InvalidItemType": "kohteen tyyppiä ei löytynyt!", + "InvalidRadioStation": "Radio kanavaa ei löytynyt!", + "InvalidGate": "porttia ei löytynyt!", + "EntersProperty": "avaa oven ja astuu sisään {1} ({2})", + "ExitsProperty": "avaa oven ja astuu pois {1} ({2})", + "EnterExitPropertyDoorLocked": "yrittää avata oven {1} ovi mutta epäonnistuu koska se on lukittu", + "PropertyNoInterior": "Tämä {1} ei sisällä sisätilaa, mutta voit silti käyttää komentoja ovikuvakkeessa.", + "NoBusinessWithItemType": "täällä ei ole kauppaa kyseisen tuotteen kanssa", + "HeaderKeyBinds": "avain sitoo", + "HeaderAccountHelp": "Käyttäjä apu", + "HeaderVehicleHelp": "ajoneuvo apu", + "HeaderVehicleDealershipHelp": "Ajoneuvo liikkeen apu", + "HeaderJobHelp": "työ apu", + "HeaderChatHelp": "Chatti apu", + "HeaderServerRules": "Serverin säännöt", + "HeaderWebsiteInfo": "Verkkosivusto", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Animaatioluettelo", + "HeaderPayAndSprayHelp": "maksa ja suihkuta apu", + "HeaderAmmunationHelp": "Ase kauppa apu", + "HeaderVehicleTuneupHelp": "ajoneuvon sävelmä apu", + "HeaderBindableKeysHelp": "sidottavat avaimet", + "HeaderSkinHelp": "Vaatteet/iho apu", + "HeaderBusinessHelp": "Kauppa/bisnes apu", + "HeaderClanHelp": "Claanin apu", + "HeaderPlayerVehiclesList": "pelaajan ajoneuvot ({1})", + "HeaderPlayerBusinessesList": "pelaajan bisnekset ({1})", + "HeaderClansList": "Claani Lista", + "HeaderAdminsList": "Admini Lista", + "HeaderAccentsList": "Aksentti Lista", + "HeaderPlayerInfo": "Pelaajan Informaatio ({1})", + "HeaderWealthandTaxHelp": "varallisuus and verot Informaatio", + "HeaderCommandInfo": "komennon Informaatio ({1})", + "HeaderRadioHelp": "Radio apu", + "HeaderRadioStationsList": "Radio asemat/kanavat", + "HeaderKeyBindsList": "avain sitomis Lista", + "RadioVolumeChanged": "{1} Sinä vaihdoit sinun radion ääniä to {2}%", + "VolumeLevelNotNumber": "Äänenvoimakkuuden on oltava numero", + "RadioStationLocationInvalid": "Sinun on oltava ajoneuvossa, talossa tai yrityksessä tai sinulla on oltava henkilökohtainen laite vaihtaaksesi radio asemaa!", + "ActionBusinessRadioStationChange": "vaihtaa bisnes radioasemaksi {1} ({2})", + "ActionHouseRadioStationChange": "muuttaa talon radioasemaksi {1} ({2})", + "ActionVehicleRadioStationChange": "vaihtaa ajoneuvon radioasemaksi {1} ({2})", + "ActionItemRadioStationChange": "vaihtaa {1}'s aseman {2} ({3})", + "RandomVehicleCommandsDisabled": "Tämä on satunnainen liikenneajoneuvo, eikä siihen voi käyttää komentoja.", + "HouseDoorLock": "Talo {1} {2}!", + "BusinessDoorLock": "Bisnes {1} {2}!", + "ServerGameModeRestarting": "Palvelinpelitila käynnistyy uudelleen!", + "HeaderSelfItemList": "Sinun inventoori", + "HeaderPlayerItemList": "Pelaajan inventoori ({1})", + "HeaderHouseItemList": "Talon inventoori", + "HeaderBusinessFloorItemList": "Bisnes Inventoori (myyntiin)", + "HeaderBusinessStorageItemList": "Bisnes Inventoori (tila)", + "HeaderItemItemList": "{1}'s Inventoori", + "ItemSlotNotNumber": "Tuotepaikan on oltava numero", + "ItemSlotMustBeBetween": "Tuotepaikan tulee olla välillä {1} ja {2}!", + "UseItemBugged": "Kohde, jota yrität käyttää, on viallinen. Virheraportti on lähetetty palvelimen kehittäjille.", + "PickupItemBugged": "Tuote, jota yrität ottaa, on viallinen. Virheraportti on lähetetty palvelimen kehittäjille.", + "DropItemBugged": "Kohde, jonka yrität pudottaa, on viallinen. Virheraportti on lähetetty palvelimen kehittäjille.", + "HandsBusy": "kätesi ovat vararru", + "CantUseItemInSkinChange": "Et voi käyttää kohdetta muokkaaessasi ulkonäköäsi", + "CantDropItemInSkinChange": "Et voi pudottaa esinettä, kun muokkaat ulkonäköäsi", + "CantPickupItemInSkinChange": "Et voi ottaa tuotetta, kun muokkaat ulkonäköäsi", + "CantSwitchItemInSkinChange": "Et voi vaihtaa kohdetta muokkaaessasi ulkonäköäsi", + "CantGiveItemInSkinChange": "Et voi antaa esinettä, kun muokkaat ulkonäköäsi", + "CantTakeItemInSkinChange": "Et voi ottaa esinettä mukauttaessasi ulkonäköäsi", + "ItemUnequippableNoAmmo": " {1} paikassa {2} ei ole ammuksia, eikä sitä voi varustaa!", + "NoSpaceSelfInventory": "Sinulla ei ole enää tilaa varastossasi", + "Business": "bisnes", + "House": "talo", + "Clan": "claani", + "Vehicle": "ajoneuvo", + "Item": "kohde", + "ItemType": "kohteen tyyppi", + "Gate": "portti", + "Door": "ovi", + "ClanRank": "claan ränkki", + "JobRank": "työ ränkki", + "RadioStation": "radio kanava", + "Months": [ + "Tammikuu", + "Helmikuu", + "Maaliskuu", + "Huhtikuu", + "Toukokuu", + "Kesäkuu", + "Heinäkuu", + "Elokuu", + "Syyskuu", + "Lokakuu", + "Marraskuu", + "Joulukuu" + ], + "WeekDays": [ + "Sunnuntai", + "Maanantai", + "Tiistai", + "Keskiviikko", + "Torstai", + "Perjantai", + "Lauantai" + ], + "CardinalDirections": { + "North": "Pohjoinen", + "Northeast": "Koilinen", + "East": "Itä", + "Southeast": "Kaakko", + "South": "Etelä", + "Southwest": "Lounas", + "West": "Länsi", + "Northwest": "Luonteinen" + }, + "NewPlayerReadyToPlay": [ + "Sinulle on annettu rahaa. Käyttää {1} löytää ostopaikkoja.", + "Jos tarvitset rahaa, työpaikat ovat keltaisia pisteitä tutkassa.", + "Autoa varten käy autoliikkeessä. Voit myös käyttää vuokra-ajoneuvoa spawnin lähellä tai matkustaa junalla", + "Muista lukea tämä{1} Ja käyttää {2} tiedoksi" + ], + "YourCurrentVehicleDeleted": "ajoneuvo, jossa olit, poistettiin.", + "Distance": "Etäisyys", + "Meters": "Metrejä", + "Feet": "jalkaa", + "Kilometers": "Kilometrejä", + "Miles": "Maileja", + "MustBeVehicleDriver": "Sinun on oltava ajoneuvon kuljettaja!", + "PlayerJoined": "{1} on liittynyt peliin {2}!", + "PlayerLeftServer": "{1} poistui pelistä! ({2})", + "TakeItemFromHouse": "ottaa {1} talosta", + "TakeItemFromBusinessStorage": "ottaa {1} varastosta", + "TakeItemFromBusiness": "ottaaa {1} bisneksestä", + "TakeItemFromItem": "ottaa {1} {2}", + "TakeItemFromVehicleTrunk": "ottaa {1} tavaratilasta", + "TakeItemFromVehicleDash": "ottaa {1} hansikaslokerosta", + "AccountHelp": [ + "ÄLÄ jaa salasanaasi kenenkään muun kanssa. {1} henkilökunta ei koskaan kysy sinulta salasanaasi", + "Käytä {1} vaihtaaksesi salasanasi ja {2} jos unohdit sen", + "Some settings you can use: {1}" + ], + "VehicleHelp": [ + "Henkilökohtaiset ajoneuvosi säästävät minne sinä tai joku muu jättää ne!", + "Vieraile jälleenmyyjissä ostamassa uusia ajoneuvoja (Käytä {1} saadaksesi lisää tietoa)", + "Some commands: {1}", + "Vieraile mekaanikkokorjaamolla korjaamassa, värjäämässä ja virittämässä autosi! {1} saadaaksesi tietoa" + ], + "VehicleDealershipHelp": [ + "Vieraile ajoneuvoliikkeessä ostamassa uusia ajoneuvoja. Käytä {1} löytääksesi yhden.", + "Jälleenmyyjällä mene auton sisään auto, jonka haluat ostaa, ja hinta näytetään sinulle", + "Jos haluat ostaa ajoneuvon, käytä {1}ja sinulle annetaan avaimet koeajeluun parkkipaikalla.", + "Aja pois jälleenmyyjältä uudella ajoneuvolla vahvistaaksesi oston." + ], + "JobHelp": [ + "Vieraile työpaikoilla saadaksesi työtä ja ansaitaksesi rahaa. Etsi kartalta keltaisia pisteitä", + "työpaikalla Käytä {1} saadaaksesi työpaikan. Käytä {2} lopettamaan työsi", + "Käytä {1} Aloittaaksesi työn. Sinä voit myös saada työn {2} ja {3}", + "useimmat työajoneuvot ovat lukittuja. Käytä {1} lähdellä yhtä astuaaksesi autoon.", + "Kun astut työajoneuvoon, sinulle näytetään tietoja työn suorittamisesta." + ], + "ChatHelp": [ + "There are two main types of chat: luonteen vastaisesti (OOC) ja luonteeltaan (IC)", + "Näiden kahden tyypin sekoittaminen ei ole oikea roolileikki. Katso {1} saadaaksesi lisää tietoa.", + "Some chat commands: {1}", + "Joillakin on saatavilla lyhyempiä nimiä ({1} puhua, {2} huutaa jne)" + ], + "ServerRulesHelp": [ + "Epärealistiset toimet (voimapelaaminen) eivät ole sallittuja. Et ole supermies.", + "Terroristin tai terrorismin roolileikkejä ei sallita.", + "Noudata aina moderaattorien ja järjestelmänvalvojien antamia ohjeita.", + "Älä sekoita keskusteluja (metapelaaminen). Et voi käyttää IC:ssä olevia tietoja, jotka vastaanotettiin OOC", + "Pidä englantia pääkeskusteluissa. Jos sinulla ei ole hyvää englantia, käytä {1}" + ], + "AnimationHelp": [ + "Animaatioiden avulla voit tehostaa roolipeliä visuaalisilla toimilla", + "Käytä nimeä {1} tai {2}, jos haluat käyttää animaatiota.", + "Näet luettelon animaatioista käyttämällä {1}" + ], + "WeaponHelp": [ + "Käy aseliikkeessä ostamaan aseita. Käytä {1} löytääksesi sellaisen.", + "Aseen ostaminen vaatii aseluvan.", + "Poliisilaitos hallinnoi aselupia. Hae siellä saadaksesi sellaisen.", + "Aseita voidaan ostaa myös laittomasti joiltakin yrityksiltä, asekauppiailta ja claaneista." + ], + "SkinHelp": [ + "Käytä vaatekaupassa {1} vaatteiden ostamiseen", + "Kun sinulla on vaate, varusta ja käytä sitä kuten mitä tahansa muuta esinettä näyttääksesi ihovalikoiman (katso {1} saadaksesi lisätietoja vaatteiden käytöstä)", + "Jotkin skinit on rajoitettu töihin, claaneihin tai muista syistä." + ], + "KeyBindHelp": [ + "Voit asettaa omat näppäinsidokset. Käytä {1} nähdäksesi sidotut avaimet.", + "Käytä {1} lisätäksesi uuden näppäimistön ja {2} poistaaksesi yhden.", + "Default keys are:{1} {1} ajoneuvon moottorille, {2} valoille ja {3} lukitsemiselle/lukituksen avaamiselle", + "Paina {1} nähdäksesi kohteesi ja {2} varustaaksesi kohteita tai {3} poistaaksesi kaikki.", + "Paina {1} käyttääksesi kohdetta, jota pidät, paina {2} pudottaaksesi sen tai paina {3} noutaaksesi esineen maasta." + ], + "BusinessHelp": [ + "Käytä {1} tuotteiden ostamiseen tai {2} nähdäksesi luettelon myytävistä missä tahansa yrityksessä", + "Yritykset näkyvät sinisillä nimillä sisäänkäynnin kuvakkeen yläpuolella.", + "Yrityksen omistajan komennot: {1}", + "Uusi myytävä auto ilmestyy, kun ajat pois myyjän luota." + ], + "ClanHelp": [ + "Pyydä järjestelmänvalvojaa luomaan Claani (Samanlainen kuin ryhmät/ryhmät/perheet)", + "Claanin omistajilla on täysi määräysvalta klaaniin, kun se on luotu", + "Clanin komennot: {1}", + "Lisää klaanikomentoja: {1}" + ], + "RadioStationHelp": [ + "Aseta asema ajoneuvollesi, talollesi tai yrityksellesi käyttämällä {1}-merkkiä", + "Käytä {2} nähdäksesi luettelon asemista", + "Voit muuttaa radion suoratoiston äänenvoimakkuutta käyttämällä {1}-arvoa 0-100 prosentteina" + ], + "WealthAndTaxHelp": [ + "Palkkapäivän verot ovat {1} prosenttia lasketusta omaisuudestasi.", + "Laskettu varallisuus on kokonaissumma, joka perustuu siihen, kuinka monta ajoneuvoa, taloa ja yritystä sinulla on.", + "Jokainen ajoneuvo on {1}, jokainen talo on {2} ja jokainen yritys on {3}", + "Käytä {1} nähdäksesi nykyisen varallisuutesi ja {2} nähdäksesi kuinka paljon maksat veroja jokaisena palkkapäivänä" + ], + "MustBeInAVehicle": "Sinun täytyy olla ajoneuvossa!", + "MustBeInOrNearVehicle": "Sinun on oltava ajoneuvossa tai sen lähellä!", + "MustBeInVehicleFrontSeat": "Sinun tulee istua auton etupenkillä!", + "MustBeInVehicleDriverSeat": "Sinun täytyy olla kuljettaja!", + "DontHaveVehicleKey": "Sinulla ei ole avainta tähän ajoneuvoon!", + "NoGateAccess": "Sinulla ei ole pääsyä tälle portille!", + "GateBroken": "tämä portti on rikki!", + "GateHacked": "Portti ei vastaa!", + "RadioJammed": "Radiosta kuuluu vain staattista ääntä.", + "VehicleNotForSale": "Tämä ajoneuvo ei ole myynnissä!", + "VehicleNotForRent": "This vehicle is not for rent!", + "BusinessNotForSale": "Tämä yritys ei ole myytävänä!", + "BusinessNotForRent": "Tämä yritys ei ole vuokrattavissa!", + "HouseNotForSale": "Tämä talo ei ole myynnissä!", + "HouseNotForRent": "Tämä talo ei ole vuokrattavissa!", + "DealershipPurchaseTestDrive": "Aja ajoneuvo pois jälleenmyyjältä ostaaksesi se tai mene ulos peruuttaaksesi.", + "DealershipPurchaseExitedVehicle": "Peruutit ajoneuvon oston poistumalla ajoneuvosta!", + "VehiclePurchaseComplete": "Tämä ajoneuvo on nyt sinun! Se säästyy minne jätätkin sen.", + "VehiclePurchaseNotEnoughMoney": "Sinulla ei ole tarpeeksi rahaa ostaa tätä ajoneuvoa!", + "HousePurchaseNotEnoughMoney": "Sinulla ei ole tarpeeksi rahaa ostaa tätä taloa!", + "BusinessPurchaseNotEnoughMoney": "Sinulla ei ole tarpeeksi rahaa ostaa tätä yritystä", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Pelaajien talot ({1})", + "HeaderPlayerStaffFlagsList": "Pelaajien esikunnan liput ({1})", + "HeaderStaffFlagsList": "Henkilökunnan liput", + "NonRPName": "Ei-RP nimi! Valitse uusi:", + "InvalidStaffFlag": "Henkilökunnan lippua ei löydy!", + "InvalidClanFlag": "Claanin lippua ei löydy!", + "InvalidLocale": "Kieltä ei löytynyt", + "HeaderJobUniformList": "Työasut ({1})", + "HeaderJobEquipmentList": "työvälineet ({1})", + "InvalidJobUniform": "Työpukua ei löydy!", + "InvalidJobEquipment": "työvälineitä ei löydy!", + "HeaderVehiclesInRangeList": "alueella olevia ajoneuvoja {1}", + "NoVehiclesWithinRange": "alueella ei ole ajoneuvoja {1}", + "AmountNotNumber": "Summan tulee olla numero!", + "NeedToBeWorking": "Sinun täytyy tehdä töitä! Käytä {1} työpaikalla tai työajoneuvon lähellä.", + "NeedToBeOnJobRoute": "Sinun täytyy tehdä työreitti! Käytä {1} työajoneuvossa", + "CurrentJobRouteVehicleColoursChanged": "Järjestelmänvalvoja on muuttanut työreittisi ajoneuvon värejä", + "NotYourJob": "Tämä ei ole sinun työsi!", + "JobPoints": "Voit saada työpaikan siirtymällä kartan keltaisiin pisteisiin.", + "QuitJobToTakeAnother": "Jos sinä haluat tämän työn, Käytä {1} poistuaaksesi nykyisestäsi työstäsi.", + "NotAJobVehicle": "Tämä ei ole työ ajoneuvo!", + "NotYourJobVehicle": "Tämä ei ole työsi ajoneuvo!", + "HeaderPickupTypes": "Nouto tyypit", + "HeaderBlipTypes": "Karttakuvake tyypit", + "InvalidGPSLocation": "Tällä nimellä tai tyypillä ei ole sijainteja", + "HeaderBusinessList": "Yritykset", + "VehicleForSale": "Tämä {1} On Ostettavissa {2}! Käytä {3} Jos haluat ostaa sen", + "VehicleForRent": "Tämä {1} On Vuokrattavissa {2}! Use {3} Jos haluat ostaa sen", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Väärä Salasana! {1} Yritystä jäljellä", + "LoginFailedNoPassword": "Sinun on syötettävä salasana! ! {1} Yritystä jäljellä", + "RegistrationFailedNoPassword": "Sinun pitää syöttää salasana!", + "RegistrationFailedNoPasswordConfirm": "Sinun pitää vahvistaa salasana!", + "RegistrationFailedNoEmail": "Sinun pitää syöttää sähköposti!", + "AccountNameAlreadyRegistered": "nimi jota yritit käyttää on jo rekisteröity!", + "AlreadyLoggedIn": "Olet jo kirjautunut sisään!", + "RegistrationFailedInvalidEmail": "Sähköposti on virheellinen!", + "RegistrationFailedPasswordMismatch": "Salasanat eivät täsmää!", + "RegistrationFailedCreateError": "Tiliäsi ei voitu luoda!", + "RegistrationSuccess": "Sinun tilisi on luotu!", + "RegistrationEmailVerifyReminder": "Muista vahvistaa sähköpostiosoitteesi! Vahvistuskoodi on lähetetty sinulle.", + "RegistrationCreateCharReminder": "Jotta voit pelata palvelimella, sinun on luotava hahmo.", + "NoCharactersGUIMessage": "Sinulla ei ole hahmoja. Haluatko tehdä sellaisen", + "NoCharactersGUIWindowTitle": "Ei hahmoja", + "NoCharactersChatMessage": "Sinulla ei ole hahmoja. Käytä {1} hahmon luomiseen.", + "NeedEmailFor2FA": "Sinun on lisättävä sähköpostiosoitteesi tiliisi käyttääksesi kaksivaiheista todennusta.", + "NeedEmailVerifiedFor2FA": "Sinun on vahvistettava sähköpostisi, jotta voit käyttää kaksivaiheista todennusta.", + "SetEmailHelpTip": "Käytä {1} sähköpostiosoitteen määrittämiseen.", + "VerifyEmailHelpTip": "Käytä {1} vahvistaaksesi sähköpostiosoitteesi.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Radio lähellä", + "FromRadio": "Radiosta", + "ToRadio": "Radioon", + "NeedToEnterPropertyCommand": "Sinun on syötettävä {1} ensin! Käytä {2} siirtyäksesi ja poistuaksesi", + "NeedToEnterPropertyKeyPress": "Sinun on syötettävä {1} ensin! Siirry sisään ja poistu painamalla {2}", + "InventoryFullCantCarry": "Sinulla ei ole tilaa kantaa tätä (inventaario täynnä)!", + "NotEnoughCashNeedAmountMore": "Sinulla ei ole tarpeeksi rahaa! Tarvitset {1} lisää!", + "AmountMustBeMoreThan": "Summan on oltava yli {1}!", + "WeaponBanned": "Et saa ostaa tai käyttää aseita!", + "TimeNotNumber": "Ajan on oltava numero", + "HeaderDefaultBusinessItemTypes": "Yrityskohteiden mallit", + "FixingStuck": "Korjaa asemaasi ja virtuaalimaailmaa...", + "CantUseCommandYet": "Sinun on odotettava ennen kuin voit käyttää tätä komentoa uudelleen!", + "NotATester": "Sinä et ole testaaja!", + "AccessDenied": "Käyttö estetty", + "InvalidSkin": "tuo iho on viallinen!", + "HeaderInteriorTypes": "Sisustusluettelo", + "GUIAccountSettingToggle": "laitoit päälle {1} Käyttöliittymän", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "Voit ostaa auton käymällä ajoneuvoliikkeessä. Käytä {1} saadaksesi lisätietoja.", + "SkinCommandHelp": "Voit vaihtaa ihoasi käymällä vaateliikkeessä. Käytä {1} saadaksesi lisätietoja.", + "BusinessVehiclesRespawned": "🚗 Kaikki bisnesajoneuvot ovat järjestelmänvalvojan toimesta syntyneet uudelleen!", + "JobVehiclesRespawned": "🚗 Kaikki työajoneuvot on uudistettu järjestelmänvalvojan toimesta!", + "PlayerVehiclesRespawned": "🚗 Kaikki pelaajaajoneuvot ovat järjestelmänvalvojan luomia uudelleen!", + "ClanVehiclesRespawned": "🚗 Järjestelmänvalvojan on respawnasi kaikki claanin ajoneuvot uudelleen!", + "PublicVehiclesRespawned": "🚗 Järjestelmänvalvojan on respawnasi kaikki julkiset!", + "EmptyVehiclesRespawned": "🚗 Kaikki tyhjät ajoneuvot ovat respawnattu jäjestelmänvalvojalta!", + "AllVehiclesRespawned": "🚗 Järjestelmänvalvojan toimesta on respawnattu kaikki ajoneuvot uudelleen!", + "AllVehiclesReloaded": "🚗 Järjestelmänvalvoja on ladannut kaikki ajoneuvot uudelleen!", + "YourVehicleRespawned": "🚗 Ajoneuvosi on uusittu!", + "PlayerIPBanned": "💀 {1} olet saannut IP-kiellon!", + "PlayerCharacterBanned": "💀 {1} sinun hahmo on kielletty!", + "PlayerSubNetBanned": "💀 {1} sinut on estetty aliverkkoon!", + "CantModifyBusiness": "Et voi hallita tai muokata tätä yritystä!", + "CantModifyHouse": "Et voi hallita tai muokata tätä taloa!", + "ServerTimeSet": "⏰ {1} aseta aika {2}", + "ServerWeatherSet": "☁️ {1} säädä sää {2}", + "ServerSnowSet": "❄️ {1} käänsi lumisateen {2} ja maalunta {3}", + "AllJobsReloaded": "💼 Järjestelmänvalvoja on ladannut kaikki palvelintyöt uudelleen", + "ServerLogoSet": "{1} käänsi palvelimen logokuvan {2}", + "ServerGUISet": "🖥️ {1} laittoi päälle tämän palvelimen käyttöliittymän {2}", + "ServerBusinessBlipsSet": "🏢 {1} laittoi päälle kaikki bisnes blipsit {2}", + "ServerHouseBlipsSet": "🏘️ {1} laittoi päälle kaikki kodin blipsit {2}", + "ServerJobBlipsSet": "💼 {1} laittoi päälle kaikki työ blipsit {2}", + "ServerBusinessPickupsSet": "🏢 {1} laittoi pääkke kaikki yritysnoudot {2}", + "ServerHousePickupsSet": "🏘️ {1} laittoi päälle kaikki talonoudot {2}", + "ServerJobPickupsSet": "💼 {1} lattoi päälle kaikki työnoudot {2}", + "BusinessBuyItemsLabel": "Käytä {1} ostaaksesi tavaroita", + "PropertyEnterCommandLabel": "Käytä {1} astuaaksesi sisään", + "PropertyEnterKeyPressLabel": "Paina {1} astuaaksesi sisään", + "PropertyForSaleLabel": "Myynnissä: {1}", + "PropertyForRentLabel": "Vuokrattavissa: {1} joka palkkapäivänä", + "RemainingTaxPaidInMoney": "maksoit loput verot {1} rahana", + "LostMoneyFromTaxes": "Menetit rahaa, koska verosi ovat enemmän kuin palkkasi!", + "NextPaycheckRepossessionWarning": "Jos sinulla ei ole tarpeeksi rahaa seuraavan palkan verojen kattamiseen, menetät tavaraa!", + "NotEnoughMoneyForTax": "Sinulla ei ole tarpeeksi rahaa maksaaksesi verojasi!", + "AssetsRepossessedForTax": "Sinä menetit {1} ajoneuvoja, {2} taloja, ja {3} bisneksiä/yrityksiä koska et maksanut veroja!", + "Closed": "Suljettu", + "Open": "Auki", + "VehicleDealershipLabel": "mene ajoneuvon sisään kuljettajaksi ostaaksesi sen", + "TakeJobLabel": "Käytä {1} jotta voit mennä tänne töihin", + "StartWorkLabel": "Käytä {1} aloittaaksesi työn", + "JobEquipAndUniformLabel": "Käytä {1} ja {2} työasioihin tai {3} lopettaaksesi työt", + "NotYourJobLabel": "Sinulla on jo eri työpaikka. Käytä {1} Jos haluat tämän", + "JobLabel": "{1} Työ", + "PaydayBonusSet": "🤑 {1} aseta palkkapäiväbonukseksi {2}", + "AllHousesReloaded": "🏘️ Järjestelmänvalvoja on ladannut kaikki talot uudelleen", + "AllRadioStationsReloaded": "📻 Järjestelmänvalvoja on ladannut kaikki radioasemat uudelleen!", + "PlayerKicked": "🦶 {1} on poistettu palvelimelta", + "AllBusinessesReloaded": "🏢 Järjestelmänvalvoja on ladannut kaikki yritykset uudelleen!", + "UnableToDoThat": "Et voi tehdä sitä", + "SetVehicleClanConfirmMessage": "Oletko varma, että haluat antaa tämän ajoneuvon claanillesi?", + "SetVehicleClanConfirmTitle": "Varoitus!", + "SetItemPriceBelowOrderPriceMessage": "Oletko varma, että haluat asettaa tuotteen hinnan tilaushinnan alapuolelle? Menetät {1} jokaisen ostoksen!", + "SetItemPriceBelowOrderPriceTitle": "Varoitus!", + "MustOwnVehicle": "Sinä et omista tätä ajoneuvoa", + "RandomTips": [ + "Etsi keltaisia pisteitä kartaltasi työpaikoista", + "Voit asettaa mukautettuja näppäinsidoksia. Käytä {1} lisätietoja varten", + "Käytä {1}, jos et halua nähdä vinkkejä ja lisätietoja", + "Voit muokata näppäinsidoksia käyttämällä {1} ja {2}", + "Paina ℹ️ nähdäksesi varastosi ja käytä numeronäppäimiä valitaksesi tuotteen", + "Käytä {1}:a yrityksessä tuotteiden ostamiseen", + "Löysitkö virheen? Ilmoita siitä osoitteella {1}", + "Onko sinulla idea tai ehdotus palvelimelle? Kerro siitä kehittäjille käyttämällä {1}", + "Haluatko ostaa yrityksen? Käytä {1} myytävänä", + "Haluatko ostaa talon? Käytä {1} myytävänä", + "Haluatko ostaa ajoneuvon? Vieraile jälleenmyyjällä ja syötä se saadaksesi tietoa sen ostamisesta!", + "Vaihda mihin tahansa hahmoihisi käyttämällä {1}", + "Käytä {1}-kirjautumista automaattisesti, kun muodostat yhteyden samaan IP-osoitteeseen", + "Käytä {1}:a kytkeäksesi valot päälle/pois päältä talossasi tai yrityksessäsi", + "Käytä palvelua {1} toistaaksesi Internet-radioasemaa autossasi, talossasi tai yrityksessäsi", + "Haluatko tehdä claanin? Käytä {1} lisätietoja varten", + "Laillisia aseita voi ostaa millä tahansa ase kaupasta" + ], + "PromptResponseTip": "Käytä {1} hyväksyäksesi tai {2} hylkäämiseen", + "PlayerConnecting": "👋 {1} muodostaa yhteyttä palvelimeen...", + "GetStartedJobVehicle": "Aloita kirjautumalla {1}-palveluun.", + "VehicleTypes": { + "Car": "Auto", + "Truck": "Rekka", + "Van": "Pakettiauto", + "Taxi": "Taksi", + "Bus": "Bussi", + "PoliceCar": "Poliisi auto", + "Ambulance": "Ambulanssi", + "FireTruck": "Paloauto", + "Bike": "Pyörä", + "Motorbike": "Moottoripyörä", + "Boat": "Vene", + "Helicopter": "Helikopteri", + "Plane": "Lentokone", + "Train": "Juna" + }, + "AlreadyOnJobRoute": "Olet jo tekemässä työreittiä!", + "GaveVehicleToClan": "Annoit tämän {1} klaanillesi!", + "JobDisabled": "Tämä työ on poistettu käytöstä", + "SetHouseClanConfirmMessage": "Oletko varma, että haluat antaa tämän talon claanillesi?", + "SetHouseClanConfirmTitle": "Varoitus!", + "SetBusinessClanConfirmMessage": "Oletko varma, että haluat antaa tämän yrityksen claanille?", + "SetBusinessClanConfirmTitle": "Varoitus!", + "MustOwnHouse": "Et omista tätä taloa!", + "MustOwnBusiness": "Et omista tätä yritystä!", + "GaveHouseToClan": "Annoit tämän talon claanillesi!", + "GaveBusinessToClan": "Annoit tämän yrityksen claanille!", + "BuyBusinessConfirmMessage": "Oletko varma, että haluat ostaa tämän yrityksen?", + "BuyBusinessConfirmTitle": "Huomio!", + "BuyHouseConfirmMessage": "Oletko varma, että haluat ostaa tämän talon?", + "BuyHouseConfirmTitle": "Huomio!", + "BuyBusinessLabel": "Käytä {1} tämän yrityksen ostamiseen", + "BuyHouseLabel": "Käytä {1} tämän talon ostamiseen", + "RentHouseLabel": "Käytä {1} vuokrataksesi tämän talon", + "AccountEmailAlreadyVerified": "Olet jo määrittänyt ja vahvistanut sähköpostiosoitteesi!", + "EmailVerificationCodeSent": "Vahvistuskoodi ja ohjeet on lähetetty sähköpostiisi.", + "GUIPlayAsCharacterButton": "Pelaa", + "GUINewCharacterButton": "Uusi Hahmo", + "GUIPreviousCharacterButton": "Edellinen", + "GUINextCharacterButton": "Seuraava", + "GUICharacterSelectWindowTitle": "Valitse hahmo", + "GUICharacterSelectMoneyLabel": "Raha: {1}", + "GUICharacterSelectClanLabel": "Claani: {1}", + "GUICharacterSelectLastPlayedLabel": "Viimeksi pelattu: {1} päivää, {2} tuntia, {3} minuuttia sitten", + "GUILoginWindowLabelEnterPassword": "Syötä salasana", + "GUILoginWindowSubmitButton": "Kirjaudu", + "GUILoginWindowResetPasswordButton": "Nollaa", + "GUILoginWindowPasswordPlaceholder": "salasana", + "GUILoginWindowForgotPasswordLabel": "Unohditko salasanasi?", + "GUIRegisterWindowLabelCreateAccount": "Luo Käyttäjä", + "GUIRegisterWindowPasswordPlaceholder": "Salasana", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Vahvista salasana!", + "GUIRegisterWindowEmailPlaceholder": "Sähköposti", + "GUIRegisterWindowSubmitButton": "Luo käyttäjä", + "GUINewCharacterMessageLabel": "Nimeta sinun hahmo ", + "GUINewCharacterFirstNamePlaceholder": "Ensimmäinen nimi", + "GUINewCharacterLastNamePlaceholder": "Viimeinen Nimi", + "GUIChangePasswordWindowTitle": "Vaihda Salasana", + "GUIChangePasswordPasswordLabel": "Syötä Uusi salasna", + "GUIChangePasswordPasswordPlaceholder": "Salasana", + "GUIChangePasswordConfirmPasswordPlaceholder": "Vahvista salasana", + "GUIChangePasswordSubmitButton": "Vaihda Salasana", + "GUIResetPasswordWindowMessage": "Nollaa Salasana", + "GUIResetPasswordConfirmEmailLabel": "Vahvista sinun sähköposti", + "GUIResetPasswordEmailPlaceholder": "Sähköposti", + "GUIResetPasswordSubmitButton": "Nollaa salasana", + "GUIResetPasswordLoginButton": "Kirjaudu", + "GUIResetPasswordRememberMessage": "Muistatko salsanasi?", + "HeaderJobList": "Työt", + "HeaderBusinessInfo": "Yritys tiedot", + "HeaderHouseInfo": "Talo tiedot", + "HeaderClanInfo": "Claani tiedot", + "Locales": { + "English": "Englanti", + "Russian": "Venäjä", + "Spanish": "Espanja", + "German": "Saksa", + "Dutch": "Hollanti", + "Polish": "Puola", + "Chinese": "Kiina", + "French": "Ranska", + "Japanese": "Japani", + "Slovak": "Slovakia", + "Arabic": "Arabia" + }, + "TwoFactorAuthSet": "⚙️ Olet laittanut päälle kaksivaiheisen todennuksen {1}", + "AccountServerLogoSet": "⚙️ Laitoit serverin logon päälle {1}", + "ChatScrollLinesNotNumber": "Rivin määrä on oltava numero!", + "ChatScrollLinesMustBeBetween": "Rivin määrän on oltava välillä {1} ja {2}", + "ChatScrollLinesSet": "Chattiboxi rullaa nyt {1} Riviä", + "InvalidEmailVerificationCode": "Virheellinen sähköpostin vahvistuskoodi! Uusi on nyt lähetetty sähköpostiisi.", + "EmailVerified": "Sähköpostisi on vahvistettu!", + "EmailVerifiedTip": "Voit nyt käyttää sähköpostiasi salasanan nollaukseen, kaksivaiheiseen todentamiseen, hälytyksiin ja moneen muuhun", + "CommandRequiresLogin": "Sinun pitää olla kirjautuneena ennen käyttämällä {1} komentoa", + "CommandDisabled": " {1} Komento on poistettu käytöstä!", + "CommandDisabledOnDiscord": " {1} Komento ei ole saatavilla discordissa", + "CommandNotFoundHelpTip": "Komento {1} Ei ole olemassa , Käytä {2} Komennoille ja tietoa.", + "CommandNotFoundPossibleMatchTip": "Komentoa {1} Ei löydy! Tarkoititko? {2}?", + "CommandNoPermissions": "Sinulla ei ole käyttöoikeutta käyttääksesi {1} komentoa", + "GUIResetPasswordCodeInputLabel": "Katso sähköpostisi koodille.", + "GUIResetPasswordCodePlaceholder": "Vahvistuskoodi", + "GUIErrorTitle": "Virhe", + "GUIWarningTitle": "Varoitus!", + "GUIInfoTitle": "Tietoa", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Väärä sähköposti!", + "HeaderVehicleInfo": "Ajoneuvon tiedot", + "HeaderClanRanksList": "Claanin Ränkki", + "HeaderNPCInfo": "NPCn tiedot", + "NPCAnimationSet": "laitoit NPCn {1} Animaation {2}", + "NPCNameSet": "Laitoit NPCn {1} Nimen {2}", + "VehicleTooFar": "Olet liian kaukana ajoneuvosta!", + "HeaderPropertyTemplateTypes": "Omaisuuden tyypit", + "MustBeLoggedInAndSpawnedToChat": "Sinun on kirjauduttava sisään ja spawnattu ennen kuin voit keskustella!", + "MutedCantChat": "Sinä olet mykistetty , et voi keskustella!", + "CantUseMegaphone": "Sinun on varustettava megafoni tai oltava hätäajoneuvossa!", + "HeaderAnimationHelp": "Animaation Tieto", + "HeaderBadgeInfo": "Merkin tieto ({1})", + "NoItemCloseEnough": "Kohde ei ole tarpeeksi lähellä", + "CantDropJobEquipmentItem": "Et voi pudottaa työ kohteita", + "CantPutJobEquipmentItem": "Et voi säästää työ kohteita", + "NoItemEquipped": "Et ole valinnut yhtään kohdetta", + "NoItemInActiveSlot": "Sinulla ei ole kohdetta aktiivisessa kohdepaikassasi", + "CantPutItemInSkinChange": "Et voi tallentaa esinettä kun muokkaat ulkonäköäsi", + "NothingToTakeItemFrom": "Sinun lähellä ei ole yhtään itemejä josta ottaa tavaroita", + "NoAmmoToLoadIntoWeapon": "Sinulla ei ole ammuksia ladattavaksi {1}", + "LoadAmmoIntoWeaponHelpCommand": "Lataa ase aseeseen varustamalla ase ja ota se käyttöön {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "Lataa ase aseeseen varustamalla ase ja painamalla {1}", + "NobodyCloseEnoughToHandcuff": "Kukaan ei ole lähelläsi käsirautojasi", + "NobodyCloseEnoughToTie": "Kukaan ei ole lähelläsi sitoakseen", + "PlayerNotSurrenderedHandcuff": "{1} ei saa laittaa vielä käsirautoja! Heidän on joko nostettava kätensä ylhäällä, tyrmätty tai sähköistetty", + "PlayerNotSurrenderedTie": "{1} et voi sitoa häntä! Heidän on joko nostettava kätensä ylhäällä, tyrmätty tai sähköistetty", + "HeaderCharactersListSelf": "Sinun Hahmot", + "HeaderCharactersListOther": "{1} Hahmot", + "CharacterSelectHelpText": "Käytä {1} Valitaaksesi hahmon, tai {2} tekeäksesi uuden hahmon", + "ItemDoesntDoAnythingOnUse": " {1} se ei tee mitään, yrität käyttää sitä.", + "ItemRadioStationTip": "Käytä {1} Laittaaksesi radio kanavan", + "VehicleLockedCommandTip": "🔒 Tämä {1} On lukossa! , käytä {2} Aukaaksesi sen", + "VehicleLockedKeyPressTip": "🔒 Tämä {1} On lukossa! Paina {2} Aukaaksesi sen", + "VehicleLockedCantUnlock": "🔒 Tämä {1} on lukossa! ja sinulla ei ole avaimia sen avaamiseen", + "CurrentlyRentingThisVehicle": "Olet vuokraamassa tätä {1} {2} per minuutti. Käytä {3} Jos haluat lopettaa sen vuokraamisen.", + "VehicleBelongsTo": "Tämä {1} Kuuluu {2} ({3})", + "NotOwned": "Ei omistettu!", + "NotCloseEnoughToItemContainer": "Et ole tarpeeksi lähellä, jossa on esineitä", + "Job": "Työ", + "Player": "Pelaaja", + "BusinessIsNowPaintBall": "Tämä bisnes on nyt värikuula peli ", + "JoinedPaintBall": "Sinä olet liittynyt värikuulapeliin.", + "ItemsStoredForPaintBall": "Tavarasi säilytetään kaapissasi ja palautetaan, kun poistut värikuulapeli-ottelusta", + "LeftPaintBall": "Olet jättänyt värikuulapelista-ottelun. esineesi on palautettu.", + "PaintBallEnded": "Paintball-ottelu on päättynyt. esineesi on palautettu.", + "HeaderEventWinners": "Voittajat", + "YourPaintBallResults": "Sinä sait {1} Tapot ja {2} deaths in the paintball match", + "NoPrivateMessageToReply": "Et ole saanut yksityisviestiä, johon voit vastata", + "WeaponDoesNotUseAmmo": " {1} Ei käytä panoksia", + "ChatBoxTimestampsToggle": "Sinä kytkit päälle {1} ajan näytön chatboxissa", + "ProfanityFilterSet": "Otit käyttöön chatin kirosana suodattimen {1}", + "ResetAllKeyBindsConfirm": "Haluatko varmasti palauttaa kaikki näppäimet oletusasetuksiin?", + "NotRentingAVehicle": "Et ole vuokraamassa tätä ajoneuvoa!", + "StoppedRentingVehicle": "Sinä lopetit vuokraamasta {1}", + "VehicleEngineStartKeyPressTip": " {1} Moottori on sammutettu. Käytä {2} Käynnistääksesi sen.", + "VehicleEngineStartCommandTip": " {1} Moottori on kiinni. Käytä {2} Käynnistääksesi sen.", + "StartedRentingVehicle": "Vuokraat nyt tämän {1} {2} per minuutti. Lopettaaksesi vuokraamisen, Käytä {3}", + "VehicleAlreadyRentedByOther": "This vehicle is already rented by someone else", + "VehicleAlreadyRentedBySelf": "Olet jo vuokraamassa tätä ajoneuvoa", + "JobRankTooLow": "Sinulla ei ole riitävän iso Työ Ränkki!", + "InvalidKeyName": "Syöttämäsi avaimen tunnus tai nimi on virheellinen!", + "KeyBindsReset": "Kaikki näppäinyhdistelmäsi on palautettu oletuksiin", + "KeyBindNameTip": "Käytä yksinkertaisia kirjaimia, nimejä tai numeroita. Älä lisää välilyöntejä.", + "UniversalInlineExamplesList": "Esimerkkisi: {1}", + "KeyBindRemoved": "Poistit näppäinsidoksen {1} Avain", + "KeyBindAdded": "Sidotit avaimen {1} {2}", + "CopyAllKeyBindsToServerConfirm": "Oletko varma, että haluat kopioida kaikki näppäinyhdistelmäsi {1} serveriin?", + "CopiedAllKeyBindsToServer": "Kaikki näppäinsidoksesi on kopioitu {1} serveriin", + "MustBeSpawned": "Sinun pitää olla spawnattu!", + "ChatEmojiSet": "Otit automaattisen emojin käyttöön chatissa{1}", + "FishingLineNotCast": "Sinun Siimasi ei ole heitetty!", + "CantFishHere": "Täällä ei pysty kalastaa! Sinun tulee olla lähellä vettä tai veneessä!", + "NeedFishingRod": "Sinun täytyy pitää onki!", + "FishingCastCommandHelp": "Käytä {1} heittääksesi siimaa", + "FishingCastKeyBindHelp": "Paina {1} heittääksesi siimaa", + "Paused": "Keskeytetty", + "PaintBallAlmostWin": "{1} Tarvii vain {2} lisää tappoja voittaaksesi Värikuulapeli-ottelun!", + "HeaderClanFlagsList": "Claanin Liput ({1})", + "PleaseWait": "Ole hyvä ja odota...", + "HeaderServerRulesList": "Serverin Säännöt", + "FrequencyChannelChanged": "Asetat kanavasi {1} Paikkaan {2} {3}", + "ItemTurnedOnOff": "Sinä kytkit {1} Sinun {2} paikkaan {3}", + "SkinSelectHelpTextSkin": "Paina {1} tai {2} vaihtaaksesi hahmosi skinin, {3} savettaaksesi, tai {4} peruttaaksesi", + "SkinSelectHelpTextBodyPart": "Paina {1} tai {2} Vaihtaaksesi kehon osan", + "SkinSelectBodyPartNames": { + "Head": "Pää", + "UpperBody": "Ylävartalo", + "LowerBody": "Alavartalo", + "Hair": "Tukka", + "Hat": "Hattu", + "Glasses": "Lasit", + "LeftHand": "Vasempi käsi", + "RightHand": "Oikeampi käsi", + "LeftWrist": "Vasempi Ranne", + "RightWrist": "Oikeampi Ranne" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Käytä {1} laittaksesi päälle tai kiinni ajoneuvon moottori", + "VehicleLockedAfterEntryAttempt": "Käytä {1} Lukitaaksesi tai aukaaksesi ajoneuvosi", + "ShowItemsAfterPurchase": "Käytä {1} Nähdääksesi Tavarasi", + "BuyCommandAfterEnterBusiness": "Käytä {1} tuotteiden ostamiseen yrityksestä", + "UseItemKeyAfterEquipping": "Käytä {1} käyttääksesi varustetasi", + "UseItemKeyAfterEquippingWalkieTalkie": "Käytä {1} kytkeäksesi radion päälle tai pois", + "RadioCommandAfterEnablingWalkieTalkie": "Käytä {1} puhuaksesi radiossasi", + "ReplyToDirectMessage": "Käytä {1} vastataksesi helposti yksityisviestiin", + "UseItemKeyAmmoAfterEquippingWeapon": "Käytä {1} ladataksesi ammuksia varustetulle aseesesi", + "AnimationStop": "Pysäytä animaatio painamalla {1}", + "JobEquipmentInventory": "Työvälineet ovat varastossasi. Käytä {1} nähdäksesi ne.", + "ViewInventory": "Käytä {1} nähdäksesi kohteesi", + "VehicleRepairItemUsage": "Seiso ajoneuvon vieressä ja käytä {1} Korjaaksesi sen", + "VehicleColourItemUsage": "Seiso ajoneuvon vieressä ja käytä {1} Vaihtaaksesi sen väriä", + "VehiclePartItemUsage": "Seiso ajoneuvon vieressä ja käytä {1} tuunatakseen {2}", + "AmmoClipItemUsage": "Varusta ase ja käytä {1} ladataaksesi panoksia", + "GenericItemUsage": "Käytä {1} käyttääksesi {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Tuntematon", + "LostConnection": "Yhteys menetetty", + "Disconnected": "Yhteys katkaistu", + "UnsupportedClient": "Ei tuettu Clientti", + "WrongGame": "Väärä peli", + "IncorrectPassword": "Väärä salasana", + "UnsupportedExecutable": "Ei tuettu Suoritettava Tiedosto", + "Kicked": "Kickattu", + "Banned": "Bannätty", + "Failed": "Epäonnistunut", + "InvalidName": "Virheellinen Nimi", + "Crashed": "Kaatui", + "ModifiedGame": "Muokattu Peli", + "FailedToLogin": "Kickattu - Kirjautuminen epäonnistui", + "NotATester": "Kickattu - Et ole testaaja!", + "ClientScriptVerificationFail": "asiakas ohjelma vahvistus epäonnistui (mahdolliset huijauskoodit)", + "ServerRestarting": "Serveri käynnistyy uudelleen.", + "Desync": "Synknorointi poistettu.", + "FailedToCreateCharacter": "Kickattu - Et tehnyt hahmoa" + }, + "DevelopersNotified": "Kehittäjät ovat huomanneet ongelman", + "NoJobLocationCloseEnough": "Työpaikkoja ei ole tarpeeksi lähellä!", + "NotAllowedToUseJobs": "Et saa käyttää mitään töitä!", + "CantUseThisJob": "Et voi käyttää tätä työtä!", + "JobChanged": "💼 Nyt sinulla on {1} työ", + "NeedToBeNearJob": "Sinun tulee olla lähellä työpaikkaasi tai työhösi kuuluvaa ajoneuvoa!", + "DontHaveAJob": "Sinulla ei ole työpaikkaa!", + "StartedWorking": "💼 Työskentelet nyt {1} työlle", + "StoppedWorking": "Olet lopettanut työsi", + "ItemsStoredForJob": "Henkilökohtaisia esineitäsi on säilytetty kaapissasi työskennellessäsi", + "NoJobRoutesForLocation": "Työpaikallasi ei ole reittejä tähän paikkaan!", + "CurrentJobRouteDeleted": "Järjestelmänvalvoja on poistanut tai poistanut käytöstä työreitin, jolla olit menossa", + "YourTax": "Verosi palkkapäivänä on: {1}. Käytä {2} Saadaaksesi lisätietoja.", + "YourWealth": "Sinun rikkautesi on: {1}. Käytä {2} Saadaaksesi lisätietoja.", + "InvalidKeyBindName": "Avain nimeä ei löytynyt!", + "BusinessPurchased": "🏢 Olet nyt yrityksen omistaja {1}", + "HousePurchased": "🏘️ Olet nyt tämän talon omistaja {1}", + "CopyAllKeyBindsConfirm": "Oletko varma, että haluat kopioida näppäinsidoksiasi {1} Palvelimelle?", + "CopyAllKeyBindsOverwriteWarning": "Tämä korvaa kaikki toisen palvelimen näppäimet", + "NoPromptAccept": "Sinulla ei ole mitään hyväksyttävää", + "NoPromptReject": "Sinulla ei ole mitään hylättävää", + "NotOrderingAnyBusinessItems": "Et tilaa mitään tuotteita yritykselle!", + "BusinessOrderCanceled": "Peruutit yritystuotetilauksen", + "DidNotCreateCharacter": "Sinulla ei ole hahmoa pelattavana. Moikka!", + "BusinessOrderNotEnoughMoney": "Tällä yrityksellä ei ole tarpeeksi rahaa tilata sitä! Talleta vähän käyttämällä {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} diff --git a/locale/french.json b/locale/french.json new file mode 100644 index 00000000..186d1099 --- /dev/null +++ b/locale/french.json @@ -0,0 +1,752 @@ +{ + "TranslationProvidedBy": "Cocam", + "LocaleEnglishName": "French", + + "LocaleNativeName": "Français", + "LocaleOffer": "Ce serveur est disponible en Français. Appuie sur {1} pour changer la langue.", + "LocaleChanged1": "La langue est maintenant paramétrée sur {1}", + "LocaleChanged2": "Le serveur va maintenant afficher les messages en {1}", + "LocaleChangedNote": "Cela ne change pas les messages des autres joueurs", + "AccentsListHeader": "Accents", + "HelpMainListHeader": "Aide Catégorie", + "AccentNotFound": "Accent non trouvé", + "AccentSet": "Vous avez paramétré votre accent sur {1}", + "InvalidAnimation": "L'animation n'existe pas", + "AnimationCommandTip": "Utilise la commande {1} pour voir la liste des animations valides", + "InvalidAnimationDistance": "La distance doit être entre 0 et 3", + "CantBanClient": "Vous ne pouvez pas bannir cette personne", + "PlayerAccountBanned": "le compte {1} a été banni", + "ClanNotFound": "Clan non trouvé", + "ClanNameTaken": "Un clan avec ce nom existe déjà", + "PlayerNotFound": "Joueur non trouvé", + "ClanCantRemoveRanks": "Vous ne pouvez pas retirer le rang du clan", + "ClanCantAddRanks": "Vous ne pouvez pas ajouter de rang au clan", + "ClanRankNotFound": "Le rang du clan est introuvable", + "ClanCantChangeMemberTag": "Vous ne pouvez pas modifier les tags des membres du clan", + "ClanPlayerNotInSameClan": "Ce joueur n'est pas dans votre clan", + "ClanCantChangeRankLevel": "Vous ne pouvez pas modifier le niveau du rang du clan", + "ClanCantChangeRankTag": "Vous ne pouvez pas modifier les tags du rang du clan", + "NameNotRegistered": "Votre nom n'est pas enregistré ! Utilise {1} pour créer un compte.", + "AutomaticLoginIPToggle": "La connexion automatique par IP est maintenant {1}", + "CouldNotRegisterAccount": "Un problème est survenue lors de la création de votre compte. Merci de bien vouloir contacter le staff.", + "RandomTipsToggle": "Les conseils aléatoires sont maintenant {1}", + "ActionTipsToggle": "Les conseils d'action sont maintenant {1}", + "AutoSpawnLastCharToggle": "Réapparition automatique du dernier personnage utilisé est {1}", + "AccountGUISettingToggle": "🖥️ la GUI est {1}", + "On": "On", + "Off": "Off", + "Yes": "Oui", + "No": "Non", + "True": "Vrai", + "False": "Faux", + "Locked": "Verrouillé", + "Unlocked": "Déverrouillé", + "PasswordNotGoodEnough": "Le nouveau mot de passe doit répondre aux exigences !", + "PasswordNeedsBase": "Le mot de passe doit au moins avoir : {1}", + "PasswordNeedsCapitals": "{1} Une majuscule", + "PasswordNeedsNumbers": "{1} Un nombre", + "PasswordNeedsSymbols": "{1} Un caractère spécial", + "PasswordsDontMatch": "Le mot de passe et la confirmation ne sont pas identiques !", + "PasswordChanged": "Your password has been changed!", + "AutoLoggedInIP": "You have been automatically logged in by IP!", + "WelcomeBack": "Welcome back to {1}, {2}! Please {3} to continue.", + "WelcomeNewPlayer": "Welcome to {1}, {2}! Please {3} to play.", + "InvalidPlayer": "Player not found!", + "InvalidBusiness": "Business not found!", + "InvalidHouse": "House not found!", + "InvalidVehicle": "Vehicle not found!", + "InvalidClan": "Clan not found!", + "InvalidClanRank": "Clan rank not found!", + "InvalidJob": "Job not found!", + "InvalidItem": "Item not found!", + "InvalidItemType": "Item type not found!", + "InvalidRadioStation": "Radio station not found!", + "InvalidGate": "Gate not found!", + "EntersProperty": "opens the door and enters the {1} ({2})", + "ExitsProperty": "opens the door and exits the {1} ({2})", + "EnterExitPropertyDoorLocked": "tries to open the {1} door but fails because it's locked", + "PropertyNoInterior": "This {1} does not have an interior, but you can still use commands at the door icon.", + "NoBusinessWithItemType": "There is no business with that item available", + "HeaderKeyBinds": "Key Binds", + "HeaderAccountHelp": "Account Help", + "HeaderVehicleHelp": "Vehicle Help", + "HeaderVehicleDealershipHelp": "Vehicle Dealership Help", + "HeaderJobHelp": "Job Help", + "HeaderChatHelp": "Chat Help", + "HeaderServerRules": "Server Rules", + "HeaderWebsiteInfo": "Website", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Animation List", + "HeaderPayAndSprayHelp": "Pay and Spray Help", + "HeaderAmmunationHelp": "Ammunation Help", + "HeaderVehicleTuneupHelp": "Vehicle Tune Help", + "HeaderBindableKeysHelp": "Bindable Keys", + "HeaderSkinHelp": "Clothes/Skin Help", + "HeaderBusinessHelp": "Business Help", + "HeaderClanHelp": "Clan Help", + "HeaderPlayerVehiclesList": "Player Vehicles ({1})", + "HeaderPlayerBusinessesList": "Player Businesses ({1})", + "HeaderClansList": "Clan List", + "HeaderAdminsList": "Admin List", + "HeaderAccentsList": "Accent List", + "HeaderPlayerInfo": "Player Information ({1})", + "HeaderWealthandTaxHelp": "Wealth and Tax Information", + "HeaderCommandInfo": "Command Information ({1})", + "HeaderRadioHelp": "Radio Help", + "HeaderRadioStationsList": "Radio Stations", + "HeaderKeyBindsList": "Key Binds List", + "RadioVolumeChanged": "{1} You changed your streaming radio volume to {2}%", + "VolumeLevelNotNumber": "The volume level must be a number", + "RadioStationLocationInvalid": "You must be in a vehicle, house, or business or have a personal device to change the station!", + "ActionBusinessRadioStationChange": "changes the business radio station to {1} ({2})", + "ActionHouseRadioStationChange": "changes the house radio station to {1} ({2})", + "ActionVehicleRadioStationChange": "changes the vehicle radio station to {1} ({2})", + "ActionItemRadioStationChange": "changes the {1}'s station to {2} ({3})", + "RandomVehicleCommandsDisabled": "This is a random traffic vehicle and commands can't be used for it.", + "HouseDoorLock": "House {1} {2}!", + "BusinessDoorLock": "Business {1} {2}!", + "ServerGameModeRestarting": "The server game mode is restarting!", + "HeaderSelfItemList": "Your Inventory", + "HeaderPlayerItemList": "Player Inventory ({1})", + "HeaderHouseItemList": "House Inventory", + "HeaderBusinessFloorItemList": "Business Inventory (For Sale)", + "HeaderBusinessStorageItemList": "Business Inventory (Storage)", + "HeaderItemItemList": "{1}'s Inventory", + "ItemSlotNotNumber": "The item slot must be a number", + "ItemSlotMustBeBetween": "The item slot must be between {1} and {2}!", + "UseItemBugged": "The item you're trying to use is bugged. A bug report has been sent to the server developers.", + "PickupItemBugged": "The item you're trying to pickup is bugged. A bug report has been sent to the server developers.", + "DropItemBugged": "The item you're trying to drop is bugged. A bug report has been sent to the server developers.", + "HandsBusy": "Your hands are busy", + "CantUseItemInSkinChange": "You can't use an item while customizing your appearance", + "CantDropItemInSkinChange": "You can't drop an item while customizing your appearance", + "CantPickupItemInSkinChange": "You can't pickup an item while customizing your appearance", + "CantSwitchItemInSkinChange": "You can't switch an item while customizing your appearance", + "CantGiveItemInSkinChange": "You can't give an item while customizing your appearance", + "CantTakeItemInSkinChange": "You can't take an item while customizing your appearance", + "ItemUnequippableNoAmmo": "The {1} in slot {2} has no ammo, and can't be equipped!", + "NoSpaceSelfInventory": "You don't have any more space in your inventory", + "Business": "business", + "House": "house", + "Clan": "clan", + "Vehicle": "vehicle", + "Item": "item", + "ItemType": "item type", + "Gate": "gate", + "Door": "door", + "ClanRank": "clan rank", + "JobRank": "job rank", + "RadioStation": "radio station", + "Months": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + "WeekDays": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "CardinalDirections": { + "North": "North", + "Northeast": "Northeast", + "East": "East", + "Southeast": "Southeast", + "South": "South", + "Southwest": "Southwest", + "West": "West", + "Northwest": "Northwest" + }, + "NewPlayerReadyToPlay": [ + "You have been given some cash. Use {1} to find places to buy items.", + "If you need money, jobs are the yellow dots on the radar.", + "For a car, visit the car dealership. You can also use a rental vehicle near spawn or take the train", + "Be sure to read the {1} and use {2} for info." + ], + "YourCurrentVehicleDeleted": "The vehicle you were in was deleted.", + "Distance": "Distance", + "Meters": "Meters", + "Feet": "Feet", + "Kilometers": "Kilometers", + "Miles": "Miles", + "MustBeVehicleDriver": "You must be the driver of the vehicle!", + "PlayerJoined": "{1} has joined the game from {2}!", + "PlayerLeftServer": "{1} has left the game! ({2})", + "TakeItemFromHouse": "takes a {1} from the house", + "TakeItemFromBusinessStorage": "takes a {1} from the business storage", + "TakeItemFromBusiness": "takes a {1} from the business", + "TakeItemFromItem": "takes a {1} from the {2}", + "TakeItemFromVehicleTrunk": "takes a {1} from the trunk", + "TakeItemFromVehicleDash": "takes a {1} from the glove compartment", + "AccountHelp": [ + "Do NOT share your password with anybody else. {1} staff will never ask you for your password", + "Use {1} to change your password, and {2} if you forgot it", + "Some settings you can use: {1}" + ], + "VehicleHelp": [ + "Your personal vehicles will save wherever you or somebody else leaves them!", + "Visit dealerships to buy new vehicles (Use {1} for more information)", + "Some commands: {1}", + "Visit a mechanic garage to repair, colour, and tune up your car! {1} for info" + ], + "VehicleDealershipHelp": [ + "Visit a vehicle dealer to buy new vehicles. Use {1} to find one.", + "At the dealer, enter a car you want to buy, and the price will be shown to you", + "If you want to buy the vehicle, use {1} and you will be given keys to test drive it around the parking lot.", + "Drive away from the dealership with the new vehicle to confirm the purchase." + ], + "JobHelp": [ + "Visit job locations to get a job and earn money. Look for yellow spots on the map", + "At a job location, use {1} to get the job. Use {2} to quit your job", + "Use {1} to begin working. You can also get a job {2} and {3}", + "Most job vehicles are locked. Use {1} near one to enter it.", + "When entering a job vehicle, information on how to do the job will be shown to you." + ], + "ChatHelp": [ + "There are two main types of chat: out-of-character (OOC) and in-character (IC)", + "Mixing these two types is not proper roleplay. See {1} for info.", + "Some chat commands: {1}", + "Some have shorter names available ({1} to talk, {2} to shout, etc)" + ], + "ServerRulesHelp": [ + "Unrealistic actions (powergaming) are not allowed. You aren't superman.", + "No terrorist or terrorism roleplay is allowed.", + "Always follow instructions given by moderators and admins.", + "Do not mix the chats (metagaming). You can't use info in IC that was received OOC", + "Keep English in main chats. If you aren't good at English, use {1}" + ], + "AnimationHelp": [ + "Animations allow you to enhance roleplay with visual actions", + "Use {1} or {2} with a name to use an animation.", + "To see a list of animations, use {1}" + ], + "WeaponHelp": [ + "Visit an gun store to buy weapons. Use {1} to find one.", + "Buying a weapon requires a weapon license.", + "Weapon licenses are managed by the police department. Apply there to get one.", + "Weapons can also be purchased illegally from some businesses, weapon dealers, and clans." + ], + "SkinHelp": [ + "At a clothing store, use {1} to purchase clothes", + "When you have a clothing item, equip and use it like any other item to show the skin selection (check {1} to learn how to use items)", + "Some skins are restricted to jobs, clans, or for other reasons." + ], + "KeyBindHelp": [ + "You can set your own key binds. Use {1} to see your binded keys.", + "Use {1} to add a new keybind and {2} to remove one.", + "Default keys are: {1} for vehicle engine, {2} for lights, and {3} for lock/unlock", + "Press {1} to see your items and {2} to equip an item or {3} to unequip all.", + "Press {1} to use the item you're holding, press {2} to drop it, or press {3} to pickup an item from the ground." + ], + "BusinessHelp": [ + "Use {1} to purchase items or {2} to see a list of what's for sale at any business", + "Businesses are shown with blue names above the icon at their entrance.", + "Business owner commands: {1}", + "A new car for sale will appear when you drive away from the dealer." + ], + "ClanHelp": [ + "Ask an administrator to create a clan (Similar to factions/groups/families)", + "Clan owners have full control over their clan once it's created", + "Clan commands: {1}", + "More clan commands: {1}" + ], + "RadioStationHelp": [ + "Use {1} to set the station for your vehicle, house, or business", + "Use {2} to see a list of stations", + "You can change your radio streaming volume using {1} with 0-100 as the percent" + ], + "WealthAndTaxHelp": [ + "Your taxes on payday are {1} percent of your calculated wealth.", + "Your calculated wealth is a total sum based on how many vehicles, houses, and businesses you have.", + "Each vehicle is {1}, each house is {2}, and each business is {3}", + "Use {1} to see your current wealth, and {2} to see how much you'll pay in tax each payday" + ], + "MustBeInAVehicle": "You need to be in a vehicle!", + "MustBeInOrNearVehicle": "You need to be in or near a vehicle!", + "MustBeInVehicleFrontSeat": "You need to be in the vehicle front seats!", + "MustBeInVehicleDriverSeat": "You need to be the driver!", + "DontHaveVehicleKey": "You don't have a key for this vehicle!", + "NoGateAccess": "You don't have access to this gate!", + "GateBroken": "This gate is broken!", + "GateHacked": "The gate does not respond!", + "RadioJammed": "You hear only static from the radio.", + "VehicleNotForSale": "This vehicle is not for sale!", + "VehicleNotForRent": "This vehicle is not for rent!", + "BusinessNotForSale": "This business is not for sale!", + "BusinessNotForRent": "This business is not for rent!", + "HouseNotForSale": "This house is not for sale!", + "HouseNotForRent": "This house is not for rent!", + "DealershipPurchaseTestDrive": "Drive the vehicle away from the dealership to buy it, or get out to cancel.", + "DealershipPurchaseExitedVehicle": "You canceled the vehicle purchase by exiting the vehicle!", + "VehiclePurchaseComplete": "This vehicle is now yours! It will save wherever you leave it.", + "VehiclePurchaseNotEnoughMoney": "You don't have enough money to buy this vehicle!", + "HousePurchaseNotEnoughMoney": "You don't have enough money to buy this house!", + "BusinessPurchaseNotEnoughMoney": "You don't have enough money to buy this business!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Player Houses ({1})", + "HeaderPlayerStaffFlagsList": "Player Staff Flags ({1})", + "HeaderStaffFlagsList": "Staff Flags", + "NonRPName": "Non-RP name! Choose a new one:", + "InvalidStaffFlag": "Staff flag not found!", + "InvalidClanFlag": "Clan flag not found!", + "InvalidLocale": "Language not found!", + "HeaderJobUniformList": "Job Uniforms ({1})", + "HeaderJobEquipmentList": "Job Equipment ({1})", + "InvalidJobUniform": "Job uniform not found!", + "InvalidJobEquipment": "Job equipment not found!", + "HeaderVehiclesInRangeList": "Vehicles within {1}", + "NoVehiclesWithinRange": "There are no vehicles within {1}", + "AmountNotNumber": "The amount must be a number!", + "NeedToBeWorking": "You need to be working! Use {1} at a job location or near a job vehicle.", + "NeedToBeOnJobRoute": "You need to be doing a job route! Use {1} in a job vehicle", + "CurrentJobRouteVehicleColoursChanged": "Your job route's vehicle colours were changed by an admin", + "NotYourJob": "This is not your job!", + "JobPoints": "You can get a job by going the yellow points on the map.", + "QuitJobToTakeAnother": "If you want this job, use {1} to quit your current job.", + "NotAJobVehicle": "This is not a job vehicle!", + "NotYourJobVehicle": "This is not your job's vehicle!", + "HeaderPickupTypes": "Pickup Types", + "HeaderBlipTypes": "Map Icon Types", + "InvalidGPSLocation": "There are no locations with that name or type", + "HeaderBusinessList": "Businesses", + "VehicleForSale": "This {1} is buyable for {2}! Use {3} if you want to buy it", + "VehicleForRent": "This {1} is rentable for {2}! Use {3} if you want to rent it", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Invalid password! {1} attempts remaining", + "LoginFailedNoPassword": "You must enter a password! ! {1} attempts remaining", + "RegistrationFailedNoPassword": "You must enter a password!", + "RegistrationFailedNoPasswordConfirm": "You must confirm the password!", + "RegistrationFailedNoEmail": "You must enter an email!", + "AccountNameAlreadyRegistered": "Your name is already registered!", + "AlreadyLoggedIn": "You are already logged in!", + "RegistrationFailedInvalidEmail": "That email is invalid!", + "RegistrationFailedPasswordMismatch": "The passwords don't match!", + "RegistrationFailedCreateError": "Your account couldn't be created!", + "RegistrationSuccess": "Your account has been created!", + "RegistrationEmailVerifyReminder": "Don't forget to verify your email! A verification code has been sent to you.", + "RegistrationCreateCharReminder": "To play on the server, you will need to make a character.", + "NoCharactersGUIMessage": "You have no characters. Would you like to make one?", + "NoCharactersGUIWindowTitle": "No characters", + "NoCharactersChatMessage": "You have no characters. Use {1} to make one.", + "NeedEmailFor2FA": "You need to add your email to your account to use two-factor authentication.", + "NeedEmailVerifiedFor2FA": "You need to verify your email to use two-factor authentication.", + "SetEmailHelpTip": "Use {1} to set your email.", + "VerifyEmailHelpTip": "Use {1} to verify your email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Nearby radio", + "FromRadio": "From radio", + "ToRadio": "To radio", + "NeedToEnterPropertyCommand": "You need to enter the {1} first! Use {2} to enter and exit", + "NeedToEnterPropertyKeyPress": "You need to enter the {1} first! Press {2} to enter and exit", + "InventoryFullCantCarry": "You don't have any space to carry this (full inventory)!", + "NotEnoughCashNeedAmountMore": "You don't have enough money! You need {1} more!", + "AmountMustBeMoreThan": "The amount must be more than {1}!", + "WeaponBanned": "You are not allowed to buy or use weapons!", + "TimeNotNumber": "The time must be a number", + "HeaderDefaultBusinessItemTypes": "Business Item Templates", + "FixingStuck": "Fixing your position and virtual world ...", + "CantUseCommandYet": "You must wait before you can use this command again!", + "NotATester": "You are not a tester!", + "AccessDenied": "AccessDenied", + "InvalidSkin": "That skin is invalid!", + "HeaderInteriorTypes": "Interiors List", + "GUIAccountSettingToggle": "You have turned {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "You can buy a car by visiting a vehicle dealership. Use {1} for more information.", + "SkinCommandHelp": "You can change your skin by visiting a clothes store. Use {1} for more info.", + "BusinessVehiclesRespawned": "🚗 All business vehicles have been respawned by an admin!", + "JobVehiclesRespawned": "🚗 All job vehicles have been respawned by an admin!", + "PlayerVehiclesRespawned": "🚗 All player vehicles have been respawned by an admin!", + "ClanVehiclesRespawned": "🚗 All clan vehicles have been respawned by an admin!", + "PublicVehiclesRespawned": "🚗 All public have been respawned by an admin!", + "EmptyVehiclesRespawned": "🚗 All empty vehicles have been respawned by an admin!", + "AllVehiclesRespawned": "🚗 All vehicles have been respawned by an admin!", + "AllVehiclesReloaded": "🚗 All vehicles have been reloaded by an admin!", + "YourVehicleRespawned": "🚗 Your vehicle has been respawned!", + "PlayerIPBanned": "💀 {1} has been IP banned!", + "PlayerCharacterBanned": "💀 {1} has been character banned!", + "PlayerSubNetBanned": "💀 {1} has been subnet banned!", + "CantModifyBusiness": "You can't manage or modify this business!", + "CantModifyHouse": "You can't manage or modify this house!", + "ServerTimeSet": "⏰ {1} set the time to {2}", + "ServerWeatherSet": "☁️ {1} set the weather to {2}", + "ServerSnowSet": "❄️ {1} turned falling snow {2} and ground snow {3}", + "AllJobsReloaded": "💼 All server jobs have been reloaded by an admin", + "ServerLogoSet": "{1} turned the server logo image {2}", + "ServerGUISet": "🖥️ {1} turned GUI for this server {2}", + "ServerBusinessBlipsSet": "🏢 {1} turned all business blips {2}", + "ServerHouseBlipsSet": "🏘️ {1} turned all house blips {2}", + "ServerJobBlipsSet": "💼 {1} turned all job blips {2}", + "ServerBusinessPickupsSet": "🏢 {1} turned all business pickups {2}", + "ServerHousePickupsSet": "🏘️ {1} turned all house pickups {2}", + "ServerJobPickupsSet": "💼 {1} turned on all job pickups {2}", + "BusinessBuyItemsLabel": "Use {1} to purchase items", + "PropertyEnterCommandLabel": "Use {1} to enter", + "PropertyEnterKeyPressLabel": "Press {1} to enter", + "PropertyForSaleLabel": "For sale: {1}", + "PropertyForRentLabel": "For rent: {1} every payday", + "RemainingTaxPaidInMoney": "You covered the remaining taxes with {1} in cash.", + "LostMoneyFromTaxes": "You lost money since your taxes are more than your paycheck!", + "NextPaycheckRepossessionWarning": "If you don't have enough cash to cover taxes on next paycheck, you will lose stuff!", + "NotEnoughMoneyForTax": "You don't have enough money to cover your taxes!", + "AssetsRepossessedForTax": "You lost {1} vehicles, {2} houses, and {3} businesses because you couldn't pay taxes!", + "Closed": "Closed", + "Open": "Open", + "VehicleDealershipLabel": "Enter a vehicle as driver to buy it", + "TakeJobLabel": "Use {1} to work here", + "StartWorkLabel": "Use {1} to start working", + "JobEquipAndUniformLabel": "Use {1} and {2} for job stuff, or {3} to stop working", + "NotYourJobLabel": "You already have a different job. Use {1} if you want this one", + "JobLabel": "{1} Job", + "PaydayBonusSet": "🤑 {1} set the payday bonus to {2}", + "AllHousesReloaded": "🏘️ All houses have been reloaded by an admin", + "AllRadioStationsReloaded": "📻 All radio stations have been reloaded by an admin!", + "PlayerKicked": "🦶 {1} has been kicked from the server", + "AllBusinessesReloaded": "🏢 All businesses have been reloaded by an admin!", + "UnableToDoThat": "You aren't able to do that", + "SetVehicleClanConfirmMessage": "Are you sure you want to give this vehicle to your clan?", + "SetVehicleClanConfirmTitle": "Warning!", + "SetItemPriceBelowOrderPriceMessage": "Are you sure you want to set the item price below it's order price? You will lose {1} every purchase!", + "SetItemPriceBelowOrderPriceTitle": "Warning!", + "MustOwnVehicle": "You don't own this vehicle!", + "RandomTips": [ + "Look for yellow dots on your map for job locations", + "You can set custom key binds. Use {1} for details", + "Use {1} if you don't want to see tips and extra information", + "You can edit your keybinds using {1} and {2}", + "Press ℹ️ to see your inventory, and use number keys to select an item", + "Use {1} at a business to purchase items", + "Found a bug? Report it with {1}", + "Have an idea or suggestion for the server? Let the devs know using {1}", + "Want to buy a business? Use {1} at one for sale", + "Want to buy a house? Use {1} at one for sale", + "Want to buy a vehicle? Visit a dealership and enter one for info on how to buy it!", + "Switch to any of your characters with {1}", + "Use {1} to automatically login when connecting with the same IP", + "Use {1} to turn on/off the lights in your house or business", + "Use {1} to play an internet radio station in your car, house, or business", + "Want to make a clan? Use {1} for details", + "Legal weapons can be purchased at any ammunation" + ], + "PromptResponseTip": "Use {1} to accept or {2} to decline", + "PlayerConnecting": "👋 {1} is connecting to the server ...", + "GetStartedJobVehicle": "Get in a {1} to get started.", + "VehicleTypes": { + "Car": "Car", + "Truck": "Truck", + "Van": "Van", + "Taxi": "Taxi", + "Bus": "Bus", + "PoliceCar": "Police Car", + "Ambulance": "Ambulance", + "FireTruck": "Fire Truck", + "Bike": "Bike", + "Motorbike": "Motorbike", + "Boat": "Boat", + "Helicopter": "Helicopter", + "Plane": "Plane", + "Train": "Train" + }, + "AlreadyOnJobRoute": "You are already doing a job route!", + "GaveVehicleToClan": "You gave this {1} to your clan!", + "JobDisabled": "This job is disabled!", + "SetHouseClanConfirmMessage": "Are you sure you want to give this house to your clan?", + "SetHouseClanConfirmTitle": "Warning!", + "SetBusinessClanConfirmMessage": "Are you sure you want to give this business to your clan?", + "SetBusinessClanConfirmTitle": "Warning!", + "MustOwnHouse": "You don't own this house!", + "MustOwnBusiness": "You don't own this business!", + "GaveHouseToClan": "You gave this house to your clan!", + "GaveBusinessToClan": "You gave this business to your clan!", + "BuyBusinessConfirmMessage": "Are you sure you want to buy this business?", + "BuyBusinessConfirmTitle": "Attention!", + "BuyHouseConfirmMessage": "Are you sure you want to buy this house?", + "BuyHouseConfirmTitle": "Attention!", + "BuyBusinessLabel": "Use {1} to buy this business", + "BuyHouseLabel": "Use {1} to buy this house", + "RentHouseLabel": "Use {1} to rent this house", + "AccountEmailAlreadyVerified": "You already set and verified your email!", + "EmailVerificationCodeSent": "A verification code and instructions have been sent to your email.", + "GUIPlayAsCharacterButton": "Play", + "GUINewCharacterButton": "New character", + "GUIPreviousCharacterButton": "Previous", + "GUINextCharacterButton": "Next", + "GUICharacterSelectWindowTitle": "Select a character", + "GUICharacterSelectMoneyLabel": "Money: {1}", + "GUICharacterSelectClanLabel": "Clan: {1}", + "GUICharacterSelectLastPlayedLabel": "Last Played: {1} days, {2} hours, {3} minutes ago", + "GUILoginWindowLabelEnterPassword": "Please enter your password", + "GUILoginWindowSubmitButton": "Login", + "GUILoginWindowResetPasswordButton": "Reset", + "GUILoginWindowPasswordPlaceholder": "Password", + "GUILoginWindowForgotPasswordLabel": "Forgot your password?", + "GUIRegisterWindowLabelCreateAccount": "Create an account", + "GUIRegisterWindowPasswordPlaceholder": "Password", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Confirm password", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Create account", + "GUINewCharacterMessageLabel": "Name your character", + "GUINewCharacterFirstNamePlaceholder": "First Name", + "GUINewCharacterLastNamePlaceholder": "Last Name", + "GUINewCharacterSubmitButton": "Create Character", + "GUIChangePasswordWindowTitle": "Change Password", + "GUIChangePasswordPasswordLabel": "Enter a new password", + "GUIChangePasswordPasswordPlaceholder": "Password", + "GUIChangePasswordConfirmPasswordPlaceholder": "Confirm password", + "GUIChangePasswordSubmitButton": "Change Password", + "GUIResetPasswordWindowMessage": "Reset Password", + "GUIResetPasswordConfirmEmailLabel": "Please confirm your email", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Reset Password", + "GUIResetPasswordLoginButton": "Login", + "GUIResetPasswordRememberMessage": "Remember your password?", + "HeaderJobList": "Jobs", + "HeaderBusinessInfo": "Business Info", + "HeaderHouseInfo": "House Info", + "HeaderClanInfo": "Clan Info", + "Locales": { + "English": "English", + "Russian": "Russian", + "Spanish": "Spanish", + "German": "German", + "Dutch": "Dutch", + "Polish": "Polish", + "Chinese": "Chinese", + "French": "French", + "Japanese": "Japanese", + "Slovak": "Slovak", + "Arabic": "Arabic" + }, + "TwoFactorAuthSet": "⚙️ You have turned two factor authentication {1}", + "AccountServerLogoSet": "⚙️ You turned the server logo {1}", + "ChatScrollLinesNotNumber": "The line amount must be a number", + "ChatScrollLinesMustBeBetween": "The line amount must be between {1} and {2}", + "ChatScrollLinesSet": "The chatbox will now scroll {1} lines at a time", + "InvalidEmailVerificationCode": "Invalid email verification code! A new one has been created and sent to your email.", + "EmailVerified": "Your email has been verified", + "EmailVerifiedTip": "You can now use your email for password resets, two-factor authentication, login alerts, and more", + "CommandRequiresLogin": "You must be logged in to use the {1} command", + "CommandDisabled": "The {1} command is disabled", + "CommandDisabledOnDiscord": "The {1} command isn't available on discord", + "CommandNotFoundHelpTip": "The command {1} does not exist! Use {2} for commands and information.", + "CommandNotFoundPossibleMatchTip": "The command {1} does not exist! Did you mean {2}?", + "CommandNoPermissions": "You don't have permission to use the {1} command", + "GUIResetPasswordCodeInputLabel": "Check your email for a code", + "GUIResetPasswordCodePlaceholder": "Verification code", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Warning", + "GUIInfoTitle": "Info", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Invalid email!", + "HeaderVehicleInfo": "Vehicle Info", + "HeaderClanRanksList": "Clan Rank", + "HeaderNPCInfo": "NPC Info", + "NPCAnimationSet": "You set NPC {1} animation to {2}", + "NPCNameSet": "You set NPC {1} name to {2}", + "VehicleTooFar": "You are too far away from the vehicle!", + "HeaderPropertyTemplateTypes": "Property Types", + "MustBeLoggedInAndSpawnedToChat": "You need to be logged in and spawned before you can chat!", + "MutedCantChat": "You are muted and can't chat!", + "CantUseMegaphone": "You must equip a megaphone item or be in an emergency vehicle!", + "HeaderAnimationHelp": "Animation Info", + "HeaderBadgeInfo": "Badge Information ({1})", + "NoItemCloseEnough": "There is no item close enough", + "CantDropJobEquipmentItem": "You can't drop job items", + "CantPutJobEquipmentItem": "You can't store job items", + "NoItemEquipped": "You don't have any item selected", + "NoItemInActiveSlot": "You don't have an item in your active item slot", + "CantPutItemInSkinChange": "You can't store an item while customizing your appearance", + "NothingToTakeItemFrom": "You aren't near anything to take items from", + "NoAmmoToLoadIntoWeapon": "You don't have any ammo to load into the {1}", + "LoadAmmoIntoWeaponHelpCommand": "To load this ammo into a weapon, equip the weapon and type {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "To load this ammo into a weapon, equip the weapon and press {1}", + "NobodyCloseEnoughToHandcuff": "Nobody is close enough to handcuff", + "NobodyCloseEnoughToTie": "Nobody is close enough to tie up", + "PlayerNotSurrenderedHandcuff": "{1} can't be handcuffed! They either need to have their hands up, be knocked out, or tazed", + "PlayerNotSurrenderedTie": "{1} can't be tied! They either need to have their hands up, be knocked out, or tazed", + "HeaderCharactersListSelf": "Your Characters", + "HeaderCharactersListOther": "{1}'s Characters", + "CharacterSelectHelpText": "Use {1} to select a character, or {2} to create a new character", + "ItemDoesntDoAnythingOnUse": "The {1} doesn't do anything when you try to use it.", + "ItemRadioStationTip": "Use {1} to set the radio station", + "VehicleLockedCommandTip": "🔒 This {1} is locked. Use {2} to unlock it", + "VehicleLockedKeyPressTip": "🔒 This {1} is locked. Press {2} to unlock it", + "VehicleLockedCantUnlock": "🔒 This {1} is locked and you don't have the keys to unlock it", + "CurrentlyRentingThisVehicle": "You are renting this {1} for {2} per minute. Use {3} if you want to stop renting it.", + "VehicleBelongsTo": "This {1} belongs to {2} ({3})", + "NotOwned": "Not Owned", + "NotCloseEnoughToItemContainer": "You are not close enough to anything that holds items", + "Job": "Job", + "Player": "Player", + "BusinessIsNowPaintBall": "This business is now a paintball arena", + "JoinedPaintBall": "You have joined the paintball game.", + "ItemsStoredForPaintBall": "Your items are stored in your locker and will be returned when you leave the paintball game", + "LeftPaintBall": "You have left the paintball game. Your items have been returned.", + "PaintBallEnded": "The paintball match has ended. Your items have been returned.", + "HeaderEventWinners": "Winners", + "YourPaintBallResults": "You got {1} kills and {2} deaths in the paintball match", + "NoPrivateMessageToReply": "You haven't received a private message to reply to", + "WeaponDoesNotUseAmmo": "The {1} doesn't use ammo", + "ChatBoxTimestampsToggle": "You turned {1} time display in the chatbox", + "ProfanityFilterSet": "You turned chat profanity filter {1}", + "ResetAllKeyBindsConfirm": "Are you sure you want to reset all your keybinds to default?", + "NotRentingAVehicle": "You are not renting a vehicle!", + "StoppedRentingVehicle": "You stopped renting the {1}", + "VehicleEngineStartKeyPressTip": "The {1} engine is off. Press {2} to start it.", + "VehicleEngineStartCommandTip": "The {1} engine is off. Use {2} to start it.", + "StartedRentingVehicle": "You are now renting this {1} for {2} per minute. To stop renting, use {3}", + "VehicleAlreadyRentedByOther": "This vehicle is already rented by someone else", + "VehicleAlreadyRentedBySelf": "You are already renting this vehicle", + "JobRankTooLow": "You are not high enough rank!", + "InvalidKeyName": "The key ID or name you input is invalid!", + "KeyBindsReset": "All your keybinds have been reset to default", + "KeyBindNameTip": "Use simple key names, letters, or numbers. Don't add spaces.", + "UniversalInlineExamplesList": "Examples: {1}", + "KeyBindRemoved": "You removed the keybind for the {1} key", + "KeyBindAdded": "You binded key {1} to {2}", + "CopyAllKeyBindsToServerConfirm": "Are you sure you want to copy all your keybinds to the {1} server?", + "CopiedAllKeyBindsToServer": "All your keybinds have been copied to the {1} server", + "MustBeSpawned": "You must be spawned!", + "ChatEmojiSet": "You turned automatic emoji in chat {1}", + "FishingLineNotCast": "Your fishing line isn't cast!", + "CantFishHere": "You can't fish here! You need to be near water or on a boat!", + "NeedFishingRod": "You need to be holding a fishing rod!", + "FishingCastCommandHelp": "Use {1} to cast your fishing line", + "FishingCastKeyBindHelp": "Press {1} to cast your fishing line", + "Paused": "Paused", + "PaintBallAlmostWin": "{1} only needs {2} more kills to win the paintball match!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOnOff": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} \ No newline at end of file diff --git a/locale/german.json b/locale/german.json new file mode 100644 index 00000000..1d4bc407 --- /dev/null +++ b/locale/german.json @@ -0,0 +1,751 @@ +{ + "TranslationProvidedBy": "Sladernimo", + "LocaleEnglishName": "German", + + "LocaleNativeName": "German", + "LocaleOffer": "This server is available in German. Use {1} to use it.", + "LocaleChanged1": "Your language is now set to {1}", + "LocaleChanged2": "The server will now display messages in {1}", + "LocaleChangedNote": "This does not change messages from other players", + "AccentsListHeader": "Accents", + "HelpMainListHeader": "Help Categories", + "AccentNotFound": "Accent not found", + "AccentSet": "You set your accent to {1}", + "InvalidAnimation": "That animation doesn't exist", + "AnimationCommandTip": "Use {1} to see a list of valid animations", + "InvalidAnimationDistance": "The distance must be between 0 and 3", + "CantBanClient": "You cannot ban this person", + "PlayerAccountBanned": "{1} has been account banned", + "ClanNotFound": "Clan not found", + "ClanNameTaken": "A clan with that name already exists", + "PlayerNotFound": "Player not found", + "ClanCantRemoveRanks": "You can't remove clan ranks", + "ClanCantAddRanks": "You can't add clan ranks", + "ClanRankNotFound": "Clan rank not found", + "ClanCantChangeMemberTag": "You can not change clan member's tags", + "ClanPlayerNotInSameClan": "That player is not in your clan", + "ClanCantChangeRankLevel": "You can not change clan rank's level", + "ClanCantChangeRankTag": "You can not change clan rank's tags", + "NameNotRegistered": "Your name is not registered! Use {1} to make an account.", + "AutomaticLoginIPToggle": "Automatic login by IP is now {1}", + "CouldNotRegisterAccount": "There was a problem creating your account. Please contact an admin.", + "RandomTipsToggle": "Random tips are now {1}", + "ActionTipsToggle": "Action tips are now {1}", + "AutoSpawnLastCharToggle": "Automatic spawn as last used character is {1}", + "AccountGUISettingToggle": "🖥️ GUI is now {1}", + "On": "On", + "Off": "Off", + "Yes": "Yes", + "No": "No", + "True": "True", + "False": "False", + "Locked": "Locked", + "Unlocked": "Unlocked", + "PasswordNotGoodEnough": "The new password must meet the requirements!", + "PasswordNeedsBase": "Passwords must have at least {1}", + "PasswordNeedsCapitals": "{1} capital letters", + "PasswordNeedsNumbers": "{1} numbers", + "PasswordNeedsSymbols": "{1} symbols", + "PasswordsDontMatch": "The new password and confirm new password aren't the same!", + "PasswordChanged": "Your password has been changed!", + "AutoLoggedInIP": "You have been automatically logged in by IP!", + "WelcomeBack": "Welcome back to {1}, {2}! Please {3} to continue.", + "WelcomeNewPlayer": "Welcome to {1}, {2}! Please {3} to play.", + "InvalidPlayer": "Player not found!", + "InvalidBusiness": "Business not found!", + "InvalidHouse": "House not found!", + "InvalidVehicle": "Vehicle not found!", + "InvalidClan": "Clan not found!", + "InvalidClanRank": "Clan rank not found!", + "InvalidJob": "Job not found!", + "InvalidItem": "Item not found!", + "InvalidItemType": "Item type not found!", + "InvalidRadioStation": "Radio station not found!", + "InvalidGate": "Gate not found!", + "EntersProperty": "opens the door and enters the {1} ({2})", + "ExitsProperty": "opens the door and exits the {1} ({2})", + "EnterExitPropertyDoorLocked": "tries to open the {1} door but fails because it's locked", + "PropertyNoInterior": "This {1} does not have an interior, but you can still use commands at the door icon.", + "NoBusinessWithItemType": "There is no business with that item available", + "HeaderKeyBinds": "Key Binds", + "HeaderAccountHelp": "Account Help", + "HeaderVehicleHelp": "Vehicle Help", + "HeaderVehicleDealershipHelp": "Vehicle Dealership Help", + "HeaderJobHelp": "Job Help", + "HeaderChatHelp": "Chat Help", + "HeaderServerRules": "Server Rules", + "HeaderWebsiteInfo": "Website", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Animation List", + "HeaderPayAndSprayHelp": "Pay and Spray Help", + "HeaderAmmunationHelp": "Ammunation Help", + "HeaderVehicleTuneupHelp": "Vehicle Tune Help", + "HeaderBindableKeysHelp": "Bindable Keys", + "HeaderSkinHelp": "Clothes/Skin Help", + "HeaderBusinessHelp": "Business Help", + "HeaderClanHelp": "Clan Help", + "HeaderPlayerVehiclesList": "Player Vehicles ({1})", + "HeaderPlayerBusinessesList": "Player Businesses ({1})", + "HeaderClansList": "Clan List", + "HeaderAdminsList": "Admin List", + "HeaderAccentsList": "Accent List", + "HeaderPlayerInfo": "Player Information ({1})", + "HeaderWealthandTaxHelp": "Wealth and Tax Information", + "HeaderCommandInfo": "Command Information ({1})", + "HeaderRadioHelp": "Radio Help", + "HeaderRadioStationsList": "Radio Stations", + "HeaderKeyBindsList": "Key Binds List", + "RadioVolumeChanged": "{1} You changed your streaming radio volume to {2}%", + "VolumeLevelNotNumber": "The volume level must be a number", + "RadioStationLocationInvalid": "You must be in a vehicle, house, or business or have a personal device to change the station!", + "ActionBusinessRadioStationChange": "changes the business radio station to {1} ({2})", + "ActionHouseRadioStationChange": "changes the house radio station to {1} ({2})", + "ActionVehicleRadioStationChange": "changes the vehicle radio station to {1} ({2})", + "ActionItemRadioStationChange": "changes the {1}'s station to {2} ({3})", + "RandomVehicleCommandsDisabled": "This is a random traffic vehicle and commands can't be used for it.", + "HouseDoorLock": "House {1} {2}!", + "BusinessDoorLock": "Business {1} {2}!", + "ServerGameModeRestarting": "The server game mode is restarting!", + "HeaderSelfItemList": "Your Inventory", + "HeaderPlayerItemList": "Player Inventory ({1})", + "HeaderHouseItemList": "House Inventory", + "HeaderBusinessFloorItemList": "Business Inventory (For Sale)", + "HeaderBusinessStorageItemList": "Business Inventory (Storage)", + "HeaderItemItemList": "{1}'s Inventory", + "ItemSlotNotNumber": "The item slot must be a number", + "ItemSlotMustBeBetween": "The item slot must be between {1} and {2}!", + "UseItemBugged": "The item you're trying to use is bugged. A bug report has been sent to the server developers.", + "PickupItemBugged": "The item you're trying to pickup is bugged. A bug report has been sent to the server developers.", + "DropItemBugged": "The item you're trying to drop is bugged. A bug report has been sent to the server developers.", + "HandsBusy": "Your hands are busy", + "CantUseItemInSkinChange": "You can't use an item while customizing your appearance", + "CantDropItemInSkinChange": "You can't drop an item while customizing your appearance", + "CantPickupItemInSkinChange": "You can't pickup an item while customizing your appearance", + "CantSwitchItemInSkinChange": "You can't switch an item while customizing your appearance", + "CantGiveItemInSkinChange": "You can't give an item while customizing your appearance", + "CantTakeItemInSkinChange": "You can't take an item while customizing your appearance", + "ItemUnequippableNoAmmo": "The {1} in slot {2} has no ammo, and can't be equipped!", + "NoSpaceSelfInventory": "You don't have any more space in your inventory", + "Business": "business", + "House": "house", + "Clan": "clan", + "Vehicle": "vehicle", + "Item": "item", + "ItemType": "item type", + "Gate": "gate", + "Door": "door", + "ClanRank": "clan rank", + "JobRank": "job rank", + "RadioStation": "radio station", + "Months": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + "WeekDays": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "CardinalDirections": { + "North": "North", + "Northeast": "Northeast", + "East": "East", + "Southeast": "Southeast", + "South": "South", + "Southwest": "Southwest", + "West": "West", + "Northwest": "Northwest" + }, + "NewPlayerReadyToPlay": [ + "You have been given some cash. Use {1} to find places to buy items.", + "If you need money, jobs are the yellow dots on the radar.", + "For a car, visit the car dealership. You can also use a rental vehicle near spawn or take the train", + "Be sure to read the {1} and use {2} for info." + ], + "YourCurrentVehicleDeleted": "The vehicle you were in was deleted.", + "Distance": "Distance", + "Meters": "Meters", + "Feet": "Feet", + "Kilometers": "Kilometers", + "Miles": "Miles", + "MustBeVehicleDriver": "You must be the driver of the vehicle!", + "PlayerJoined": "{1} has joined the game from {2}!", + "PlayerLeftServer": "{1} has left the game! ({2})", + "TakeItemFromHouse": "takes a {1} from the house", + "TakeItemFromBusinessStorage": "takes a {1} from the business storage", + "TakeItemFromBusiness": "takes a {1} from the business", + "TakeItemFromItem": "takes a {1} from the {2}", + "TakeItemFromVehicleTrunk": "takes a {1} from the trunk", + "TakeItemFromVehicleDash": "takes a {1} from the glove compartment", + "AccountHelp": [ + "Do NOT share your password with anybody else. {1} staff will never ask you for your password", + "Use {1} to change your password, and {2} if you forgot it", + "Some settings you can use: {1}" + ], + "VehicleHelp": [ + "Your personal vehicles will save wherever you or somebody else leaves them!", + "Visit dealerships to buy new vehicles (Use {1} for more information)", + "Some commands: {1}", + "Visit a mechanic garage to repair, colour, and tune up your car! {1} for info" + ], + "VehicleDealershipHelp": [ + "Visit a vehicle dealer to buy new vehicles. Use {1} to find one.", + "At the dealer, enter a car you want to buy, and the price will be shown to you", + "If you want to buy the vehicle, use {1} and you will be given keys to test drive it around the parking lot.", + "Drive away from the dealership with the new vehicle to confirm the purchase." + ], + "JobHelp": [ + "Visit job locations to get a job and earn money. Look for yellow spots on the map", + "At a job location, use {1} to get the job. Use {2} to quit your job", + "Use {1} to begin working. You can also get a job {2} and {3}", + "Most job vehicles are locked. Use {1} near one to enter it.", + "When entering a job vehicle, information on how to do the job will be shown to you." + ], + "ChatHelp": [ + "There are two main types of chat: out-of-character (OOC) and in-character (IC)", + "Mixing these two types is not proper roleplay. See {1} for info.", + "Some chat commands: {1}", + "Some have shorter names available ({1} to talk, {2} to shout, etc)" + ], + "ServerRulesHelp": [ + "Unrealistic actions (powergaming) are not allowed. You aren't superman.", + "No terrorist or terrorism roleplay is allowed.", + "Always follow instructions given by moderators and admins.", + "Do not mix the chats (metagaming). You can't use info in IC that was received OOC", + "Keep English in main chats. If you aren't good at English, use {1}" + ], + "AnimationHelp": [ + "Animations allow you to enhance roleplay with visual actions", + "Use {1} or {2} with a name to use an animation.", + "To see a list of animations, use {1}" + ], + "WeaponHelp": [ + "Visit an gun store to buy weapons. Use {1} to find one.", + "Buying a weapon requires a weapon license.", + "Weapon licenses are managed by the police department. Apply there to get one.", + "Weapons can also be purchased illegally from some businesses, weapon dealers, and clans." + ], + "SkinHelp": [ + "At a clothing store, use {1} to purchase clothes", + "When you have a clothing item, equip and use it like any other item to show the skin selection (check {1} to learn how to use items)", + "Some skins are restricted to jobs, clans, or for other reasons." + ], + "KeyBindHelp": [ + "You can set your own key binds. Use {1} to see your binded keys.", + "Use {1} to add a new keybind and {2} to remove one.", + "Default keys are: {1} for vehicle engine, {2} for lights, and {3} for lock/unlock", + "Press {1} to see your items and {2} to equip an item or {3} to unequip all.", + "Press {1} to use the item you're holding, press {2} to drop it, or press {3} to pickup an item from the ground." + ], + "BusinessHelp": [ + "Use {1} to purchase items or {2} to see a list of what's for sale at any business", + "Businesses are shown with blue names above the icon at their entrance.", + "Business owner commands: {1}", + "A new car for sale will appear when you drive away from the dealer." + ], + "ClanHelp": [ + "Ask an administrator to create a clan (Similar to factions/groups/families)", + "Clan owners have full control over their clan once it's created", + "Clan commands: {1}", + "More clan commands: {1}" + ], + "RadioStationHelp": [ + "Use {1} to set the station for your vehicle, house, or business", + "Use {2} to see a list of stations", + "You can change your radio streaming volume using {1} with 0-100 as the percent" + ], + "WealthAndTaxHelp": [ + "Your taxes on payday are {1} percent of your calculated wealth.", + "Your calculated wealth is a total sum based on how many vehicles, houses, and businesses you have.", + "Each vehicle is {1}, each house is {2}, and each business is {3}", + "Use {1} to see your current wealth, and {2} to see how much you'll pay in tax each payday" + ], + "MustBeInAVehicle": "You need to be in a vehicle!", + "MustBeInOrNearVehicle": "You need to be in or near a vehicle!", + "MustBeInVehicleFrontSeat": "You need to be in the vehicle front seats!", + "MustBeInVehicleDriverSeat": "You need to be the driver!", + "DontHaveVehicleKey": "You don't have a key for this vehicle!", + "NoGateAccess": "You don't have access to this gate!", + "GateBroken": "This gate is broken!", + "GateHacked": "The gate does not respond!", + "RadioJammed": "You hear only static from the radio.", + "VehicleNotForSale": "This vehicle is not for sale!", + "VehicleNotForRent": "This vehicle is not for rent!", + "BusinessNotForSale": "This business is not for sale!", + "BusinessNotForRent": "This business is not for rent!", + "HouseNotForSale": "This house is not for sale!", + "HouseNotForRent": "This house is not for rent!", + "DealershipPurchaseTestDrive": "Drive the vehicle away from the dealership to buy it, or get out to cancel.", + "DealershipPurchaseExitedVehicle": "You canceled the vehicle purchase by exiting the vehicle!", + "VehiclePurchaseComplete": "This vehicle is now yours! It will save wherever you leave it.", + "VehiclePurchaseNotEnoughMoney": "You don't have enough money to buy this vehicle!", + "HousePurchaseNotEnoughMoney": "You don't have enough money to buy this house!", + "BusinessPurchaseNotEnoughMoney": "You don't have enough money to buy this business!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Player Houses ({1})", + "HeaderPlayerStaffFlagsList": "Player Staff Flags ({1})", + "HeaderStaffFlagsList": "Staff Flags", + "NonRPName": "Non-RP name! Choose a new one:", + "InvalidStaffFlag": "Staff flag not found!", + "InvalidClanFlag": "Clan flag not found!", + "InvalidLocale": "Language not found!", + "HeaderJobUniformList": "Job Uniforms ({1})", + "HeaderJobEquipmentList": "Job Equipment ({1})", + "InvalidJobUniform": "Job uniform not found!", + "InvalidJobEquipment": "Job equipment not found!", + "HeaderVehiclesInRangeList": "Vehicles within {1}", + "NoVehiclesWithinRange": "There are no vehicles within {1}", + "AmountNotNumber": "The amount must be a number!", + "NeedToBeWorking": "You need to be working! Use {1} at a job location or near a job vehicle.", + "NeedToBeOnJobRoute": "You need to be doing a job route! Use {1} in a job vehicle", + "CurrentJobRouteVehicleColoursChanged": "Your job route's vehicle colours were changed by an admin", + "NotYourJob": "This is not your job!", + "JobPoints": "You can get a job by going the yellow points on the map.", + "QuitJobToTakeAnother": "If you want this job, use {1} to quit your current job.", + "NotAJobVehicle": "This is not a job vehicle!", + "NotYourJobVehicle": "This is not your job's vehicle!", + "HeaderPickupTypes": "Pickup Types", + "HeaderBlipTypes": "Map Icon Types", + "InvalidGPSLocation": "There are no locations with that name or type", + "HeaderBusinessList": "Businesses", + "VehicleForSale": "This {1} is buyable for {2}! Use {3} if you want to buy it", + "VehicleForRent": "This {1} is rentable for {2}! Use {3} if you want to rent it", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Invalid password! {1} attempts remaining", + "LoginFailedNoPassword": "You must enter a password! ! {1} attempts remaining", + "RegistrationFailedNoPassword": "You must enter a password!", + "RegistrationFailedNoPasswordConfirm": "You must confirm the password!", + "RegistrationFailedNoEmail": "You must enter an email!", + "AccountNameAlreadyRegistered": "Your name is already registered!", + "AlreadyLoggedIn": "You are already logged in!", + "RegistrationFailedInvalidEmail": "That email is invalid!", + "RegistrationFailedPasswordMismatch": "The passwords don't match!", + "RegistrationFailedCreateError": "Your account couldn't be created!", + "RegistrationSuccess": "Your account has been created!", + "RegistrationEmailVerifyReminder": "Don't forget to verify your email! A verification code has been sent to you.", + "RegistrationCreateCharReminder": "To play on the server, you will need to make a character.", + "NoCharactersGUIMessage": "You have no characters. Would you like to make one?", + "NoCharactersGUIWindowTitle": "No characters", + "NoCharactersChatMessage": "You have no characters. Use {1} to make one.", + "NeedEmailFor2FA": "You need to add your email to your account to use two-factor authentication.", + "NeedEmailVerifiedFor2FA": "You need to verify your email to use two-factor authentication.", + "SetEmailHelpTip": "Use {1} to set your email.", + "VerifyEmailHelpTip": "Use {1} to verify your email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Nearby radio", + "FromRadio": "From radio", + "ToRadio": "To radio", + "NeedToEnterPropertyCommand": "You need to enter the {1} first! Use {2} to enter and exit", + "NeedToEnterPropertyKeyPress": "You need to enter the {1} first! Press {2} to enter and exit", + "InventoryFullCantCarry": "You don't have any space to carry this (full inventory)!", + "NotEnoughCashNeedAmountMore": "You don't have enough money! You need {1} more!", + "AmountMustBeMoreThan": "The amount must be more than {1}!", + "WeaponBanned": "You are not allowed to buy or use weapons!", + "TimeNotNumber": "The time must be a number", + "HeaderDefaultBusinessItemTypes": "Business Item Templates", + "FixingStuck": "Fixing your position and virtual world ...", + "CantUseCommandYet": "You must wait before you can use this command again!", + "NotATester": "You are not a tester!", + "AccessDenied": "AccessDenied", + "InvalidSkin": "That skin is invalid!", + "HeaderInteriorTypes": "Interiors List", + "GUIAccountSettingToggle": "You have turned {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "You can buy a car by visiting a vehicle dealership. Use {1} for more information.", + "SkinCommandHelp": "You can change your skin by visiting a clothes store. Use {1} for more info.", + "BusinessVehiclesRespawned": "🚗 All business vehicles have been respawned by an admin!", + "JobVehiclesRespawned": "🚗 All job vehicles have been respawned by an admin!", + "PlayerVehiclesRespawned": "🚗 All player vehicles have been respawned by an admin!", + "ClanVehiclesRespawned": "🚗 All clan vehicles have been respawned by an admin!", + "PublicVehiclesRespawned": "🚗 All public have been respawned by an admin!", + "EmptyVehiclesRespawned": "🚗 All empty vehicles have been respawned by an admin!", + "AllVehiclesRespawned": "🚗 All vehicles have been respawned by an admin!", + "AllVehiclesReloaded": "🚗 All vehicles have been reloaded by an admin!", + "YourVehicleRespawned": "🚗 Your vehicle has been respawned!", + "PlayerIPBanned": "💀 {1} has been IP banned!", + "PlayerCharacterBanned": "💀 {1} has been character banned!", + "PlayerSubNetBanned": "💀 {1} has been subnet banned!", + "CantModifyBusiness": "You can't manage or modify this business!", + "CantModifyHouse": "You can't manage or modify this house!", + "ServerTimeSet": "⏰ {1} set the time to {2}", + "ServerWeatherSet": "☁️ {1} set the weather to {2}", + "ServerSnowSet": "❄️ {1} turned falling snow {2} and ground snow {3}", + "AllJobsReloaded": "💼 All server jobs have been reloaded by an admin", + "ServerLogoSet": "{1} turned the server logo image {2}", + "ServerGUISet": "🖥️ {1} turned GUI for this server {2}", + "ServerBusinessBlipsSet": "🏢 {1} turned all business blips {2}", + "ServerHouseBlipsSet": "🏘️ {1} turned all house blips {2}", + "ServerJobBlipsSet": "💼 {1} turned all job blips {2}", + "ServerBusinessPickupsSet": "🏢 {1} turned all business pickups {2}", + "ServerHousePickupsSet": "🏘️ {1} turned all house pickups {2}", + "ServerJobPickupsSet": "💼 {1} turned on all job pickups {2}", + "BusinessBuyItemsLabel": "Use {1} to purchase items", + "PropertyEnterCommandLabel": "Use {1} to enter", + "PropertyEnterKeyPressLabel": "Press {1} to enter", + "PropertyForSaleLabel": "For sale: {1}", + "PropertyForRentLabel": "For rent: {1} every payday", + "RemainingTaxPaidInMoney": "You covered the remaining taxes with {1} in cash.", + "LostMoneyFromTaxes": "You lost money since your taxes are more than your paycheck!", + "NextPaycheckRepossessionWarning": "If you don't have enough cash to cover taxes on next paycheck, you will lose stuff!", + "NotEnoughMoneyForTax": "You don't have enough money to cover your taxes!", + "AssetsRepossessedForTax": "You lost {1} vehicles, {2} houses, and {3} businesses because you couldn't pay taxes!", + "Closed": "Closed", + "Open": "Open", + "VehicleDealershipLabel": "Enter a vehicle as driver to buy it", + "TakeJobLabel": "Use {1} to work here", + "StartWorkLabel": "Use {1} to start working", + "JobEquipAndUniformLabel": "Use {1} and {2} for job stuff, or {3} to stop working", + "NotYourJobLabel": "You already have a different job. Use {1} if you want this one", + "JobLabel": "{1} Job", + "PaydayBonusSet": "🤑 {1} set the payday bonus to {2}", + "AllHousesReloaded": "🏘️ All houses have been reloaded by an admin", + "AllRadioStationsReloaded": "📻 All radio stations have been reloaded by an admin!", + "PlayerKicked": "🦶 {1} has been kicked from the server", + "AllBusinessesReloaded": "🏢 All businesses have been reloaded by an admin!", + "UnableToDoThat": "You aren't able to do that", + "SetVehicleClanConfirmMessage": "Are you sure you want to give this vehicle to your clan?", + "SetVehicleClanConfirmTitle": "Warning!", + "SetItemPriceBelowOrderPriceMessage": "Are you sure you want to set the item price below it's order price? You will lose {1} every purchase!", + "SetItemPriceBelowOrderPriceTitle": "Warning!", + "MustOwnVehicle": "You don't own this vehicle!", + "RandomTips": [ + "Look for yellow dots on your map for job locations", + "You can set custom key binds. Use {1} for details", + "Use {1} if you don't want to see tips and extra information", + "You can edit your keybinds using {1} and {2}", + "Press ℹ️ to see your inventory, and use number keys to select an item", + "Use {1} at a business to purchase items", + "Found a bug? Report it with {1}", + "Have an idea or suggestion for the server? Let the devs know using {1}", + "Want to buy a business? Use {1} at one for sale", + "Want to buy a house? Use {1} at one for sale", + "Want to buy a vehicle? Visit a dealership and enter one for info on how to buy it!", + "Switch to any of your characters with {1}", + "Use {1} to automatically login when connecting with the same IP", + "Use {1} to turn on/off the lights in your house or business", + "Use {1} to play an internet radio station in your car, house, or business", + "Want to make a clan? Use {1} for details", + "Legal weapons can be purchased at any ammunation" + ], + "PromptResponseTip": "Use {1} to accept or {2} to decline", + "PlayerConnecting": "👋 {1} is connecting to the server ...", + "GetStartedJobVehicle": "Get in a {1} to get started.", + "VehicleTypes": { + "Car": "Car", + "Truck": "Truck", + "Van": "Van", + "Taxi": "Taxi", + "Bus": "Bus", + "PoliceCar": "Police Car", + "Ambulance": "Ambulance", + "FireTruck": "Fire Truck", + "Bike": "Bike", + "Motorbike": "Motorbike", + "Boat": "Boat", + "Helicopter": "Helicopter", + "Plane": "Plane", + "Train": "Train" + }, + "AlreadyOnJobRoute": "You are already doing a job route!", + "GaveVehicleToClan": "You gave this {1} to your clan!", + "JobDisabled": "This job is disabled!", + "SetHouseClanConfirmMessage": "Are you sure you want to give this house to your clan?", + "SetHouseClanConfirmTitle": "Warning!", + "SetBusinessClanConfirmMessage": "Are you sure you want to give this business to your clan?", + "SetBusinessClanConfirmTitle": "Warning!", + "MustOwnHouse": "You don't own this house!", + "MustOwnBusiness": "You don't own this business!", + "GaveHouseToClan": "You gave this house to your clan!", + "GaveBusinessToClan": "You gave this business to your clan!", + "BuyBusinessConfirmMessage": "Are you sure you want to buy this business?", + "BuyBusinessConfirmTitle": "Attention!", + "BuyHouseConfirmMessage": "Are you sure you want to buy this house?", + "BuyHouseConfirmTitle": "Attention!", + "BuyBusinessLabel": "Use {1} to buy this business", + "BuyHouseLabel": "Use {1} to buy this house", + "RentHouseLabel": "Use {1} to rent this house", + "AccountEmailAlreadyVerified": "You already set and verified your email!", + "EmailVerificationCodeSent": "A verification code and instructions have been sent to your email.", + "GUIPlayAsCharacterButton": "Spielen", + "GUINewCharacterButton": "Neuer Charakter", + "GUIPreviousCharacterButton": "Zurück", + "GUINextCharacterButton": "Weiter", + "GUICharacterSelectWindowTitle": "Wähle einen Charakter", + "GUICharacterSelectMoneyLabel": "Geld: {1}", + "GUICharacterSelectClanLabel": "Clan: {1}", + "GUICharacterSelectLastPlayedLabel": "Zuletzt gespielt vor: {1} Tagen, {2} Stunden, {3} Minuten", + "GUILoginWindowLabelEnterPassword": "Bitte Passwort eingeben", + "GUILoginWindowSubmitButton": "Login", + "GUILoginWindowResetPasswordButton": "Zurücksetzen", + "GUILoginWindowPasswordPlaceholder": "Passwort", + "GUILoginWindowForgotPasswordLabel": "Passwort vergessen?", + "GUIRegisterWindowLabelCreateAccount": "Profil erstellen", + "GUIRegisterWindowPasswordPlaceholder": "Passwort", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Passwort bestätigen", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Profil erstellen", + "GUINewCharacterMessageLabel": "Charakter Name", + "GUINewCharacterFirstNamePlaceholder": "Vorname", + "GUINewCharacterLastNamePlaceholder": "Nachname", + "GUIChangePasswordWindowTitle": "Passwort ändern", + "GUIChangePasswordPasswordLabel": "Neues Passwort eingeben", + "GUIChangePasswordPasswordPlaceholder": "Passwort", + "GUIChangePasswordConfirmPasswordPlaceholder": "Passwort bestätigen", + "GUIChangePasswordSubmitButton": "Passwort ändern", + "GUIResetPasswordWindowMessage": "Passwort zurücksetzen", + "GUIResetPasswordConfirmEmailLabel": "Bitte bestätige deine Email", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Passwort zurücksetzen", + "GUIResetPasswordLoginButton": "Login", + "GUIResetPasswordRememberMessage": "Passwort bekannt?", + "HeaderJobList": "Jobs", + "HeaderBusinessInfo": "Business Info", + "HeaderHouseInfo": "House Info", + "HeaderClanInfo": "Clan Info", + "Locales": { + "English": "English", + "Russian": "Russian", + "Spanish": "Spanish", + "German": "German", + "Dutch": "Dutch", + "Polish": "Polish", + "Chinese": "Chinese", + "French": "French", + "Japanese": "Japanese", + "Slovak": "Slovak", + "Arabic": "Arabic" + }, + "TwoFactorAuthSet": "⚙️ You have turned two factor authentication {1}", + "AccountServerLogoSet": "⚙️ You turned the server logo {1}", + "ChatScrollLinesNotNumber": "The line amount must be a number", + "ChatScrollLinesMustBeBetween": "The line amount must be between {1} and {2}", + "ChatScrollLinesSet": "The chatbox will now scroll {1} lines at a time", + "InvalidEmailVerificationCode": "Invalid email verification code! A new one has been created and sent to your email.", + "EmailVerified": "Your email has been verified", + "EmailVerifiedTip": "You can now use your email for password resets, two-factor authentication, login alerts, and more", + "CommandRequiresLogin": "You must be logged in to use the {1} command", + "CommandDisabled": "The {1} command is disabled", + "CommandDisabledOnDiscord": "The {1} command isn't available on discord", + "CommandNotFoundHelpTip": "The command {1} does not exist! Use {2} for commands and information.", + "CommandNotFoundPossibleMatchTip": "The command {1} does not exist! Did you mean {2}?", + "CommandNoPermissions": "You don't have permission to use the {1} command", + "GUIResetPasswordCodeInputLabel": "Check your email for a code", + "GUIResetPasswordCodePlaceholder": "Verification code", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Warning", + "GUIInfoTitle": "Info", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Invalid email!", + "HeaderVehicleInfo": "Vehicle Info", + "HeaderClanRanksList": "Clan Rank", + "HeaderNPCInfo": "NPC Info", + "NPCAnimationSet": "You set NPC {1} animation to {2}", + "NPCNameSet": "You set NPC {1} name to {2}", + "VehicleTooFar": "You are too far away from the vehicle!", + "HeaderPropertyTemplateTypes": "Property Types", + "MustBeLoggedInAndSpawnedToChat": "You need to be logged in and spawned before you can chat!", + "MutedCantChat": "You are muted and can't chat!", + "CantUseMegaphone": "You must equip a megaphone item or be in an emergency vehicle!", + "HeaderAnimationHelp": "Animation Info", + "HeaderBadgeInfo": "Badge Information ({1})", + "NoItemCloseEnough": "There is no item close enough", + "CantDropJobEquipmentItem": "You can't drop job items", + "CantPutJobEquipmentItem": "You can't store job items", + "NoItemEquipped": "You don't have any item selected", + "NoItemInActiveSlot": "You don't have an item in your active item slot", + "CantPutItemInSkinChange": "You can't store an item while customizing your appearance", + "NothingToTakeItemFrom": "You aren't near anything to take items from", + "NoAmmoToLoadIntoWeapon": "You don't have any ammo to load into the {1}", + "LoadAmmoIntoWeaponHelpCommand": "To load this ammo into a weapon, equip the weapon and type {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "To load this ammo into a weapon, equip the weapon and press {1}", + "NobodyCloseEnoughToHandcuff": "Nobody is close enough to handcuff", + "NobodyCloseEnoughToTie": "Nobody is close enough to tie up", + "PlayerNotSurrenderedHandcuff": "{1} can't be handcuffed! They either need to have their hands up, be knocked out, or tazed", + "PlayerNotSurrenderedTie": "{1} can't be tied! They either need to have their hands up, be knocked out, or tazed", + "HeaderCharactersListSelf": "Your Characters", + "HeaderCharactersListOther": "{1}'s Characters", + "CharacterSelectHelpText": "Use {1} to select a character, or {2} to create a new character", + "ItemDoesntDoAnythingOnUse": "The {1} doesn't do anything when you try to use it.", + "ItemRadioStationTip": "Use {1} to set the radio station", + "VehicleLockedCommandTip": "🔒 This {1} is locked. Use {2} to unlock it", + "VehicleLockedKeyPressTip": "🔒 This {1} is locked. Press {2} to unlock it", + "VehicleLockedCantUnlock": "🔒 This {1} is locked and you don't have the keys to unlock it", + "CurrentlyRentingThisVehicle": "You are renting this {1} for {2} per minute. Use {3} if you want to stop renting it.", + "VehicleBelongsTo": "This {1} belongs to {2} ({3})", + "NotOwned": "Not Owned", + "NotCloseEnoughToItemContainer": "You are not close enough to anything that holds items", + "Job": "Job", + "Player": "Player", + "BusinessIsNowPaintBall": "This business is now a paintball arena", + "JoinedPaintBall": "You have joined the paintball game.", + "ItemsStoredForPaintBall": "Your items are stored in your locker and will be returned when you leave the paintball game", + "LeftPaintBall": "You have left the paintball game. Your items have been returned.", + "PaintBallEnded": "The paintball match has ended. Your items have been returned.", + "HeaderEventWinners": "Winners", + "YourPaintBallResults": "You got {1} kills and {2} deaths in the paintball match", + "NoPrivateMessageToReply": "You haven't received a private message to reply to", + "WeaponDoesNotUseAmmo": "The {1} doesn't use ammo", + "ChatBoxTimestampsToggle": "You turned {1} time display in the chatbox", + "ProfanityFilterSet": "You turned chat profanity filter {1}", + "ResetAllKeyBindsConfirm": "Are you sure you want to reset all your keybinds to default?", + "NotRentingAVehicle": "You are not renting a vehicle!", + "StoppedRentingVehicle": "You stopped renting the {1}", + "VehicleEngineStartKeyPressTip": "The {1} engine is off. Press {2} to start it.", + "VehicleEngineStartCommandTip": "The {1} engine is off. Use {2} to start it.", + "StartedRentingVehicle": "You are now renting this {1} for {2} per minute. To stop renting, use {3}", + "VehicleAlreadyRentedByOther": "This vehicle is already rented by someone else", + "VehicleAlreadyRentedBySelf": "You are already renting this vehicle", + "JobRankTooLow": "You are not high enough rank!", + "InvalidKeyName": "The key ID or name you input is invalid!", + "KeyBindsReset": "All your keybinds have been reset to default", + "KeyBindNameTip": "Use simple key names, letters, or numbers. Don't add spaces.", + "UniversalInlineExamplesList": "Examples: {1}", + "KeyBindRemoved": "You removed the keybind for the {1} key", + "KeyBindAdded": "You binded key {1} to {2}", + "CopyAllKeyBindsToServerConfirm": "Are you sure you want to copy all your keybinds to the {1} server?", + "CopiedAllKeyBindsToServer": "All your keybinds have been copied to the {1} server", + "MustBeSpawned": "You must be spawned!", + "ChatEmojiSet": "You turned automatic emoji in chat {1}", + "FishingLineNotCast": "Your fishing line isn't cast!", + "CantFishHere": "You can't fish here! You need to be near water or on a boat!", + "NeedFishingRod": "You need to be holding a fishing rod!", + "FishingCastCommandHelp": "Use {1} to cast your fishing line", + "FishingCastKeyBindHelp": "Press {1} to cast your fishing line", + "Paused": "Paused", + "PaintBallAlmostWin": "{1} only needs {2} more kills to win the paintball match!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOnOff": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} \ No newline at end of file diff --git a/locale/japanese.json b/locale/japanese.json new file mode 100644 index 00000000..cd88beff --- /dev/null +++ b/locale/japanese.json @@ -0,0 +1,752 @@ +{ + "TranslationProvidedBy": "Cocam", + "LocaleEnglishName": "Japanese", + + "LocaleNativeName": "Japanese (Translate this to your native language)", + "LocaleOffer": "This server is available in Japanese. Use {1} to use it.", + "LocaleChanged1": "Your language is now set to {1}", + "LocaleChanged2": "The server will now display messages in {1}", + "LocaleChangedNote": "This does not change messages from other players", + "AccentsListHeader": "Accents", + "HelpMainListHeader": "Help Categories", + "AccentNotFound": "Accent not found", + "AccentSet": "You set your accent to {1}", + "InvalidAnimation": "That animation doesn't exist", + "AnimationCommandTip": "Use {1} to see a list of valid animations", + "InvalidAnimationDistance": "The distance must be between 0 and 3", + "CantBanClient": "You cannot ban this person", + "PlayerAccountBanned": "{1} has been account banned", + "ClanNotFound": "Clan not found", + "ClanNameTaken": "A clan with that name already exists", + "PlayerNotFound": "Player not found", + "ClanCantRemoveRanks": "You can't remove clan ranks", + "ClanCantAddRanks": "You can't add clan ranks", + "ClanRankNotFound": "Clan rank not found", + "ClanCantChangeMemberTag": "You can not change clan member's tags", + "ClanPlayerNotInSameClan": "That player is not in your clan", + "ClanCantChangeRankLevel": "You can not change clan rank's level", + "ClanCantChangeRankTag": "You can not change clan rank's tags", + "NameNotRegistered": "Your name is not registered! Use {1} to make an account.", + "AutomaticLoginIPToggle": "Automatic login by IP is now {1}", + "CouldNotRegisterAccount": "There was a problem creating your account. Please contact an admin.", + "RandomTipsToggle": "Random tips are now {1}", + "ActionTipsToggle": "Action tips are now {1}", + "AutoSpawnLastCharToggle": "Automatic spawn as last used character is {1}", + "AccountGUISettingToggle": "🖥️ GUI is now {1}", + "On": "On", + "Off": "Off", + "Yes": "Yes", + "No": "No", + "True": "True", + "False": "False", + "Locked": "Locked", + "Unlocked": "Unlocked", + "PasswordNotGoodEnough": "The new password must meet the requirements!", + "PasswordNeedsBase": "Passwords must have at least {1}", + "PasswordNeedsCapitals": "{1} capital letters", + "PasswordNeedsNumbers": "{1} numbers", + "PasswordNeedsSymbols": "{1} symbols", + "PasswordsDontMatch": "The new password and confirm new password aren't the same!", + "PasswordChanged": "Your password has been changed!", + "AutoLoggedInIP": "You have been automatically logged in by IP!", + "WelcomeBack": "Welcome back to {1}, {2}! Please {3} to continue.", + "WelcomeNewPlayer": "Welcome to {1}, {2}! Please {3} to play.", + "InvalidPlayer": "Player not found!", + "InvalidBusiness": "Business not found!", + "InvalidHouse": "House not found!", + "InvalidVehicle": "Vehicle not found!", + "InvalidClan": "Clan not found!", + "InvalidClanRank": "Clan rank not found!", + "InvalidJob": "Job not found!", + "InvalidItem": "Item not found!", + "InvalidItemType": "Item type not found!", + "InvalidRadioStation": "Radio station not found!", + "InvalidGate": "Gate not found!", + "EntersProperty": "opens the door and enters the {1} ({2})", + "ExitsProperty": "opens the door and exits the {1} ({2})", + "EnterExitPropertyDoorLocked": "tries to open the {1} door but fails because it's locked", + "PropertyNoInterior": "This {1} does not have an interior, but you can still use commands at the door icon.", + "NoBusinessWithItemType": "There is no business with that item available", + "HeaderKeyBinds": "Key Binds", + "HeaderAccountHelp": "Account Help", + "HeaderVehicleHelp": "Vehicle Help", + "HeaderVehicleDealershipHelp": "Vehicle Dealership Help", + "HeaderJobHelp": "Job Help", + "HeaderChatHelp": "Chat Help", + "HeaderServerRules": "Server Rules", + "HeaderWebsiteInfo": "Website", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Animation List", + "HeaderPayAndSprayHelp": "Pay and Spray Help", + "HeaderAmmunationHelp": "Ammunation Help", + "HeaderVehicleTuneupHelp": "Vehicle Tune Help", + "HeaderBindableKeysHelp": "Bindable Keys", + "HeaderSkinHelp": "Clothes/Skin Help", + "HeaderBusinessHelp": "Business Help", + "HeaderClanHelp": "Clan Help", + "HeaderPlayerVehiclesList": "Player Vehicles ({1})", + "HeaderPlayerBusinessesList": "Player Businesses ({1})", + "HeaderClansList": "Clan List", + "HeaderAdminsList": "Admin List", + "HeaderAccentsList": "Accent List", + "HeaderPlayerInfo": "Player Information ({1})", + "HeaderWealthandTaxHelp": "Wealth and Tax Information", + "HeaderCommandInfo": "Command Information ({1})", + "HeaderRadioHelp": "Radio Help", + "HeaderRadioStationsList": "Radio Stations", + "HeaderKeyBindsList": "Key Binds List", + "RadioVolumeChanged": "{1} You changed your streaming radio volume to {2}%", + "VolumeLevelNotNumber": "The volume level must be a number", + "RadioStationLocationInvalid": "You must be in a vehicle, house, or business or have a personal device to change the station!", + "ActionBusinessRadioStationChange": "changes the business radio station to {1} ({2})", + "ActionHouseRadioStationChange": "changes the house radio station to {1} ({2})", + "ActionVehicleRadioStationChange": "changes the vehicle radio station to {1} ({2})", + "ActionItemRadioStationChange": "changes the {1}'s station to {2} ({3})", + "RandomVehicleCommandsDisabled": "This is a random traffic vehicle and commands can't be used for it.", + "HouseDoorLock": "House {1} {2}!", + "BusinessDoorLock": "Business {1} {2}!", + "ServerGameModeRestarting": "The server game mode is restarting!", + "HeaderSelfItemList": "Your Inventory", + "HeaderPlayerItemList": "Player Inventory ({1})", + "HeaderHouseItemList": "House Inventory", + "HeaderBusinessFloorItemList": "Business Inventory (For Sale)", + "HeaderBusinessStorageItemList": "Business Inventory (Storage)", + "HeaderItemItemList": "{1}'s Inventory", + "ItemSlotNotNumber": "The item slot must be a number", + "ItemSlotMustBeBetween": "The item slot must be between {1} and {2}!", + "UseItemBugged": "The item you're trying to use is bugged. A bug report has been sent to the server developers.", + "PickupItemBugged": "The item you're trying to pickup is bugged. A bug report has been sent to the server developers.", + "DropItemBugged": "The item you're trying to drop is bugged. A bug report has been sent to the server developers.", + "HandsBusy": "Your hands are busy", + "CantUseItemInSkinChange": "You can't use an item while customizing your appearance", + "CantDropItemInSkinChange": "You can't drop an item while customizing your appearance", + "CantPickupItemInSkinChange": "You can't pickup an item while customizing your appearance", + "CantSwitchItemInSkinChange": "You can't switch an item while customizing your appearance", + "CantGiveItemInSkinChange": "You can't give an item while customizing your appearance", + "CantTakeItemInSkinChange": "You can't take an item while customizing your appearance", + "ItemUnequippableNoAmmo": "The {1} in slot {2} has no ammo, and can't be equipped!", + "NoSpaceSelfInventory": "You don't have any more space in your inventory", + "Business": "business", + "House": "house", + "Clan": "clan", + "Vehicle": "vehicle", + "Item": "item", + "ItemType": "item type", + "Gate": "gate", + "Door": "door", + "ClanRank": "clan rank", + "JobRank": "job rank", + "RadioStation": "radio station", + "Months": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + "WeekDays": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "CardinalDirections": { + "North": "North", + "Northeast": "Northeast", + "East": "East", + "Southeast": "Southeast", + "South": "South", + "Southwest": "Southwest", + "West": "West", + "Northwest": "Northwest" + }, + "NewPlayerReadyToPlay": [ + "You have been given some cash. Use {1} to find places to buy items.", + "If you need money, jobs are the yellow dots on the radar.", + "For a car, visit the car dealership. You can also use a rental vehicle near spawn or take the train", + "Be sure to read the {1} and use {2} for info." + ], + "YourCurrentVehicleDeleted": "The vehicle you were in was deleted.", + "Distance": "Distance", + "Meters": "Meters", + "Feet": "Feet", + "Kilometers": "Kilometers", + "Miles": "Miles", + "MustBeVehicleDriver": "You must be the driver of the vehicle!", + "PlayerJoined": "{1} has joined the game from {2}!", + "PlayerLeftServer": "{1} has left the game! ({2})", + "TakeItemFromHouse": "takes a {1} from the house", + "TakeItemFromBusinessStorage": "takes a {1} from the business storage", + "TakeItemFromBusiness": "takes a {1} from the business", + "TakeItemFromItem": "takes a {1} from the {2}", + "TakeItemFromVehicleTrunk": "takes a {1} from the trunk", + "TakeItemFromVehicleDash": "takes a {1} from the glove compartment", + "AccountHelp": [ + "Do NOT share your password with anybody else. {1} staff will never ask you for your password", + "Use {1} to change your password, and {2} if you forgot it", + "Some settings you can use: {1}" + ], + "VehicleHelp": [ + "Your personal vehicles will save wherever you or somebody else leaves them!", + "Visit dealerships to buy new vehicles (Use {1} for more information)", + "Some commands: {1}", + "Visit a mechanic garage to repair, colour, and tune up your car! {1} for info" + ], + "VehicleDealershipHelp": [ + "Visit a vehicle dealer to buy new vehicles. Use {1} to find one.", + "At the dealer, enter a car you want to buy, and the price will be shown to you", + "If you want to buy the vehicle, use {1} and you will be given keys to test drive it around the parking lot.", + "Drive away from the dealership with the new vehicle to confirm the purchase." + ], + "JobHelp": [ + "Visit job locations to get a job and earn money. Look for yellow spots on the map", + "At a job location, use {1} to get the job. Use {2} to quit your job", + "Use {1} to begin working. You can also get a job {2} and {3}", + "Most job vehicles are locked. Use {1} near one to enter it.", + "When entering a job vehicle, information on how to do the job will be shown to you." + ], + "ChatHelp": [ + "There are two main types of chat: out-of-character (OOC) and in-character (IC)", + "Mixing these two types is not proper roleplay. See {1} for info.", + "Some chat commands: {1}", + "Some have shorter names available ({1} to talk, {2} to shout, etc)" + ], + "ServerRulesHelp": [ + "Unrealistic actions (powergaming) are not allowed. You aren't superman.", + "No terrorist or terrorism roleplay is allowed.", + "Always follow instructions given by moderators and admins.", + "Do not mix the chats (metagaming). You can't use info in IC that was received OOC", + "Keep English in main chats. If you aren't good at English, use {1}" + ], + "AnimationHelp": [ + "Animations allow you to enhance roleplay with visual actions", + "Use {1} or {2} with a name to use an animation.", + "To see a list of animations, use {1}" + ], + "WeaponHelp": [ + "Visit an gun store to buy weapons. Use {1} to find one.", + "Buying a weapon requires a weapon license.", + "Weapon licenses are managed by the police department. Apply there to get one.", + "Weapons can also be purchased illegally from some businesses, weapon dealers, and clans." + ], + "SkinHelp": [ + "At a clothing store, use {1} to purchase clothes", + "When you have a clothing item, equip and use it like any other item to show the skin selection (check {1} to learn how to use items)", + "Some skins are restricted to jobs, clans, or for other reasons." + ], + "KeyBindHelp": [ + "You can set your own key binds. Use {1} to see your binded keys.", + "Use {1} to add a new keybind and {2} to remove one.", + "Default keys are: {1} for vehicle engine, {2} for lights, and {3} for lock/unlock", + "Press {1} to see your items and {2} to equip an item or {3} to unequip all.", + "Press {1} to use the item you're holding, press {2} to drop it, or press {3} to pickup an item from the ground." + ], + "BusinessHelp": [ + "Use {1} to purchase items or {2} to see a list of what's for sale at any business", + "Businesses are shown with blue names above the icon at their entrance.", + "Business owner commands: {1}", + "A new car for sale will appear when you drive away from the dealer." + ], + "ClanHelp": [ + "Ask an administrator to create a clan (Similar to factions/groups/families)", + "Clan owners have full control over their clan once it's created", + "Clan commands: {1}", + "More clan commands: {1}" + ], + "RadioStationHelp": [ + "Use {1} to set the station for your vehicle, house, or business", + "Use {2} to see a list of stations", + "You can change your radio streaming volume using {1} with 0-100 as the percent" + ], + "WealthAndTaxHelp": [ + "Your taxes on payday are {1} percent of your calculated wealth.", + "Your calculated wealth is a total sum based on how many vehicles, houses, and businesses you have.", + "Each vehicle is {1}, each house is {2}, and each business is {3}", + "Use {1} to see your current wealth, and {2} to see how much you'll pay in tax each payday" + ], + "MustBeInAVehicle": "You need to be in a vehicle!", + "MustBeInOrNearVehicle": "You need to be in or near a vehicle!", + "MustBeInVehicleFrontSeat": "You need to be in the vehicle front seats!", + "MustBeInVehicleDriverSeat": "You need to be the driver!", + "DontHaveVehicleKey": "You don't have a key for this vehicle!", + "NoGateAccess": "You don't have access to this gate!", + "GateBroken": "This gate is broken!", + "GateHacked": "The gate does not respond!", + "RadioJammed": "You hear only static from the radio.", + "VehicleNotForSale": "This vehicle is not for sale!", + "VehicleNotForRent": "This vehicle is not for rent!", + "BusinessNotForSale": "This business is not for sale!", + "BusinessNotForRent": "This business is not for rent!", + "HouseNotForSale": "This house is not for sale!", + "HouseNotForRent": "This house is not for rent!", + "DealershipPurchaseTestDrive": "Drive the vehicle away from the dealership to buy it, or get out to cancel.", + "DealershipPurchaseExitedVehicle": "You canceled the vehicle purchase by exiting the vehicle!", + "VehiclePurchaseComplete": "This vehicle is now yours! It will save wherever you leave it.", + "VehiclePurchaseNotEnoughMoney": "You don't have enough money to buy this vehicle!", + "HousePurchaseNotEnoughMoney": "You don't have enough money to buy this house!", + "BusinessPurchaseNotEnoughMoney": "You don't have enough money to buy this business!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Player Houses ({1})", + "HeaderPlayerStaffFlagsList": "Player Staff Flags ({1})", + "HeaderStaffFlagsList": "Staff Flags", + "NonRPName": "Non-RP name! Choose a new one:", + "InvalidStaffFlag": "Staff flag not found!", + "InvalidClanFlag": "Clan flag not found!", + "InvalidLocale": "Language not found!", + "HeaderJobUniformList": "Job Uniforms ({1})", + "HeaderJobEquipmentList": "Job Equipment ({1})", + "InvalidJobUniform": "Job uniform not found!", + "InvalidJobEquipment": "Job equipment not found!", + "HeaderVehiclesInRangeList": "Vehicles within {1}", + "NoVehiclesWithinRange": "There are no vehicles within {1}", + "AmountNotNumber": "The amount must be a number!", + "NeedToBeWorking": "You need to be working! Use {1} at a job location or near a job vehicle.", + "NeedToBeOnJobRoute": "You need to be doing a job route! Use {1} in a job vehicle", + "CurrentJobRouteVehicleColoursChanged": "Your job route's vehicle colours were changed by an admin", + "NotYourJob": "This is not your job!", + "JobPoints": "You can get a job by going the yellow points on the map.", + "QuitJobToTakeAnother": "If you want this job, use {1} to quit your current job.", + "NotAJobVehicle": "This is not a job vehicle!", + "NotYourJobVehicle": "This is not your job's vehicle!", + "HeaderPickupTypes": "Pickup Types", + "HeaderBlipTypes": "Map Icon Types", + "InvalidGPSLocation": "There are no locations with that name or type", + "HeaderBusinessList": "Businesses", + "VehicleForSale": "This {1} is buyable for {2}! Use {3} if you want to buy it", + "VehicleForRent": "This {1} is rentable for {2}! Use {3} if you want to rent it", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Invalid password! {1} attempts remaining", + "LoginFailedNoPassword": "You must enter a password! ! {1} attempts remaining", + "RegistrationFailedNoPassword": "You must enter a password!", + "RegistrationFailedNoPasswordConfirm": "You must confirm the password!", + "RegistrationFailedNoEmail": "You must enter an email!", + "AccountNameAlreadyRegistered": "Your name is already registered!", + "AlreadyLoggedIn": "You are already logged in!", + "RegistrationFailedInvalidEmail": "That email is invalid!", + "RegistrationFailedPasswordMismatch": "The passwords don't match!", + "RegistrationFailedCreateError": "Your account couldn't be created!", + "RegistrationSuccess": "Your account has been created!", + "RegistrationEmailVerifyReminder": "Don't forget to verify your email! A verification code has been sent to you.", + "RegistrationCreateCharReminder": "To play on the server, you will need to make a character.", + "NoCharactersGUIMessage": "You have no characters. Would you like to make one?", + "NoCharactersGUIWindowTitle": "No characters", + "NoCharactersChatMessage": "You have no characters. Use {1} to make one.", + "NeedEmailFor2FA": "You need to add your email to your account to use two-factor authentication.", + "NeedEmailVerifiedFor2FA": "You need to verify your email to use two-factor authentication.", + "SetEmailHelpTip": "Use {1} to set your email.", + "VerifyEmailHelpTip": "Use {1} to verify your email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Nearby radio", + "FromRadio": "From radio", + "ToRadio": "To radio", + "NeedToEnterPropertyCommand": "You need to enter the {1} first! Use {2} to enter and exit", + "NeedToEnterPropertyKeyPress": "You need to enter the {1} first! Press {2} to enter and exit", + "InventoryFullCantCarry": "You don't have any space to carry this (full inventory)!", + "NotEnoughCashNeedAmountMore": "You don't have enough money! You need {1} more!", + "AmountMustBeMoreThan": "The amount must be more than {1}!", + "WeaponBanned": "You are not allowed to buy or use weapons!", + "TimeNotNumber": "The time must be a number", + "HeaderDefaultBusinessItemTypes": "Business Item Templates", + "FixingStuck": "Fixing your position and virtual world ...", + "CantUseCommandYet": "You must wait before you can use this command again!", + "NotATester": "You are not a tester!", + "AccessDenied": "AccessDenied", + "InvalidSkin": "That skin is invalid!", + "HeaderInteriorTypes": "Interiors List", + "GUIAccountSettingToggle": "You have turned {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "You can buy a car by visiting a vehicle dealership. Use {1} for more information.", + "SkinCommandHelp": "You can change your skin by visiting a clothes store. Use {1} for more info.", + "BusinessVehiclesRespawned": "🚗 All business vehicles have been respawned by an admin!", + "JobVehiclesRespawned": "🚗 All job vehicles have been respawned by an admin!", + "PlayerVehiclesRespawned": "🚗 All player vehicles have been respawned by an admin!", + "ClanVehiclesRespawned": "🚗 All clan vehicles have been respawned by an admin!", + "PublicVehiclesRespawned": "🚗 All public have been respawned by an admin!", + "EmptyVehiclesRespawned": "🚗 All empty vehicles have been respawned by an admin!", + "AllVehiclesRespawned": "🚗 All vehicles have been respawned by an admin!", + "AllVehiclesReloaded": "🚗 All vehicles have been reloaded by an admin!", + "YourVehicleRespawned": "🚗 Your vehicle has been respawned!", + "PlayerIPBanned": "💀 {1} has been IP banned!", + "PlayerCharacterBanned": "💀 {1} has been character banned!", + "PlayerSubNetBanned": "💀 {1} has been subnet banned!", + "CantModifyBusiness": "You can't manage or modify this business!", + "CantModifyHouse": "You can't manage or modify this house!", + "ServerTimeSet": "⏰ {1} set the time to {2}", + "ServerWeatherSet": "☁️ {1} set the weather to {2}", + "ServerSnowSet": "❄️ {1} turned falling snow {2} and ground snow {3}", + "AllJobsReloaded": "💼 All server jobs have been reloaded by an admin", + "ServerLogoSet": "{1} turned the server logo image {2}", + "ServerGUISet": "🖥️ {1} turned GUI for this server {2}", + "ServerBusinessBlipsSet": "🏢 {1} turned all business blips {2}", + "ServerHouseBlipsSet": "🏘️ {1} turned all house blips {2}", + "ServerJobBlipsSet": "💼 {1} turned all job blips {2}", + "ServerBusinessPickupsSet": "🏢 {1} turned all business pickups {2}", + "ServerHousePickupsSet": "🏘️ {1} turned all house pickups {2}", + "ServerJobPickupsSet": "💼 {1} turned on all job pickups {2}", + "BusinessBuyItemsLabel": "Use {1} to purchase items", + "PropertyEnterCommandLabel": "Use {1} to enter", + "PropertyEnterKeyPressLabel": "Press {1} to enter", + "PropertyForSaleLabel": "For sale: {1}", + "PropertyForRentLabel": "For rent: {1} every payday", + "RemainingTaxPaidInMoney": "You covered the remaining taxes with {1} in cash.", + "LostMoneyFromTaxes": "You lost money since your taxes are more than your paycheck!", + "NextPaycheckRepossessionWarning": "If you don't have enough cash to cover taxes on next paycheck, you will lose stuff!", + "NotEnoughMoneyForTax": "You don't have enough money to cover your taxes!", + "AssetsRepossessedForTax": "You lost {1} vehicles, {2} houses, and {3} businesses because you couldn't pay taxes!", + "Closed": "Closed", + "Open": "Open", + "VehicleDealershipLabel": "Enter a vehicle as driver to buy it", + "TakeJobLabel": "Use {1} to work here", + "StartWorkLabel": "Use {1} to start working", + "JobEquipAndUniformLabel": "Use {1} and {2} for job stuff, or {3} to stop working", + "NotYourJobLabel": "You already have a different job. Use {1} if you want this one", + "JobLabel": "{1} Job", + "PaydayBonusSet": "🤑 {1} set the payday bonus to {2}", + "AllHousesReloaded": "🏘️ All houses have been reloaded by an admin", + "AllRadioStationsReloaded": "📻 All radio stations have been reloaded by an admin!", + "PlayerKicked": "🦶 {1} has been kicked from the server", + "AllBusinessesReloaded": "🏢 All businesses have been reloaded by an admin!", + "UnableToDoThat": "You aren't able to do that", + "SetVehicleClanConfirmMessage": "Are you sure you want to give this vehicle to your clan?", + "SetVehicleClanConfirmTitle": "Warning!", + "SetItemPriceBelowOrderPriceMessage": "Are you sure you want to set the item price below it's order price? You will lose {1} every purchase!", + "SetItemPriceBelowOrderPriceTitle": "Warning!", + "MustOwnVehicle": "You don't own this vehicle!", + "RandomTips": [ + "Look for yellow dots on your map for job locations", + "You can set custom key binds. Use {1} for details", + "Use {1} if you don't want to see tips and extra information", + "You can edit your keybinds using {1} and {2}", + "Press ℹ️ to see your inventory, and use number keys to select an item", + "Use {1} at a business to purchase items", + "Found a bug? Report it with {1}", + "Have an idea or suggestion for the server? Let the devs know using {1}", + "Want to buy a business? Use {1} at one for sale", + "Want to buy a house? Use {1} at one for sale", + "Want to buy a vehicle? Visit a dealership and enter one for info on how to buy it!", + "Switch to any of your characters with {1}", + "Use {1} to automatically login when connecting with the same IP", + "Use {1} to turn on/off the lights in your house or business", + "Use {1} to play an internet radio station in your car, house, or business", + "Want to make a clan? Use {1} for details", + "Legal weapons can be purchased at any ammunation" + ], + "PromptResponseTip": "Use {1} to accept or {2} to decline", + "PlayerConnecting": "👋 {1} is connecting to the server ...", + "GetStartedJobVehicle": "Get in a {1} to get started.", + "VehicleTypes": { + "Car": "Car", + "Truck": "Truck", + "Van": "Van", + "Taxi": "Taxi", + "Bus": "Bus", + "PoliceCar": "Police Car", + "Ambulance": "Ambulance", + "FireTruck": "Fire Truck", + "Bike": "Bike", + "Motorbike": "Motorbike", + "Boat": "Boat", + "Helicopter": "Helicopter", + "Plane": "Plane", + "Train": "Train" + }, + "AlreadyOnJobRoute": "You are already doing a job route!", + "GaveVehicleToClan": "You gave this {1} to your clan!", + "JobDisabled": "This job is disabled!", + "SetHouseClanConfirmMessage": "Are you sure you want to give this house to your clan?", + "SetHouseClanConfirmTitle": "Warning!", + "SetBusinessClanConfirmMessage": "Are you sure you want to give this business to your clan?", + "SetBusinessClanConfirmTitle": "Warning!", + "MustOwnHouse": "You don't own this house!", + "MustOwnBusiness": "You don't own this business!", + "GaveHouseToClan": "You gave this house to your clan!", + "GaveBusinessToClan": "You gave this business to your clan!", + "BuyBusinessConfirmMessage": "Are you sure you want to buy this business?", + "BuyBusinessConfirmTitle": "Attention!", + "BuyHouseConfirmMessage": "Are you sure you want to buy this house?", + "BuyHouseConfirmTitle": "Attention!", + "BuyBusinessLabel": "Use {1} to buy this business", + "BuyHouseLabel": "Use {1} to buy this house", + "RentHouseLabel": "Use {1} to rent this house", + "AccountEmailAlreadyVerified": "You already set and verified your email!", + "EmailVerificationCodeSent": "A verification code and instructions have been sent to your email.", + "GUIPlayAsCharacterButton": "Play", + "GUINewCharacterButton": "New character", + "GUIPreviousCharacterButton": "Previous", + "GUINextCharacterButton": "Next", + "GUICharacterSelectWindowTitle": "Select a character", + "GUICharacterSelectMoneyLabel": "Money: {1}", + "GUICharacterSelectClanLabel": "Clan: {1}", + "GUICharacterSelectLastPlayedLabel": "Last Played: {1} days, {2} hours, {3} minutes ago", + "GUILoginWindowLabelEnterPassword": "Please enter your password", + "GUILoginWindowSubmitButton": "Login", + "GUILoginWindowResetPasswordButton": "Reset", + "GUILoginWindowPasswordPlaceholder": "Password", + "GUILoginWindowForgotPasswordLabel": "Forgot your password?", + "GUIRegisterWindowLabelCreateAccount": "Create an account", + "GUIRegisterWindowPasswordPlaceholder": "Password", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Confirm password", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Create account", + "GUINewCharacterMessageLabel": "Name your character", + "GUINewCharacterFirstNamePlaceholder": "First Name", + "GUINewCharacterLastNamePlaceholder": "Last Name", + "GUINewCharacterSubmitButton": "Create Character", + "GUIChangePasswordWindowTitle": "Change Password", + "GUIChangePasswordPasswordLabel": "Enter a new password", + "GUIChangePasswordPasswordPlaceholder": "Password", + "GUIChangePasswordConfirmPasswordPlaceholder": "Confirm password", + "GUIChangePasswordSubmitButton": "Change Password", + "GUIResetPasswordWindowMessage": "Reset Password", + "GUIResetPasswordConfirmEmailLabel": "Please confirm your email", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Reset Password", + "GUIResetPasswordLoginButton": "Login", + "GUIResetPasswordRememberMessage": "Remember your password?", + "HeaderJobList": "Jobs", + "HeaderBusinessInfo": "Business Info", + "HeaderHouseInfo": "House Info", + "HeaderClanInfo": "Clan Info", + "Locales": { + "English": "English", + "Russian": "Russian", + "Spanish": "Spanish", + "German": "German", + "Dutch": "Dutch", + "Polish": "Polish", + "Chinese": "Chinese", + "French": "French", + "Japanese": "Japanese", + "Slovak": "Slovak", + "Arabic": "Arabic" + }, + "TwoFactorAuthSet": "⚙️ You have turned two factor authentication {1}", + "AccountServerLogoSet": "⚙️ You turned the server logo {1}", + "ChatScrollLinesNotNumber": "The line amount must be a number", + "ChatScrollLinesMustBeBetween": "The line amount must be between {1} and {2}", + "ChatScrollLinesSet": "The chatbox will now scroll {1} lines at a time", + "InvalidEmailVerificationCode": "Invalid email verification code! A new one has been created and sent to your email.", + "EmailVerified": "Your email has been verified", + "EmailVerifiedTip": "You can now use your email for password resets, two-factor authentication, login alerts, and more", + "CommandRequiresLogin": "You must be logged in to use the {1} command", + "CommandDisabled": "The {1} command is disabled", + "CommandDisabledOnDiscord": "The {1} command isn't available on discord", + "CommandNotFoundHelpTip": "The command {1} does not exist! Use {2} for commands and information.", + "CommandNotFoundPossibleMatchTip": "The command {1} does not exist! Did you mean {2}?", + "CommandNoPermissions": "You don't have permission to use the {1} command", + "GUIResetPasswordCodeInputLabel": "Check your email for a code", + "GUIResetPasswordCodePlaceholder": "Verification code", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Warning", + "GUIInfoTitle": "Info", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Invalid email!", + "HeaderVehicleInfo": "Vehicle Info", + "HeaderClanRanksList": "Clan Rank", + "HeaderNPCInfo": "NPC Info", + "NPCAnimationSet": "You set NPC {1} animation to {2}", + "NPCNameSet": "You set NPC {1} name to {2}", + "VehicleTooFar": "You are too far away from the vehicle!", + "HeaderPropertyTemplateTypes": "Property Types", + "MustBeLoggedInAndSpawnedToChat": "You need to be logged in and spawned before you can chat!", + "MutedCantChat": "You are muted and can't chat!", + "CantUseMegaphone": "You must equip a megaphone item or be in an emergency vehicle!", + "HeaderAnimationHelp": "Animation Info", + "HeaderBadgeInfo": "Badge Information ({1})", + "NoItemCloseEnough": "There is no item close enough", + "CantDropJobEquipmentItem": "You can't drop job items", + "CantPutJobEquipmentItem": "You can't store job items", + "NoItemEquipped": "You don't have any item selected", + "NoItemInActiveSlot": "You don't have an item in your active item slot", + "CantPutItemInSkinChange": "You can't store an item while customizing your appearance", + "NothingToTakeItemFrom": "You aren't near anything to take items from", + "NoAmmoToLoadIntoWeapon": "You don't have any ammo to load into the {1}", + "LoadAmmoIntoWeaponHelpCommand": "To load this ammo into a weapon, equip the weapon and type {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "To load this ammo into a weapon, equip the weapon and press {1}", + "NobodyCloseEnoughToHandcuff": "Nobody is close enough to handcuff", + "NobodyCloseEnoughToTie": "Nobody is close enough to tie up", + "PlayerNotSurrenderedHandcuff": "{1} can't be handcuffed! They either need to have their hands up, be knocked out, or tazed", + "PlayerNotSurrenderedTie": "{1} can't be tied! They either need to have their hands up, be knocked out, or tazed", + "HeaderCharactersListSelf": "Your Characters", + "HeaderCharactersListOther": "{1}'s Characters", + "CharacterSelectHelpText": "Use {1} to select a character, or {2} to create a new character", + "ItemDoesntDoAnythingOnUse": "The {1} doesn't do anything when you try to use it.", + "ItemRadioStationTip": "Use {1} to set the radio station", + "VehicleLockedCommandTip": "🔒 This {1} is locked. Use {2} to unlock it", + "VehicleLockedKeyPressTip": "🔒 This {1} is locked. Press {2} to unlock it", + "VehicleLockedCantUnlock": "🔒 This {1} is locked and you don't have the keys to unlock it", + "CurrentlyRentingThisVehicle": "You are renting this {1} for {2} per minute. Use {3} if you want to stop renting it.", + "VehicleBelongsTo": "This {1} belongs to {2} ({3})", + "NotOwned": "Not Owned", + "NotCloseEnoughToItemContainer": "You are not close enough to anything that holds items", + "Job": "Job", + "Player": "Player", + "BusinessIsNowPaintBall": "This business is now a paintball arena", + "JoinedPaintBall": "You have joined the paintball game.", + "ItemsStoredForPaintBall": "Your items are stored in your locker and will be returned when you leave the paintball game", + "LeftPaintBall": "You have left the paintball game. Your items have been returned.", + "PaintBallEnded": "The paintball match has ended. Your items have been returned.", + "HeaderEventWinners": "Winners", + "YourPaintBallResults": "You got {1} kills and {2} deaths in the paintball match", + "NoPrivateMessageToReply": "You haven't received a private message to reply to", + "WeaponDoesNotUseAmmo": "The {1} doesn't use ammo", + "ChatBoxTimestampsToggle": "You turned {1} time display in the chatbox", + "ProfanityFilterSet": "You turned chat profanity filter {1}", + "ResetAllKeyBindsConfirm": "Are you sure you want to reset all your keybinds to default?", + "NotRentingAVehicle": "You are not renting a vehicle!", + "StoppedRentingVehicle": "You stopped renting the {1}", + "VehicleEngineStartKeyPressTip": "The {1} engine is off. Press {2} to start it.", + "VehicleEngineStartCommandTip": "The {1} engine is off. Use {2} to start it.", + "StartedRentingVehicle": "You are now renting this {1} for {2} per minute. To stop renting, use {3}", + "VehicleAlreadyRentedByOther": "This vehicle is already rented by someone else", + "VehicleAlreadyRentedBySelf": "You are already renting this vehicle", + "JobRankTooLow": "You are not high enough rank!", + "InvalidKeyName": "The key ID or name you input is invalid!", + "KeyBindsReset": "All your keybinds have been reset to default", + "KeyBindNameTip": "Use simple key names, letters, or numbers. Don't add spaces.", + "UniversalInlineExamplesList": "Examples: {1}", + "KeyBindRemoved": "You removed the keybind for the {1} key", + "KeyBindAdded": "You binded key {1} to {2}", + "CopyAllKeyBindsToServerConfirm": "Are you sure you want to copy all your keybinds to the {1} server?", + "CopiedAllKeyBindsToServer": "All your keybinds have been copied to the {1} server", + "MustBeSpawned": "You must be spawned!", + "ChatEmojiSet": "You turned automatic emoji in chat {1}", + "FishingLineNotCast": "Your fishing line isn't cast!", + "CantFishHere": "You can't fish here! You need to be near water or on a boat!", + "NeedFishingRod": "You need to be holding a fishing rod!", + "FishingCastCommandHelp": "Use {1} to cast your fishing line", + "FishingCastKeyBindHelp": "Press {1} to cast your fishing line", + "Paused": "Paused", + "PaintBallAlmostWin": "{1} only needs {2} more kills to win the paintball match!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOnOff": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} \ No newline at end of file diff --git a/locale/latvian.json b/locale/latvian.json new file mode 100644 index 00000000..73f11afd --- /dev/null +++ b/locale/latvian.json @@ -0,0 +1,754 @@ +{ + "TranslationProvidedBy": "YuOn", + "LocaleEnglishName": "Latvian", + + "LocaleNativeName": "Latvian", + "LocaleOffer": "This server is available in Latvian. Use {1} to use it.", + "LocaleChanged1": "Your language is now set to {1}", + "LocaleChanged2": "The server will now display messages in {1}", + "LocaleChangedNote": "This does not change messages from other players", + "AccentsListHeader": "Accents", + "HelpMainListHeader": "Help Categories", + "AccentNotFound": "Accent not found", + "AccentSet": "You set your accent to {1}", + "InvalidAnimation": "That animation doesn't exist", + "AnimationCommandTip": "Use {1} to see a list of valid animations", + "InvalidAnimationDistance": "The distance must be between 0 and 3", + "CantBanClient": "You cannot ban this person", + "PlayerAccountBanned": "{1} has been account banned", + "ClanNotFound": "Clan not found", + "ClanNameTaken": "A clan with that name already exists", + "PlayerNotFound": "Player not found", + "ClanCantRemoveRanks": "You can't remove clan ranks", + "ClanCantAddRanks": "You can't add clan ranks", + "ClanRankNotFound": "Clan rank not found", + "ClanCantChangeMemberTag": "You can not change clan member's tags", + "ClanPlayerNotInSameClan": "That player is not in your clan", + "ClanCantChangeRankLevel": "You can not change clan rank's level", + "ClanCantChangeRankTag": "You can not change clan rank's tags", + "NameNotRegistered": "Your name is not registered! Use {1} to make an account.", + "AutomaticLoginIPToggle": "Automatic login by IP is now {1}", + "CouldNotRegisterAccount": "There was a problem creating your account. Please contact an admin.", + "RandomTipsToggle": "Random tips are now {1}", + "ActionTipsToggle": "Action tips are now {1}", + "AutoSpawnLastCharToggle": "Automatic spawn as last used character is {1}", + "AccountGUISettingToggle": "🖥️ GUI is now {1}", + "On": "On", + "Off": "Off", + "Yes": "Yes", + "No": "No", + "True": "True", + "False": "False", + "Locked": "Locked", + "Unlocked": "Unlocked", + "PasswordNotGoodEnough": "The new password must meet the requirements!", + "PasswordNeedsBase": "Passwords must have at least {1}", + "PasswordNeedsCapitals": "{1} capital letters", + "PasswordNeedsNumbers": "{1} numbers", + "PasswordNeedsSymbols": "{1} symbols", + "PasswordsDontMatch": "The new password and confirm new password aren't the same!", + "PasswordChanged": "Your password has been changed!", + "AutoLoggedInIP": "You have been automatically logged in by IP!", + "WelcomeBack": "Welcome back to {1}, {2}! Please {3} to continue.", + "WelcomeNewPlayer": "Welcome to {1}, {2}! Please {3} to play.", + "InvalidPlayer": "Player not found!", + "InvalidBusiness": "Business not found!", + "InvalidHouse": "House not found!", + "InvalidVehicle": "Vehicle not found!", + "InvalidClan": "Clan not found!", + "InvalidClanRank": "Clan rank not found!", + "InvalidJob": "Job not found!", + "InvalidItem": "Item not found!", + "InvalidItemType": "Item type not found!", + "InvalidRadioStation": "Radio station not found!", + "InvalidGate": "Gate not found!", + "EntersProperty": "opens the door and enters the {1} ({2})", + "ExitsProperty": "opens the door and exits the {1} ({2})", + "EnterExitPropertyDoorLocked": "tries to open the {1} door but fails because it's locked", + "PropertyNoInterior": "This {1} does not have an interior, but you can still use commands at the door icon.", + "NoBusinessWithItemType": "There is no business with that item available", + "HeaderKeyBinds": "Key Binds", + "HeaderAccountHelp": "Account Help", + "HeaderVehicleHelp": "Vehicle Help", + "HeaderVehicleDealershipHelp": "Vehicle Dealership Help", + "HeaderJobHelp": "Job Help", + "HeaderChatHelp": "Chat Help", + "HeaderServerRules": "Server Rules", + "HeaderWebsiteInfo": "Website", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Animation List", + "HeaderPayAndSprayHelp": "Pay and Spray Help", + "HeaderAmmunationHelp": "Ammunation Help", + "HeaderVehicleTuneupHelp": "Vehicle Tune Help", + "HeaderBindableKeysHelp": "Bindable Keys", + "HeaderSkinHelp": "Clothes/Skin Help", + "HeaderBusinessHelp": "Business Help", + "HeaderClanHelp": "Clan Help", + "HeaderPlayerVehiclesList": "Player Vehicles ({1})", + "HeaderPlayerBusinessesList": "Player Businesses ({1})", + "HeaderClansList": "Clan List", + "HeaderAdminsList": "Admin List", + "HeaderAccentsList": "Accent List", + "HeaderPlayerInfo": "Player Information ({1})", + "HeaderWealthandTaxHelp": "Wealth and Tax Information", + "HeaderCommandInfo": "Command Information ({1})", + "HeaderRadioHelp": "Radio Help", + "HeaderRadioStationsList": "Radio Stations", + "HeaderKeyBindsList": "Key Binds List", + "RadioVolumeChanged": "{1} You changed your streaming radio volume to {2}%", + "VolumeLevelNotNumber": "The volume level must be a number", + "RadioStationLocationInvalid": "You must be in a vehicle, house, or business or have a personal device to change the station!", + "ActionBusinessRadioStationChange": "changes the business radio station to {1} ({2})", + "ActionHouseRadioStationChange": "changes the house radio station to {1} ({2})", + "ActionVehicleRadioStationChange": "changes the vehicle radio station to {1} ({2})", + "ActionItemRadioStationChange": "changes the {1}'s station to {2} ({3})", + "RandomVehicleCommandsDisabled": "This is a random traffic vehicle and commands can't be used for it.", + "HouseDoorLock": "House {1} {2}!", + "BusinessDoorLock": "Business {1} {2}!", + "ServerGameModeRestarting": "The server game mode is restarting!", + "HeaderSelfItemList": "Your Inventory", + "HeaderPlayerItemList": "Player Inventory ({1})", + "HeaderHouseItemList": "House Inventory", + "HeaderBusinessFloorItemList": "Business Inventory (For Sale)", + "HeaderBusinessStorageItemList": "Business Inventory (Storage)", + "HeaderItemItemList": "{1}'s Inventory", + "ItemSlotNotNumber": "The item slot must be a number", + "ItemSlotMustBeBetween": "The item slot must be between {1} and {2}!", + "UseItemBugged": "The item you're trying to use is bugged. A bug report has been sent to the server developers.", + "PickupItemBugged": "The item you're trying to pickup is bugged. A bug report has been sent to the server developers.", + "DropItemBugged": "The item you're trying to drop is bugged. A bug report has been sent to the server developers.", + "HandsBusy": "Your hands are busy", + "CantUseItemInSkinChange": "You can't use an item while customizing your appearance", + "CantDropItemInSkinChange": "You can't drop an item while customizing your appearance", + "CantPickupItemInSkinChange": "You can't pickup an item while customizing your appearance", + "CantSwitchItemInSkinChange": "You can't switch an item while customizing your appearance", + "CantGiveItemInSkinChange": "You can't give an item while customizing your appearance", + "CantTakeItemInSkinChange": "You can't take an item while customizing your appearance", + "ItemUnequippableNoAmmo": "The {1} in slot {2} has no ammo, and can't be equipped!", + "NoSpaceSelfInventory": "You don't have any more space in your inventory", + "Business": "business", + "House": "house", + "Clan": "clan", + "Vehicle": "vehicle", + "Item": "item", + "ItemType": "item type", + "Gate": "gate", + "Door": "door", + "ClanRank": "clan rank", + "JobRank": "job rank", + "RadioStation": "radio station", + "Months": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + "WeekDays": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "CardinalDirections": { + "North": "North", + "Northeast": "Northeast", + "East": "East", + "Southeast": "Southeast", + "South": "South", + "Southwest": "Southwest", + "West": "West", + "Northwest": "Northwest" + }, + "NewPlayerReadyToPlay": [ + "You have been given some cash. Use {1} to find places to buy items.", + "If you need money, jobs are the yellow dots on the radar.", + "For a car, visit the car dealership. You can also use a rental vehicle near spawn or take the train", + "Be sure to read the {1} and use {2} for info." + ], + "YourCurrentVehicleDeleted": "The vehicle you were in was deleted.", + "Distance": "Distance", + "Meters": "Meters", + "Feet": "Feet", + "Kilometers": "Kilometers", + "Miles": "Miles", + "MustBeVehicleDriver": "You must be the driver of the vehicle!", + "PlayerJoined": "{1} has joined the game from {2}!", + "PlayerLeftServer": "{1} has left the game! ({2})", + "TakeItemFromHouse": "takes a {1} from the house", + "TakeItemFromBusinessStorage": "takes a {1} from the business storage", + "TakeItemFromBusiness": "takes a {1} from the business", + "TakeItemFromItem": "takes a {1} from the {2}", + "TakeItemFromVehicleTrunk": "takes a {1} from the trunk", + "TakeItemFromVehicleDash": "takes a {1} from the glove compartment", + "AccountHelp": [ + "Do NOT share your password with anybody else. {1} staff will never ask you for your password", + "Use {1} to change your password, and {2} if you forgot it", + "Some settings you can use: {1}" + ], + "VehicleHelp": [ + "Your personal vehicles will save wherever you or somebody else leaves them!", + "Visit dealerships to buy new vehicles (Use {1} for more information)", + "Some commands: {1}", + "Visit a mechanic garage to repair, colour, and tune up your car! {1} for info" + ], + "VehicleDealershipHelp": [ + "Visit a vehicle dealer to buy new vehicles. Use {1} to find one.", + "At the dealer, enter a car you want to buy, and the price will be shown to you", + "If you want to buy the vehicle, use {1} and you will be given keys to test drive it around the parking lot.", + "Drive away from the dealership with the new vehicle to confirm the purchase." + ], + "JobHelp": [ + "Visit job locations to get a job and earn money. Look for yellow spots on the map", + "At a job location, use {1} to get the job. Use {2} to quit your job", + "Use {1} to begin working. You can also get a job {2} and {3}", + "Most job vehicles are locked. Use {1} near one to enter it.", + "When entering a job vehicle, information on how to do the job will be shown to you." + ], + "ChatHelp": [ + "There are two main types of chat: out-of-character (OOC) and in-character (IC)", + "Mixing these two types is not proper roleplay. See {1} for info.", + "Some chat commands: {1}", + "Some have shorter names available ({1} to talk, {2} to shout, etc)" + ], + "ServerRulesHelp": [ + "Unrealistic actions (powergaming) are not allowed. You aren't superman.", + "No terrorist or terrorism roleplay is allowed.", + "Always follow instructions given by moderators and admins.", + "Do not mix the chats (metagaming). You can't use info in IC that was received OOC", + "Keep English in main chats. If you aren't good at English, use {1}" + ], + "AnimationHelp": [ + "Animations allow you to enhance roleplay with visual actions", + "Use {1} or {2} with a name to use an animation.", + "To see a list of animations, use {1}" + ], + "WeaponHelp": [ + "Visit an gun store to buy weapons. Use {1} to find one.", + "Buying a weapon requires a weapon license.", + "Weapon licenses are managed by the police department. Apply there to get one.", + "Weapons can also be purchased illegally from some businesses, weapon dealers, and clans." + ], + "SkinHelp": [ + "At a clothing store, use {1} to purchase clothes", + "When you have a clothing item, equip and use it like any other item to show the skin selection (check {1} to learn how to use items)", + "Some skins are restricted to jobs, clans, or for other reasons." + ], + "KeyBindHelp": [ + "You can set your own key binds. Use {1} to see your binded keys.", + "Use {1} to add a new keybind and {2} to remove one.", + "Default keys are: {1} for vehicle engine, {2} for lights, and {3} for lock/unlock", + "Press {1} to see your items and {2} to equip an item or {3} to unequip all.", + "Press {1} to use the item you're holding, press {2} to drop it, or press {3} to pickup an item from the ground." + ], + "BusinessHelp": [ + "Use {1} to purchase items or {2} to see a list of what's for sale at any business", + "Businesses are shown with blue names above the icon at their entrance.", + "Business owner commands: {1}", + "A new car for sale will appear when you drive away from the dealer." + ], + "ClanHelp": [ + "Ask an administrator to create a clan (Similar to factions/groups/families)", + "Clan owners have full control over their clan once it's created", + "Clan commands: {1}", + "More clan commands: {1}" + ], + "RadioStationHelp": [ + "Use {1} to set the station for your vehicle, house, or business", + "Use {2} to see a list of stations", + "You can change your radio streaming volume using {1} with 0-100 as the percent" + ], + "WealthAndTaxHelp": [ + "Your taxes on payday are {1} percent of your calculated wealth.", + "Your calculated wealth is a total sum based on how many vehicles, houses, and businesses you have.", + "Each vehicle is {1}, each house is {2}, and each business is {3}", + "Use {1} to see your current wealth, and {2} to see how much you'll pay in tax each payday" + ], + "MustBeInAVehicle": "You need to be in a vehicle!", + "MustBeInOrNearVehicle": "You need to be in or near a vehicle!", + "MustBeInVehicleFrontSeat": "You need to be in the vehicle front seats!", + "MustBeInVehicleDriverSeat": "You need to be the driver!", + "DontHaveVehicleKey": "You don't have a key for this vehicle!", + "NoGateAccess": "You don't have access to this gate!", + "GateBroken": "This gate is broken!", + "GateHacked": "The gate does not respond!", + "RadioJammed": "You hear only static from the radio.", + "VehicleNotForSale": "This vehicle is not for sale!", + "VehicleNotForRent": "This vehicle is not for rent!", + "BusinessNotForSale": "This business is not for sale!", + "BusinessNotForRent": "This business is not for rent!", + "HouseNotForSale": "This house is not for sale!", + "HouseNotForRent": "This house is not for rent!", + "DealershipPurchaseTestDrive": "Drive the vehicle away from the dealership to buy it, or get out to cancel.", + "DealershipPurchaseExitedVehicle": "You canceled the vehicle purchase by exiting the vehicle!", + "VehiclePurchaseComplete": "This vehicle is now yours! It will save wherever you leave it.", + "VehiclePurchaseNotEnoughMoney": "You don't have enough money to buy this vehicle!", + "HousePurchaseNotEnoughMoney": "You don't have enough money to buy this house!", + "BusinessPurchaseNotEnoughMoney": "You don't have enough money to buy this business!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Player Houses ({1})", + "HeaderPlayerStaffFlagsList": "Player Staff Flags ({1})", + "HeaderStaffFlagsList": "Staff Flags", + "NonRPName": "Non-RP name! Choose a new one:", + "InvalidStaffFlag": "Staff flag not found!", + "InvalidClanFlag": "Clan flag not found!", + "InvalidLocale": "Language not found!", + "HeaderJobUniformList": "Job Uniforms ({1})", + "HeaderJobEquipmentList": "Job Equipment ({1})", + "InvalidJobUniform": "Job uniform not found!", + "InvalidJobEquipment": "Job equipment not found!", + "HeaderVehiclesInRangeList": "Vehicles within {1}", + "NoVehiclesWithinRange": "There are no vehicles within {1}", + "AmountNotNumber": "The amount must be a number!", + "NeedToBeWorking": "You need to be working! Use {1} at a job location or near a job vehicle.", + "NeedToBeOnJobRoute": "You need to be doing a job route! Use {1} in a job vehicle", + "CurrentJobRouteVehicleColoursChanged": "Your job route's vehicle colours were changed by an admin", + "NotYourJob": "This is not your job!", + "JobPoints": "You can get a job by going the yellow points on the map.", + "QuitJobToTakeAnother": "If you want this job, use {1} to quit your current job.", + "NotAJobVehicle": "This is not a job vehicle!", + "NotYourJobVehicle": "This is not your job's vehicle!", + "HeaderPickupTypes": "Pickup Types", + "HeaderBlipTypes": "Map Icon Types", + "InvalidGPSLocation": "There are no locations with that name or type", + "HeaderBusinessList": "Businesses", + "VehicleForSale": "This {1} is buyable for {2}! Use {3} if you want to buy it", + "VehicleForRent": "This {1} is rentable for {2}! Use {3} if you want to rent it", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Invalid password! {1} attempts remaining", + "LoginFailedNoPassword": "You must enter a password! ! {1} attempts remaining", + "RegistrationFailedNoPassword": "You must enter a password!", + "RegistrationFailedNoPasswordConfirm": "You must confirm the password!", + "RegistrationFailedNoEmail": "You must enter an email!", + "AccountNameAlreadyRegistered": "Your name is already registered!", + "AlreadyLoggedIn": "You are already logged in!", + "RegistrationFailedInvalidEmail": "That email is invalid!", + "RegistrationFailedPasswordMismatch": "The passwords don't match!", + "RegistrationFailedCreateError": "Your account couldn't be created!", + "RegistrationSuccess": "Your account has been created!", + "RegistrationEmailVerifyReminder": "Don't forget to verify your email! A verification code has been sent to you.", + "RegistrationCreateCharReminder": "To play on the server, you will need to make a character.", + "NoCharactersGUIMessage": "You have no characters. Would you like to make one?", + "NoCharactersGUIWindowTitle": "No characters", + "NoCharactersChatMessage": "You have no characters. Use {1} to make one.", + "NeedEmailFor2FA": "You need to add your email to your account to use two-factor authentication.", + "NeedEmailVerifiedFor2FA": "You need to verify your email to use two-factor authentication.", + "SetEmailHelpTip": "Use {1} to set your email.", + "VerifyEmailHelpTip": "Use {1} to verify your email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Nearby radio", + "FromRadio": "From radio", + "ToRadio": "To radio", + "NeedToEnterPropertyCommand": "You need to enter the {1} first! Use {2} to enter and exit", + "NeedToEnterPropertyKeyPress": "You need to enter the {1} first! Press {2} to enter and exit", + "InventoryFullCantCarry": "You don't have any space to carry this (full inventory)!", + "NotEnoughCashNeedAmountMore": "You don't have enough money! You need {1} more!", + "AmountMustBeMoreThan": "The amount must be more than {1}!", + "WeaponBanned": "You are not allowed to buy or use weapons!", + "TimeNotNumber": "The time must be a number", + "HeaderDefaultBusinessItemTypes": "Business Item Templates", + "FixingStuck": "Fixing your position and virtual world ...", + "CantUseCommandYet": "You must wait before you can use this command again!", + "NotATester": "You are not a tester!", + "AccessDenied": "Access Denied", + "InvalidSkin": "That skin is invalid!", + "HeaderInteriorTypes": "Interiors List", + "GUIAccountSettingToggle": "You have turned {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "You can buy a car by visiting a vehicle dealership. Use {1} for more information.", + "SkinCommandHelp": "You can change your skin by visiting a clothes store. Use {1} for more info.", + "BusinessVehiclesRespawned": "🚗 All business vehicles have been respawned by an admin!", + "JobVehiclesRespawned": "🚗 All job vehicles have been respawned by an admin!", + "PlayerVehiclesRespawned": "🚗 All player vehicles have been respawned by an admin!", + "ClanVehiclesRespawned": "🚗 All clan vehicles have been respawned by an admin!", + "PublicVehiclesRespawned": "🚗 All public have been respawned by an admin!", + "EmptyVehiclesRespawned": "🚗 All empty vehicles have been respawned by an admin!", + "AllVehiclesRespawned": "🚗 All vehicles have been respawned by an admin!", + "AllVehiclesReloaded": "🚗 All vehicles have been reloaded by an admin!", + "YourVehicleRespawned": "🚗 Your vehicle has been respawned!", + "PlayerIPBanned": "💀 {1} has been IP banned!", + "PlayerCharacterBanned": "💀 {1} has been character banned!", + "PlayerSubNetBanned": "💀 {1} has been subnet banned!", + "CantModifyBusiness": "You can't manage or modify this business!", + "CantModifyHouse": "You can't manage or modify this house!", + "ServerTimeSet": "⏰ {1} set the time to {2}", + "ServerWeatherSet": "☁️ {1} set the weather to {2}", + "ServerSnowSet": "❄️ {1} turned falling snow {2} and ground snow {3}", + "AllJobsReloaded": "💼 All server jobs have been reloaded by an admin", + "ServerLogoSet": "{1} turned the server logo image {2}", + "ServerGUISet": "🖥️ {1} turned GUI for this server {2}", + "ServerBusinessBlipsSet": "🏢 {1} turned all business blips {2}", + "ServerHouseBlipsSet": "🏘️ {1} turned all house blips {2}", + "ServerJobBlipsSet": "💼 {1} turned all job blips {2}", + "ServerBusinessPickupsSet": "🏢 {1} turned all business pickups {2}", + "ServerHousePickupsSet": "🏘️ {1} turned all house pickups {2}", + "ServerJobPickupsSet": "💼 {1} turned on all job pickups {2}", + "BusinessBuyItemsLabel": "Use {1} to purchase items", + "PropertyEnterCommandLabel": "Use {1} to enter", + "PropertyEnterKeyPressLabel": "Press {1} to enter", + "PropertyForSaleLabel": "For sale: {1}", + "PropertyForRentLabel": "For rent: {1} every payday", + "RemainingTaxPaidInMoney": "You covered the remaining taxes with {1} in cash.", + "LostMoneyFromTaxes": "You lost money since your taxes are more than your paycheck!", + "NextPaycheckRepossessionWarning": "If you don't have enough cash to cover taxes on next paycheck, you will lose stuff!", + "NotEnoughMoneyForTax": "You don't have enough money to cover your taxes!", + "AssetsRepossessedForTax": "You lost {1} vehicles, {2} houses, and {3} businesses because you couldn't pay taxes!", + "Closed": "Closed", + "Open": "Open", + "VehicleDealershipLabel": "Enter a vehicle as driver to buy it", + "TakeJobLabel": "Use {1} to work here", + "StartWorkLabel": "Use {1} to start working", + "JobEquipAndUniformLabel": "Use {1} and {2} for job stuff, or {3} to stop working", + "NotYourJobLabel": "You already have a different job. Use {1} if you want this one", + "JobLabel": "{1} Job", + "PaydayBonusSet": "🤑 {1} set the payday bonus to {2}", + "AllHousesReloaded": "🏘️ All houses have been reloaded by an admin", + "AllRadioStationsReloaded": "📻 All radio stations have been reloaded by an admin!", + "PlayerKicked": "🦶 {1} has been kicked from the server", + "AllBusinessesReloaded": "🏢 All businesses have been reloaded by an admin!", + "UnableToDoThat": "You aren't able to do that", + "SetVehicleClanConfirmMessage": "Are you sure you want to give this vehicle to your clan?", + "SetVehicleClanConfirmTitle": "Warning!", + "SetItemPriceBelowOrderPriceMessage": "Are you sure you want to set the item price below it's order price? You will lose {1} every purchase!", + "SetItemPriceBelowOrderPriceTitle": "Warning!", + "MustOwnVehicle": "You don't own this vehicle!", + "RandomTips": [ + "Look for yellow dots on your map for job locations", + "You can set custom key binds. Use {1} for details", + "Use {1} if you don't want to see tips and extra information", + "You can edit your keybinds using {1} and {2}", + "Press ℹ️ to see your inventory, and use number keys to select an item", + "Use {1} at a business to purchase items", + "Found a bug? Report it with {1}", + "Have an idea or suggestion for the server? Let the devs know using {1}", + "Want to buy a business? Use {1} at one for sale", + "Want to buy a house? Use {1} at one for sale", + "Want to buy a vehicle? Visit a dealership and enter one for info on how to buy it!", + "Switch to any of your characters with {1}", + "Use {1} to automatically login when connecting with the same IP", + "Use {1} to turn on/off the lights in your house or business", + "Use {1} to play an internet radio station in your car, house, or business", + "Want to make a clan? Use {1} for details", + "Legal weapons can be purchased at any ammunation" + ], + "PromptResponseTip": "Use {1} to accept or {2} to decline", + "PlayerConnecting": "👋 {1} is connecting to the server ...", + "GetStartedJobVehicle": "Get in a {1} to get started.", + "VehicleTypes": { + "Car": "Car", + "Truck": "Truck", + "Van": "Van", + "Taxi": "Taxi", + "Bus": "Bus", + "PoliceCar": "Police Car", + "Ambulance": "Ambulance", + "FireTruck": "Fire Truck", + "Bike": "Bike", + "Motorbike": "Motorbike", + "Boat": "Boat", + "Helicopter": "Helicopter", + "Plane": "Plane", + "Train": "Train" + }, + "AlreadyOnJobRoute": "You are already doing a job route!", + "GaveVehicleToClan": "You gave this {1} to your clan!", + "JobDisabled": "This job is disabled!", + "SetHouseClanConfirmMessage": "Are you sure you want to give this house to your clan?", + "SetHouseClanConfirmTitle": "Warning!", + "SetBusinessClanConfirmMessage": "Are you sure you want to give this business to your clan?", + "SetBusinessClanConfirmTitle": "Warning!", + "MustOwnHouse": "You don't own this house!", + "MustOwnBusiness": "You don't own this business!", + "GaveHouseToClan": "You gave this house to your clan!", + "GaveBusinessToClan": "You gave this business to your clan!", + "BuyBusinessConfirmMessage": "Are you sure you want to buy this business?", + "BuyBusinessConfirmTitle": "Attention!", + "BuyHouseConfirmMessage": "Are you sure you want to buy this house?", + "BuyHouseConfirmTitle": "Attention!", + "BuyBusinessLabel": "Use {1} to buy this business", + "BuyHouseLabel": "Use {1} to buy this house", + "RentHouseLabel": "Use {1} to rent this house", + "AccountEmailAlreadyVerified": "You already set and verified your email!", + "EmailVerificationCodeSent": "A verification code and instructions have been sent to your email.", + "GUIPlayAsCharacterButton": "Play", + "GUINewCharacterButton": "New character", + "GUIPreviousCharacterButton": "Previous", + "GUINextCharacterButton": "Next", + "GUICharacterSelectWindowTitle": "Select a character", + "GUICharacterSelectMoneyLabel": "Money: {1}", + "GUICharacterSelectClanLabel": "Clan: {1}", + "GUICharacterSelectLastPlayedLabel": "Last Played: {1} days, {2} hours, {3} minutes ago", + "GUILoginWindowLabelEnterPassword": "Please enter your password", + "GUILoginWindowSubmitButton": "Login", + "GUILoginWindowResetPasswordButton": "Reset", + "GUILoginWindowPasswordPlaceholder": "Password", + "GUILoginWindowForgotPasswordLabel": "Forgot your password?", + "GUIRegisterWindowLabelCreateAccount": "Create an account", + "GUIRegisterWindowPasswordPlaceholder": "Password", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Confirm password", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Create account", + "GUINewCharacterMessageLabel": "Name your character", + "GUINewCharacterFirstNamePlaceholder": "First Name", + "GUINewCharacterLastNamePlaceholder": "Last Name", + "GUINewCharacterSubmitButton": "Create Character", + "GUIChangePasswordWindowTitle": "Change Password", + "GUIChangePasswordPasswordLabel": "Enter a new password", + "GUIChangePasswordPasswordPlaceholder": "Password", + "GUIChangePasswordConfirmPasswordPlaceholder": "Confirm password", + "GUIChangePasswordSubmitButton": "Change Password", + "GUIResetPasswordWindowMessage": "Reset Password", + "GUIResetPasswordConfirmEmailLabel": "Please confirm your email", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Reset Password", + "GUIResetPasswordLoginButton": "Login", + + "GUIResetPasswordRememberMessage": "Remember your password?", + "HeaderJobList": "Jobs", + "HeaderBusinessInfo": "Business Info", + "HeaderHouseInfo": "House Info", + "HeaderClanInfo": "Clan Info", + "Locales": { + "English": "English", + "Russian": "Russian", + "Spanish": "Spanish", + "German": "German", + "Dutch": "Dutch", + "Polish": "Polish", + "Chinese": "Chinese", + "French": "French", + "Japanese": "Japanese", + "Slovak": "Slovak", + "Arabic": "Arabic" + }, + "TwoFactorAuthSet": "⚙️ You have turned two factor authentication {1}", + "AccountServerLogoSet": "⚙️ You turned the server logo {1}", + "ChatScrollLinesNotNumber": "The line amount must be a number", + "ChatScrollLinesMustBeBetween": "The line amount must be between {1} and {2}", + "ChatScrollLinesSet": "The chatbox will now scroll {1} lines at a time", + "InvalidEmailVerificationCode": "Invalid email verification code! A new one has been created and sent to your email.", + "EmailVerified": "Your email has been verified", + "EmailVerifiedTip": "You can now use your email for password resets, two-factor authentication, login alerts, and more", + "CommandRequiresLogin": "You must be logged in to use the {1} command", + "CommandDisabled": "The {1} command is disabled", + "CommandDisabledOnDiscord": "The {1} command isn't available on discord", + "CommandNotFoundHelpTip": "The command {1} does not exist! Use {2} for commands and information.", + "CommandNotFoundPossibleMatchTip": "The command {1} does not exist! Did you mean {2}?", + "CommandNoPermissions": "You don't have permission to use the {1} command", + "GUIResetPasswordCodeInputLabel": "Check your email for a code", + "GUIResetPasswordCodePlaceholder": "Verification code", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Warning", + "GUIInfoTitle": "Info", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Invalid email!", + "HeaderVehicleInfo": "Vehicle Info", + "HeaderClanRanksList": "Clan Ranks ({1})", + "HeaderNPCInfo": "NPC Info", + "NPCAnimationSet": "You set NPC {1} animation to {2}", + "NPCNameSet": "You set NPC {1} name to {2}", + "VehicleTooFar": "You are too far away from the vehicle!", + "HeaderPropertyTemplateTypes": "Property Types", + "MustBeLoggedInAndSpawnedToChat": "You need to be logged in and spawned before you can chat!", + "MutedCantChat": "You are muted and can't chat!", + "CantUseMegaphone": "You must equip a megaphone item or be in an emergency vehicle!", + "HeaderAnimationHelp": "Animation Info", + "HeaderBadgeInfo": "Badge Information ({1})", + "NoItemCloseEnough": "There is no item close enough", + "CantDropJobEquipmentItem": "You can't drop job items", + "CantPutJobEquipmentItem": "You can't store job items", + "NoItemEquipped": "You don't have any item selected", + "NoItemInActiveSlot": "You don't have an item in your active item slot", + "CantPutItemInSkinChange": "You can't store an item while customizing your appearance", + "NothingToTakeItemFrom": "You aren't near anything to take items from", + "NoAmmoToLoadIntoWeapon": "You don't have any ammo to load into the {1}", + "LoadAmmoIntoWeaponHelpCommand": "To load this ammo into a weapon, equip the weapon and type {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "To load this ammo into a weapon, equip the weapon and press {1}", + "NobodyCloseEnoughToHandcuff": "Nobody is close enough to handcuff", + "NobodyCloseEnoughToTie": "Nobody is close enough to tie up", + "PlayerNotSurrenderedHandcuff": "{1} can't be handcuffed! They either need to have their hands up, be knocked out, or tazed", + "PlayerNotSurrenderedTie": "{1} can't be tied! They either need to have their hands up, be knocked out, or tazed", + "HeaderCharactersListSelf": "Your Characters", + "HeaderCharactersListOther": "{1}'s Characters", + "CharacterSelectHelpText": "Use {1} to select a character, or {2} to create a new character", + "ItemDoesntDoAnythingOnUse": "The {1} doesn't do anything when you try to use it.", + "ItemRadioStationTip": "Use {1} to set the radio station", + "VehicleLockedCommandTip": "🔒 This {1} is locked. Use {2} to unlock it", + "VehicleLockedKeyPressTip": "🔒 This {1} is locked. Press {2} to unlock it", + "VehicleLockedCantUnlock": "🔒 This {1} is locked and you don't have the keys to unlock it", + "CurrentlyRentingThisVehicle": "You are renting this {1} for {2} per minute. Use {3} if you want to stop renting it.", + "VehicleBelongsTo": "This {1} belongs to {2} ({3})", + "NotOwned": "Not Owned", + "NotCloseEnoughToItemContainer": "You are not close enough to anything that holds items", + "Job": "Job", + "Player": "Player", + "BusinessIsNowPaintBall": "This business is now a paintball arena", + "JoinedPaintBall": "You have joined the paintball game.", + "ItemsStoredForPaintBall": "Your items are stored in your locker and will be returned when you leave the paintball game", + "LeftPaintBall": "You have left the paintball game. Your items have been returned.", + "PaintBallEnded": "The paintball match has ended. Your items have been returned.", + "HeaderEventWinners": "Winners", + "YourPaintBallResults": "You got {1} kills and {2} deaths in the paintball match", + "NoPrivateMessageToReply": "You haven't received a private message to reply to", + + "WeaponDoesNotUseAmmo": "The {1} doesn't use ammo", + "ChatBoxTimestampsToggle": "You turned {1} time display in the chatbox", + "ProfanityFilterSet": "You turned chat profanity filter {1}", + "ResetAllKeyBindsConfirm": "Are you sure you want to reset all your keybinds to default?", + "NotRentingAVehicle": "You are not renting a vehicle!", + "StoppedRentingVehicle": "You stopped renting the {1}", + "VehicleEngineStartKeyPressTip": "The {1} engine is off. Press {2} to start it.", + "VehicleEngineStartCommandTip": "The {1} engine is off. Use {2} to start it.", + "StartedRentingVehicle": "You are now renting this {1} for {2} per minute. To stop renting, use {3}", + "VehicleAlreadyRentedByOther": "This vehicle is already rented by someone else", + "VehicleAlreadyRentedBySelf": "You are already renting this vehicle", + "JobRankTooLow": "You are not high enough rank!", + "InvalidKeyName": "The key ID or name you input is invalid!", + "KeyBindsReset": "All your keybinds have been reset to default", + "KeyBindNameTip": "Use simple key names, letters, or numbers. Don't add spaces.", + "UniversalInlineExamplesList": "Examples: {1}", + "KeyBindRemoved": "You removed the keybind for the {1} key", + "KeyBindAdded": "You binded key {1} to {2}", + "CopyAllKeyBindsToServerConfirm": "Are you sure you want to copy all your keybinds to the {1} server?", + "CopiedAllKeyBindsToServer": "All your keybinds have been copied to the {1} server", + "MustBeSpawned": "You must be spawned!", + "ChatEmojiSet": "You turned automatic emoji in chat {1}", + "FishingLineNotCast": "Your fishing line isn't cast!", + "CantFishHere": "You can't fish here! You need to be near water or on a boat!", + "NeedFishingRod": "You need to be holding a fishing rod!", + "FishingCastCommandHelp": "Use {1} to cast your fishing line", + "FishingCastKeyBindHelp": "Press {1} to cast your fishing line", + "Paused": "Paused", + "PaintBallAlmostWin": "{1} only needs {2} more kills to win the paintball match!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOn": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} \ No newline at end of file diff --git a/locale/lithuanian.json b/locale/lithuanian.json new file mode 100644 index 00000000..9ee90fa4 --- /dev/null +++ b/locale/lithuanian.json @@ -0,0 +1,753 @@ +{ + "TranslationProvidedBy": "dovis", + "LocaleEnglishName": "Lithuanian", + + "LocaleNativeName": "Lithuanian", + "LocaleOffer": "This server is available in Lithuanian. Use {1} to use it.", + "LocaleChanged1": "Your language is now set to {1}", + "LocaleChanged2": "The server will now display messages in {1}", + "LocaleChangedNote": "This does not change messages from other players", + "AccentsListHeader": "Accents", + "HelpMainListHeader": "Help Categories", + "AccentNotFound": "Accent not found", + "AccentSet": "You set your accent to {1}", + "InvalidAnimation": "That animation doesn't exist", + "AnimationCommandTip": "Use {1} to see a list of valid animations", + "InvalidAnimationDistance": "The distance must be between 0 and 3", + "CantBanClient": "You cannot ban this person", + "PlayerAccountBanned": "{1} has been account banned", + "ClanNotFound": "Clan not found", + "ClanNameTaken": "A clan with that name already exists", + "PlayerNotFound": "Player not found", + "ClanCantRemoveRanks": "You can't remove clan ranks", + "ClanCantAddRanks": "You can't add clan ranks", + "ClanRankNotFound": "Clan rank not found", + "ClanCantChangeMemberTag": "You can not change clan member's tags", + "ClanPlayerNotInSameClan": "That player is not in your clan", + "ClanCantChangeRankLevel": "You can not change clan rank's level", + "ClanCantChangeRankTag": "You can not change clan rank's tags", + "NameNotRegistered": "Your name is not registered! Use {1} to make an account.", + "AutomaticLoginIPToggle": "Automatic login by IP is now {1}", + "CouldNotRegisterAccount": "There was a problem creating your account. Please contact an admin.", + "RandomTipsToggle": "Random tips are now {1}", + "ActionTipsToggle": "Action tips are now {1}", + "AutoSpawnLastCharToggle": "Automatic spawn as last used character is {1}", + "AccountGUISettingToggle": "🖥️ GUI is now {1}", + "On": "On", + "Off": "Off", + "Yes": "Yes", + "No": "No", + "True": "True", + "False": "False", + "Locked": "Locked", + "Unlocked": "Unlocked", + "PasswordNotGoodEnough": "The new password must meet the requirements!", + "PasswordNeedsBase": "Passwords must have at least {1}", + "PasswordNeedsCapitals": "{1} capital letters", + "PasswordNeedsNumbers": "{1} numbers", + "PasswordNeedsSymbols": "{1} symbols", + "PasswordsDontMatch": "The new password and confirm new password aren't the same!", + "PasswordChanged": "Your password has been changed!", + "AutoLoggedInIP": "You have been automatically logged in by IP!", + "WelcomeBack": "Welcome back to {1}, {2}! Please {3} to continue.", + "WelcomeNewPlayer": "Welcome to {1}, {2}! Please {3} to play.", + "InvalidPlayer": "Player not found!", + "InvalidBusiness": "Business not found!", + "InvalidHouse": "House not found!", + "InvalidVehicle": "Vehicle not found!", + "InvalidClan": "Clan not found!", + "InvalidClanRank": "Clan rank not found!", + "InvalidJob": "Job not found!", + "InvalidItem": "Item not found!", + "InvalidItemType": "Item type not found!", + "InvalidRadioStation": "Radio station not found!", + "InvalidGate": "Gate not found!", + "EntersProperty": "opens the door and enters the {1} ({2})", + "ExitsProperty": "opens the door and exits the {1} ({2})", + "EnterExitPropertyDoorLocked": "tries to open the {1} door but fails because it's locked", + "PropertyNoInterior": "This {1} does not have an interior, but you can still use commands at the door icon.", + "NoBusinessWithItemType": "There is no business with that item available", + "HeaderKeyBinds": "Key Binds", + "HeaderAccountHelp": "Account Help", + "HeaderVehicleHelp": "Vehicle Help", + "HeaderVehicleDealershipHelp": "Vehicle Dealership Help", + "HeaderJobHelp": "Job Help", + "HeaderChatHelp": "Chat Help", + "HeaderServerRules": "Server Rules", + "HeaderWebsiteInfo": "Website", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Animation List", + "HeaderPayAndSprayHelp": "Pay and Spray Help", + "HeaderAmmunationHelp": "Ammunation Help", + "HeaderVehicleTuneupHelp": "Vehicle Tune Help", + "HeaderBindableKeysHelp": "Bindable Keys", + "HeaderSkinHelp": "Clothes/Skin Help", + "HeaderBusinessHelp": "Business Help", + "HeaderClanHelp": "Clan Help", + "HeaderPlayerVehiclesList": "Player Vehicles ({1})", + "HeaderPlayerBusinessesList": "Player Businesses ({1})", + "HeaderClansList": "Clan List", + "HeaderAdminsList": "Admin List", + "HeaderAccentsList": "Accent List", + "HeaderPlayerInfo": "Player Information ({1})", + "HeaderWealthandTaxHelp": "Wealth and Tax Information", + "HeaderCommandInfo": "Command Information ({1})", + "HeaderRadioHelp": "Radio Help", + "HeaderRadioStationsList": "Radio Stations", + "HeaderKeyBindsList": "Key Binds List", + "RadioVolumeChanged": "{1} You changed your streaming radio volume to {2}%", + "VolumeLevelNotNumber": "The volume level must be a number", + "RadioStationLocationInvalid": "You must be in a vehicle, house, or business or have a personal device to change the station!", + "ActionBusinessRadioStationChange": "changes the business radio station to {1} ({2})", + "ActionHouseRadioStationChange": "changes the house radio station to {1} ({2})", + "ActionVehicleRadioStationChange": "changes the vehicle radio station to {1} ({2})", + "ActionItemRadioStationChange": "changes the {1}'s station to {2} ({3})", + "RandomVehicleCommandsDisabled": "This is a random traffic vehicle and commands can't be used for it.", + "HouseDoorLock": "House {1} {2}!", + "BusinessDoorLock": "Business {1} {2}!", + "ServerGameModeRestarting": "The server game mode is restarting!", + "HeaderSelfItemList": "Your Inventory", + "HeaderPlayerItemList": "Player Inventory ({1})", + "HeaderHouseItemList": "House Inventory", + "HeaderBusinessFloorItemList": "Business Inventory (For Sale)", + "HeaderBusinessStorageItemList": "Business Inventory (Storage)", + "HeaderItemItemList": "{1}'s Inventory", + "ItemSlotNotNumber": "The item slot must be a number", + "ItemSlotMustBeBetween": "The item slot must be between {1} and {2}!", + "UseItemBugged": "The item you're trying to use is bugged. A bug report has been sent to the server developers.", + "PickupItemBugged": "The item you're trying to pickup is bugged. A bug report has been sent to the server developers.", + "DropItemBugged": "The item you're trying to drop is bugged. A bug report has been sent to the server developers.", + "HandsBusy": "Your hands are busy", + "CantUseItemInSkinChange": "You can't use an item while customizing your appearance", + "CantDropItemInSkinChange": "You can't drop an item while customizing your appearance", + "CantPickupItemInSkinChange": "You can't pickup an item while customizing your appearance", + "CantSwitchItemInSkinChange": "You can't switch an item while customizing your appearance", + "CantGiveItemInSkinChange": "You can't give an item while customizing your appearance", + "CantTakeItemInSkinChange": "You can't take an item while customizing your appearance", + "ItemUnequippableNoAmmo": "The {1} in slot {2} has no ammo, and can't be equipped!", + "NoSpaceSelfInventory": "You don't have any more space in your inventory", + "Business": "business", + "House": "house", + "Clan": "clan", + "Vehicle": "vehicle", + "Item": "item", + "ItemType": "item type", + "Gate": "gate", + "Door": "door", + "ClanRank": "clan rank", + "JobRank": "job rank", + "RadioStation": "radio station", + "Months": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + "WeekDays": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "CardinalDirections": { + "North": "North", + "Northeast": "Northeast", + "East": "East", + "Southeast": "Southeast", + "South": "South", + "Southwest": "Southwest", + "West": "West", + "Northwest": "Northwest" + }, + "NewPlayerReadyToPlay": [ + "You have been given some cash. Use {1} to find places to buy items.", + "If you need money, jobs are the yellow dots on the radar.", + "For a car, visit the car dealership. You can also use a rental vehicle near spawn or take the train", + "Be sure to read the {1} and use {2} for info." + ], + "YourCurrentVehicleDeleted": "The vehicle you were in was deleted.", + "Distance": "Distance", + "Meters": "Meters", + "Feet": "Feet", + "Kilometers": "Kilometers", + "Miles": "Miles", + "MustBeVehicleDriver": "You must be the driver of the vehicle!", + "PlayerJoined": "{1} has joined the game from {2}!", + "PlayerLeftServer": "{1} has left the game! ({2})", + "TakeItemFromHouse": "takes a {1} from the house", + "TakeItemFromBusinessStorage": "takes a {1} from the business storage", + "TakeItemFromBusiness": "takes a {1} from the business", + "TakeItemFromItem": "takes a {1} from the {2}", + "TakeItemFromVehicleTrunk": "takes a {1} from the trunk", + "TakeItemFromVehicleDash": "takes a {1} from the glove compartment", + "AccountHelp": [ + "Do NOT share your password with anybody else. {1} staff will never ask you for your password", + "Use {1} to change your password, and {2} if you forgot it", + "Some settings you can use: {1}" + ], + "VehicleHelp": [ + "Your personal vehicles will save wherever you or somebody else leaves them!", + "Visit dealerships to buy new vehicles (Use {1} for more information)", + "Some commands: {1}", + "Visit a mechanic garage to repair, colour, and tune up your car! {1} for info" + ], + "VehicleDealershipHelp": [ + "Visit a vehicle dealer to buy new vehicles. Use {1} to find one.", + "At the dealer, enter a car you want to buy, and the price will be shown to you", + "If you want to buy the vehicle, use {1} and you will be given keys to test drive it around the parking lot.", + "Drive away from the dealership with the new vehicle to confirm the purchase." + ], + "JobHelp": [ + "Visit job locations to get a job and earn money. Look for yellow spots on the map", + "At a job location, use {1} to get the job. Use {2} to quit your job", + "Use {1} to begin working. You can also get a job {2} and {3}", + "Most job vehicles are locked. Use {1} near one to enter it.", + "When entering a job vehicle, information on how to do the job will be shown to you." + ], + "ChatHelp": [ + "There are two main types of chat: out-of-character (OOC) and in-character (IC)", + "Mixing these two types is not proper roleplay. See {1} for info.", + "Some chat commands: {1}", + "Some have shorter names available ({1} to talk, {2} to shout, etc)" + ], + "ServerRulesHelp": [ + "Unrealistic actions (powergaming) are not allowed. You aren't superman.", + "No terrorist or terrorism roleplay is allowed.", + "Always follow instructions given by moderators and admins.", + "Do not mix the chats (metagaming). You can't use info in IC that was received OOC", + "Keep English in main chats. If you aren't good at English, use {1}" + ], + "AnimationHelp": [ + "Animations allow you to enhance roleplay with visual actions", + "Use {1} or {2} with a name to use an animation.", + "To see a list of animations, use {1}" + ], + "WeaponHelp": [ + "Visit an gun store to buy weapons. Use {1} to find one.", + "Buying a weapon requires a weapon license.", + "Weapon licenses are managed by the police department. Apply there to get one.", + "Weapons can also be purchased illegally from some businesses, weapon dealers, and clans." + ], + "SkinHelp": [ + "At a clothing store, use {1} to purchase clothes", + "When you have a clothing item, equip and use it like any other item to show the skin selection (check {1} to learn how to use items)", + "Some skins are restricted to jobs, clans, or for other reasons." + ], + "KeyBindHelp": [ + "You can set your own key binds. Use {1} to see your binded keys.", + "Use {1} to add a new keybind and {2} to remove one.", + "Default keys are: {1} for vehicle engine, {2} for lights, and {3} for lock/unlock", + "Press {1} to see your items and {2} to equip an item or {3} to unequip all.", + "Press {1} to use the item you're holding, press {2} to drop it, or press {3} to pickup an item from the ground." + ], + "BusinessHelp": [ + "Use {1} to purchase items or {2} to see a list of what's for sale at any business", + "Businesses are shown with blue names above the icon at their entrance.", + "Business owner commands: {1}", + "A new car for sale will appear when you drive away from the dealer." + ], + "ClanHelp": [ + "Ask an administrator to create a clan (Similar to factions/groups/families)", + "Clan owners have full control over their clan once it's created", + "Clan commands: {1}", + "More clan commands: {1}" + ], + "RadioStationHelp": [ + "Use {1} to set the station for your vehicle, house, or business", + "Use {2} to see a list of stations", + "You can change your radio streaming volume using {1} with 0-100 as the percent" + ], + "WealthAndTaxHelp": [ + "Your taxes on payday are {1} percent of your calculated wealth.", + "Your calculated wealth is a total sum based on how many vehicles, houses, and businesses you have.", + "Each vehicle is {1}, each house is {2}, and each business is {3}", + "Use {1} to see your current wealth, and {2} to see how much you'll pay in tax each payday" + ], + "MustBeInAVehicle": "You need to be in a vehicle!", + "MustBeInOrNearVehicle": "You need to be in or near a vehicle!", + "MustBeInVehicleFrontSeat": "You need to be in the vehicle front seats!", + "MustBeInVehicleDriverSeat": "You need to be the driver!", + "DontHaveVehicleKey": "You don't have a key for this vehicle!", + "NoGateAccess": "You don't have access to this gate!", + "GateBroken": "This gate is broken!", + "GateHacked": "The gate does not respond!", + "RadioJammed": "You hear only static from the radio.", + "VehicleNotForSale": "This vehicle is not for sale!", + "VehicleNotForRent": "This vehicle is not for rent!", + "BusinessNotForSale": "This business is not for sale!", + "BusinessNotForRent": "This business is not for rent!", + "HouseNotForSale": "This house is not for sale!", + "HouseNotForRent": "This house is not for rent!", + "DealershipPurchaseTestDrive": "Drive the vehicle away from the dealership to buy it, or get out to cancel.", + "DealershipPurchaseExitedVehicle": "You canceled the vehicle purchase by exiting the vehicle!", + "VehiclePurchaseComplete": "This vehicle is now yours! It will save wherever you leave it.", + "VehiclePurchaseNotEnoughMoney": "You don't have enough money to buy this vehicle!", + "HousePurchaseNotEnoughMoney": "You don't have enough money to buy this house!", + "BusinessPurchaseNotEnoughMoney": "You don't have enough money to buy this business!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Player Houses ({1})", + "HeaderPlayerStaffFlagsList": "Player Staff Flags ({1})", + "HeaderStaffFlagsList": "Staff Flags", + "NonRPName": "Non-RP name! Choose a new one:", + "InvalidStaffFlag": "Staff flag not found!", + "InvalidClanFlag": "Clan flag not found!", + "InvalidLocale": "Language not found!", + "HeaderJobUniformList": "Job Uniforms ({1})", + "HeaderJobEquipmentList": "Job Equipment ({1})", + "InvalidJobUniform": "Job uniform not found!", + "InvalidJobEquipment": "Job equipment not found!", + "HeaderVehiclesInRangeList": "Vehicles within {1}", + "NoVehiclesWithinRange": "There are no vehicles within {1}", + "AmountNotNumber": "The amount must be a number!", + "NeedToBeWorking": "You need to be working! Use {1} at a job location or near a job vehicle.", + "NeedToBeOnJobRoute": "You need to be doing a job route! Use {1} in a job vehicle", + "CurrentJobRouteVehicleColoursChanged": "Your job route's vehicle colours were changed by an admin", + "NotYourJob": "This is not your job!", + "JobPoints": "You can get a job by going the yellow points on the map.", + "QuitJobToTakeAnother": "If you want this job, use {1} to quit your current job.", + "NotAJobVehicle": "This is not a job vehicle!", + "NotYourJobVehicle": "This is not your job's vehicle!", + "HeaderPickupTypes": "Pickup Types", + "HeaderBlipTypes": "Map Icon Types", + "InvalidGPSLocation": "There are no locations with that name or type", + "HeaderBusinessList": "Businesses", + "VehicleForSale": "This {1} is buyable for {2}! Use {3} if you want to buy it", + "VehicleForRent": "This {1} is rentable for {2}! Use {3} if you want to rent it", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Invalid password! {1} attempts remaining", + "LoginFailedNoPassword": "You must enter a password! ! {1} attempts remaining", + "RegistrationFailedNoPassword": "You must enter a password!", + "RegistrationFailedNoPasswordConfirm": "You must confirm the password!", + "RegistrationFailedNoEmail": "You must enter an email!", + "AccountNameAlreadyRegistered": "Your name is already registered!", + "AlreadyLoggedIn": "You are already logged in!", + "RegistrationFailedInvalidEmail": "That email is invalid!", + "RegistrationFailedPasswordMismatch": "The passwords don't match!", + "RegistrationFailedCreateError": "Your account couldn't be created!", + "RegistrationSuccess": "Your account has been created!", + "RegistrationEmailVerifyReminder": "Don't forget to verify your email! A verification code has been sent to you.", + "RegistrationCreateCharReminder": "To play on the server, you will need to make a character.", + "NoCharactersGUIMessage": "You have no characters. Would you like to make one?", + "NoCharactersGUIWindowTitle": "No characters", + "NoCharactersChatMessage": "You have no characters. Use {1} to make one.", + "NeedEmailFor2FA": "You need to add your email to your account to use two-factor authentication.", + "NeedEmailVerifiedFor2FA": "You need to verify your email to use two-factor authentication.", + "SetEmailHelpTip": "Use {1} to set your email.", + "VerifyEmailHelpTip": "Use {1} to verify your email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Nearby radio", + "FromRadio": "From radio", + "ToRadio": "To radio", + "NeedToEnterPropertyCommand": "You need to enter the {1} first! Use {2} to enter and exit", + "NeedToEnterPropertyKeyPress": "You need to enter the {1} first! Press {2} to enter and exit", + "InventoryFullCantCarry": "You don't have any space to carry this (full inventory)!", + "NotEnoughCashNeedAmountMore": "You don't have enough money! You need {1} more!", + "AmountMustBeMoreThan": "The amount must be more than {1}!", + "WeaponBanned": "You are not allowed to buy or use weapons!", + "TimeNotNumber": "The time must be a number", + "HeaderDefaultBusinessItemTypes": "Business Item Templates", + "FixingStuck": "Fixing your position and virtual world ...", + "CantUseCommandYet": "You must wait before you can use this command again!", + "NotATester": "You are not a tester!", + "AccessDenied": "AccessDenied", + "InvalidSkin": "That skin is invalid!", + "HeaderInteriorTypes": "Interiors List", + "GUIAccountSettingToggle": "You have turned {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "You can buy a car by visiting a vehicle dealership. Use {1} for more information.", + "SkinCommandHelp": "You can change your skin by visiting a clothes store. Use {1} for more info.", + "BusinessVehiclesRespawned": "🚗 All business vehicles have been respawned by an admin!", + "JobVehiclesRespawned": "🚗 All job vehicles have been respawned by an admin!", + "PlayerVehiclesRespawned": "🚗 All player vehicles have been respawned by an admin!", + "ClanVehiclesRespawned": "🚗 All clan vehicles have been respawned by an admin!", + "PublicVehiclesRespawned": "🚗 All public have been respawned by an admin!", + "EmptyVehiclesRespawned": "🚗 All empty vehicles have been respawned by an admin!", + "AllVehiclesRespawned": "🚗 All vehicles have been respawned by an admin!", + "AllVehiclesReloaded": "🚗 All vehicles have been reloaded by an admin!", + "YourVehicleRespawned": "🚗 Your vehicle has been respawned!", + "PlayerIPBanned": "💀 {1} has been IP banned!", + "PlayerCharacterBanned": "💀 {1} has been character banned!", + "PlayerSubNetBanned": "💀 {1} has been subnet banned!", + "CantModifyBusiness": "You can't manage or modify this business!", + "CantModifyHouse": "You can't manage or modify this house!", + "ServerTimeSet": "⏰ {1} set the time to {2}", + "ServerWeatherSet": "☁️ {1} set the weather to {2}", + "ServerSnowSet": "❄️ {1} turned falling snow {2} and ground snow {3}", + "AllJobsReloaded": "💼 All server jobs have been reloaded by an admin", + "ServerLogoSet": "{1} turned the server logo image {2}", + "ServerGUISet": "🖥️ {1} turned GUI for this server {2}", + "ServerBusinessBlipsSet": "🏢 {1} turned all business blips {2}", + "ServerHouseBlipsSet": "🏘️ {1} turned all house blips {2}", + "ServerJobBlipsSet": "💼 {1} turned all job blips {2}", + "ServerBusinessPickupsSet": "🏢 {1} turned all business pickups {2}", + "ServerHousePickupsSet": "🏘️ {1} turned all house pickups {2}", + "ServerJobPickupsSet": "💼 {1} turned on all job pickups {2}", + "BusinessBuyItemsLabel": "Use {1} to purchase items", + "PropertyEnterCommandLabel": "Use {1} to enter", + "PropertyEnterKeyPressLabel": "Press {1} to enter", + "PropertyForSaleLabel": "For sale: {1}", + "PropertyForRentLabel": "For rent: {1} every payday", + "RemainingTaxPaidInMoney": "You covered the remaining taxes with {1} in cash.", + "LostMoneyFromTaxes": "You lost money since your taxes are more than your paycheck!", + "NextPaycheckRepossessionWarning": "If you don't have enough cash to cover taxes on next paycheck, you will lose stuff!", + "NotEnoughMoneyForTax": "You don't have enough money to cover your taxes!", + "AssetsRepossessedForTax": "You lost {1} vehicles, {2} houses, and {3} businesses because you couldn't pay taxes!", + "Closed": "Closed", + "Open": "Open", + "VehicleDealershipLabel": "Enter a vehicle as driver to buy it", + "TakeJobLabel": "Use {1} to work here", + "StartWorkLabel": "Use {1} to start working", + "JobEquipAndUniformLabel": "Use {1} and {2} for job stuff, or {3} to stop working", + "NotYourJobLabel": "You already have a different job. Use {1} if you want this one", + "JobLabel": "{1} Job", + "PaydayBonusSet": "🤑 {1} set the payday bonus to {2}", + "AllHousesReloaded": "🏘️ All houses have been reloaded by an admin", + "AllRadioStationsReloaded": "📻 All radio stations have been reloaded by an admin!", + "PlayerKicked": "🦶 {1} has been kicked from the server", + "AllBusinessesReloaded": "🏢 All businesses have been reloaded by an admin!", + "UnableToDoThat": "You aren't able to do that", + "SetVehicleClanConfirmMessage": "Are you sure you want to give this vehicle to your clan?", + "SetVehicleClanConfirmTitle": "Warning!", + "SetItemPriceBelowOrderPriceMessage": "Are you sure you want to set the item price below it's order price? You will lose {1} every purchase!", + "SetItemPriceBelowOrderPriceTitle": "Warning!", + "MustOwnVehicle": "You don't own this vehicle!", + "RandomTips": [ + "Look for yellow dots on your map for job locations", + "You can set custom key binds. Use {1} for details", + "Use {1} if you don't want to see tips and extra information", + "You can edit your keybinds using {1} and {2}", + "Press ℹ️ to see your inventory, and use number keys to select an item", + "Use {1} at a business to purchase items", + "Found a bug? Report it with {1}", + "Have an idea or suggestion for the server? Let the devs know using {1}", + "Want to buy a business? Use {1} at one for sale", + "Want to buy a house? Use {1} at one for sale", + "Want to buy a vehicle? Visit a dealership and enter one for info on how to buy it!", + "Switch to any of your characters with {1}", + "Use {1} to automatically login when connecting with the same IP", + "Use {1} to turn on/off the lights in your house or business", + "Use {1} to play an internet radio station in your car, house, or business", + "Want to make a clan? Use {1} for details", + "Legal weapons can be purchased at any ammunation" + ], + "PromptResponseTip": "Use {1} to accept or {2} to decline", + "PlayerConnecting": "👋 {1} is connecting to the server ...", + "GetStartedJobVehicle": "Get in a {1} to get started.", + "VehicleTypes": { + "Car": "Car", + "Truck": "Truck", + "Van": "Van", + "Taxi": "Taxi", + "Bus": "Bus", + "PoliceCar": "Police Car", + "Ambulance": "Ambulance", + "FireTruck": "Fire Truck", + "Bike": "Bike", + "Motorbike": "Motorbike", + "Boat": "Boat", + "Helicopter": "Helicopter", + "Plane": "Plane", + "Train": "Train" + }, + "AlreadyOnJobRoute": "You are already doing a job route!", + "GaveVehicleToClan": "You gave this {1} to your clan!", + "JobDisabled": "This job is disabled!", + "SetHouseClanConfirmMessage": "Are you sure you want to give this house to your clan?", + "SetHouseClanConfirmTitle": "Warning!", + "SetBusinessClanConfirmMessage": "Are you sure you want to give this business to your clan?", + "SetBusinessClanConfirmTitle": "Warning!", + "MustOwnHouse": "You don't own this house!", + "MustOwnBusiness": "You don't own this business!", + "GaveHouseToClan": "You gave this house to your clan!", + "GaveBusinessToClan": "You gave this business to your clan!", + "BuyBusinessConfirmMessage": "Are you sure you want to buy this business?", + "BuyBusinessConfirmTitle": "Attention!", + "BuyHouseConfirmMessage": "Are you sure you want to buy this house?", + "BuyHouseConfirmTitle": "Attention!", + "BuyBusinessLabel": "Use {1} to buy this business", + "BuyHouseLabel": "Use {1} to buy this house", + "RentHouseLabel": "Use {1} to rent this house", + "AccountEmailAlreadyVerified": "You already set and verified your email!", + "EmailVerificationCodeSent": "A verification code and instructions have been sent to your email.", + "GUIPlayAsCharacterButton": "Play", + "GUINewCharacterButton": "New character", + "GUIPreviousCharacterButton": "Previous", + "GUINextCharacterButton": "Next", + "GUICharacterSelectWindowTitle": "Select a character", + "GUICharacterSelectMoneyLabel": "Money: {1}", + "GUICharacterSelectClanLabel": "Clan: {1}", + "GUICharacterSelectLastPlayedLabel": "Last Played: {1} days, {2} hours, {3} minutes ago", + "GUILoginWindowLabelEnterPassword": "Please enter your password", + "GUILoginWindowSubmitButton": "Login", + "GUILoginWindowResetPasswordButton": "Reset", + "GUILoginWindowPasswordPlaceholder": "Password", + "GUILoginWindowForgotPasswordLabel": "Forgot your password?", + "GUIRegisterWindowLabelCreateAccount": "Create an account", + "GUIRegisterWindowPasswordPlaceholder": "Password", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Confirm password", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Create account", + "GUINewCharacterMessageLabel": "Name your character", + "GUINewCharacterFirstNamePlaceholder": "First Name", + "GUINewCharacterLastNamePlaceholder": "Last Name", + "GUINewCharacterSubmitButton": "Create Character", + "GUIChangePasswordWindowTitle": "Change Password", + "GUIChangePasswordPasswordLabel": "Enter a new password", + "GUIChangePasswordPasswordPlaceholder": "Password", + "GUIChangePasswordConfirmPasswordPlaceholder": "Confirm password", + "GUIChangePasswordSubmitButton": "Change Password", + "GUIResetPasswordWindowMessage": "Reset Password", + "GUIResetPasswordConfirmEmailLabel": "Please confirm your email", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Reset Password", + "GUIResetPasswordLoginButton": "Login", + + "GUIResetPasswordRememberMessage": "Remember your password?", + "HeaderJobList": "Jobs", + "HeaderBusinessInfo": "Business Info", + "HeaderHouseInfo": "House Info", + "HeaderClanInfo": "Clan Info", + "Locales": { + "English": "English", + "Russian": "Russian", + "Spanish": "Spanish", + "German": "German", + "Dutch": "Dutch", + "Polish": "Polish", + "Chinese": "Chinese", + "French": "French", + "Japanese": "Japanese", + "Slovak": "Slovak", + "Arabic": "Arabic" + }, + "TwoFactorAuthSet": "⚙️ You have turned two factor authentication {1}", + "AccountServerLogoSet": "⚙️ You turned the server logo {1}", + "ChatScrollLinesNotNumber": "The line amount must be a number", + "ChatScrollLinesMustBeBetween": "The line amount must be between {1} and {2}", + "ChatScrollLinesSet": "The chatbox will now scroll {1} lines at a time", + "InvalidEmailVerificationCode": "Invalid email verification code! A new one has been created and sent to your email.", + "EmailVerified": "Your email has been verified", + "EmailVerifiedTip": "You can now use your email for password resets, two-factor authentication, login alerts, and more", + "CommandRequiresLogin": "You must be logged in to use the {1} command", + "CommandDisabled": "The {1} command is disabled", + "CommandDisabledOnDiscord": "The {1} command isn't available on discord", + "CommandNotFoundHelpTip": "The command {1} does not exist! Use {2} for commands and information.", + "CommandNotFoundPossibleMatchTip": "The command {1} does not exist! Did you mean {2}?", + "CommandNoPermissions": "You don't have permission to use the {1} command", + "GUIResetPasswordCodeInputLabel": "Check your email for a code", + "GUIResetPasswordCodePlaceholder": "Verification code", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Warning", + "GUIInfoTitle": "Info", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Invalid email!", + "HeaderVehicleInfo": "Vehicle Info", + "HeaderClanRanksList": "Clan Rank", + "HeaderNPCInfo": "NPC Info", + "NPCAnimationSet": "You set NPC {1} animation to {2}", + "NPCNameSet": "You set NPC {1} name to {2}", + "VehicleTooFar": "You are too far away from the vehicle!", + "HeaderPropertyTemplateTypes": "Property Types", + "MustBeLoggedInAndSpawnedToChat": "You need to be logged in and spawned before you can chat!", + "MutedCantChat": "You are muted and can't chat!", + "CantUseMegaphone": "You must equip a megaphone item or be in an emergency vehicle!", + "HeaderAnimationHelp": "Animation Info", + "HeaderBadgeInfo": "Badge Information ({1})", + "NoItemCloseEnough": "There is no item close enough", + "CantDropJobEquipmentItem": "You can't drop job items", + "CantPutJobEquipmentItem": "You can't store job items", + "NoItemEquipped": "You don't have any item selected", + "NoItemInActiveSlot": "You don't have an item in your active item slot", + "CantPutItemInSkinChange": "You can't store an item while customizing your appearance", + "NothingToTakeItemFrom": "You aren't near anything to take items from", + "NoAmmoToLoadIntoWeapon": "You don't have any ammo to load into the {1}", + "LoadAmmoIntoWeaponHelpCommand": "To load this ammo into a weapon, equip the weapon and type {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "To load this ammo into a weapon, equip the weapon and press {1}", + "NobodyCloseEnoughToHandcuff": "Nobody is close enough to handcuff", + "NobodyCloseEnoughToTie": "Nobody is close enough to tie up", + "PlayerNotSurrenderedHandcuff": "{1} can't be handcuffed! They either need to have their hands up, be knocked out, or tazed", + "PlayerNotSurrenderedTie": "{1} can't be tied! They either need to have their hands up, be knocked out, or tazed", + "HeaderCharactersListSelf": "Your Characters", + "HeaderCharactersListOther": "{1}'s Characters", + "CharacterSelectHelpText": "Use {1} to select a character, or {2} to create a new character", + "ItemDoesntDoAnythingOnUse": "The {1} doesn't do anything when you try to use it.", + "ItemRadioStationTip": "Use {1} to set the radio station", + "VehicleLockedCommandTip": "🔒 This {1} is locked. Use {2} to unlock it", + "VehicleLockedKeyPressTip": "🔒 This {1} is locked. Press {2} to unlock it", + "VehicleLockedCantUnlock": "🔒 This {1} is locked and you don't have the keys to unlock it", + "CurrentlyRentingThisVehicle": "You are renting this {1} for {2} per minute. Use {3} if you want to stop renting it.", + "VehicleBelongsTo": "This {1} belongs to {2} ({3})", + "NotOwned": "Not Owned", + "NotCloseEnoughToItemContainer": "You are not close enough to anything that holds items", + "Job": "Job", + "Player": "Player", + "BusinessIsNowPaintBall": "This business is now a paintball arena", + "JoinedPaintBall": "You have joined the paintball game.", + "ItemsStoredForPaintBall": "Your items are stored in your locker and will be returned when you leave the paintball game", + "LeftPaintBall": "You have left the paintball game. Your items have been returned.", + "PaintBallEnded": "The paintball match has ended. Your items have been returned.", + "HeaderEventWinners": "Winners", + "YourPaintBallResults": "You got {1} kills and {2} deaths in the paintball match", + "NoPrivateMessageToReply": "You haven't received a private message to reply to", + "WeaponDoesNotUseAmmo": "The {1} doesn't use ammo", + "ChatBoxTimestampsToggle": "You turned {1} time display in the chatbox", + "ProfanityFilterSet": "You turned chat profanity filter {1}", + "ResetAllKeyBindsConfirm": "Are you sure you want to reset all your keybinds to default?", + "NotRentingAVehicle": "You are not renting a vehicle!", + "StoppedRentingVehicle": "You stopped renting the {1}", + "VehicleEngineStartKeyPressTip": "The {1} engine is off. Press {2} to start it.", + "VehicleEngineStartCommandTip": "The {1} engine is off. Use {2} to start it.", + "StartedRentingVehicle": "You are now renting this {1} for {2} per minute. To stop renting, use {3}", + "VehicleAlreadyRentedByOther": "This vehicle is already rented by someone else", + "VehicleAlreadyRentedBySelf": "You are already renting this vehicle", + "JobRankTooLow": "You are not high enough rank!", + "InvalidKeyName": "The key ID or name you input is invalid!", + "KeyBindsReset": "All your keybinds have been reset to default", + "KeyBindNameTip": "Use simple key names, letters, or numbers. Don't add spaces.", + "UniversalInlineExamplesList": "Examples: {1}", + "KeyBindRemoved": "You removed the keybind for the {1} key", + "KeyBindAdded": "You binded key {1} to {2}", + "CopyAllKeyBindsToServerConfirm": "Are you sure you want to copy all your keybinds to the {1} server?", + "CopiedAllKeyBindsToServer": "All your keybinds have been copied to the {1} server", + "MustBeSpawned": "You must be spawned!", + "ChatEmojiSet": "You turned automatic emoji in chat {1}", + "FishingLineNotCast": "Your fishing line isn't cast!", + "CantFishHere": "You can't fish here! You need to be near water or on a boat!", + "NeedFishingRod": "You need to be holding a fishing rod!", + "FishingCastCommandHelp": "Use {1} to cast your fishing line", + "FishingCastKeyBindHelp": "Press {1} to cast your fishing line", + "Paused": "Paused", + "PaintBallAlmostWin": "{1} only needs {2} more kills to win the paintball match!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOnOff": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} diff --git a/locale/persian.json b/locale/persian.json new file mode 100644 index 00000000..84aaed9f --- /dev/null +++ b/locale/persian.json @@ -0,0 +1,753 @@ +{ + "TranslationProvidedBy": "bigmohammad", + "LocaleEnglishName": "Persian", + + "LocaleNativeName": "Persian", + "LocaleOffer": "This server is available in Persian. Use {1} to use it.", + "LocaleChanged1": "Your language is now set to {1}", + "LocaleChanged2": "The server will now display messages in {1}", + "LocaleChangedNote": "This does not change messages from other players", + "AccentsListHeader": "Accents", + "HelpMainListHeader": "Help Categories", + "AccentNotFound": "Accent not found", + "AccentSet": "You set your accent to {1}", + "InvalidAnimation": "That animation doesn't exist", + "AnimationCommandTip": "Use {1} to see a list of valid animations", + "InvalidAnimationDistance": "The distance must be between 0 and 3", + "CantBanClient": "You cannot ban this person", + "PlayerAccountBanned": "{1} has been account banned", + "ClanNotFound": "Clan not found", + "ClanNameTaken": "A clan with that name already exists", + "PlayerNotFound": "Player not found", + "ClanCantRemoveRanks": "You can't remove clan ranks", + "ClanCantAddRanks": "You can't add clan ranks", + "ClanRankNotFound": "Clan rank not found", + "ClanCantChangeMemberTag": "You can not change clan member's tags", + "ClanPlayerNotInSameClan": "That player is not in your clan", + "ClanCantChangeRankLevel": "You can not change clan rank's level", + "ClanCantChangeRankTag": "You can not change clan rank's tags", + "NameNotRegistered": "Your name is not registered! Use {1} to make an account.", + "AutomaticLoginIPToggle": "Automatic login by IP is now {1}", + "CouldNotRegisterAccount": "There was a problem creating your account. Please contact an admin.", + "RandomTipsToggle": "Random tips are now {1}", + "ActionTipsToggle": "Action tips are now {1}", + "AutoSpawnLastCharToggle": "Automatic spawn as last used character is {1}", + "AccountGUISettingToggle": "🖥️ GUI is now {1}", + "On": "On", + "Off": "Off", + "Yes": "Yes", + "No": "No", + "True": "True", + "False": "False", + "Locked": "Locked", + "Unlocked": "Unlocked", + "PasswordNotGoodEnough": "The new password must meet the requirements!", + "PasswordNeedsBase": "Passwords must have at least {1}", + "PasswordNeedsCapitals": "{1} capital letters", + "PasswordNeedsNumbers": "{1} numbers", + "PasswordNeedsSymbols": "{1} symbols", + "PasswordsDontMatch": "The new password and confirm new password aren't the same!", + "PasswordChanged": "Your password has been changed!", + "AutoLoggedInIP": "You have been automatically logged in by IP!", + "WelcomeBack": "Welcome back to {1}, {2}! Please {3} to continue.", + "WelcomeNewPlayer": "Welcome to {1}, {2}! Please {3} to play.", + "InvalidPlayer": "Player not found!", + "InvalidBusiness": "Business not found!", + "InvalidHouse": "House not found!", + "InvalidVehicle": "Vehicle not found!", + "InvalidClan": "Clan not found!", + "InvalidClanRank": "Clan rank not found!", + "InvalidJob": "Job not found!", + "InvalidItem": "Item not found!", + "InvalidItemType": "Item type not found!", + "InvalidRadioStation": "Radio station not found!", + "InvalidGate": "Gate not found!", + "EntersProperty": "opens the door and enters the {1} ({2})", + "ExitsProperty": "opens the door and exits the {1} ({2})", + "EnterExitPropertyDoorLocked": "tries to open the {1} door but fails because it's locked", + "PropertyNoInterior": "This {1} does not have an interior, but you can still use commands at the door icon.", + "NoBusinessWithItemType": "There is no business with that item available", + "HeaderKeyBinds": "Key Binds", + "HeaderAccountHelp": "Account Help", + "HeaderVehicleHelp": "Vehicle Help", + "HeaderVehicleDealershipHelp": "Vehicle Dealership Help", + "HeaderJobHelp": "Job Help", + "HeaderChatHelp": "Chat Help", + "HeaderServerRules": "Server Rules", + "HeaderWebsiteInfo": "Website", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Animation List", + "HeaderPayAndSprayHelp": "Pay and Spray Help", + "HeaderAmmunationHelp": "Ammunation Help", + "HeaderVehicleTuneupHelp": "Vehicle Tune Help", + "HeaderBindableKeysHelp": "Bindable Keys", + "HeaderSkinHelp": "Clothes/Skin Help", + "HeaderBusinessHelp": "Business Help", + "HeaderClanHelp": "Clan Help", + "HeaderPlayerVehiclesList": "Player Vehicles ({1})", + "HeaderPlayerBusinessesList": "Player Businesses ({1})", + "HeaderClansList": "Clan List", + "HeaderAdminsList": "Admin List", + "HeaderAccentsList": "Accent List", + "HeaderPlayerInfo": "Player Information ({1})", + "HeaderWealthandTaxHelp": "Wealth and Tax Information", + "HeaderCommandInfo": "Command Information ({1})", + "HeaderRadioHelp": "Radio Help", + "HeaderRadioStationsList": "Radio Stations", + "HeaderKeyBindsList": "Key Binds List", + "RadioVolumeChanged": "{1} You changed your streaming radio volume to {2}%", + "VolumeLevelNotNumber": "The volume level must be a number", + "RadioStationLocationInvalid": "You must be in a vehicle, house, or business or have a personal device to change the station!", + "ActionBusinessRadioStationChange": "changes the business radio station to {1} ({2})", + "ActionHouseRadioStationChange": "changes the house radio station to {1} ({2})", + "ActionVehicleRadioStationChange": "changes the vehicle radio station to {1} ({2})", + "ActionItemRadioStationChange": "changes the {1}'s station to {2} ({3})", + "RandomVehicleCommandsDisabled": "This is a random traffic vehicle and commands can't be used for it.", + "HouseDoorLock": "House {1} {2}!", + "BusinessDoorLock": "Business {1} {2}!", + "ServerGameModeRestarting": "The server game mode is restarting!", + "HeaderSelfItemList": "Your Inventory", + "HeaderPlayerItemList": "Player Inventory ({1})", + "HeaderHouseItemList": "House Inventory", + "HeaderBusinessFloorItemList": "Business Inventory (For Sale)", + "HeaderBusinessStorageItemList": "Business Inventory (Storage)", + "HeaderItemItemList": "{1}'s Inventory", + "ItemSlotNotNumber": "The item slot must be a number", + "ItemSlotMustBeBetween": "The item slot must be between {1} and {2}!", + "UseItemBugged": "The item you're trying to use is bugged. A bug report has been sent to the server developers.", + "PickupItemBugged": "The item you're trying to pickup is bugged. A bug report has been sent to the server developers.", + "DropItemBugged": "The item you're trying to drop is bugged. A bug report has been sent to the server developers.", + "HandsBusy": "Your hands are busy", + "CantUseItemInSkinChange": "You can't use an item while customizing your appearance", + "CantDropItemInSkinChange": "You can't drop an item while customizing your appearance", + "CantPickupItemInSkinChange": "You can't pickup an item while customizing your appearance", + "CantSwitchItemInSkinChange": "You can't switch an item while customizing your appearance", + "CantGiveItemInSkinChange": "You can't give an item while customizing your appearance", + "CantTakeItemInSkinChange": "You can't take an item while customizing your appearance", + "ItemUnequippableNoAmmo": "The {1} in slot {2} has no ammo, and can't be equipped!", + "NoSpaceSelfInventory": "You don't have any more space in your inventory", + "Business": "business", + "House": "house", + "Clan": "clan", + "Vehicle": "vehicle", + "Item": "item", + "ItemType": "item type", + "Gate": "gate", + "Door": "door", + "ClanRank": "clan rank", + "JobRank": "job rank", + "RadioStation": "radio station", + "Months": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + "WeekDays": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "CardinalDirections": { + "North": "North", + "Northeast": "Northeast", + "East": "East", + "Southeast": "Southeast", + "South": "South", + "Southwest": "Southwest", + "West": "West", + "Northwest": "Northwest" + }, + "NewPlayerReadyToPlay": [ + "You have been given some cash. Use {1} to find places to buy items.", + "If you need money, jobs are the yellow dots on the radar.", + "For a car, visit the car dealership. You can also use a rental vehicle near spawn or take the train", + "Be sure to read the {1} and use {2} for info." + ], + "YourCurrentVehicleDeleted": "The vehicle you were in was deleted.", + "Distance": "Distance", + "Meters": "Meters", + "Feet": "Feet", + "Kilometers": "Kilometers", + "Miles": "Miles", + "MustBeVehicleDriver": "You must be the driver of the vehicle!", + "PlayerJoined": "{1} has joined the game from {2}!", + "PlayerLeftServer": "{1} has left the game! ({2})", + "TakeItemFromHouse": "takes a {1} from the house", + "TakeItemFromBusinessStorage": "takes a {1} from the business storage", + "TakeItemFromBusiness": "takes a {1} from the business", + "TakeItemFromItem": "takes a {1} from the {2}", + "TakeItemFromVehicleTrunk": "takes a {1} from the trunk", + "TakeItemFromVehicleDash": "takes a {1} from the glove compartment", + "AccountHelp": [ + "Do NOT share your password with anybody else. {1} staff will never ask you for your password", + "Use {1} to change your password, and {2} if you forgot it", + "Some settings you can use: {1}" + ], + "VehicleHelp": [ + "Your personal vehicles will save wherever you or somebody else leaves them!", + "Visit dealerships to buy new vehicles (Use {1} for more information)", + "Some commands: {1}", + "Visit a mechanic garage to repair, colour, and tune up your car! {1} for info" + ], + "VehicleDealershipHelp": [ + "Visit a vehicle dealer to buy new vehicles. Use {1} to find one.", + "At the dealer, enter a car you want to buy, and the price will be shown to you", + "If you want to buy the vehicle, use {1} and you will be given keys to test drive it around the parking lot.", + "Drive away from the dealership with the new vehicle to confirm the purchase." + ], + "JobHelp": [ + "Visit job locations to get a job and earn money. Look for yellow spots on the map", + "At a job location, use {1} to get the job. Use {2} to quit your job", + "Use {1} to begin working. You can also get a job {2} and {3}", + "Most job vehicles are locked. Use {1} near one to enter it.", + "When entering a job vehicle, information on how to do the job will be shown to you." + ], + "ChatHelp": [ + "There are two main types of chat: out-of-character (OOC) and in-character (IC)", + "Mixing these two types is not proper roleplay. See {1} for info.", + "Some chat commands: {1}", + "Some have shorter names available ({1} to talk, {2} to shout, etc)" + ], + "ServerRulesHelp": [ + "Unrealistic actions (powergaming) are not allowed. You aren't superman.", + "No terrorist or terrorism roleplay is allowed.", + "Always follow instructions given by moderators and admins.", + "Do not mix the chats (metagaming). You can't use info in IC that was received OOC", + "Keep English in main chats. If you aren't good at English, use {1}" + ], + "AnimationHelp": [ + "Animations allow you to enhance roleplay with visual actions", + "Use {1} or {2} with a name to use an animation.", + "To see a list of animations, use {1}" + ], + "WeaponHelp": [ + "Visit an gun store to buy weapons. Use {1} to find one.", + "Buying a weapon requires a weapon license.", + "Weapon licenses are managed by the police department. Apply there to get one.", + "Weapons can also be purchased illegally from some businesses, weapon dealers, and clans." + ], + "SkinHelp": [ + "At a clothing store, use {1} to purchase clothes", + "When you have a clothing item, equip and use it like any other item to show the skin selection (check {1} to learn how to use items)", + "Some skins are restricted to jobs, clans, or for other reasons." + ], + "KeyBindHelp": [ + "You can set your own key binds. Use {1} to see your binded keys.", + "Use {1} to add a new keybind and {2} to remove one.", + "Default keys are: {1} for vehicle engine, {2} for lights, and {3} for lock/unlock", + "Press {1} to see your items and {2} to equip an item or {3} to unequip all.", + "Press {1} to use the item you're holding, press {2} to drop it, or press {3} to pickup an item from the ground." + ], + "BusinessHelp": [ + "Use {1} to purchase items or {2} to see a list of what's for sale at any business", + "Businesses are shown with blue names above the icon at their entrance.", + "Business owner commands: {1}", + "A new car for sale will appear when you drive away from the dealer." + ], + "ClanHelp": [ + "Ask an administrator to create a clan (Similar to factions/groups/families)", + "Clan owners have full control over their clan once it's created", + "Clan commands: {1}", + "More clan commands: {1}" + ], + "RadioStationHelp": [ + "Use {1} to set the station for your vehicle, house, or business", + "Use {2} to see a list of stations", + "You can change your radio streaming volume using {1} with 0-100 as the percent" + ], + "WealthAndTaxHelp": [ + "Your taxes on payday are {1} percent of your calculated wealth.", + "Your calculated wealth is a total sum based on how many vehicles, houses, and businesses you have.", + "Each vehicle is {1}, each house is {2}, and each business is {3}", + "Use {1} to see your current wealth, and {2} to see how much you'll pay in tax each payday" + ], + "MustBeInAVehicle": "You need to be in a vehicle!", + "MustBeInOrNearVehicle": "You need to be in or near a vehicle!", + "MustBeInVehicleFrontSeat": "You need to be in the vehicle front seats!", + "MustBeInVehicleDriverSeat": "You need to be the driver!", + "DontHaveVehicleKey": "You don't have a key for this vehicle!", + "NoGateAccess": "You don't have access to this gate!", + "GateBroken": "This gate is broken!", + "GateHacked": "The gate does not respond!", + "RadioJammed": "You hear only static from the radio.", + "VehicleNotForSale": "This vehicle is not for sale!", + "VehicleNotForRent": "This vehicle is not for rent!", + "BusinessNotForSale": "This business is not for sale!", + "BusinessNotForRent": "This business is not for rent!", + "HouseNotForSale": "This house is not for sale!", + "HouseNotForRent": "This house is not for rent!", + "DealershipPurchaseTestDrive": "Drive the vehicle away from the dealership to buy it, or get out to cancel.", + "DealershipPurchaseExitedVehicle": "You canceled the vehicle purchase by exiting the vehicle!", + "VehiclePurchaseComplete": "This vehicle is now yours! It will save wherever you leave it.", + "VehiclePurchaseNotEnoughMoney": "You don't have enough money to buy this vehicle!", + "HousePurchaseNotEnoughMoney": "You don't have enough money to buy this house!", + "BusinessPurchaseNotEnoughMoney": "You don't have enough money to buy this business!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Player Houses ({1})", + "HeaderPlayerStaffFlagsList": "Player Staff Flags ({1})", + "HeaderStaffFlagsList": "Staff Flags", + "NonRPName": "Non-RP name! Choose a new one:", + "InvalidStaffFlag": "Staff flag not found!", + "InvalidClanFlag": "Clan flag not found!", + "InvalidLocale": "Language not found!", + "HeaderJobUniformList": "Job Uniforms ({1})", + "HeaderJobEquipmentList": "Job Equipment ({1})", + "InvalidJobUniform": "Job uniform not found!", + "InvalidJobEquipment": "Job equipment not found!", + "HeaderVehiclesInRangeList": "Vehicles within {1}", + "NoVehiclesWithinRange": "There are no vehicles within {1}", + "AmountNotNumber": "The amount must be a number!", + "NeedToBeWorking": "You need to be working! Use {1} at a job location or near a job vehicle.", + "NeedToBeOnJobRoute": "You need to be doing a job route! Use {1} in a job vehicle", + "CurrentJobRouteVehicleColoursChanged": "Your job route's vehicle colours were changed by an admin", + "NotYourJob": "This is not your job!", + "JobPoints": "You can get a job by going the yellow points on the map.", + "QuitJobToTakeAnother": "If you want this job, use {1} to quit your current job.", + "NotAJobVehicle": "This is not a job vehicle!", + "NotYourJobVehicle": "This is not your job's vehicle!", + "HeaderPickupTypes": "Pickup Types", + "HeaderBlipTypes": "Map Icon Types", + "InvalidGPSLocation": "There are no locations with that name or type", + "HeaderBusinessList": "Businesses", + "VehicleForSale": "This {1} is buyable for {2}! Use {3} if you want to buy it", + "VehicleForRent": "This {1} is rentable for {2}! Use {3} if you want to rent it", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Invalid password! {1} attempts remaining", + "LoginFailedNoPassword": "You must enter a password! ! {1} attempts remaining", + "RegistrationFailedNoPassword": "You must enter a password!", + "RegistrationFailedNoPasswordConfirm": "You must confirm the password!", + "RegistrationFailedNoEmail": "You must enter an email!", + "AccountNameAlreadyRegistered": "Your name is already registered!", + "AlreadyLoggedIn": "You are already logged in!", + "RegistrationFailedInvalidEmail": "That email is invalid!", + "RegistrationFailedPasswordMismatch": "The passwords don't match!", + "RegistrationFailedCreateError": "Your account couldn't be created!", + "RegistrationSuccess": "Your account has been created!", + "RegistrationEmailVerifyReminder": "Don't forget to verify your email! A verification code has been sent to you.", + "RegistrationCreateCharReminder": "To play on the server, you will need to make a character.", + "NoCharactersGUIMessage": "You have no characters. Would you like to make one?", + "NoCharactersGUIWindowTitle": "No characters", + "NoCharactersChatMessage": "You have no characters. Use {1} to make one.", + "NeedEmailFor2FA": "You need to add your email to your account to use two-factor authentication.", + "NeedEmailVerifiedFor2FA": "You need to verify your email to use two-factor authentication.", + "SetEmailHelpTip": "Use {1} to set your email.", + "VerifyEmailHelpTip": "Use {1} to verify your email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Nearby radio", + "FromRadio": "From radio", + "ToRadio": "To radio", + "NeedToEnterPropertyCommand": "You need to enter the {1} first! Use {2} to enter and exit", + "NeedToEnterPropertyKeyPress": "You need to enter the {1} first! Press {2} to enter and exit", + "InventoryFullCantCarry": "You don't have any space to carry this (full inventory)!", + "NotEnoughCashNeedAmountMore": "You don't have enough money! You need {1} more!", + "AmountMustBeMoreThan": "The amount must be more than {1}!", + "WeaponBanned": "You are not allowed to buy or use weapons!", + "TimeNotNumber": "The time must be a number", + "HeaderDefaultBusinessItemTypes": "Business Item Templates", + "FixingStuck": "Fixing your position and virtual world ...", + "CantUseCommandYet": "You must wait before you can use this command again!", + "NotATester": "You are not a tester!", + "AccessDenied": "AccessDenied", + "InvalidSkin": "That skin is invalid!", + "HeaderInteriorTypes": "Interiors List", + "GUIAccountSettingToggle": "You have turned {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "You can buy a car by visiting a vehicle dealership. Use {1} for more information.", + "SkinCommandHelp": "You can change your skin by visiting a clothes store. Use {1} for more info.", + "BusinessVehiclesRespawned": "🚗 All business vehicles have been respawned by an admin!", + "JobVehiclesRespawned": "🚗 All job vehicles have been respawned by an admin!", + "PlayerVehiclesRespawned": "🚗 All player vehicles have been respawned by an admin!", + "ClanVehiclesRespawned": "🚗 All clan vehicles have been respawned by an admin!", + "PublicVehiclesRespawned": "🚗 All public have been respawned by an admin!", + "EmptyVehiclesRespawned": "🚗 All empty vehicles have been respawned by an admin!", + "AllVehiclesRespawned": "🚗 All vehicles have been respawned by an admin!", + "AllVehiclesReloaded": "🚗 All vehicles have been reloaded by an admin!", + "YourVehicleRespawned": "🚗 Your vehicle has been respawned!", + "PlayerIPBanned": "💀 {1} has been IP banned!", + "PlayerCharacterBanned": "💀 {1} has been character banned!", + "PlayerSubNetBanned": "💀 {1} has been subnet banned!", + "CantModifyBusiness": "You can't manage or modify this business!", + "CantModifyHouse": "You can't manage or modify this house!", + "ServerTimeSet": "⏰ {1} set the time to {2}", + "ServerWeatherSet": "☁️ {1} set the weather to {2}", + "ServerSnowSet": "❄️ {1} turned falling snow {2} and ground snow {3}", + "AllJobsReloaded": "💼 All server jobs have been reloaded by an admin", + "ServerLogoSet": "{1} turned the server logo image {2}", + "ServerGUISet": "🖥️ {1} turned GUI for this server {2}", + "ServerBusinessBlipsSet": "🏢 {1} turned all business blips {2}", + "ServerHouseBlipsSet": "🏘️ {1} turned all house blips {2}", + "ServerJobBlipsSet": "💼 {1} turned all job blips {2}", + "ServerBusinessPickupsSet": "🏢 {1} turned all business pickups {2}", + "ServerHousePickupsSet": "🏘️ {1} turned all house pickups {2}", + "ServerJobPickupsSet": "💼 {1} turned on all job pickups {2}", + "BusinessBuyItemsLabel": "Use {1} to purchase items", + "PropertyEnterCommandLabel": "Use {1} to enter", + "PropertyEnterKeyPressLabel": "Press {1} to enter", + "PropertyForSaleLabel": "For sale: {1}", + "PropertyForRentLabel": "For rent: {1} every payday", + "RemainingTaxPaidInMoney": "You covered the remaining taxes with {1} in cash.", + "LostMoneyFromTaxes": "You lost money since your taxes are more than your paycheck!", + "NextPaycheckRepossessionWarning": "If you don't have enough cash to cover taxes on next paycheck, you will lose stuff!", + "NotEnoughMoneyForTax": "You don't have enough money to cover your taxes!", + "AssetsRepossessedForTax": "You lost {1} vehicles, {2} houses, and {3} businesses because you couldn't pay taxes!", + "Closed": "Closed", + "Open": "Open", + "VehicleDealershipLabel": "Enter a vehicle as driver to buy it", + "TakeJobLabel": "Use {1} to work here", + "StartWorkLabel": "Use {1} to start working", + "JobEquipAndUniformLabel": "Use {1} and {2} for job stuff, or {3} to stop working", + "NotYourJobLabel": "You already have a different job. Use {1} if you want this one", + "JobLabel": "{1} Job", + "PaydayBonusSet": "🤑 {1} set the payday bonus to {2}", + "AllHousesReloaded": "🏘️ All houses have been reloaded by an admin", + "AllRadioStationsReloaded": "📻 All radio stations have been reloaded by an admin!", + "PlayerKicked": "🦶 {1} has been kicked from the server", + "AllBusinessesReloaded": "🏢 All businesses have been reloaded by an admin!", + "UnableToDoThat": "You aren't able to do that", + "SetVehicleClanConfirmMessage": "Are you sure you want to give this vehicle to your clan?", + "SetVehicleClanConfirmTitle": "Warning!", + "SetItemPriceBelowOrderPriceMessage": "Are you sure you want to set the item price below it's order price? You will lose {1} every purchase!", + "SetItemPriceBelowOrderPriceTitle": "Warning!", + "MustOwnVehicle": "You don't own this vehicle!", + "RandomTips": [ + "Look for yellow dots on your map for job locations", + "You can set custom key binds. Use {1} for details", + "Use {1} if you don't want to see tips and extra information", + "You can edit your keybinds using {1} and {2}", + "Press ℹ️ to see your inventory, and use number keys to select an item", + "Use {1} at a business to purchase items", + "Found a bug? Report it with {1}", + "Have an idea or suggestion for the server? Let the devs know using {1}", + "Want to buy a business? Use {1} at one for sale", + "Want to buy a house? Use {1} at one for sale", + "Want to buy a vehicle? Visit a dealership and enter one for info on how to buy it!", + "Switch to any of your characters with {1}", + "Use {1} to automatically login when connecting with the same IP", + "Use {1} to turn on/off the lights in your house or business", + "Use {1} to play an internet radio station in your car, house, or business", + "Want to make a clan? Use {1} for details", + "Legal weapons can be purchased at any ammunation" + ], + "PromptResponseTip": "Use {1} to accept or {2} to decline", + "PlayerConnecting": "👋 {1} is connecting to the server ...", + "GetStartedJobVehicle": "Get in a {1} to get started.", + "VehicleTypes": { + "Car": "Car", + "Truck": "Truck", + "Van": "Van", + "Taxi": "Taxi", + "Bus": "Bus", + "PoliceCar": "Police Car", + "Ambulance": "Ambulance", + "FireTruck": "Fire Truck", + "Bike": "Bike", + "Motorbike": "Motorbike", + "Boat": "Boat", + "Helicopter": "Helicopter", + "Plane": "Plane", + "Train": "Train" + }, + "AlreadyOnJobRoute": "You are already doing a job route!", + "GaveVehicleToClan": "You gave this {1} to your clan!", + "JobDisabled": "This job is disabled!", + "SetHouseClanConfirmMessage": "Are you sure you want to give this house to your clan?", + "SetHouseClanConfirmTitle": "Warning!", + "SetBusinessClanConfirmMessage": "Are you sure you want to give this business to your clan?", + "SetBusinessClanConfirmTitle": "Warning!", + "MustOwnHouse": "You don't own this house!", + "MustOwnBusiness": "You don't own this business!", + "GaveHouseToClan": "You gave this house to your clan!", + "GaveBusinessToClan": "You gave this business to your clan!", + "BuyBusinessConfirmMessage": "Are you sure you want to buy this business?", + "BuyBusinessConfirmTitle": "Attention!", + "BuyHouseConfirmMessage": "Are you sure you want to buy this house?", + "BuyHouseConfirmTitle": "Attention!", + "BuyBusinessLabel": "Use {1} to buy this business", + "BuyHouseLabel": "Use {1} to buy this house", + "RentHouseLabel": "Use {1} to rent this house", + "AccountEmailAlreadyVerified": "You already set and verified your email!", + "EmailVerificationCodeSent": "A verification code and instructions have been sent to your email.", + "GUIPlayAsCharacterButton": "Play", + "GUINewCharacterButton": "New character", + "GUIPreviousCharacterButton": "Previous", + "GUINextCharacterButton": "Next", + "GUICharacterSelectWindowTitle": "Select a character", + "GUICharacterSelectMoneyLabel": "Money: {1}", + "GUICharacterSelectClanLabel": "Clan: {1}", + "GUICharacterSelectLastPlayedLabel": "Last Played: {1} days, {2} hours, {3} minutes ago", + "GUILoginWindowLabelEnterPassword": "Please enter your password", + "GUILoginWindowSubmitButton": "Login", + "GUILoginWindowResetPasswordButton": "Reset", + "GUILoginWindowPasswordPlaceholder": "Password", + "GUILoginWindowForgotPasswordLabel": "Forgot your password?", + "GUIRegisterWindowLabelCreateAccount": "Create an account", + "GUIRegisterWindowPasswordPlaceholder": "Password", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Confirm password", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Create account", + "GUINewCharacterMessageLabel": "Name your character", + "GUINewCharacterFirstNamePlaceholder": "First Name", + "GUINewCharacterLastNamePlaceholder": "Last Name", + "GUINewCharacterSubmitButton": "Create Character", + "GUIChangePasswordWindowTitle": "Change Password", + "GUIChangePasswordPasswordLabel": "Enter a new password", + "GUIChangePasswordPasswordPlaceholder": "Password", + "GUIChangePasswordConfirmPasswordPlaceholder": "Confirm password", + "GUIChangePasswordSubmitButton": "Change Password", + "GUIResetPasswordWindowMessage": "Reset Password", + "GUIResetPasswordConfirmEmailLabel": "Please confirm your email", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Reset Password", + "GUIResetPasswordLoginButton": "Login", + + "GUIResetPasswordRememberMessage": "Remember your password?", + "HeaderJobList": "Jobs", + "HeaderBusinessInfo": "Business Info", + "HeaderHouseInfo": "House Info", + "HeaderClanInfo": "Clan Info", + "Locales": { + "English": "English", + "Russian": "Russian", + "Spanish": "Spanish", + "German": "German", + "Dutch": "Dutch", + "Polish": "Polish", + "Chinese": "Chinese", + "French": "French", + "Japanese": "Japanese", + "Slovak": "Slovak", + "Arabic": "Arabic" + }, + "TwoFactorAuthSet": "⚙️ You have turned two factor authentication {1}", + "AccountServerLogoSet": "⚙️ You turned the server logo {1}", + "ChatScrollLinesNotNumber": "The line amount must be a number", + "ChatScrollLinesMustBeBetween": "The line amount must be between {1} and {2}", + "ChatScrollLinesSet": "The chatbox will now scroll {1} lines at a time", + "InvalidEmailVerificationCode": "Invalid email verification code! A new one has been created and sent to your email.", + "EmailVerified": "Your email has been verified", + "EmailVerifiedTip": "You can now use your email for password resets, two-factor authentication, login alerts, and more", + "CommandRequiresLogin": "You must be logged in to use the {1} command", + "CommandDisabled": "The {1} command is disabled", + "CommandDisabledOnDiscord": "The {1} command isn't available on discord", + "CommandNotFoundHelpTip": "The command {1} does not exist! Use {2} for commands and information.", + "CommandNotFoundPossibleMatchTip": "The command {1} does not exist! Did you mean {2}?", + "CommandNoPermissions": "You don't have permission to use the {1} command", + "GUIResetPasswordCodeInputLabel": "Check your email for a code", + "GUIResetPasswordCodePlaceholder": "Verification code", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Warning", + "GUIInfoTitle": "Info", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Invalid email!", + "HeaderVehicleInfo": "Vehicle Info", + "HeaderClanRanksList": "Clan Rank", + "HeaderNPCInfo": "NPC Info", + "NPCAnimationSet": "You set NPC {1} animation to {2}", + "NPCNameSet": "You set NPC {1} name to {2}", + "VehicleTooFar": "You are too far away from the vehicle!", + "HeaderPropertyTemplateTypes": "Property Types", + "MustBeLoggedInAndSpawnedToChat": "You need to be logged in and spawned before you can chat!", + "MutedCantChat": "You are muted and can't chat!", + "CantUseMegaphone": "You must equip a megaphone item or be in an emergency vehicle!", + "HeaderAnimationHelp": "Animation Info", + "HeaderBadgeInfo": "Badge Information ({1})", + "NoItemCloseEnough": "There is no item close enough", + "CantDropJobEquipmentItem": "You can't drop job items", + "CantPutJobEquipmentItem": "You can't store job items", + "NoItemEquipped": "You don't have any item selected", + "NoItemInActiveSlot": "You don't have an item in your active item slot", + "CantPutItemInSkinChange": "You can't store an item while customizing your appearance", + "NothingToTakeItemFrom": "You aren't near anything to take items from", + "NoAmmoToLoadIntoWeapon": "You don't have any ammo to load into the {1}", + "LoadAmmoIntoWeaponHelpCommand": "To load this ammo into a weapon, equip the weapon and type {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "To load this ammo into a weapon, equip the weapon and press {1}", + "NobodyCloseEnoughToHandcuff": "Nobody is close enough to handcuff", + "NobodyCloseEnoughToTie": "Nobody is close enough to tie up", + "PlayerNotSurrenderedHandcuff": "{1} can't be handcuffed! They either need to have their hands up, be knocked out, or tazed", + "PlayerNotSurrenderedTie": "{1} can't be tied! They either need to have their hands up, be knocked out, or tazed", + "HeaderCharactersListSelf": "Your Characters", + "HeaderCharactersListOther": "{1}'s Characters", + "CharacterSelectHelpText": "Use {1} to select a character, or {2} to create a new character", + "ItemDoesntDoAnythingOnUse": "The {1} doesn't do anything when you try to use it.", + "ItemRadioStationTip": "Use {1} to set the radio station", + "VehicleLockedCommandTip": "🔒 This {1} is locked. Use {2} to unlock it", + "VehicleLockedKeyPressTip": "🔒 This {1} is locked. Press {2} to unlock it", + "VehicleLockedCantUnlock": "🔒 This {1} is locked and you don't have the keys to unlock it", + "CurrentlyRentingThisVehicle": "You are renting this {1} for {2} per minute. Use {3} if you want to stop renting it.", + "VehicleBelongsTo": "This {1} belongs to {2} ({3})", + "NotOwned": "Not Owned", + "NotCloseEnoughToItemContainer": "You are not close enough to anything that holds items", + "Job": "Job", + "Player": "Player", + "BusinessIsNowPaintBall": "This business is now a paintball arena", + "JoinedPaintBall": "You have joined the paintball game.", + "ItemsStoredForPaintBall": "Your items are stored in your locker and will be returned when you leave the paintball game", + "LeftPaintBall": "You have left the paintball game. Your items have been returned.", + "PaintBallEnded": "The paintball match has ended. Your items have been returned.", + "HeaderEventWinners": "Winners", + "YourPaintBallResults": "You got {1} kills and {2} deaths in the paintball match", + "NoPrivateMessageToReply": "You haven't received a private message to reply to", + "WeaponDoesNotUseAmmo": "The {1} doesn't use ammo", + "ChatBoxTimestampsToggle": "You turned {1} time display in the chatbox", + "ProfanityFilterSet": "You turned chat profanity filter {1}", + "ResetAllKeyBindsConfirm": "Are you sure you want to reset all your keybinds to default?", + "NotRentingAVehicle": "You are not renting a vehicle!", + "StoppedRentingVehicle": "You stopped renting the {1}", + "VehicleEngineStartKeyPressTip": "The {1} engine is off. Press {2} to start it.", + "VehicleEngineStartCommandTip": "The {1} engine is off. Use {2} to start it.", + "StartedRentingVehicle": "You are now renting this {1} for {2} per minute. To stop renting, use {3}", + "VehicleAlreadyRentedByOther": "This vehicle is already rented by someone else", + "VehicleAlreadyRentedBySelf": "You are already renting this vehicle", + "JobRankTooLow": "You are not high enough rank!", + "InvalidKeyName": "The key ID or name you input is invalid!", + "KeyBindsReset": "All your keybinds have been reset to default", + "KeyBindNameTip": "Use simple key names, letters, or numbers. Don't add spaces.", + "UniversalInlineExamplesList": "Examples: {1}", + "KeyBindRemoved": "You removed the keybind for the {1} key", + "KeyBindAdded": "You binded key {1} to {2}", + "CopyAllKeyBindsToServerConfirm": "Are you sure you want to copy all your keybinds to the {1} server?", + "CopiedAllKeyBindsToServer": "All your keybinds have been copied to the {1} server", + "MustBeSpawned": "You must be spawned!", + "ChatEmojiSet": "You turned automatic emoji in chat {1}", + "FishingLineNotCast": "Your fishing line isn't cast!", + "CantFishHere": "You can't fish here! You need to be near water or on a boat!", + "NeedFishingRod": "You need to be holding a fishing rod!", + "FishingCastCommandHelp": "Use {1} to cast your fishing line", + "FishingCastKeyBindHelp": "Press {1} to cast your fishing line", + "Paused": "Paused", + "PaintBallAlmostWin": "{1} only needs {2} more kills to win the paintball match!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOnOff": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} \ No newline at end of file diff --git a/locale/polish.json b/locale/polish.json new file mode 100644 index 00000000..62c5ac72 --- /dev/null +++ b/locale/polish.json @@ -0,0 +1,751 @@ +{ + "TranslationProvidedBy": "Suprise444", + "LocaleEnglishName": "Polish", + "LocaleNativeName": "Polski", + "LocaleOffer": "Ten serwer jest dostępny w języku Polskim. Użyj {1} aby go użyć.", + "LocaleChanged1": "Twój język jest ustawiony na {1}", + "LocaleChanged2": "Serwer będzie teraz pokazywał wiadomości w języku {1}", + "LocaleChangedNote": "To nie zmienia wiadomości od innych graczy", + "AccentsListHeader": "Akcenty", + "HelpMainListHeader": "Pomoc - Kategorie", + "AccentNotFound": "Akcent nie znaleziony", + "AccentSet": "Ustawiłeś swój akcent na {1}", + "InvalidAnimation": "Ta animcja nie istnieje", + "AnimationCommandTip": "Użyj {1} aby zobaczyć listę działających animacji", + "AnimationInvalidDistance": "Dystans musi być między 0 i 3", + "CantBanClient": "Nie możesz zbanować tej osoby", + "PlayerAccountBanned": "{1} został zbanowany", + "ClanNotFound": "Nie znaleziono klanu", + "ClanNameTaken": "Klan z taką nazwą już istnieje", + "PlayerNotFound": "Nie znaleziono gracza", + "ClanCantRemoveRanks": "Nie możesz usuwać rang klanu", + "ClanCantAddRanks": "Nie możesz dodawać rang klanu", + "ClanRankNotFound": "Nie znaleziono rangi klanu", + "ClanCantChangeMemberTag": "Nie możesz zmienić tagu członka klanu", + "ClanPlayerNotInSameClan": "Ten gracz nie jest w twoim klanie", + "ClanCantChangeRankLevel": "Nie możesz zmienić poziomu rangi klanu", + "ClanCantChangeRankTag": "Nie możesz zmienić tagu rangi klanu", + "NameNotRegistered": "Twoja nazwa nie jest zarejestrowana! Użyj {1} aby stworzyć konto.", + "AutomaticLoginIPToggle": "Automatyczny login przez IP jest teraz {1}", + "CouldNotRegisterAccount": "Napotkano problem podczas tworzenia twojego konta. Proszę skontaktuj się z administratorem.", + "RandomTipsToggle": "Losowe wskazówki są teraz {1}", + "ActionTipsToggle": "Wskazówki akcji są teraz {1}", + "AutoSpawnLastCharToggle": "Automatyczny spawn jako ostatnia postać jest teraz {1}", + "AccountGUISettingToggle": "GUI jest teraz {1}", + "On": "Włączony", + "Off": "Wyłączony", + "Yes": "Tak", + "No": "Nie", + "True": "Prawda", + "False": "Fałsz", + "Locked": "Zamknięty", + "Unlocked": "Otwarty", + "PasswordNotGoodEnough": "Nowe hasło musi spełniać wymagania!", + "PasswordNeedsBase": "Hasło musi mieć przynajmniej {1}", + "PasswordNeedsCapitals": "{1} dużych liter", + "PasswordNeedsNumbers": "{1} numerów", + "PasswordNeedsSymbols": "{1} symboli", + "PasswordsDontMatch": "Hasła nie są takie same!", + "PasswordChanged": "Twoje hasło zostało zmienione!", + "AutoLoggedInIP": "Zostałeś automatycznie zalogowany przez IP!", + "WelcomeBack": "Witaj ponownie w {1}, {2}! Użyj {3} aby kontynuować.", + "WelcomeNewPlayer": "Witaj w {1}, {2}! Użyj {3} aby zagrać.", + "InvalidPlayer": "Praca nie znaleziona!", + "InvalidBusiness": "Biznes nie znaleziony!", + "InvalidHouse": "Mieszkanie nie znalezione!", + "InvalidVehicle": "Pojazd nie znaleziony!", + "InvalidClan": "Klan nie znaleziony!", + "InvalidClanRank": "Ranga klanu nie znaleziona!", + "InvalidJob": "Gracz nie znaleziony!", + "InvalidItem": "Przedmiot nie znaleziony!", + "InvalidItemType": "Rodzaj przedmiot nie znaleziony!", + "InvalidRadioStation": "Stacja radiowa nie znaleziona!", + "InvalidGate": "Brama nie znaleziona!", + "EntersProperty": "otwiera drzwi i wchodzi do {1} ({2})", + "ExitsProperty": "otwiera drzwi i wychodzi z {1} ({2})", + "EnterExitPropertyDoorLocked": "próbuje otworzyć {1} drzwi, ale nie udaje się, ponieważ są zamknięte", + "PropertyNoInterior": "Ten {1} nie ma wnętrza, ale dalej możesz używaj komend przy ikonie drzwi.", + "NoBusinessWithItemType": "Nie ma biznesu, który posiada ten przedmiot", + "HeaderKeyBinds": "Przypisania klawiszy", + "HeaderAccountHelp": "Pomoc - Konto", + "HeaderVehicleHelp": "Pomoc - Pojazd", + "HeaderVehicleDealershipHelp": "Pomoc - Dealer Samochodów", + "HeaderJobHelp": "Pomoc - Praca", + "HeaderChatHelp": "Pomoc - Czat", + "HeaderServerRules": "Zasady serwera", + "HeaderWebsiteInfo": "Strona", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Lista Animacji", + "HeaderPayAndSprayHelp": "Pomoc - Pay and Spray", + "HeaderAmmunationHelp": "Pomoc - Ammunation", + "HeaderVehicleTuneupHelp": "Pomoc - Ulepszanie Aut", + "HeaderBindableKeysHelp": "Przypisywalne klawisze", + "HeaderSkinHelp": "Pomoc - Ubrania/Skóra", + "HeaderBusinessHelp": "Pomoc - Biznes", + "HeaderClanHelp": "Pomoc - Klan", + "HeaderPlayerVehiclesList": "Pojazdy Gracza ({1})", + "HeaderPlayerBusinessesList": "Biznesy Gracza ({1})", + "HeaderClansList": "Lista Klanów", + "HeaderAdminsList": "Lista Administracji", + "HeaderAccentsList": "Lista Akcentów", + "HeaderPlayerInfo": "Informacje o Graczu ({1})", + "HeaderWealthandTaxHelp": "Informacje o Bogactwach i Podatkach", + "HeaderCommandInfo": "Informacje o Komendzie ({1})", + "HeaderRadioHelp": "Pomoc - Radio", + "HeaderRadioStationsList": "Stacje Radiowe", + "HeaderKeyBindsList": "Lista przypisań klawiszy", + "RadioVolumeChanged": "{1} Zmieniłeś głośność swojego radia na {2}%", + "VolumeLevelNotNumber": "Poziom głośności musi być liczbą", + "RadioStationLocationInvalid": "Musisz być w aucie, domu, biznesie lub mieć osobite urządzenie by zmienić stacje radiową!", + "ActionBusinessRadioStationChange": "zmienia biznesową stacje radiową na {1} ({2})", + "ActionHouseRadioStationChange": "zmienia domową stacje radiową na {1} ({2})", + "ActionVehicleRadioStationChange": "zmienia samochodową stacje radiową na {1} ({2})", + "ActionItemRadioStationChange": "zmienia stacje {1} na {2} ({3})", + "RandomVehicleCommandsDisabled": "To losowy pojazd uliczny i komendy nie mogą być na nim użyte.", + "HouseDoorLock": "Mieszkanie {1} {2}!", + "BusinessDoorLock": "Biznes {1} {2}!", + "ServerGameModeRestarting": "Tryb gry serwera się restartuje!", + "HeaderSelfItemList": "Twój ekwipunek", + "HeaderPlayerItemList": "Ekwipunek gracza ({1})", + "HeaderHouseItemList": "Ekwipunek mieszkania", + "HeaderBusinessFloorItemList": "Ekwipunek Bizneus (Na sprzedaż)", + "HeaderBusinessStorageItemList": "Ekwipunek Bizenus (Magazyn)", + "HeaderItemItemList": "Ekwipunek {1}", + "ItemSlotNotNumber": "Slot przedmiotu musi być liczbą", + "ItemSlotMustBeBetween": "Slot itemu musi być liczbą między {1} i {2}!", + "UseItemBugged": "Przedmiot, który próbujesz użyć jest popsuty. Zgłoszenie zostało wysłane do deweloperów serwera.", + "PickupItemBugged": "Przedmiot, który próbujesz podnieść jest popsuty. Zgłoszenie zostało wysłane do deweloperów serwera.", + "DropItemBugged": "Przedmiot, który próbujesz upuścić jest popsuty. Zgłoszenie zostało wysłane do deweloperów serwera.", + "HandsBusy": "Twoje ręce są zajęte", + "CantUseItemInSkinChange": "Nie możesz użyć przedmiotu podczas zmieniania swojego wizerunku", + "CantDropItemInSkinChange": "Nie możesz upuścić przedmiotu podczas zmieniania swojego wizerunku", + "CantPickupItemInSkinChange": "Nie możesz podnieść przedmiotu podczas zmieniania swojego wizerunku", + "CantSwitchItemInSkinChange": "Nie możesz zmienić przedmiotu podczas zmieniania swojego wizerunku", + "CantGiveItemInSkinChange": "Nie możesz dać przedmiotu podczas zmieniania swojego wizerunku", + "CantTakeItemInSkinChange": "Nie możesz wziąć przedmiotu podczas zmieniania swojego wizerunku", + "ItemUnequippableNoAmmo": "{1} w slocie {2} nie ma amunicji i nie może zostać użyty!", + "NoSpaceSelfInventory": "Nie masz już miesca w ekwipunku", + "Business": "biznes", + "House": "mieszkanie", + "Clan": "klan", + "Vehicle": "pojazd", + "Item": "przedmiot", + "ItemType": "rodzaj przedmiotu", + "Gate": "brama", + "Door": "drzwi", + "ClanRank": "ranga klanu", + "JobRank": "praca rangi", + "RadioStation": "stacja radiowa", + "Months": [ + "Styczeń", + "Luty", + "Marzec", + "Kwiecień", + "Maj", + "Czerwiec", + "Lipiec", + "Sierpień", + "Wrzesień", + "Październik", + "Listopad", + "Grudzień" + ], + "WeekDays": [ + "Niedziela", + "Poniedziałek", + "Wtorek", + "Środa", + "Czwartek", + "Piątek", + "Sobota" + ], + "CardinalDirections": { + "North": "Północ", + "Northeast": "Północny wschód", + "East": "Wschód", + "Southeast": "Południowy zachód", + "South": "Południe", + "Southwest": "Południowy wschód", + "West": "Zachód", + "Northwest": "Północny zachód" + }, + "NewPlayerReadyToPlay": [ + "Dostałeś trochę pieniędzy. Użyj {1} aby znaleść miejsca do kupowania przedmiotów.", + "Jeżeli potrzebujesz pieniędzy, żółte kropki na mapie to miejsca pracy.", + "Aby zdobyć auto musisz odwiedzić dealera samochodów. Możesz też wypożyczyć samochód przy spawnie lub użyć pociągu", + "Pamiętaj aby przeczytać {1} i użyć {2} aby zdobyć więcej informacji." + ], + "YourCurrentVehicleDeleted": "Samochód w którym przebywałeś został usunięty.", + "Distance": "Odległość", + "Meters": "Metry", + "Feet": "Stopy", + "Kilometers": "Kilometry", + "Miles": "Mile", + "MustBeVehicleDriver": "Musisz być kierowcą tego pojazdu!", + "PlayerJoinedServer": "{1} dołączył do gry z {2}!", + "PlayerLeftServer": "{1} wyszedł z gry! ({2})", + "TakeItemFromHouse": "bierze {1} z mieszkania", + "TakeItemFromBusinessStorage": "bierze {1} z magazynu biznesu", + "TakeItemFromBusiness": "bierze {1} z biznesu", + "TakeItemFromItem": "bierze {1} z {2}", + "TakeItemFromVehicleTrunk": "bierze {1} z bagażnika", + "TakeItemFromVehicleDash": "bierze {1} ze schowka", + "AccountHelp": [ + "NIE PODAWAJ nikomu swojego hasła. {1} nigdy nie zapyta cię o twoje hasło", + "Użyj {1} aby zmienić swoje hasło i {2} jeżeli je zapomniałeś", + "Kilka ustawień które możesz użyć: {1}" + ], + "VehicleHelp": [ + "Twoje osobiste auta zapisują się za każdym razem jak ktoś wyjdzie z gry!", + "Odwiedź dealera samochodów, aby zakupić pojazd (Użyj {1} po więcej informacji)", + "Kilka komend: {1}", + "Odwiedź warsztat mechanika aby naprawić, pokolorować i/lub ulepszyć swój pojazd! {1} po więcej informacji" + ], + "VehicleDealershipHelp": [ + "Odwiedź dealera samochodów, aby zakupić nowy pojazd. Użyj {1} aby jednego zlokalizować.", + "Przy dealerze samochodów, wejdź do auta, które chcesz kupić i ukaże ci się jego cena.", + "Jeśli chcesz kupić pojazd, użyj {1} i dostanie kluczyki by przetestować je na parkingu.", + "Odjedź od dealera samochodów, aby potwierdzić zakup pojazdu." + ], + "JobHelp": [ + "Odwiedzaj miejsca pracy aby zarabiać pieniądze. Szkuaj zółtych punktów na mapie", + "Przy miejscu pracy, użyj {1} aby zdobyć prace. Użyj {2} by opuścić swoją pracę", + "Użyj {1} aby zacząć pracę. Możesz też dostać pracę {2} i {3}", + "Większość pojazdów służbowych jest zamknięta. Użyj {1} obok niego aby do niego wsiąść.", + "Przy wsiadaniu do pojazdu służbowego, dostaniesz informacje jak wykonać podjętą pracę." + ], + "ChatHelp": [ + "Są 2 główne rodzaje chatów: Poza postacią (OOC) i w postaci (IC)", + "Mieszanie tych 2 rodzajów jest nieprawidłowym roleplay'em. Zobacz {1} po więcej informacji.", + "Kilka komend na chacie: {1}", + "Niektóre mają dostępne krótsze nazwy ({1} by rozmawiać, {2} by krzyczeć, itp.)" + ], + "ServerRulesHelp": [ + "Nierealistyczne akcje (powergaming) są niedozwolone. Nie jesteś superman'em.", + "Roleplay na tle terrorystycznym jest niedozowolony.", + "Zawszę słuchaj się administracji.", + "Nie mieszaj czatów (metagaming). Nie możesz używać informacji w postaci, jeżeli uzyskałeś je poza nią.", + "Używaj języka angielskiego na głównych chatach. Jeżeli nie jestes dobry z angielskiego, użyj {1}" + ], + "AnimationHelp": [ + "Animacje pozwalają ci bardziej wczuć się w swoją role.", + "Używaj {1} lub {2} z nazwą by użyć animacji.", + "By zobaczyć liste animacji, użyj {1}" + ], + "WeaponHelp": [ + "Odwiedź sklep z bronią, aby kupić nową broń. Użyj {1} by znaleźć taki sklep.", + "Musisz posiadać licenje na broń, aby takową kupić.", + "Licencje broni są wydawanie przez policję. Zaaplikuj się tam, aby taką zdobyć.", + "Bronie mogą być też kupowane nielegalnie od niektórych bizensów, dealerów broni i klanów." + ], + "SkinHelp": [ + "W sklepie z ubraniami, użyj {1} aby kupić ubrania.", + "Kiedy masz ubrania, wyposaż się w nie i użyj je jak każdy inny przedmiot by ukazać modyfikacje postaci (sprawdź {1} aby zobaczyć jak używać itemy)", + "Niektóre skiny są dostępne tylko dla niektórych osób, klanów lub z innych powodów." + ], + "KeyBindHelp": [ + "Możesz zmienić przypisania klawiszy. Użyj {1} aby zobaczyć twoje przypisane klawisze.", + "Użyj {1} aby dodać nowe przypisanie i {2} aby je usunąć.", + "Domyślnymi przyciskami są: {1} aby uruchomić pojazd, {2} aby użyć świateł, and {3} aby otworzyć/zamknąć pojazd", + "Naciśnij {1} aby zobaczyć swoje itemy i {2} aby wyposażyć się w jakiś przedmiot lub {3} aby go schować.", + "Naciśnij {1} aby użyć przedmiot, który trzymasz, naciśnij {2} aby go upuścić lub naciśnij {3} aby podnieść jakiś przedmiot z ziemi." + ], + "BusinessHelp": [ + "Użyj {1} aby kupować przedmioty lub {2} aby zobaczyć listę co jest na sprzedaż w jakimkolwiek bizensie.", + "Biznesy mają niebieskie nazwy nad ikoną przy ich wejściu.", + "Komendy właściciela biznesu: {1}", + "Nowe auto na sprzedaż pojawi się po odjechaniu od dealera samochodów." + ], + "ClanHelp": [ + "Zapytaj administratora o stworzenie klanu (Podobne do fakcji/grup/rodzin)", + "Właściciele klanu mają pełną kontrole over nad ich klanem od momentu gdy jest stworzony", + "Komendy klanu: {1}", + "Więcej komend klanu: {1}" + ], + "RadioStationHelp": [ + "Użyj {1} by ustawić stację twojego auta, mieszkania lub biznesu", + "Użyj {2} by zobaczyć listę stacji", + "Możesz zmienić głośność swojego radia używając {1} i liczbą od 0 do 100 jako procenty" + ], + "WealthAndTaxHelp": [ + "Twoje podatki przy wypłacie są {1} procentami twojego przeliczonego bogactwa.", + "Twoja przeliczone bogactwo jest obliczone wliczając twoje pojazdy, mieszkania i biznesy, które posiadasz.", + "Każdy pojazd jest {1}, każde mieszkanie jest {2} i każdy biznes jest {3}", + "Użyj {1} aby zobaczyć swoje bogactow i {2} zobaczyć ile będziesz musiał zapłacić przy następnej wypłacie" + ], + "MustBeInAVehicle": "Musisz być w pojeździe!", + "MustBeInOrNearVehicle": "Musisz być w lub obok pojazdu!", + "MustBeInVehicleFrontSeat": "Musisz być w przednim siedzeniu pojazdu!", + "MustBeInVehicleDriverSeat": "Musisz być kierowcą pojazdu!", + "DontHaveVehicleKey": "Nie masz klucza do tego pojazdu!", + "NoGateAccess": "Nie masz dostępu do tej bramy!", + "GateBroken": "Ta brama jest popsuta!", + "GateHacked": "Ta brama nie odpowiada!", + "RadioJammed": "Słysysz tylko szumy z radia.", + "VehicleNotForSale": "To auto nie jest na sprzedaż!", + "VehicleNotForRent": "Tego pojazdu nie można wypożyczyć!", + "BusinessNotForSale": "Ten biznes nie jest na sprzedaż!", + "BusinessNotForRent": "Tego biznesu nie można wypożyczyć!", + "HouseNotForSale": "This house is not for sale!", + "HouseNotForRent": "Tego biznesu nie można wypożyczyć!", + "DealershipPurchaseTestDrive": "Odjedź pojazdem od dealera samochodów aby go kupić, lub wysiądź aby anulować zakup.", + "DealershipPurchaseExitedVehicle": "Anulowałeś kupno pojazdu, ponieważ wysiadłeś z pojazdu!", + "VehiclePurchaseComplete": "Ten pojazd jest teraz twój, zapiszę się nieważne gdzie jest.", + "VehiclePurchaseNotEnoughMoney": "Nie masz wystarczająco dużo funduszy aby kupić to auto!", + "HousePurchaseNotEnoughMoney": "Nie masz wystarczająco dużo funduszy aby kupić to mieszkanie!", + "BusinessPurchaseNotEnoughMoney": "Nie masz wystarczająco dużo funduszy aby kupić ten biznes!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Mieszkania Gracza ({1})", + "HeaderPlayerStaffFlagsList": "Flagi Administracji ({1})", + "HeaderStaffFlagsList": "Flagi Administracji", + "NonRPName": "Nieprawidłowa nazwa roleplay! Wybierz nową:", + "InvalidStaffFlag": "Flaga administracji nie znaleziona!", + "InvalidClanFlag": "Flaga klanu nie znaleziona!", + "InvalidLocale": "Język nie znaleziony!", + "HeaderJobUniformList": "Mundury robocze ({1})", + "HeaderJobEquipmentList": "Wyposażenie robocze ({1})", + "InvalidJobUniform": "Mundur roboczy nie znaleziony!", + "InvalidJobEquipment": "Wyposażenie robocze nie znalezione!", + "HeaderVehiclesInRangeList": "Pojazdy w {1}", + "NoVehiclesWithinRange": "Nie ma pojazdów w {1}", + "AmountNotNumber": "Ilość musi być liczbą!", + "NeedToBeWorking": "Musisz być w pracy! Użyj {1} w punkcie pracy lub obok pojazdu służbowego.", + "NeedToBeOnJobRoute": "Musisz być w trasie! Użyj {1} w pojeździe służbowym", + "CurrentJobRouteVehicleColoursChanged": "Kolory pojazdów na twojej trasie zostały zmienione przez Administratora.", + "NotYourJob": "To nie twoja praca!", + "JobPoints": "Możesz zdobyć pracę udając się do żółtych punktów na mapie.", + "QuitJobToTakeAnother": "Jeżeli chcesz tą prace, użyj {1} aby opuścić swoją dotychczasową pracę.", + "NotAJobVehicle": "To nie jest pojazd służbowy!", + "NotYourJobVehicle": "To nie jest twój pojazd służbowy!", + "HeaderPickupTypes": "Rodzaję Pickup'ów", + "HeaderBlipTypes": "Rodzaje Ikon Mapy", + "InvalidGPSLocation": "Nie ma lokalizacji z taką nazwą lub rodzajem", + "HeaderBusinessList": "Biznesy", + "VehicleForSale": "Ten {1} jest do kupienia za {2}! Użyj {3} jeżeli chcesz go kupić", + "VehicleForRent": "Ten {1} jest do wynajęcia za {2}! Użyj {3} jeżeli chcesz go wynająć", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Nieprawidłowe hasło! Pozostało {1} prób", + "LoginFailedNoPassword": "Musisz podać hasło! ! Pozostało {1} prób", + "RegistrationFailedNoPassword": "Musisz podać hasło!", + "RegistrationFailedNoPasswordConfirm": "Musisz potwierdzić hasło!", + "RegistrationFailedNoEmail": "Musisz podać adres email!", + "AccountNameAlreadyRegistered": "Twoja nazwa jest już zarejestrowana!", + "AlreadyLoggedIn": "Jesteś już zalogowany!", + "RegistrationFailedInvalidEmail": "Nieprawidłowy adres email!", + "RegistrationFailedPasswordMismatch": "Hasła się nie zgadzają!", + "RegistrationFailedCreateError": "Nie udało się stworzyć twojego konta!", + "RegistrationSuccess": "Twoje konto zostało utworzone!", + "RegistrationEmailVerifyReminder": "Nie zapomnij zweryfikować swojego adresu email! Kod werifikacyjny został wysłany na twój adres email.", + "RegistrationCreateCharReminder": "Aby zagrać na serwerze, musisz stworzyć postać.", + "NoCharactersGUIMessage": "Nie masz postaci. Czy chciałbyś ją stworzyć?", + "NoCharactersGUIWindowTitle": "Brak postaci", + "NoCharactersChatMessage": "Nie masz postaci. Użyj {1} aby ją stworzyć.", + "NeedEmailFor2FA": "Musisz przypisać adres email do swojego konta, aby używać weryfikacji dwuetapowej.", + "NeedEmailVerifiedFor2FA": "Musisz zweryfikować swój adres email, aby używać weryfikacji dwuetapowej", + "SetEmailHelpTip": "Użyj {1} aby ustawić swój adres email.", + "VerifyEmailHelpTip": "Użyj {1} aby zweryfikować swój adres email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Pobliskie radio", + "FromRadio": "Z radia", + "ToRadio": "Do radia", + "NeedToEnterPropertyCommand": "Musisz najpierw wejść do {1}! Użyj {2} aby wejść lub wyjść", + "NeedToEnterPropertyKeyPress": "Musisz najpierw wejść do {1}! Naciśnij {2} aby wejść lub wyjść", + "InventoryFullCantCarry": "Nie masz miejsca aby to podnieść (pełny ekwipunek)!", + "NotEnoughCashNeedAmountMore": "Nie masz wystarczająco miejsca! Potrzebujesz jeszcze {1}!", + "AmountMustBeMoreThan": "Wartość musi być większa od {1}!", + "WeaponBanned": "Nie możesz używać ani kupować broni!", + "TimeNotNumber": "Czas musi być numerem", + "HeaderDefaultBusinessItemTypes": "Wzory przedmiotów biznesowych", + "FixingStuck": "Naprawianie twojej pozycji i świata wirtualnego ...", + "CantUseCommandYet": "Musisz poczekać zanim znowu użyjesz tej komendy!", + "NotATester": "Nie jesteś testerem!", + "AccessDenied": "OdmowaDostępu", + "InvalidSkin": "Ta skórka jest nieprawidłowa!", + "HeaderInteriorTypes": "Wnętrza", + "GUIAccountSettingToggle": "Przełączyłeś {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "Możesz kupić pojazd poprzez odwiedzenie salonu samochodowego. Użyj {1} aby uzyskać więcej informacji.", + "SkinCommandHelp": "Możesz zmienić swój wygląd poprzez odwiedzenie sklepu odzieżowego. Użyj {1} aby uzyskać więcej informacji.", + "BusinessVehiclesRespawned": "Wszystkie pojazdy biznesowe zostały zrespione przez admina!", + "JobVehiclesRespawned": "Wszystkie pojazdy firmowe zostały zrespione przez admina!", + "PlayerVehiclesRespawned": "Wszystkie pojazdy gracza zostały zrespione przez admina!", + "ClanVehiclesRespawned": "Wszystkie pojazdy klanowe zostały zrespione przez admina!", + "PublicVehiclesRespawned": "Wszystkie pojazdy publiczne zostały zrespione przez admina!", + "EmptyVehiclesRespawned": "Wszystkie puste pojazdy zostały zrespione przez admina!", + "AllVehiclesRespawned": "Wszystkie pojazdy zostały zrespione przez admina!", + "AllVehiclesReloaded": "Wszystkie pojazdy biznesowe zostały ponownie załadowane przez admina!", + "YourVehicleRespawned": "Twój pojazd został zrespiony", + "PlayerIPBanned": "{1} został zbanowany poprzez IP!", + "PlayerCharacterBanned": "{1} został zbanowany poprzez postać!", + "PlayerSubNetBanned": "{1} został zbanowany poprzez podsieć!", + "CantModifyBusiness": "Nie możesz zarządzać ani modyfikować tego biznesu", + "CantModifyHouse": "Nie możesz zarządzać ani modyfikować tego mieszkania", + "ServerTimeSet": "{1} ustawił czas na {2}", + "ServerWeatherSet": "{1} ustawił pogodę na {2}", + "ServerSnowSet": "{1} ustawił spadający śnieg na {2} i śnieg na podłożu na {3}", + "AllJobsReloaded": "Wszystkie prace zostały ponownie załadowane przed admina", + "ServerLogoSet": "{1} ustawił logo serwera na {2}", + "ServerGUISet": "{1} ustawił interfejs tego serwera na {2}", + "ServerBusinessBlipsSet": "{1} ustawił wszystkie punkty biznesowe na {2}", + "ServerHouseBlipsSet": "{1} ustawił wszystkie punkty mieszkaniowe na {2}", + "ServerJobBlipsSet": "{1} ustawił wszystkie punkty pracy na {2}", + "ServerBusinessPickupsSet": "{1} ustawił wszystkie interakcje biznesowe na {2}", + "ServerHousePickupsSet": "{1} ustawił wszystkie interakcje mieszkaniowe na {2}", + "ServerJobPickupsSet": "{1} ustawił wszystkie interakcje pracy na {2}", + "BusinessBuyItemsLabel": "Użyj {1} aby kupić przedmioty", + "PropertyEnterCommandLabel": "Użyj {1} aby wejść", + "PropertyEnterKeyPressLabel": "Naciśnij {1} aby wejść", + "PropertyForSaleLabel": "Na sprzedaż: {1}", + "PropertyForRentLabel": "Wynajem: {1} dziennie", + "RemainingTaxPaidInMoney": "Pokryłeś pozostałe podatki za {1}.", + "LostMoneyFromTaxes": "Straciłeś trochę pieniędzy ponieważ twoję podatky przewyższają twoją wypłatę!", + "NextPaycheckRepossessionWarning": "Jeżeli nie będziesz miał wystarczającej sumy aby pokryć podatki, stracisz swoje przedmioty przy kolejnej wypłacie!", + "NotEnoughMoneyForTax": "Nie masz wystarczająco dużo pieniędzy aby zapłacić podatki!", + "AssetsRepossessedForTax": "Straciłeś {1} pojazdów, {2} mieszkania, and {3} biznesów, ponieważ nie byłeś w stanie zapłacić za podatki!", + "Closed": "Zakmnięte", + "Open": "Otwarte", + "VehicleDealershipLabel": "Wsiądz do pojazdu jako kierowca aby go kupić", + "TakeJobLabel": "Użyj /takejob aby tu pracować", + "StartWorkLabel": "Uzyj /startwork aby zacząć prace", + "JobEquipAndUniformLabel": "Użyj /uniform i /equip po przedmioty firmowe, albo /stopwork aby przestać pracować", + "NotYourJobLabel": "Masz już inną pracę. Użyj /quitjob jeżeli wolisz tą", + "JobLabel": "{1} Praca", + "PaydayBonusSet": "🤑 {1} ustawił bonus wypłaty na {2}", + "AllHousesReloaded": "🏘️ Wszystkie mieszkania zostały ponownie załadowane przez admina!", + "AllRadioStationsReloaded": "📻 Wszystkie stacje radiowe zostały ponownie załadowane przez admina!", + "PlayerKicked": "🦶 {1} został wyrzucony z serwera", + "AllBusinessesReloaded": "🏢 Wszystkie biznesy zostały ponownie załadowane przez admina!", + "UnableToDoThat": "Nie jesteś w stanie tego zrobić", + "SetVehicleClanConfirmMessage": "Czy na pewno chcesz oddać ten pojazd na rzecz twojego klanu?", + "SetVehicleClanConfirmTitle": "Uwaga!", + "SetItemPriceBelowOrderPriceMessage": "Czy na pewno chcesz ustawić cenę tego przedmiotu, poniżej jego rzeczywistej ceny? Będziesz tracił {1} za każdy zakup!", + "SetItemPriceBelowOrderPriceTitle": "Uwaga!", + "MustOwnVehicle": "Nie jesteś właścicielem tego pojazdu!", + "RandomTips": [ + "Zółte kropki na mapie oznaczają miejsca pracy", + "Możesz przypisywać klawisze. Użyj {1} aby uzyskać więcej szczegółów", + "Użyj {1} jeżeli nie chcesz uzyskiwać więcej wskazówek", + "Możesz edytować swoje przypisane klawisze używając {1} i {2}", + "Naciśnij ℹ️ aby zobaczyć swój ekwipunek oraz klawiszy z numerami aby wybrać przedmiot", + "Użyj {1} przy biznesie aby kupować przedmioty", + "Znalazłeś błąd? Zgłoś go przy użyciu {1}", + "Masz pomysł albo jakąś sugestje? Podziel się nią z nami przy użyciu {1}", + "Chcesz kupić biznes? Użyj {1} przy biznesie na sprzedaż", + "Chcesz kupić mieszkanie? Użyj {1} przy mieszkaniu na sprzedaż", + "Chcesz kupić pojazd? Odwiedź salon samochodowy aby uzyskać więcej informacji!", + "Zmień się w inna postać przy użyciu {1}", + "Użyj {1} aby automatycznie zalogować się w przypadku połączenia się z identycznego IP", + "Użyj {1} aby włączyć/wyłączyć światła w twoim mieszkaniu/biznesie", + "Użyj {1} aby włączyć radio w twoim pojezdzie, mieszkaniu albo biznesie", + "Chcesz utworzyć klan? Użyj {1} po więcej informacji", + "Legalne bronie mogą zostać kupione w każdym sklepie Ammunation" + ], + "PromptResponseTip": "Użyj {1} aby zaakceptować lub {2} aby odrzucić", + "PlayerConnecting": "👋 {1} łączy się z serwerem", + "GetStartedJobVehicle": "Wejdź do {1} aby rozpocząć.", + "VehicleTypes": { + "Car": "Samochód", + "Truck": "Cieżarówka", + "Van": "Van", + "Taxi": "Taksówka", + "Bus": "Autobus", + "PoliceCar": "Samochód Policyjny", + "Ambulance": "Ambulans", + "FireTruck": "Pojazd pożarowy", + "Bike": "Rower", + "Motorbike": "Skuter", + "Boat": "Łódka", + "Helicopter": "Śmigłowiec", + "Plane": "Samolot", + "Train": "Pociąg" + }, + "AlreadyOnJobRoute": "Jesteś już w trakcie drogi!", + "GaveVehicleToClan": "Oddałeś to {1} na rzecz swojego klanu!", + "JobDisabled": "Ta praca jest wyłączona!", + "SetHouseClanConfirmMessage": "Czy na pewno chcesz oddać to mieszkanie na rzecz twojego klanu?", + "SetHouseClanConfirmTitle": "Uwaga!", + "SetBusinessClanConfirmMessage": "Czy na pewno chcesz oddać ten biznes na rzecz twojego klanu?", + "SetBusinessClanConfirmTitle": "Uwaga!", + "MustOwnHouse": "Nie jesteś właścicielem tego mieszkania!", + "MustOwnBusiness": "Nie jesteś właścicielem tego biznesu!", + "GaveHouseToClan": "Oddałeś to mieszkanie na rzecz twojego klanu!", + "GaveBusinessToClan": "Oddałeś ten biznes na rzecz twojego klanu!", + "BuyBusinessConfirmMessage": "Czy na pewno chcesz kupić tą firmę?", + "BuyBusinessConfirmTitle": "Uwaga!", + "BuyHouseConfirmMessage": "Czy na pewno chcesz kupić to mieszkanie?", + "BuyHouseConfirmTitle": "Uwaga!", + "BuyBusinessLabel": "Użyj {1} aby kupić tą firmę", + "BuyHouseLabel": "Użyj {1} aby kupić to mieszkanie", + "RentHouseLabel": "Użyj {1} aby wynająć to mieszkanie", + "AccountEmailAlreadyVerified": "Już ustawiłeś oraz zweryfikowałeś swój email!", + "EmailVerificationCodeSent": "Kod weryfikacyjny wraz z instrukcjami został wysłany na twój email.", + "GUIPlayAsCharacterButton": "Graj", + "GUINewCharacterButton": "Nowa postać", + "GUIPreviousCharacterButton": "Poprzednie", + "GUINextCharacterButton": "Następne", + "GUICharacterSelectWindowTitle": "Wybierz postać", + "GUICharacterSelectMoneyLabel": "Pieniądze: {1}", + "GUICharacterSelectClanLabel": "Klan: {1}", + "GUICharacterSelectLastPlayedLabel": "Ostation grano: {1} dni, {2} godzin, {3} minut temu", + "GUILoginWindowLabelEnterPassword": "Proszę podać swoje hasło", + "GUILoginWindowSubmitButton": "Login", + "GUILoginWindowResetPasswordButton": "Reset", + "GUILoginWindowPasswordPlaceholder": "Hasło", + "GUILoginWindowForgotPasswordLabel": "Zapomniałeś hasła?", + "GUIRegisterWindowLabelCreateAccount": "Stwórz konto", + "GUIRegisterWindowPasswordPlaceholder": "Hasło", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Potwierdz hasło", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Stwórz konto", + "GUINewCharacterMessageLabel": "Nazwij swoją postać", + "GUINewCharacterFirstNamePlaceholder": "Imię", + "GUINewCharacterLastNamePlaceholder": "Nazwisko", + "GUINewCharacterSubmitButton": "Stwórz postać", + "GUIChangePasswordWindowTitle": "Zmień hasło", + "GUIChangePasswordPasswordLabel": "Podaj nowe hasło", + "GUIChangePasswordPasswordPlaceholder": "Hasło", + "GUIChangePasswordConfirmPasswordPlaceholder": "Potwierdz hasło", + "GUIChangePasswordSubmitButton": "Zmień hasło", + "GUIResetPasswordWindowMessage": "Zresetuj hasło", + "GUIResetPasswordConfirmEmailLabel": "Proszę potwierdz swój email", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Zresetuj hasło", + "GUIResetPasswordLoginButton": "Login", + "GUIResetPasswordRememberMessage": "Pamiętasz swoje hasło?", + "HeaderJobList": "Prace", + "HeaderBusinessInfo": "Informacje o biznesie", + "HeaderHouseInfo": "Informacje o mieszkaniu", + "HeaderClanInfo": "Informacje o klanie", + "Locales": { + "English": "Angielski", + "Russian": "Rosyjski", + "Spanish": "Hiszpański", + "German": "Niemiecki", + "Dutch": "Holenderski", + "Polish": "Polski", + "Chinese": "Chiński", + "French": "Francuski", + "Japanese": "Japoński", + "Slovak": "Słowacki", + "Arabic": "Arabski" + }, + "TwoFactorAuthSet": "⚙️ Włączyłeś weryfikacje dwu-etapową {1}", + "AccountServerLogoSet": "⚙️ Zmieniłeś logo serwera {1}", + "ChatScrollLinesNotNumber": "Ilość linijek musi być numerem", + "ChatScrollLinesMustBeBetween": "Iloś linijek musi być pomiędzy {1} i {2}", + "ChatScrollLinesSet": "Czat będzie teraz scrollował {1} linijek na raz", + "InvalidEmailVerificationCode": "Nieprawidłowy kod weryfikacyjny! Nowy kod został stworzony i wysłany na twojego email'a.", + "EmailVerified": "Twój email został zweryfikowany", + "EmailVerifiedTip": "Możesz teraz używać email'a do resetowania hasła, weryfikacji dwu-etapowej, logowaniu z nowego urządzenia itp.", + "CommandRequiresLogin": "Musisz być zalogowany, aby użyć komendy {1}", + "CommandDisabled": "Komenda {1} jest wyłączona", + "CommandDisabledOnDiscord": "Komenda {1} nie jest dostępna na discordzie", + "CommandNotFoundHelpTip": "Komenda {1} nie istnieje! Użyj {2} aby zobaczyć komendy i informacje.", + "CommandNotFoundPossibleMatchTip": "Komenda {1} nie istnieje! Czy miałeś na myśli {2}?", + "CommandNoPermissions": "Nie masz uprawnień aby użyć komendy {1}", + "GUIResetPasswordCodeInputLabel": "Sprawdź swój email, aby uzyskać kod", + "GUIResetPasswordCodePlaceholder": "Kod weryfikacyjny", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Uwaga", + "GUIInfoTitle": "Informacje", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Nieprawidłowy email!", + "HeaderVehicleInfo": "Informacje o pojeździe", + "HeaderClanRanksList": "Ranga w klanie", + "HeaderNPCInfo": "Informacje o NPC", + "NPCAnimationSet": "Ustawiłeś animacje NPC {1} na animacje {2}", + "NPCNameSet": "Ustawiłeś nazwę NPC {1} na {2}", + "VehicleTooFar": "Jesteś za daleko od pojazdu!", + "HeaderPropertyTemplateTypes": "Rodzaje posesji", + "MustBeLoggedInAndSpawnedToChat": "Musisz być zalogowany oraz zrespiony aby rozmawiać na czacie!", + "MutedCantChat": "Jesteś wyciszony i nie możesz rozmawiać na czacie!", + "CantUseMegaphone": "Musisz posiadać megafon albo siedzieć w pojeździe w uprzywilejowanym!", + "HeaderAnimationHelp": "Info o Animacjach", + "HeaderBadgeInfo": "Informacje o odznace ({1})", + "NoItemCloseEnough": "W pobliżu nie ma przedmiotu", + "CantDropJobEquipmentItem": "Nie możesz wyrzucać przedmiotów służbowych", + "CantPutJobEquipmentItem": "Nie możesz przechowywać przedmiotów służbowych", + "NoItemEquipped": "Nie masz żadnego wybranego przedmiotu", + "NoItemInActiveSlot": "Nie masz żadnego przedmiotu w twoim aktywnym slocie przedmiotów", + "CantPutItemInSkinChange": "Nie możesz przechowywać przedmiotów while podczas zmieniania swojego wyglądu", + "NothingToTakeItemFrom": "W pobliżu nie ma żadnego pojemnika, z którego można wziąć przedmioty", + "NoAmmoToLoadIntoWeapon": "Nie masz żadnej amunicji do {1}", + "LoadAmmoIntoWeaponHelpCommand": "Aby wprowadzić ten pocisk do broni, weź broń i wpisz {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "Aby wprowadzić ten pocisk do broni, weź broń i wciśnij {1}", + "NobodyCloseEnoughToHandcuff": "Nie ma nikogo w pobliżu do zakucia", + "NobodyCloseEnoughToTie": "Nie ma nikogo w pobliżu do związania", + "PlayerNotSurrenderedHandcuff": "{1} nie może być zakuty! Muszą się poddać, być nieprzytomni albo dostać z paralizatora", + "PlayerNotSurrenderedTie": "{1} nie może być związany! Muszą się poddać, być nieprzytomni albo dostać z paralizatora", + "HeaderCharactersListSelf": "Twoje postacie", + "HeaderCharactersListOther": "Postacie {1}", + "CharacterSelectHelpText": "Użyj {1} aby wybrać postać albo {2} aby stworzyć nową postać", + "ItemDoesntDoAnythingOnUse": "{1} nic nie robi kiedy próbujesz go użyć.", + "ItemRadioStationTip": "Użyj {1} aby wybrać stacje radiową", + "VehicleLockedCommandTip": "🔒 Ten {1} jest zamknięty. Użyj {2} aby go otworzyć", + "VehicleLockedKeyPressTip": "🔒 Ten {1} jest zamknięty. Press {2} aby go otworzyć", + "VehicleLockedCantUnlock": "🔒 Ten {1} jest zamknięty i nie masz do niego kluczy", + "CurrentlyRentingThisVehicle": "Wypożyczasz ten {1} za {2} co minute. Użyj {3} jeżeli chcesz przestać go wypożyczać.", + "VehicleBelongsTo": "Ten {1} należy do {2} ({3})", + "NotOwned": "Bez właściciela", + "NotCloseEnoughToItemContainer": "Nie jesteś wystarczająco blisko czegokolwiek co może pomieścić przedmioty", + "Job": "Praca", + "Player": "Gracz", + "BusinessIsNowPaintBall": "Ten biznes jest teraz areną paintball", + "JoinedPaintBall": "Dołączyłeś do gry w paintball'a.", + "ItemsStoredForPaintBall": "Twoje przedmioty zostały umieszczone w szafce i zostaną do ciebie zwrócone jak opuścisz grę w paintball'a", + "LeftPaintBall": "Opusciłeś grę w paintball'a. Twoje itemy zostały zwrócone.", + "PaintBallEnded": "Gra w paintball'a się zakończyła. Twoje itemy zostały zwrócone.", + "HeaderEventWinners": "Zwycięzcy", + "YourPaintBallResults": "Masz {1} zabójstwo i {2} śmierci w tym meczu", + "NoPrivateMessageToReply": "Nie dostałeś żadnej prywatnej wiadomości na którą mogłbyś odpowiedzieć", + "WeaponDoesNotUseAmmo": "{1} nie używa amunicji", + "ChatBoxTimestampsToggle": "{1} zegar na czacie", + "ProfanityFilterSet": "{1} system cenzury na czacie", + "ResetAllKeyBindsConfirm": "Czy jesteś pewnien, że chcesz zresetować wszystkie przypisane klawisze na domyślne?", + "NotRentingAVehicle": "Nie wypożyczasz żadnego pojazdu!", + "StoppedRentingVehicle": "Przestałeś wypożyczać {1}", + "VehicleEngineStartKeyPressTip": "Silnik {1} jest wyłączony. Naciśnij {2} aby go włączyć.", + "VehicleEngineStartCommandTip": "Silnik {1} jest wyłączony. Użyj {2} aby go włączyć.", + "StartedRentingVehicle": "Wypożyczasz teraz ten {1} za {2} co minute. Aby przestać wypożyczać, użyj {3}", + "VehicleAlreadyRentedByOther": "Ten pojazd jest już wypożyczony przez kogoś innego", + "VehicleAlreadyRentedBySelf": "Już wypożyczasz ten pojazd", + "JobRankTooLow": "Nie jesteś wystarczająco wysoką rangą!", + "InvalidKeyName": "Wprowadzone ID klawisza lub nazwa jest błędna!", + "KeyBindsReset": "Wszystkie twoje przypisania klawiszy zostały zresetowane", + "KeyBindNameTip": "Używaj ID klawiszy, liter lub numerów. Nie używaj spacji.", + "UniversalInlineExamplesList": "Przykłady: {1}", + "KeyBindRemoved": "Usunąłeś przypisanie dla klawisza {1}", + "KeyBindAdded": "Przypisałeś klawisz {1} do {2}", + "CopyAllKeyBindsToServerConfirm": "Czy jesteś pewien, że chcesz skopowiać swoje wszystkie przypisania na serwer {1}?", + "CopiedAllKeyBindsToServer": "Wszystkie twoje przypisania zostały skopiowane na serwer {1}", + "MustBeSpawned": "Musisz być zrespiony!", + "ChatEmojiSet": "Włączyłeś automatyczne emoji na czacie {1}", + "FishingLineNotCast": "Nie zarzuciłeś wędki!", + "CantFishHere": "Nie możesz tutaj łowić! Musisz być blisko wody lub na łódce!", + "NeedFishingRod": "Musisz trzymać wędke!", + "FishingCastCommandHelp": "Użyj {1} aby zarzucić swoją wędke", + "FishingCastKeyBindHelp": "Naciśnij {1} aby zarzucić swoją wędke", + "Paused": "Pauza", + "PaintBallAlmostWin": "{1} potrzebuje tylko {2} zabójstw aby wygrać mecz!", + "HeaderClanFlagsList": "Flagi klanu ({1})", + "PleaseWait": "Prosze czekać...", + "HeaderServerRulesList": "Zasady serwera", + "FrequencyChannelChanged": "Ustawiłeś kanał swojego {1} w slocie {2} na {3}", + "ItemTurnedOnOff": "{1} twoje {2} w slocie {3}", + "SkinSelectHelpTextSkin": "Naciśnij {1} lub {2} aby zmienić skin, {3} aby zapisać lub {4} aby anulować", + "SkinSelectHelpTextBodyPart": "Naciśnij {1} lub {2} by zmienić części ciała", + "SkinSelectBodyPartNames": { + "Head": "Głowa", + "UpperBody": "Górna część ciała", + "LowerBody": "Dolna część ciała", + "Hair": "Włosy", + "Hat": "Kapelusz", + "Glasses": "Okulary", + "LeftHand": "Lewa Ręka", + "RightHand": "Prawa Ręka", + "LeftWrist": "Lewy Nadgarstek", + "RightWrist": "Prawy Nadgarstek" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Użyj {1} aby włączyć/wyłączyć silnik pojazdu", + "VehicleLockedAfterEntryAttempt": "Użyj {1} aby otworzyć/zamknąć pojazd", + "ShowItemsAfterPurchase": "Użyj {1} aby zobaczyć swoje inventory", + "BuyCommandAfterEnterBusiness": "Użyj {1} aby kupić przedmioty od biznesu", + "UseItemKeyAfterEquipping": "Użyj {1} aby użyć wyjęty przedmiot", + "UseItemKeyAfterEquippingWalkieTalkie": "Użyj {1} aby włączyć/wyłączyć radio", + "RadioCommandAfterEnablingWalkieTalkie": "Użyj {1} aby użyć radia", + "ReplyToDirectMessage": "Użyj {1} aby odpowiedzieć na prywatną wiadomość", + "UseItemKeyAmmoAfterEquippingWeapon": "Użyj {1} aby załadować amunicje do wyjętej broni", + "AnimationStop": "Użyj {1} aby zatrzymać swoją animacje", + "JobEquipmentInventory": "Sprzęt do pracy jest w twoim inventory. Użyj {1} aby go zobaczyć.", + "ViewInventory": "Użyj {1} aby zobaczyć swoje przedmioty", + "VehicleRepairItemUsage": "Stań obok pojazdu i użyj {1} aby go naprawić", + "VehicleColourItemUsage": "Stań obok pojazdu i użyj {1} aby zmienić jego kolor", + "VehiclePartItemUsage": "Stań obok pojazdu i użyj {1} aby ulepszyć go z {2}", + "AmmoClipItemUsage": "Wyjmnij broń i użyj {1} aby załadować amunicje", + "GenericItemUsage": "Użyj {1} aby użyć {2}", + "EnterJobVehicleForRoute": "Wejdź do pobliskiego pojazdu służbowego aby rozpocząć trasę", + "JobLocations": "Odwiedź zakład pracy aby zdobyć pracę. Użyj {1} aby znaleźć zakład pracy", + "JobRouteStart": "Użyj {1} aby rozpocząć trasę z tym pojazdem" + }, + "DisconnectReasons": { + "Unknown": "Nieznane", + "LostConnection": "Stracono Połączenie", + "Disconnected": "Odłączony", + "UnsupportedClient": "Niewspierany Client", + "WrongGame": "Zła Wersja Gry", + "IncorrectPassword": "Niepoprawne Hasło", + "UnsupportedExecutable": "Niewspierany Plik Wykonalny", + "Kicked": "Wyrzucony", + "Banned": "Zbanowany", + "Failed": "Nieudane", + "InvalidName": "Niepoprawna Nazwa", + "Crashed": "Crashed", + "ModifiedGame": "Zmodyfikowana Gra", + "FailedToLogin": "Wyrzucony - Nieudało się zalogować", + "NotATester": "Wyrzucony - Nie jest testerem", + "ClientScriptVerificationFail": "Weryfikacja skryptów klienta nieudana (możliwe cheaty)", + "ServerRestarting": "Serwer się restartuje", + "Desync": "Desynced", + "FailedToCreateCharacter": "Wyrzucony - Nie stworzył postaci" + }, + "DevelopersNotified": "Developerzy zostali poinformowani o problemie", + "NoJobLocationCloseEnough": "Nie ma żadnych lokacji pracy w pobliżu!", + "NotAllowedToUseJobs": "Nie możesz użyć żadnej pracy!", + "CantUseThisJob": "Nie możesz użyć tej pracy!", + "JobChanged": "💼 Teraz pracujesz jako {1}", + "NeedToBeNearJob": "Musisz być blisko lokacji pracy lub pojazdu, który do niej należy!", + "DontHaveAJob": "Nie masz pracy!", + "StartedWorking": "💼 Zacząłeś prace jako {1}", + "StoppedWorking": "Przestałeś pracować", + "ItemsStoredForJob": "Twoje przedmioty zostały schowane do szafy na czas twojej pracy", + "NoJobRoutesForLocation": "Twoja praca nie ma trasy do tej lokacji!", + "CurrentJobRouteDeleted": "Trasa na której było została usunięta lub wyłączona przez Admina", + "YourTax": "Twoje podaki na wypłacie to: {1}. Użyj {2} aby uzyskać więcej informacji.", + "YourWealth": "Twój majątek to: {1}. Użyj {2} aby uzyskać więcej informacji.", + "InvalidKeyBindName": "Nie znaleziono klawisza!", + "BusinessPurchased": "🏢Jesteś teraz włascicielem biznesu {1}", + "HousePurchased": "🏘️ Jesteś teraz włascicielem mieszkania {1}", + "CopyAllKeyBindsConfirm": "Czy jesteś pewien że chcesz przenieść swoją konfiguracje klawiszy na serwer {1}?", + "CopyAllKeyBindsOverwriteWarning": "To podmieni wszystkie twoje klawisze na innym serwerze", + "NoPromptAccept": "Nie masz niczego do przyjęcia", + "NoPromptReject": "Nie masz niczego do odrzucenia", + "NotOrderingAnyBusinessItems": "Nie zamawiasz nic dla bizensu!", + "BusinessOrderCanceled": "Anulowałeś zamówienie przedmiotu dla biznesu", + "DidNotCreateCharacter": "Nie masz żadnej postaci za grania. Do zobaczenia!", + "BusinessOrderNotEnoughMoney": "Ten biznes nie ma wystarczają dużo pieniędzy żeby to zamówić! Wypłac trochę używając {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} diff --git a/locale/russian.json b/locale/russian.json new file mode 100644 index 00000000..8908a9dc --- /dev/null +++ b/locale/russian.json @@ -0,0 +1,752 @@ +{ + "TranslationProvidedBy": "VNDTTS(Vende)", + "LocaleEnglishName": "Russian", + + "LocaleNativeName": "Русский", + "LocaleOffer": "Этот сервер доступен на русском. Используйте {1} чтобы его использовать.", + "LocaleChanged1": "Ваш язык был установлен на {1}", + "LocaleChanged2": "Этот сервер теперь будет показывать сообщения в {1}", + "LocaleChangedNote": "Это не влияет на сообщения других игроков", + "AccentsListHeader": "Акценты", + "HelpMainListHeader": "Помощь Категории", + "AccentNotFound": "Не удалось найти акцент", + "AccentSet": "Вы установили свой акцент на {1}", + "InvalidAnimation": "Такой анимации не существует", + "AnimationCommandTip": "Используйте {1} чтобы просмотреть список доступных анимаций", + "InvalidAnimationDistance": "Дистанция должна быть между 0 и 3", + "CantBanClient": "Вы не можете забанить этого игрока", + "PlayerAccountBanned": "Аккаунт {1} был заблокирован ", + "ClanNotFound": "Не удалось найти клан", + "ClanNameTaken": "Клан с таким именем уже существует", + "PlayerNotFound": "Не удалось найти игрока", + "ClanCantRemoveRanks": "Вы не можете убрать ранги клана", + "ClanCantAddRanks": "Вы не можете добавить новые ранги клана", + "ClanRankNotFound": "Не удалось найти ранг клана", + "ClanCantChangeMemberTag": "Вы не можете изменить теги членов клана", + "ClanPlayerNotInSameClan": "Игрок не в вашем клане", + "ClanCantChangeRankLevel": "Вы не можете изменить уровень ранга клана", + "ClanCantChangeRankTag": "Вы не можете изменить теги ранга клана", + "NameNotRegistered": "Ваше имя не зарегестрировано! Используйте {1} чтобы создать аккаунт.", + "AutomaticLoginIPToggle": "Автоматический вход по IP теперь {1}", + "CouldNotRegisterAccount": "Возникла проблема при создании аккаунта. Пожалуйста свяжитесь с администратором.", + "RandomTipsToggle": "Случайные подсказки теперь {1}", + "ActionTipsToggle": "Местные подсказки теперь {1}", + "AutoSpawnLastCharToggle": "Автоматическое возрождение как последний выбраный персонаж теперь {1}", + "AccountGUISettingToggle": "GUI теперь установлен на {1}", + "On": "Включен", + "Off": "Выключен", + "Yes": "Да", + "No": "Нет", + "True": "Верно", + "False": "Неверно", + "Locked": "Закрыто", + "Unlocked": "Открыто", + "PasswordNotGoodEnough": "Новый пароль должен соответсвовать требованиям !", + "PasswordNeedsBase": "Пароль должен местить не меншьше {1}", + "PasswordNeedsCapitals": "{1} Заглавные буквы", + "PasswordNeedsNumbers": "{1} цифры", + "PasswordNeedsSymbols": "{1} символы", + "PasswordsDontMatch": "Новый пароль и его подтверджение не совпадают!", + "PasswordChanged": "Ваш пароль был изменен!", + "AutoLoggedInIP": "Вы автоматически войшли через IP!", + "WelcomeBack": "Добро пожаловать {1}, {2}! Используйте {3} чтобы продолжить.", + "WelcomeNewPlayer": "Добро пожаловать в {1}, {2}! Используйте {3} чтобы начать играть.", + "InvalidPlayer": "Не удалось найти игрока!", + "InvalidBusiness": "Не удалось найти бизнес!", + "InvalidHouse": "Не удалось найти дом!", + "InvalidVehicle": "Не удалось найти транспорт!", + "InvalidClan": "Не удалось найти клан!", + "InvalidClanRank": "Не удалось найти ранг клана!", + "InvalidJob": "Не удалось найти работу!", + "InvalidItem": "Не удалось найти предмет!", + "InvalidItemType": "Не удалось найти предмет!", + "InvalidRadioStation": "Не удалось найти радиостанцию!", + "InvalidGate": "Не удалось найти ворота!", + "EntersProperty": "открывает дверь и входит в {1} ({2})", + "ExitsProperty": "открывает дверь и покидает {1} ({2})", + "EnterExitPropertyDoorLocked": "пытаеться открыть двери {1} но у него не выходить потому-что двери закрыты", + "PropertyNoInterior": "У {1} нет доступного интерьера, но вы все еще можете использовать комманды стоя на значке возле входа.", + "NoBusinessWithItemType": "Нет бизнесов в которых этот предмет доступен", + "HeaderKeyBinds": "Привязки", + "HeaderAccountHelp": "Помощь Аккаунт", + "HeaderVehicleHelp": "Помощь Транспорт", + "HeaderVehicleDealershipHelp": "Помощь Автосалон", + "HeaderJobHelp": "Помощь Работа", + "HeaderChatHelp": "Помощь Чат", + "HeaderServerRules": "Правила Сервера", + "HeaderWebsiteInfo": "Сайт", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Список Анимаций", + "HeaderPayAndSprayHelp": "Помощь Pay 'n' Spray", + "HeaderAmmunationHelp": "Помощь Аммунация", + "HeaderVehicleTuneupHelp": "Помощь Тюнинг Автомобиля", + "HeaderBindableKeysHelp": "Кнопки которые можно привязать", + "HeaderSkinHelp": "Помощь Одежда/Облик", + "HeaderBusinessHelp": "Помощь ", + "HeaderClanHelp": "Помощь Клан", + "HeaderPlayerVehiclesList": "Транспорт Игрока ({1})", + "HeaderPlayerBusinessesList": "Бизнес Игрока ({1})", + "HeaderClansList": "Список кланов", + "HeaderAdminsList": "Список администраторов", + "HeaderAccentsList": "Список акцентов", + "HeaderPlayerInfo": "Информация об игроке ({1})", + "HeaderWealthandTaxHelp": "Информация о достатке и налогах", + "HeaderCommandInfo": "Информация о команде ({1})", + "HeaderRadioHelp": "Помощь Радио", + "HeaderRadioStationsList": "Радиостанции", + "HeaderKeyBindsList": "Список привязок", + "RadioVolumeChanged": "{1} Вы изменили громкость звука на {2}%", + "VolumeLevelNotNumber": "Уровень звука должен быть в цифрах", + "RadioStationLocationInvalid": "Вы должны находится в транспорте, доме, или бизнесе или иметь устройство чтобы сменить радиостанцию!", + "ActionBusinessRadioStationChange": "меняет радиостанцию бизнеса на {1} ({2})", + "ActionHouseRadioStationChange": "меняет радиостанцию дома на {1} ({2})", + "ActionVehicleRadioStationChange": "меняет радиостанцию транспорта на {1} ({2})", + "ActionItemRadioStationChange": "переключает станцию {1} на станцию {2} ({3})", + "RandomVehicleCommandsDisabled": "Это случайная машина трафика, команды на нее не работают.", + "HouseDoorLock": "Дом {1} {2}!", + "BusinessDoorLock": "Бизнес {1} {2}!", + "ServerGameModeRestarting": "Режим игры сервера перезапускается!", + "HeaderSelfItemList": "Ваш инвентарь", + "HeaderPlayerItemList": "Инвентарь игрока ({1})", + "HeaderHouseItemList": "Инвентарь дома", + "HeaderBusinessFloorItemList": "Инвентарь бизнеса (Продажа)", + "HeaderBusinessStorageItemList": "Инвертарь бизнеса (Хранилище)", + "HeaderItemItemList": "Инвентарь {1}", + "ItemSlotNotNumber": "Слот предмета должен быть цифрой", + "ItemSlotMustBeBetween": "Слот этого предмета должен находиться между {1} и {2}!", + "UseItemBugged": "Предмет который вы пытаетесь использовать забагован. Баг репорт был послан разработчикам сервера.", + "PickupItemBugged": "Предмет который вы пытаетесь поднять забагован. Баг репорт был послан разработчикам сервера.", + "DropItemBugged": "Предмет который вы пытаетесь выкинуть забагован. Баг репорт был послан разработчикам сервера.", + "HandsBusy": "Ваши руки заняты", + "CantUseItemInSkinChange": "Вы не можете использовать предметы когда вы меняете свой облик", + "CantDropItemInSkinChange": "Вы не можете кидать предметы когда вы меняете свой облик", + "CantPickupItemInSkinChange": "Вы не можете подбирать предметы когда вы меняете свой облик", + "CantSwitchItemInSkinChange": "Вы не можете переключать предметы когда вы меняете свой облик", + "CantGiveItemInSkinChange": "Вы не можете давать предметы когда вы меняете свой облик", + "CantTakeItemInSkinChange": "Вы не можете брать предметы когда вы меняете свой облик", + "ItemUnequippableNoAmmo": "{1} на слоте {2} не имеет патронов и не может быть экипирован!", + "NoSpaceSelfInventory": "У вас не осталось места в инвентаре", + "Business": "бизнес", + "House": "дом", + "Clan": "клан", + "Vehicle": "транспорт", + "Item": "предмет", + "ItemType": "тип предмета", + "Gate": "ворота", + "Door": "двери", + "ClanRank": "Ранг клана", + "JobRank": "Ранг работы", + "RadioStation": "радиостанция", + "Months": [ + "Январь", + "Февраль", + "Март", + "Апрель", + "Май", + "Июнь", + "Июль", + "Август", + "Сентябрь", + "Октябрь", + "Ноябрь", + "Декабрь" + ], + "WeekDays": [ + "Воскресенье", + "Понедельник", + "Вторник", + "Среда", + "Четверг", + "Пятница", + "Субота" + ], + "CardinalDirections": { + "North": "Север", + "Northeast": "Северо-восток", + "East": "Восток", + "Southeast": "Юго-восток", + "South": "Юг", + "Southwest": "Юго-запад", + "West": "Запад", + "Northwest": "Северо-запад" + }, + "NewPlayerReadyToPlay": [ + "Вам было надано немного денег. Используйте {1} чтобы найти места в которых можно купить предметы.", + "Если вам нужны деньги, желтые точки это места работы на карте.", + "Если вам нужен транспорт, посетите автосалон. Вы также можете использовать орендовочный транспорт возле начальной зоны или сесть на поезд", + "Не забудьте ознакомиться с {1} и использовать {2} для информации." + ], + "YourCurrentVehicleDeleted": "Транспорт в котором вы находились было удалено.", + "Distance": "Дистанция", + "Meters": "Метров", + "Feet": "Футов", + "Kilometers": "Километры", + "Miles": "Мили", + "MustBeVehicleDriver": "Вы можете быть только водителем!", + "PlayerJoinedServer": "{1} присоеденился к игре из {2}!", + "PlayerLeftServer": "{1} покинул игру! ({2})", + "TakeItemFromHouse": "Берет {1} из дома", + "TakeItemFromBusinessStorage": "Берет {1} из хранилища", + "TakeItemFromBusiness": "Берет {1} из бизнеса", + "TakeItemFromItem": "Достает {1} из {2}", + "TakeItemFromVehicleTrunk": "Достает {1} из багажника", + "TakeItemFromVehicleDash": "Достает {1} из бардачка", + "AccountHelp": [ + "Не предоставляйте свой пароль никому. {1} персонал никогда не будет спрашивать у вас пароль ", + "Используйте {1} чтобы изменить ваш пароль, и {2} если вы его забыли", + "Некоторые опции: {1}" + ], + "VehicleHelp": [ + "Ваш личный транспорт будет сохранен в любом месте где вы, или кто-либо другой его оставит!", + "Посетите автосалон чтобы приобрести новый транспорт (Используйте {1} чтобы увидеть больше информации)", + "Некоторые комманды: {1}", + "Посетите гараж механика чтобы починить, изменить цвет, и затюнинговать ваш автомобиль! {1} для информации" + ], + "VehicleDealershipHelp": [ + "Посетите автосалон чтобы приобрести новый транспорт. Используйте {1} чтобы найти его.", + "Ввойдите в транспорт который вы хотите приобрести, и цена на него будет вам показана", + "Если хотите приобрести транспорт, используйте {1} и вам дадут ключи чтобы провести тест-драйв на парковке.", + "Покиньте автосалон на вашем новом транспорте чтобы подвердить покупку." + ], + "JobHelp": [ + "Посетите места работы, получите работу и зарабатывайте деньги. Ищите желтые точки на карте", + "На месте работы, используйте {1} чтобы получить работу. Используйте {2} чтобы оставить работу", + "Используйте {1} чтобы начать работать. Вы также можете получить работу {2} и {3}", + "Большинство рабочего транспорта изначально закрыто. Используйте {1} находясь возле него чтобы войти.", + "Во время входа в рабочий транспорт, информация о том, как работать будет вам предоставлена." + ], + "ChatHelp": [ + "Существуют два основных типов чата: внутри персонажа и вне его", + "Смешивать их не считается полноценной ролевой игрой. Просмотрите {1} для информации.", + "Некоторые комманды чата: {1}", + "Некоторые имеют укороченые версии ({1} чтобы говорить, {2} чтобы выкрикивать, и так далее)" + ], + "ServerRulesHelp": [ + "Нереалистичные действия запрещены. Вы не супермен.", + "Ролевая игра за террориста и терроризм запрещены.", + "Всегда следуйте соблюдайте инструкии даные модератором или администратором.", + "Вам не позволяется использовать информацию полученую вне персонажа, персонажем ", + "Пожалуйста придерживаетесь английского в главном чате, если вы плохо знаете английский, используйте {1}" + ], + "AnimationHelp": [ + "Анимации позволяют вам улучшить составляющую ролевой игры с помощью визуальных действий", + "Используте {1} или {2} с названием тобы применить анимацию.", + "Чтобы просмотреть список доступных анимаций, используйте {1}" + ], + "WeaponHelp": [ + "Посетите магазин оружия что-бы приобрести оружие. Используйте {1} чтобы найти.", + "Оружие невозможно купить без лицензии.", + "Лицензиями на оружие занимается отделение полиции. Обратитесь туда чтобы заполучить лицензию.", + "Оружие также может быть приобретено нелегально от некоторых бизнесов, торговцев оружием, и кланов." + ], + "SkinHelp": [ + "В магазине одежды используйте {1} чтобы купить одежду", + "Когда у вас есть предмет одежды, экипируйте его и используйте его как любой другой предмет чтобы просмотреть меню выбора облика персонажа (Просмотрите {1} чтобы научиться использовать предметы)", + "Некоторые облики ограничены только для некоторых работ, кланов, или по каким-то другим причинам." + ], + "KeyBindHelp": [ + "Вы можете сами создавать ваши привязки на кнопки. Используйте {1} чтобы просмотреть ваши привязки.", + "Используйте {1} чтобы добавить новую приязку или {2} чтобы убрать ее.", + "Стандартные привязки: {1} для мотора, {2} для фар, и {3} для открытия/закрытия", + "Используйте {1} чтобы просмотреть ваши предметы {2} чтобы экипировать предмет или {3} чтобы убрать.", + "Используйте {1} чтобы использвать предмет который вы держите в руках, используйте {2} чтобы его выбростить, или используйте {3} чтобы подобрать предмет." + ], + "BusinessHelp": [ + "Используйте {1} чтобы покупать предметы или {2} чтобы просмотреть список того, что продаеться в любом бизнесе", + "Бизнес имеет название синим цветом над иконкой возле входа.", + "Комманды владельца бизнеса: {1}", + "Новый автомобиль появится после того как вы уедете из автосалона." + ], + "ClanHelp": [ + "Попросите администратора чтобы основать клан", + "Владельцы клана имеют полный контроль над ихним кланом после его основания", + "Комманды клана: {1}", + "Больше комманд клана: {1}" + ], + "RadioStationHelp": [ + "Используйте {1} чтобы выбрать радиостанцию для вашего траспорта, дома, или бизнеса", + "Используйте {2} чтобы просмотреть список радиостанций", + "Вы можете изменить громкость радио используя {1} с 0-100 в качестве процентов" + ], + "WealthAndTaxHelp": [ + "Вы платите {1} процентов от вашего расчетного уровня достатка.", + "Ваш расчетный уровень достатка зависит от того, сколько вам принадлежит транспорта, домов и бизнесов.", + "Каждый транспорт это {1}, каждый дом это {2}, И каждый бизнес это {3}", + "Используйте {1} чтобы просмотреть ваш текущий достаток, и {2} чтобы просмотреть сколько вы платите налогов с каждой зарплаты" + ], + "MustBeInAVehicle": "Вы должны быть внутри транспорта!", + "MustBeInOrNearVehicle": "Вы должны быть возле транспорта!", + "MustBeInVehicleFrontSeat": "Вы можете сидеть только спереди!", + "MustBeInVehicleDriverSeat": "Вы можете быть только водителем!", + "DontHaveVehicleKey": "У вас нет ключей к этому транспорту!", + "NoGateAccess": "У вас нет доступа к воротам!", + "GateBroken": "Эти ворота сломаны!", + "GateHacked": "Ворота не отвечают!", + "RadioJammed": "Из радио доносится лишь шум.", + "VehicleNotForSale": "Этот транспорт не продается!", + "VehicleNotForRent": "Этот транспорт не сдается в оренду! ", + "BusinessNotForSale": "Этот бизнес не продается!", + "BusinessNotForRent": "Этот бизнес не сдается в оренду!", + "HouseNotForSale": "Этот дом не продаеться!", + "HouseNotForRent": "Этот дом не сдаеться в оренду!", + "DealershipPurchaseTestDrive": "Уедьте из автосалона чтобы подтвердить покупку транспорта, или выйдете из него чтобы отменить.", + "DealershipPurchaseExitedVehicle": "Вы отменили покупку транспорта покинув его!", + "VehiclePurchaseComplete": "Этот транспорт теперь принадлежит вам! Он останется там где вы его оставили.", + "VehiclePurchaseNotEnoughMoney": "у вас недостаточно денег для покупки этого транспорта!", + "HousePurchaseNotEnoughMoney": "У вас недостаточно денег для покупки этого дома!", + "BusinessPurchaseNotEnoughMoney": "У вас недостаточно денег для покупки этого бизнеса!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Дома Игрока ({1})", + "HeaderPlayerStaffFlagsList": "Флаги игрока персонала ({1})", + "HeaderStaffFlagsList": "Флаги персонала", + "NonRPName": "Ваше имя не подходит для ролевой игры! Выберете другое:", + "InvalidStaffFlag": "Не удалось найти флаг персонала!", + "InvalidClanFlag": "Не удалось найти флаг клана!", + "InvalidLocale": "Не удалось найти язык!", + "HeaderJobUniformList": "Рабочие униформы ({1})", + "HeaderJobEquipmentList": "Рабочие снаряжение ({1})", + "InvalidJobUniform": "Не удалось найти рабочую униформу!", + "InvalidJobEquipment": "Не удалось найти рабочее снаряжение!", + "HeaderVehiclesInRangeList": "Транспорт в пределах {1}", + "NoVehiclesWithinRange": "Нет транспорта в пределах {1}", + "AmountNotNumber": "Количество должно быть введено цифрой!", + "NeedToBeWorking": "Вы должны быть на работе! Используйте {1} на месте работы или возле рабочего транспорта.", + "NeedToBeOnJobRoute": "Вы должны быть на рабочем маршруте! Используйте {1} в рабочем транспорте", + "CurrentJobRouteVehicleColoursChanged": "Цвет транспорта на маршруте был изменен администратором", + "NotYourJob": "Это работа пренадлежит не вам!", + "JobPoints": "Вы можете устроиться на работу ориентируясь по желтым значкам на карте.", + "QuitJobToTakeAnother": "Если хотите покинуть работу, ипользуйте {1}.", + "NotAJobVehicle": "Это не рабочий транспорт!", + "NotYourJobVehicle": "Этот транспорт пренадлежит не вашей работе!", + "HeaderPickupTypes": "Типы подбираемых предметов", + "HeaderBlipTypes": "Типы иконок карты", + "InvalidGPSLocation": "Не существует локаций с таким именем или такого типа", + "HeaderBusinessList": "Бизнес", + "VehicleForSale": "Этот {1} можно купить за {2}! Используйте {3} если хотите его купить", + "VehicleForRent": "Этот {1} может быть орендован за {2}! Используйте {3} если хотите его орендовать", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Неправильный пароль! Осталось {1} попыток", + "LoginFailedNoPassword": "Вы должны ввести пароль! Осталось {1} попыток", + "RegistrationFailedNoPassword": "Вы должны ввести пароль!", + "RegistrationFailedNoPasswordConfirm": "Вы должны подтвердить пароль!", + "RegistrationFailedNoEmail": "Вы должны ввести адрес электронной почты!", + "AccountNameAlreadyRegistered": "Ваше имя уже зарегистрировано!", + "AlreadyLoggedIn": "Вы уже вошли!", + "RegistrationFailedInvalidEmail": "Такого адреса не существует!", + "RegistrationFailedPasswordMismatch": "Пароли не совпадают!", + "RegistrationFailedCreateError": "Не удалось создать аккаунт!", + "RegistrationSuccess": "Ваш аккаунт был успешно создан!", + "RegistrationEmailVerifyReminder": "Не забудьте подтвердить ваш электронный адрес, код подверждения был послан вам на электронную почту.", + "RegistrationCreateCharReminder": "Чтобы играть на сервере, вам нужно будет создать персонажа.", + "NoCharactersGUIMessage": "У вас нет персонажей. Не хотите создать?", + "NoCharactersGUIWindowTitle": "Нет персонажей", + "NoCharactersChatMessage": "У вас нет персонажей. Используйте {1} чтобы создать.", + "NeedEmailFor2FA": "Вам нужно добавить ваш адрес электронной почты чтобы использовать двухфакторную аунтентификацию.", + "NeedEmailVerifiedFor2FA": "Вам нужно подтвердить вашу электронную почту чтобы использовать двухфакторную аунтентификацию.", + "SetEmailHelpTip": "Используйте {1} чтобы установить ваш адрес электронной почты.", + "VerifyEmailHelpTip": "Используйте {1} чтобы подтвердить ваш адрес электронной почты.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Ближайшее радио", + "FromRadio": "Из радио", + "ToRadio": "В радио", + "NeedToEnterPropertyCommand": "Вам нужно сначало ввести {1}! Используйте {2} чтобы выйти", + "NeedToEnterPropertyKeyPress": "Вам нужно сначало ввести {1}! Используйте {2} чтобы выйти", + "InventoryFullCantCarry": "У вас недостаточно места в инвентаре(Инвентарь заполнен)!", + "NotEnoughCashNeedAmountMore": "У вас недостаточно денег! У вас не хватает {1}!", + "AmountMustBeMoreThan": "Количество должно быть больше {1}!", + "WeaponBanned": "Вам нельзя покупать оружие!", + "TimeNotNumber": "Время должно быть назначено цифрой", + "HeaderDefaultBusinessItemTypes": "Шаблоны предметов бизнеса", + "FixingStuck": "Исправляет вашу текущую позицию и виртуальный мир ...", + "CantUseCommandYet": "Подождите некоторое время перед тем как использовать комманду снова!", + "NotATester": "Вы не тестировщик!", + "AccessDenied": "Доступ запрещен", + "InvalidSkin": "Этот скин не правельный!", + "HeaderInteriorTypes": "Список интерьеров", + "GUIAccountSettingToggle": "Вы переключили {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "Вы можете приобрести транспорт посетив автосалон. Используйте {1} чтобы получить больше информации.", + "SkinCommandHelp": "Вы можете изменить ваш скин посети магазин одежды. Используйте {1} чтобы получить больше информации.", + "BusinessVehiclesRespawned": "Весь транспорт был перерожден администратором!", + "JobVehiclesRespawned": "Весь рабочий транспорт был перерожден администратором!", + "PlayerVehiclesRespawned": "Весь транспорт игроков был перерожден администратором!", + "ClanVehiclesRespawned": "Весь транспорт клана был перерожден администратором!", + "PublicVehiclesRespawned": "Весь общественный транспорт был перерожден администраторм!", + "EmptyVehiclesRespawned": "Весь пустой транспорт был перерожден администратором!", + "AllVehiclesRespawned": "Весь транспорт был перерожден администраторм!", + "AllVehiclesReloaded": "Весь транспорт был перерожден адиминистратором!", + "YourVehicleRespawned": "Ваш транспорт был перерожден", + "PlayerIPBanned": "{1} IP получил бан!", + "PlayerCharacterBanned": "{1} получил бан персонажа!", + "PlayerSubNetBanned": "{1} получил бан по подсети!", + "CantModifyBusiness": "Вы не можете изменять или управлять этим бизнесом", + "CantModifyHouse": "Вы не можете изменять или управлять этим бизнесом", + "ServerTimeSet": "{1} Установил время на {2}", + "ServerWeatherSet": "{1} Установил погоду на {2}", + "ServerSnowSet": "{1} Установил падающий снег {2} и лежачий снег {3}", + "AllJobsReloaded": "Все работы были перезагружены администратором", + "ServerLogoSet": "{1} переключил лого сервера {2}", + "ServerGUISet": "{1} переключил GUI для этого сервера {2}", + "ServerBusinessBlipsSet": "{1} переключил все значки бизнеса {2}", + "ServerHouseBlipsSet": "{1} переключил все значки бизнеса {2}", + "ServerJobBlipsSet": "{1} переключил все значки работы {2}", + "ServerBusinessPickupsSet": "{1} переключил все пикапы бизнеса {2}", + "ServerHousePickupsSet": "{1} переключил все пикапы домов {2}", + "ServerJobPickupsSet": "{1} переключил все пикапы бизнеса {2}", + "BusinessBuyItemsLabel": "Используйте {1} чтобы покупать предметы", + "PropertyEnterCommandLabel": "Используйте {1} чтобы войти", + "PropertyEnterKeyPressLabel": "Используйте {1} чтобы войти", + "PropertyForSaleLabel": "Продается: {1}", + "PropertyForRentLabel": "Можно взять в оренду: {1} с каждой заработной выдачи", + "RemainingTaxPaidInMoney": "Вы покрыли оставшиеся налоги использовав {1} денег.", + "LostMoneyFromTaxes": "Вы теряете деньги из-за того что ваши налоги выше вашей заработной выдачи!", + "NextPaycheckRepossessionWarning": "Если у вас не будет достаточно денег чтобы покрыть налоги начнется конфискация имущества!", + "NotEnoughMoneyForTax": "У вас недостаточно денег чтобы покрыть налоги!", + "AssetsRepossessedForTax": "Вы потеряли {1} транспорта, {2} дома, и {3} бизнеса потому-что не смогли выплатить налоги!", + "Closed": "Закрыто", + "Open": "Открыто", + "VehicleDealershipLabel": "Войдите внутрь транспорта для его покупки", + "TakeJobLabel": "Используйте {1} чтобы начать работать здесь", + "StartWorkLabel": "Используйте {1} чтобы выйти на работу", + "JobEquipAndUniformLabel": "Используйте {1} и {2} для вашего рабочего снаряжения, или {3} чтобы прекратить работу", + "NotYourJobLabel": "У вас уже есть работа. Используйте {1} если вам эта больше по душе", + "JobLabel": "{1} Работа", + "BonusSet": "🤑 {1} установил бонус заработной платы {2}", + "AllHousesReloaded": "🏘️ Все дома были перезагружены администратором", + "AllRadioStationsReloaded": "📻 Все радиостанции были перезагружены администратором!", + "PlayerKicked": "🦶 {1} был выкинут из сервера", + "AllBusinessesReloaded": "🏢 Весь бизнес был перезагружен администратором!", + "UnableToDoThat": "Вы не можете это сделать", + "SetVehicleClanConfirmMessage": "Вы уверены что хотите предать этот автомобиль клану?", + "SetVehicleClanConfirmTitle": "Предостережение!", + "SetItemPriceBelowOrderPriceMessage": "Вы уверены что хотите установить цену товара ниже его закупочной цены, вы будете терять {1} с каждой покупки!", + "SetItemPriceBelowOrderPriceTitle": "Предостережение!", + "MustOwnVehicle": "Этот автомобиль пренадлежит не вам!", + "RandomTips": [ + "Ищите желтые точки на карте чтобы найти место работы", + "Вы можете установить собственные привязки. Используйте {1} для более детальной информации", + "Используйте {1} если хотите увидеть подсказки и дополнительную информацию", + "Вы можете изменять ваши превязки используя {1} и {2}", + "Используйте ℹ️ чтобы просмотреть ваш инвентарь и используйте цыфры для выбора", + "Используйте {1} возле бизнеса чтобы покупать предметы", + "Нашли ошибку? Используйте чтобы дать нам знать {1}", + "Есть какие то идеи или предложения? Дайте знать разработчикам используя {1}", + "Хотите купить бизнес? Используйте {1} возле одного из них", + "Хотите купить дом? Используйте {1} возле одного из них", + "Хотите приобрести автомобиль? посетите автосалон!", + "Переключайтесь между персонажами с помощью {1}", + "Используйте {1} чтобы автоматически подключать после входа из того же IP", + "Используйте {1} чтобы выключить/выключить свет внутри бизнеса или дома", + "Используйте {1} чтобы слушать интернет радио в автомобиле, дома, или внутри бизнеса", + "Хотите создать клан? Используйте {1} чтобы узнать подробности", + "Легальное оружие можно приобрести в аммунации" + ], + "PromptResponseTip": "Используйте {1} чтобы подтвердить или {2} чтобы отклонить", + "PlayerConnecting": "👋 {1} подключается", + "GetStartedJobVehicle": "Войдите внутрь {1} чтобы начать.", + "VehicleTypes": { + "Car": "Автомобиль", + "Truck": "Грузовик", + "Van": "Фургон", + "Taxi": "Такси", + "Bus": "Автобус", + "PoliceCar": "Полицейская машина", + "Ambulance": "Машина скорой помощи", + "FireTruck": "Пожарная машина", + "Bike": "Велосипед", + "Motorbike": "Мотоцикл", + "Boat": "Лодка", + "Helicopter": "Вертолет", + "Plane": "Самолет", + "Train": "Поезд" + }, + "AlreadyOnJobRoute": "Вы уже на маршруте!", + "GaveVehicleToClan": "Вы передали {1} вашему клану!", + "JobDisabled": "Ваша работа сейчас отключена!", + "SetHouseClanConfirmMessage": "Вы уверены что хотите передать этот дом клану?", + "SetHouseClanConfirmTitle": "Предосторежение!", + "SetBusinessClanConfirmMessage": "Вы уверены что хотите передать этот бизнес клану?", + "SetBusinessClanConfirmTitle": "Предосторежение!", + "MustOwnHouse": "Этот дом пренадлежит не вам!", + "MustOwnBusiness": "Этот бизнес пренадлежит не вам!", + "GaveHouseToClan": "Вы передали этот дом клану!", + "GaveBusinessToClan": "Вы передали ваш бизнес клану!", + "BuyBusinessConfirmMessage": "Вы уверены что хотите купить этот бизнес?", + "BuyBusinessConfirmTitle": "Внимание!", + "BuyHouseConfirmMessage": "Вы уверены что хотите купить этот дом?", + "BuyHouseConfirmTitle": "Внимание!", + "BuyBusinessLabel": "Используйте {1} чтобы купить этот бизнес", + "BuyHouseLabel": "Используйте {1} чтобы купить этот дом", + "RentHouseLabel": "Используйте {1} чтобы снять этот дом", + "AccountEmailAlreadyVerified": "Вы уже установили и подтвердили ваш адрес элекронной почты!", + "EmailVerificationCodeSent": "Код подтверждения и дальнейшие инструкции были посланы на ваш адрес электронной почты.", + "GUIPlayAsCharacterButton": "Играть", + "GUINewCharacterButton": "Новый персонаж", + "GUIPreviousCharacterButton": "Назад", + "GUINextCharacterButton": "Далее", + "GUICharacterSelectWindowTitle": "Выбрать Персонажа", + "GUICharacterSelectMoneyLabel": "Деньги: {1}", + "GUICharacterSelectClanLabel": "Клан: {1}", + "GUICharacterSelectLastPlayedLabel": "В последний раз играли: {1} дней, {2} часов, {3} минут назад", + "GUILoginWindowLabelEnterPassword": "Пожалуйста введите ваш пароль", + "GUILoginWindowSubmitButton": "Вход", + "GUILoginWindowResetPasswordButton": "сбросить", + "GUILoginWindowPasswordPlaceholder": "Пароль", + "GUILoginWindowForgotPasswordLabel": "Забыли пароль?", + "GUIRegisterWindowLabelCreateAccount": "Создать Аккаунт", + "GUIRegisterWindowPasswordPlaceholder": "Пароль", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Подтвердить пароль", + "GUIRegisterWindowEmailPlaceholder": "Электронный адрес", + "GUIRegisterWindowSubmitButton": "Создать персонажа", + "GUINewCharacterMessageLabel": "Назвите Вашего Персонажа", + "GUINewCharacterFirstNamePlaceholder": "Имя", + "GUINewCharacterLastNamePlaceholder": "Фамилия", + "GUINewCharacterSubmitButton": "Создать нового пероснажа", + "GUIChangePasswordWindowTitle": "Изменить пароль", + "GUIChangePasswordPasswordLabel": "Введите новый пароль", + "GUIChangePasswordPasswordPlaceholder": "Пароль", + "GUIChangePasswordConfirmPasswordPlaceholder": "Подтвердить Пароль", + "GUIChangePasswordSubmitButton": "Изменить Пароль", + "GUIResetPasswordWindowMessage": "Сбросить Пароль", + "GUIResetPasswordConfirmEmailLabel": "Пожалуйста подтвердите свой электронный адрес", + "GUIResetPasswordEmailPlaceholder": "Электронный адрес", + "GUIResetPasswordSubmitButton": "Сбросить пароль", + "GUIResetPasswordLoginButton": "Вход", + "GUIResetPasswordRememberMessage": "Помните свой пароль?", + "HeaderJobList": "Работа", + "HeaderBusinessInfo": "Информация о бизнесе", + "HeaderHouseInfo": "Информация о доме", + "HeaderClanInfo": "Информация о клане", + "Locales": { + "English": "Английский", + "Russian": "Русский", + "Spanish": "Испанский", + "German": "Немецкий", + "Dutch": "Нидерландский", + "Polish": "Польский", + "Chinese": "Китайский", + "French": "Французкий", + "Japanese": "Японский", + "Slovak": "Словацкий", + "Arabic": "Арабский" + }, + "TwoFactorAuthSet": "⚙️ Вы переключили двух факторную аутентификацию на {1}", + "AccountServerLogoSet": "⚙️ Вы переключили лого сервера на {1}", + "ChatScrollLinesNotNumber": "Количество строк должно быть описано в цыфре", + "ChatScrollLinesMustBeBetween": "Количесто строк должно находится между {1} и {2}", + "ChatScrollLinesSet": "Лог чата теперь будет крутить {1} строк за раз", + "InvalidEmailVerificationCode": "Не правильный код подтверждения! Новый код был выслан вам на адрес электронной почты.", + "EmailVerified": "Вы подтвердили ваш адрес", + "EmailVerifiedTip": "Вы можете использовать ваш электонный адрес для сброса пароля, двух факторной аутинтефикации, сообщений об входе, и больше", + "CommandRequiresLogin": "Вы должны войти чтобы использовать команду {1}", + "CommandDisabled": "Команда {1} отключена", + "CommandDisabledOnDiscord": "Команда {1} не доступна в Discord-e", + "CommandNotFoundHelpTip": "Команда {1} не существует! Используйте {2} для команд и информации.", + "CommandNotFoundPossibleMatchTip": "Команда {1} не существует! Возможно вы имели ввиду {2}?", + "CommandNoPermissions": "У вас нет прав использовать команду {1}", + "GUIResetPasswordCodeInputLabel": "Проверьте вашу почту на наличие пароля", + "GUIResetPasswordCodePlaceholder": "Код подтверждения", + "GUIErrorTitle": "Ошибка", + "GUIWarningTitle": "Предосторежение", + "GUIInfoTitle": "Информация", + "GUIOkButton": "Ок", + "GUIErrorResetPasswordFailedInvalidEmail": "Неправельный адрес!", + "HeaderVehicleInfo": "Информация о транспорте", + "HeaderClanRanksList": "Клановый Ранг", + "HeaderNPCInfo": "NPC Инфо", + "NPCAnimationSet": "Вы установили анимацию NPC {1} на {2}", + "NPCNameSet": "Вы установили имя NPC {1} на {2}", + "VehicleTooFar": "Вы слишком далеко от транспорта!", + "HeaderPropertyTemplateTypes": "Типы имуществ", + "MustBeLoggedInAndSpawnedToChat": "Вы должны войти и возродиться перед тем как использовать чат!", + "MutedCantChat": "Вас мутнули, вы не можете чаттить!", + "CantUseMegaphone": "Вы должны экипировать предмет мегафон или быть в служебном транспорте!", + "HeaderAnimationHelp": "Инфо Анимации", + "HeaderBadgeInfo": "Значки Инфо ({1})", + "NoItemCloseEnough": "Нет предметов достаточно близких у вам", + "CantDropJobEquipmentItem": "Рабочие предметы не могут быть выкинуты", + "CantPutJobEquipmentItem": "Вы не можете сохранять рабочие предметы", + "NoItemEquipped": "Нет выбраных предметов", + "NoItemInActiveSlot": "Нет предмета в активном слоте", + "CantPutItemInSkinChange": "Вы неможете сохранять предметы когда вы кастомизируете свою облик", + "NothingToTakeItemFrom": "Вы не находитесь возле ничего из чего можно было бы звять предмет", + "NoAmmoToLoadIntoWeapon": "У вас нет патронов чтобы зарядить в {1}", + "LoadAmmoIntoWeaponHelpCommand": "Чтобы зарядить патроны экипируйте оружие и используйте {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "Чтобы зарядить патроны экипируйте оружие и нажмите {1}", + "NobodyCloseEnoughToHandcuff": "Nobody is close enough to handcuff", + "NobodyCloseEnoughToTie": "Нет никого по близости чтобы вас связать", + "PlayerNotSurrenderedHandcuff": "{1} не может быть повязан, или руки должны быть подняты, или он должен быть вырублен или шокнут тейзером", + "PlayerNotSurrenderedTie": "{1} не может быть связан, он должен поднять руки, быть вырублен или шокнут тейзером", + "HeaderCharactersListSelf": "Ваши Персонажи", + "HeaderCharactersListOther": "Персонажи {1}", + "CharacterSelectHelpText": "Используйте {1} чтобы выбрать персонажа, или {2} чтобы создать нового", + "ItemDoesntDoAnythingOnUse": "{1} ничего не делает когда вы его используете.", + "ItemRadioStationTip": "Используйте {1} чтобы выбрать радиостанцию", + "VehicleLockedCommandTip": "🔒 Этот {1} закрыт. Используйте {2} чтобы его открыть", + "VehicleLockedKeyPressTip": "🔒 Этот {1} закрыт. Нажмите {2} чтобы его открыть", + "VehicleLockedCantUnlock": "🔒 Этот {1} закрыт и у вас нет ключа чтобы его открыть", + "CurrentlyRentingThisVehicle": "Вы снимаете {1} по {2} за минуту. Используйте {3} чтобы перестать снимать.", + "VehicleBelongsTo": "Этот {1} пренадлежит {2} ({3})", + "NotOwned": "Никому не пренадлежит", + "NotCloseEnoughToItemContainer": "Нет ничего поблизости чтобы местило предметы", + "Job": "Работа", + "Player": "Игрок", + "BusinessIsNowPaintBall": "Этот бизнес теперь арена для пейнтбола", + "JoinedPaintBall": "Вы пресоиденились к пейнтболу.", + "ItemsStoredForPaintBall": "Ваши предметы сохранены и будут возращены вам когда вы закончите сессию пейнтбола", + "LeftPaintBall": "Вы покинули пейнтбол и ваши предметы были возвращены.", + "PaintBallEnded": "Эта сессия пейнтбола была закончена и ваши предметы были возвращены.", + "HeaderEventWinners": "Победители", + "YourPaintBallResults": "Вы заработали {1} убийств и {2} смертей во время сессии", + "NoPrivateMessageToReply": "Вы не получили приватное сообщения которому можно было бы ответить", + "WeaponDoesNotUseAmmo": "У {1} нет патронов", + "ChatBoxTimestampsToggle": "Вы переключили дисплей времени в чате на {1}", + "ProfanityFilterSet": "Вы переключили цензуру чата на {1}", + "ResetAllKeyBindsConfirm": "Вы уверены что хотите сбросить все привязаные клавишы?", + "NotRentingAVehicle": "Вы не снимаете транспорт!", + "StoppedRentingVehicle": "Вы перестали снимать {1}", + "VehicleEngineStartKeyPressTip": "Двигатель {1} сейчас не в работе. Используйте {2} чтобы запустить его.", + "VehicleEngineStartCommandTip": "Двигатель {1} сейчас не в работе. Используйте {2} чтобы его запустить.", + "StartedRentingVehicle": "Теперь вы снимаете {1} по {2} за минуту. Чтобы прекратить это используйте {3}", + "VehicleAlreadyRentedByOther": "Этот транспорт уже снимается", + "VehicleAlreadyRentedBySelf": "Вы уже снимаете этот транспорт", + "JobRankTooLow": "Ваш ранк не достаточно высок!", + "InvalidKeyName": "Ключевое Айди или имя которое вы вводили неправильно!", + "KeyBindsReset": "Все ваши привязки были сброшены", + "KeyBindNameTip": "Используйте простые клавиши или айди без пробелов.", + "UniversalInlineExamplesList": "Примеры: {1}", + "KeyBindRemoved": "Вы удалили привязку с клавиши {1}", + "KeyBindAdded": "Вы привязали кнопку {1} на {2}", + "CopyAllKeyBindsToServerConfirm": "Вы уверены что хотите скопировать все привязки на {1} сервер?", + "CopiedAllKeyBindsToServer": "Все ваши привязки были скопированы на {1} сервер", + "MustBeSpawned": "Вы долно сначало возродиться!", + "ChatEmojiSet": "Вы переключили ауто имодзи на {1}", + "FishingLineNotCast": "Ваша рыболовная сетка не были розкинута!", + "CantFishHere": "Вы не можете здесь рыбачить, вы должны быть или возле воды или на лодке!", + "NeedFishingRod": "Вы должны держать удочку!", + "FishingCastCommandHelp": "Используйте {1} чтобы бросить сетку", + "FishingCastKeyBindHelp": "Используйте {1} чтобы бросить сетку", + "Paused": "Пауза", + "PaintBallAlmostWin": "{1} осталось еще {2} убийтв чтобы выиграть пейнтбольную сессию!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOnOff": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} diff --git a/locale/slovak.json b/locale/slovak.json new file mode 100644 index 00000000..f8940143 --- /dev/null +++ b/locale/slovak.json @@ -0,0 +1,752 @@ +{ + "TranslationProvidedBy": "ZaKlaus", + "LocaleEnglishName": "Slovak", + + "LocaleNativeName": "Slovak", + "LocaleOffer": "This server is available in Slovak. Use {1} to use it.", + "LocaleChanged1": "Your language is now set to {1}", + "LocaleChanged2": "The server will now display messages in {1}", + "LocaleChangedNote": "This does not change messages from other players", + "AccentsListHeader": "Accents", + "HelpMainListHeader": "Help Categories", + "AccentNotFound": "Accent not found", + "AccentSet": "You set your accent to {1}", + "InvalidAnimation": "That animation doesn't exist", + "AnimationCommandTip": "Use {1} to see a list of valid animations", + "InvalidAnimationDistance": "The distance must be between 0 and 3", + "CantBanClient": "You cannot ban this person", + "PlayerAccountBanned": "{1} has been account banned", + "ClanNotFound": "Clan not found", + "ClanNameTaken": "A clan with that name already exists", + "PlayerNotFound": "Player not found", + "ClanCantRemoveRanks": "You can't remove clan ranks", + "ClanCantAddRanks": "You can't add clan ranks", + "ClanRankNotFound": "Clan rank not found", + "ClanCantChangeMemberTag": "You can not change clan member's tags", + "ClanPlayerNotInSameClan": "That player is not in your clan", + "ClanCantChangeRankLevel": "You can not change clan rank's level", + "ClanCantChangeRankTag": "You can not change clan rank's tags", + "NameNotRegistered": "Your name is not registered! Use {1} to make an account.", + "AutomaticLoginIPToggle": "Automatic login by IP is now {1}", + "CouldNotRegisterAccount": "There was a problem creating your account. Please contact an admin.", + "RandomTipsToggle": "Random tips are now {1}", + "ActionTipsToggle": "Action tips are now {1}", + "AutoSpawnLastCharToggle": "Automatic spawn as last used character is {1}", + "AccountGUISettingToggle": "GUI is now {1}", + "On": "On", + "Off": "Off", + "Yes": "Yes", + "No": "No", + "True": "True", + "False": "False", + "Locked": "Locked", + "Unlocked": "Unlocked", + "PasswordNotGoodEnough": "The new password must meet the requirements!", + "PasswordNeedsBase": "Passwords must have at least {1}", + "PasswordNeedsCapitals": "{1} capital letters", + "PasswordNeedsNumbers": "{1} numbers", + "PasswordNeedsSymbols": "{1} symbols", + "PasswordsDontMatch": "The new password and confirm new password aren't the same!", + "PasswordChanged": "Your password has been changed!", + "AutoLoggedInIP": "You have been automatically logged in by IP!", + "WelcomeBack": "Welcome back to {1}, {2}! Please {3} to continue.", + "WelcomeNewPlayer": "Welcome to {1}, {2}! Please {3} to play.", + "InvalidPlayer": "Player not found!", + "InvalidBusiness": "Business not found!", + "InvalidHouse": "House not found!", + "InvalidVehicle": "Vehicle not found!", + "InvalidClan": "Clan not found!", + "InvalidClanRank": "Clan rank not found!", + "InvalidJob": "Job not found!", + "InvalidItem": "Item not found!", + "InvalidItemType": "Item type not found!", + "InvalidRadioStation": "Radio station not found!", + "InvalidGate": "Gate not found!", + "EntersProperty": "opens the door and enters the {1} ({2})", + "ExitsProperty": "opens the door and exits the {1} ({2})", + "EnterExitPropertyDoorLocked": "tries to open the {1} door but fails because it's locked", + "PropertyNoInterior": "This {1} does not have an interior, but you can still use commands at the door icon.", + "NoBusinessWithItemType": "There is no business with that item available", + "HeaderKeyBinds": "Key Binds", + "HeaderAccountHelp": "Account Help", + "HeaderVehicleHelp": "Vehicle Help", + "HeaderVehicleDealershipHelp": "Vehicle Dealership Help", + "HeaderJobHelp": "Job Help", + "HeaderChatHelp": "Chat Help", + "HeaderServerRules": "Server Rules", + "HeaderWebsiteInfo": "Website", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Animation List", + "HeaderPayAndSprayHelp": "Pay and Spray Help", + "HeaderAmmunationHelp": "Ammunation Help", + "HeaderVehicleTuneupHelp": "Vehicle Tune Help", + "HeaderBindableKeysHelp": "Bindable Keys", + "HeaderSkinHelp": "Clothes/Skin Help", + "HeaderBusinessHelp": "Business Help", + "HeaderClanHelp": "Clan Help", + "HeaderPlayerVehiclesList": "Player Vehicles ({1})", + "HeaderPlayerBusinessesList": "Player Businesses ({1})", + "HeaderClansList": "Clan List", + "HeaderAdminsList": "Admin List", + "HeaderAccentsList": "Accent List", + "HeaderPlayerInfo": "Player Information ({1})", + "HeaderWealthandTaxHelp": "Wealth and Tax Information", + "HeaderCommandInfo": "Command Information ({1})", + "HeaderRadioHelp": "Radio Help", + "HeaderRadioStationsList": "Radio Stations", + "HeaderKeyBindsList": "Key Binds List", + "RadioVolumeChanged": "{1} You changed your streaming radio volume to {2}%", + "VolumeLevelNotNumber": "The volume level must be a number", + "RadioStationLocationInvalid": "You must be in a vehicle, house, or business or have a personal device to change the station!", + "ActionBusinessRadioStationChange": "changes the business radio station to {1} ({2})", + "ActionHouseRadioStationChange": "changes the house radio station to {1} ({2})", + "ActionVehicleRadioStationChange": "changes the vehicle radio station to {1} ({2})", + "ActionItemRadioStationChange": "changes the {1}'s station to {2} ({3})", + "RandomVehicleCommandsDisabled": "This is a random traffic vehicle and commands can't be used for it.", + "HouseDoorLock": "House {1} {2}!", + "BusinessDoorLock": "Business {1} {2}!", + "ServerGameModeRestarting": "The server game mode is restarting!", + "HeaderSelfItemList": "Your Inventory", + "HeaderPlayerItemList": "Player Inventory ({1})", + "HeaderHouseItemList": "House Inventory", + "HeaderBusinessFloorItemList": "Business Inventory (For Sale)", + "HeaderBusinessStorageItemList": "Business Inventory (Storage)", + "HeaderItemItemList": "{1}'s Inventory", + "ItemSlotNotNumber": "The item slot must be a number", + "ItemSlotMustBeBetween": "The item slot must be between {1} and {2}!", + "UseItemBugged": "The item you're trying to use is bugged. A bug report has been sent to the server developers.", + "PickupItemBugged": "The item you're trying to pickup is bugged. A bug report has been sent to the server developers.", + "DropItemBugged": "The item you're trying to drop is bugged. A bug report has been sent to the server developers.", + "HandsBusy": "Your hands are busy", + "CantUseItemInSkinChange": "You can't use an item while customizing your appearance", + "CantDropItemInSkinChange": "You can't drop an item while customizing your appearance", + "CantPickupItemInSkinChange": "You can't pickup an item while customizing your appearance", + "CantSwitchItemInSkinChange": "You can't switch an item while customizing your appearance", + "CantGiveItemInSkinChange": "You can't give an item while customizing your appearance", + "CantTakeItemInSkinChange": "You can't take an item while customizing your appearance", + "ItemUnequippableNoAmmo": "The {1} in slot {2} has no ammo, and can't be equipped!", + "NoSpaceSelfInventory": "You don't have any more space in your inventory", + "Business": "business", + "House": "house", + "Clan": "clan", + "Vehicle": "vehicle", + "Item": "item", + "ItemType": "item type", + "Gate": "gate", + "Door": "door", + "ClanRank": "clan rank", + "JobRank": "job rank", + "RadioStation": "radio station", + "Months": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + "WeekDays": [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + "CardinalDirections": { + "North": "North", + "Northeast": "Northeast", + "East": "East", + "Southeast": "Southeast", + "South": "South", + "Southwest": "Southwest", + "West": "West", + "Northwest": "Northwest" + }, + "NewPlayerReadyToPlay": [ + "You have been given some cash. Use {1} to find places to buy items.", + "If you need money, jobs are the yellow dots on the radar.", + "For a car, visit the car dealership. You can also use a rental vehicle near spawn or take the train", + "Be sure to read the {1} and use {2} for info." + ], + "YourCurrentVehicleDeleted": "The vehicle you were in was deleted.", + "Distance": "Distance", + "Meters": "Meters", + "Feet": "Feet", + "Kilometers": "Kilometers", + "Miles": "Miles", + "MustBeVehicleDriver": "You must be the driver of the vehicle!", + "PlayerJoinedServer": "{1} has joined the game from {2}!", + "PlayerLeftServer": "{1} has left the game! ({2})", + "TakeItemFromHouse": "takes a {1} from the house", + "TakeItemFromBusinessStorage": "takes a {1} from the business storage", + "TakeItemFromBusiness": "takes a {1} from the business", + "TakeItemFromItem": "takes a {1} from the {2}", + "TakeItemFromVehicleTrunk": "takes a {1} from the trunk", + "TakeItemFromVehicleDash": "takes a {1} from the glove compartment", + "AccountHelp": [ + "Do NOT share your password with anybody else. {1} staff will never ask you for your password", + "Use {1} to change your password, and {2} if you forgot it", + "Some settings you can use: {1}" + ], + "VehicleHelp": [ + "Your personal vehicles will save wherever you or somebody else leaves them!", + "Visit dealerships to buy new vehicles (Use {1} for more information)", + "Some commands: {1}", + "Visit a mechanic garage to repair, colour, and tune up your car! {1} for info" + ], + "VehicleDealershipHelp": [ + "Visit a vehicle dealer to buy new vehicles. Use {1} to find one.", + "At the dealer, enter a car you want to buy, and the price will be shown to you", + "If you want to buy the vehicle, use {1} and you will be given keys to test drive it around the parking lot.", + "Drive away from the dealership with the new vehicle to confirm the purchase." + ], + "JobHelp": [ + "Visit job locations to get a job and earn money. Look for yellow spots on the map", + "At a job location, use {1} to get the job. Use {2} to quit your job", + "Use {1} to begin working. You can also get a job {2} and {3}", + "Most job vehicles are locked. Use {1} near one to enter it.", + "When entering a job vehicle, information on how to do the job will be shown to you." + ], + "ChatHelp": [ + "There are two main types of chat: out-of-character (OOC) and in-character (IC)", + "Mixing these two types is not proper roleplay. See {1} for info.", + "Some chat commands: {1}", + "Some have shorter names available ({1} to talk, {2} to shout, etc)" + ], + "ServerRulesHelp": [ + "Unrealistic actions (powergaming) are not allowed. You aren't superman.", + "No terrorist or terrorism roleplay is allowed.", + "Always follow instructions given by moderators and admins.", + "Do not mix the chats (metagaming). You can't use info in IC that was received OOC", + "Keep English in main chats. If you aren't good at English, use {1}" + ], + "AnimationHelp": [ + "Animations allow you to enhance roleplay with visual actions", + "Use {1} or {2} with a name to use an animation.", + "To see a list of animations, use {1}" + ], + "WeaponHelp": [ + "Visit an gun store to buy weapons. Use {1} to find one.", + "Buying a weapon requires a weapon license.", + "Weapon licenses are managed by the police department. Apply there to get one.", + "Weapons can also be purchased illegally from some businesses, weapon dealers, and clans." + ], + "SkinHelp": [ + "At a clothing store, use {1} to purchase clothes", + "When you have a clothing item, equip and use it like any other item to show the skin selection (check {1} to learn how to use items)", + "Some skins are restricted to jobs, clans, or for other reasons." + ], + "KeyBindHelp": [ + "You can set your own key binds. Use {1} to see your binded keys.", + "Use {1} to add a new keybind and {2} to remove one.", + "Default keys are: {1} for vehicle engine, {2} for lights, and {3} for lock/unlock", + "Press {1} to see your items and {2} to equip an item or {3} to unequip all.", + "Press {1} to use the item you're holding, press {2} to drop it, or press {3} to pickup an item from the ground." + ], + "BusinessHelp": [ + "Use {1} to purchase items or {2} to see a list of what's for sale at any business", + "Businesses are shown with blue names above the icon at their entrance.", + "Business owner commands: {1}", + "A new car for sale will appear when you drive away from the dealer." + ], + "ClanHelp": [ + "Ask an administrator to create a clan (Similar to factions/groups/families)", + "Clan owners have full control over their clan once it's created", + "Clan commands: {1}", + "More clan commands: {1}" + ], + "RadioStationHelp": [ + "Use {1} to set the station for your vehicle, house, or business", + "Use {2} to see a list of stations", + "You can change your radio streaming volume using {1} with 0-100 as the percent" + ], + "WealthAndTaxHelp": [ + "Your taxes on payday are {1} percent of your calculated wealth.", + "Your calculated wealth is a total sum based on how many vehicles, houses, and businesses you have.", + "Each vehicle is {1}, each house is {2}, and each business is {3}", + "Use {1} to see your current wealth, and {2} to see how much you'll pay in tax each payday" + ], + "MustBeInAVehicle": "You need to be in a vehicle!", + "MustBeInOrNearVehicle": "You need to be in or near a vehicle!", + "MustBeInVehicleFrontSeat": "You need to be in the vehicle front seats!", + "MustBeInVehicleDriverSeat": "You need to be the driver!", + "DontHaveVehicleKey": "You don't have a key for this vehicle!", + "NoGateAccess": "You don't have access to this gate!", + "GateBroken": "This gate is broken!", + "GateHacked": "The gate does not respond!", + "RadioJammed": "You hear only static from the radio.", + "VehicleNotForSale": "This vehicle is not for sale!", + "VehicleNotForRent": "This vehicle is not for rent!", + "BusinessNotForSale": "This business is not for sale!", + "BusinessNotForRent": "This business is not for rent!", + "HouseNotForSale": "This house is not for sale!", + "HouseNotForRent": "This house is not for rent!", + "DealershipPurchaseTestDrive": "Drive the vehicle away from the dealership to buy it, or get out to cancel.", + "DealershipPurchaseExitedVehicle": "You canceled the vehicle purchase by exiting the vehicle!", + "VehiclePurchaseComplete": "This vehicle is now yours! It will save wherever you leave it.", + "VehiclePurchaseNotEnoughMoney": "You don't have enough money to buy this vehicle!", + "HousePurchaseNotEnoughMoney": "You don't have enough money to buy this house!", + "BusinessPurchaseNotEnoughMoney": "You don't have enough money to buy this business!", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Player Houses ({1})", + "HeaderPlayerStaffFlagsList": "Player Staff Flags ({1})", + "HeaderStaffFlagsList": "Staff Flags", + "NonRPName": "Non-RP name! Choose a new one:", + "InvalidStaffFlag": "Staff flag not found!", + "InvalidClanFlag": "Clan flag not found!", + "InvalidLocale": "Language not found!", + "HeaderJobUniformList": "Job Uniforms ({1})", + "HeaderJobEquipmentList": "Job Equipment ({1})", + "InvalidJobUniform": "Job uniform not found!", + "InvalidJobEquipment": "Job equipment not found!", + "HeaderVehiclesInRangeList": "Vehicles within {1}", + "NoVehiclesWithinRange": "There are no vehicles within {1}", + "AmountNotNumber": "The amount must be a number!", + "NeedToBeWorking": "You need to be working! Use {1} at a job location or near a job vehicle.", + "NeedToBeOnJobRoute": "You need to be doing a job route! Use {1} in a job vehicle", + "CurrentJobRouteVehicleColoursChanged": "Your job route's vehicle colours were changed by an admin", + "NotYourJob": "This is not your job!", + "JobPoints": "You can get a job by going the yellow points on the map.", + "QuitJobToTakeAnother": "If you want this job, use {1} to quit your current job.", + "NotAJobVehicle": "This is not a job vehicle!", + "NotYourJobVehicle": "This is not your job's vehicle!", + "HeaderPickupTypes": "Pickup Types", + "HeaderBlipTypes": "Map Icon Types", + "InvalidGPSLocation": "There are no locations with that name or type", + "HeaderBusinessList": "Businesses", + "VehicleForSale": "This {1} is buyable for {2}! Use {3} if you want to buy it", + "VehicleForRent": "This {1} is rentable for {2}! Use {3} if you want to rent it", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Invalid password! {1} attempts remaining", + "LoginFailedNoPassword": "You must enter a password! ! {1} attempts remaining", + "RegistrationFailedNoPassword": "You must enter a password!", + "RegistrationFailedNoPasswordConfirm": "You must confirm the password!", + "RegistrationFailedNoEmail": "You must enter an email!", + "AccountNameAlreadyRegistered": "Your name is already registered!", + "AlreadyLoggedIn": "You are already logged in!", + "RegistrationFailedInvalidEmail": "That email is invalid!", + "RegistrationFailedPasswordMismatch": "The passwords don't match!", + "RegistrationFailedCreateError": "Your account couldn't be created!", + "RegistrationSuccess": "Your account has been created!", + "RegistrationEmailVerifyReminder": "Don't forget to verify your email! A verification code has been sent to you.", + "RegistrationCreateCharReminder": "To play on the server, you will need to make a character.", + "NoCharactersGUIMessage": "You have no characters. Would you like to make one?", + "NoCharactersGUIWindowTitle": "No characters", + "NoCharactersChatMessage": "You have no characters. Use {1} to make one.", + "NeedEmailFor2FA": "You need to add your email to your account to use two-factor authentication.", + "NeedEmailVerifiedFor2FA": "You need to verify your email to use two-factor authentication.", + "SetEmailHelpTip": "Use {1} to set your email.", + "VerifyEmailHelpTip": "Use {1} to verify your email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Nearby radio", + "FromRadio": "From radio", + "ToRadio": "To radio", + "NeedToEnterPropertyCommand": "You need to enter the {1} first! Use {2} to enter and exit", + "NeedToEnterPropertyKeyPress": "You need to enter the {1} first! Press {2} to enter and exit", + "InventoryFullCantCarry": "You don't have any space to carry this (full inventory)!", + "NotEnoughCashNeedAmountMore": "You don't have enough money! You need {1} more!", + "AmountMustBeMoreThan": "The amount must be more than {1}!", + "WeaponBanned": "You are not allowed to buy or use weapons!", + "TimeNotNumber": "The time must be a number", + "HeaderDefaultBusinessItemTypes": "Business Item Templates", + "FixingStuck": "Fixing your position and virtual world ...", + "CantUseCommandYet": "You must wait before you can use this command again!", + "NotATester": "You are not a tester!", + "AccessDenied": "AccessDenied", + "InvalidSkin": "That skin is invalid!", + "HeaderInteriorTypes": "Interiors List", + "GUIAccountSettingToggle": "You have turned {1} GUI", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "You can buy a car by visiting a vehicle dealership. Use {1} for more information.", + "SkinCommandHelp": "You can change your skin by visiting a clothes store. Use {1} for more info.", + "BusinessVehiclesRespawned": "All business vehicles have been respawned by an admin!", + "JobVehiclesRespawned": "All job vehicles have been respawned by an admin!", + "PlayerVehiclesRespawned": "All player vehicles have been respawned by an admin!", + "ClanVehiclesRespawned": "All clan vehicles have been respawned by an admin!", + "PublicVehiclesRespawned": "All public have been respawned by an admin!", + "EmptyVehiclesRespawned": "All empty vehicles have been respawned by an admin!", + "AllVehiclesRespawned": "All vehicles have been respawned by an admin!", + "AllVehiclesReloaded": "All vehicles have been reloaded by an admin!", + "YourVehicleRespawned": "Your vehicle has been respawned!", + "PlayerIPBanned": "{1} has been IP banned!", + "PlayerCharacterBanned": "{1} has been character banned!", + "PlayerSubNetBanned": "{1} has been subnet banned!", + "CantModifyBusiness": "You can't manage or modify this business!", + "CantModifyHouse": "You can't manage or modify this house!", + "ServerTimeSet": "{1} set the time to {2}", + "ServerWeatherSet": "{1} set the weather to {2}", + "ServerSnowSet": "{1} turned falling snow {2} and ground snow {3}", + "AllJobsReloaded": "All server jobs have been reloaded by an admin", + "ServerLogoSet": "{1} turned the server logo image {2}", + "ServerGUISet": "{1} turned GUI for this server {2}", + "ServerBusinessBlipsSet": "{1} turned all business blips {2}", + "ServerHouseBlipsSet": "{1} turned all house blips {2}", + "ServerJobBlipsSet": "{1} turned all job blips {2}", + "ServerBusinessPickupsSet": "{1} turned all business pickups {2}", + "ServerHousePickupsSet": "{1} turned all house pickups {2}", + "ServerJobPickupsSet": "{1} turned on all job pickups {2}", + "BusinessBuyItemsLabel": "Use {1} to purchase items", + "PropertyEnterCommandLabel": "Use {1} to enter", + "PropertyEnterKeyPressLabel": "Press {1} to enter", + "PropertyForSaleLabel": "For sale: {1}", + "PropertyForRentLabel": "For rent: {1} every payday", + "RemainingTaxPaidInMoney": "You covered the remaining taxes with {1} in cash.", + "LostMoneyFromTaxes": "You lost money since your taxes are more than your paycheck!", + "NextPaycheckRepossessionWarning": "If you don't have enough cash to cover taxes on next paycheck, you will lose stuff!", + "NotEnoughMoneyForTax": "You don't have enough money to cover your taxes!", + "AssetsRepossessedForTax": "You lost {1} vehicles, {2} houses, and {3} businesses because you couldn't pay taxes!", + "Closed": "Closed", + "Open": "Open", + "VehicleDealershipLabel": "Enter a vehicle as driver to buy it", + "TakeJobLabel": "Use {1} to work here", + "StartWorkLabel": "Use {1} to start working", + "JobEquipAndUniformLabel": "Use {1} and {2} for job stuff, or {3} to stop working", + "NotYourJobLabel": "You already have a different job. Use {1} if you want this one", + "JobLabel": "{1} Job", + "PaydayBonusSet": "🤑 {1} set the payday bonus to {2}", + "AllHousesReloaded": "🏘️ All houses have been reloaded by an admin", + "AllRadioStationsReloaded": "📻 All radio stations have been reloaded by an admin!", + "PlayerKicked": "🦶 {1} has been kicked from the server", + "AllBusinessesReloaded": "🏢 All businesses have been reloaded by an admin!", + "UnableToDoThat": "You aren't able to do that", + "SetVehicleClanConfirmMessage": "Are you sure you want to give this vehicle to your clan?", + "SetVehicleClanConfirmTitle": "Warning!", + "SetItemPriceBelowOrderPriceMessage": "Are you sure you want to set the item price below it's order price? You will lose {1} every purchase!", + "SetItemPriceBelowOrderPriceTitle": "Warning!", + "MustOwnVehicle": "You don't own this vehicle!", + "RandomTips": [ + "Look for yellow dots on your map for job locations", + "You can set custom key binds. Use {1} for details", + "Use {1} if you don't want to see tips and extra information", + "You can edit your keybinds using {1} and {2}", + "Press ℹ️ to see your inventory, and use number keys to select an item", + "Use {1} at a business to purchase items", + "Found a bug? Report it with {1}", + "Have an idea or suggestion for the server? Let the devs know using {1}", + "Want to buy a business? Use /bizbuy at one for sale", + "Want to buy a house? Use /housebuy at one for sale", + "Want to buy a vehicle? Visit a dealership and enter one for info on how to buy it!", + "Switch to any of your characters with {1}", + "Use {1} to automatically login when connecting with the same IP", + "Use {1} to turn on/off the lights in your house or business", + "Use {1} to play an internet radio station in your car, house, or business", + "Want to make a clan? Use {1} for details", + "Legal weapons can be purchased at any ammunation" + ], + "PromptResponseTip": "Use {1} to accept or {2} to decline", + "PlayerConnecting": "👋 {1} is connecting to the server", + "GetStartedJobVehicle": "Get in a {1} to get started.", + "VehicleTypes": { + "Car": "Car", + "Truck": "Truck", + "Van": "Van", + "Taxi": "Taxi", + "Bus": "Bus", + "PoliceCar": "Police Car", + "Ambulance": "Ambulance", + "FireTruck": "Fire Truck", + "Bike": "Bike", + "Motorbike": "Motorbike", + "Boat": "Boat", + "Helicopter": "Helicopter", + "Plane": "Plane", + "Train": "Train" + }, + "AlreadyOnJobRoute": "You are already doing a job route!", + "GaveVehicleToClan": "You gave this {1} to your clan!", + "JobDisabled": "This job is disabled!", + "SetHouseClanConfirmMessage": "Are you sure you want to give this house to your clan?", + "SetHouseClanConfirmTitle": "Warning!", + "SetBusinessClanConfirmMessage": "Are you sure you want to give this business to your clan?", + "SetBusinessClanConfirmTitle": "Warning!", + "MustOwnHouse": "You don't own this house!", + "MustOwnBusiness": "You don't own this business!", + "GaveHouseToClan": "You gave this house to your clan!", + "GaveBusinessToClan": "You gave this business to your clan!", + "BuyBusinessConfirmMessage": "Are you sure you want to buy this business?", + "BuyBusinessConfirmTitle": "Attention!", + "BuyHouseConfirmMessage": "Are you sure you want to buy this house?", + "BuyHouseConfirmTitle": "Attention!", + "BuyBusinessLabel": "Use {1} to buy this business", + "BuyHouseLabel": "Use {1} to buy this house", + "RentHouseLabel": "Use {1} to rent this house", + "AccountEmailAlreadyVerified": "You already set and verified your email!", + "EmailVerificationCodeSent": "A verification code and instructions have been sent to your email.", + "GUIPlayAsCharacterButton": "Play", + "GUINewCharacterButton": "New character", + "GUIPreviousCharacterButton": "Previous", + "GUINextCharacterButton": "Next", + "GUICharacterSelectWindowTitle": "Select a character", + "GUICharacterSelectMoneyLabel": "Money: {1}", + "GUICharacterSelectClanLabel": "Clan: {1}", + "GUICharacterSelectLastPlayedLabel": "Last Played: {1} days, {2} hours, {3} minutes ago", + "GUILoginWindowLabelEnterPassword": "Please enter your password", + "GUILoginWindowSubmitButton": "Login", + "GUILoginWindowResetPasswordButton": "Reset", + "GUILoginWindowPasswordPlaceholder": "Password", + "GUILoginWindowForgotPasswordLabel": "Forgot your password?", + "GUIRegisterWindowLabelCreateAccount": "Create an account", + "GUIRegisterWindowPasswordPlaceholder": "Password", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Confirm password", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Create account", + "GUINewCharacterMessageLabel": "Name your character", + "GUINewCharacterFirstNamePlaceholder": "First Name", + "GUINewCharacterLastNamePlaceholder": "Last Name", + "GUINewCharacterSubmitButton": "Create Character", + "GUIChangePasswordWindowTitle": "Change Password", + "GUIChangePasswordPasswordLabel": "Enter a new password", + "GUIChangePasswordPasswordPlaceholder": "Password", + "GUIChangePasswordConfirmPasswordPlaceholder": "Confirm password", + "GUIChangePasswordSubmitButton": "Change Password", + "GUIResetPasswordWindowMessage": "Reset Password", + "GUIResetPasswordConfirmEmailLabel": "Please confirm your email", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Reset Password", + "GUIResetPasswordLoginButton": "Login", + "GUIResetPasswordRememberMessage": "Remember your password?", + "HeaderJobList": "Jobs", + "HeaderBusinessInfo": "Business Info", + "HeaderHouseInfo": "House Info", + "HeaderClanInfo": "Clan Info", + "Locales": { + "English": "English", + "Russian": "Russian", + "Spanish": "Spanish", + "German": "German", + "Dutch": "Dutch", + "Polish": "Polish", + "Chinese": "Chinese", + "French": "French", + "Japanese": "Japanese", + "Slovak": "Slovak", + "Arabic": "Arabic" + }, + "TwoFactorAuthSet": "⚙️ You have turned two factor authentication {1}", + "AccountServerLogoSet": "⚙️ You turned the server logo {1}", + "ChatScrollLinesNotNumber": "The line amount must be a number", + "ChatScrollLinesMustBeBetween": "The line amount must be between {1} and {2}", + "ChatScrollLinesSet": "The chatbox will now scroll {1} lines at a time", + "InvalidEmailVerificationCode": "Invalid email verification code! A new one has been created and sent to your email.", + "EmailVerified": "Your email has been verified", + "EmailVerifiedTip": "You can now use your email for password resets, two-factor authentication, login alerts, and more", + "CommandRequiresLogin": "You must be logged in to use the {1} command", + "CommandDisabled": "The {1} command is disabled", + "CommandDisabledOnDiscord": "The {1} command isn't available on discord", + "CommandNotFoundHelpTip": "The command {1} does not exist! Use {2} for commands and information.", + "CommandNotFoundPossibleMatchTip": "The command {1} does not exist! Did you mean {2}?", + "CommandNoPermissions": "You don't have permission to use the {1} command", + "GUIResetPasswordCodeInputLabel": "Check your email for a code", + "GUIResetPasswordCodePlaceholder": "Verification code", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Warning", + "GUIInfoTitle": "Info", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "Invalid email!", + "HeaderVehicleInfo": "Vehicle Info", + "HeaderClanRanksList": "Clan Rank", + "HeaderNPCInfo": "NPC Info", + "NPCAnimationSet": "You set NPC {1} animation to {2}", + "NPCNameSet": "You set NPC {1} name to {2}", + "VehicleTooFar": "You are too far away from the vehicle!", + "HeaderPropertyTemplateTypes": "Property Types", + "MustBeLoggedInAndSpawnedToChat": "You need to be logged in and spawned before you can chat!", + "MutedCantChat": "You are muted and can't chat!", + "CantUseMegaphone": "You must equip a megaphone item or be in an emergency vehicle!", + "HeaderAnimationHelp": "Animation Info", + "HeaderBadgeInfo": "Badge Information ({1})", + "NoItemCloseEnough": "There is no item close enough", + "CantDropJobEquipmentItem": "You can't drop job items", + "CantPutJobEquipmentItem": "You can't store job items", + "NoItemEquipped": "You don't have any item selected", + "NoItemInActiveSlot": "You don't have an item in your active item slot", + "CantPutItemInSkinChange": "You can't store an item while customizing your appearance", + "NothingToTakeItemFrom": "You aren't near anything to take items from", + "NoAmmoToLoadIntoWeapon": "You don't have any ammo to load into the {1}", + "LoadAmmoIntoWeaponHelpCommand": "To load this ammo into a weapon, equip the weapon and type {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "To load this ammo into a weapon, equip the weapon and press {1}", + "NobodyCloseEnoughToHandcuff": "Nobody is close enough to handcuff", + "NobodyCloseEnoughToTie": "Nobody is close enough to tie up", + "PlayerNotSurrenderedHandcuff": "{1} can't be handcuffed! They either need to have their hands up, be knocked out, or tazed", + "PlayerNotSurrenderedTie": "{1} can't be tied! They either need to have their hands up, be knocked out, or tazed", + "HeaderCharactersListSelf": "Your Characters", + "HeaderCharactersListOther": "{1}'s Characters", + "CharacterSelectHelpText": "Use {1} to select a character, or {2} to create a new character", + "ItemDoesntDoAnythingOnUse": "The {1} doesn't do anything when you try to use it.", + "ItemRadioStationTip": "Use {1} to set the radio station", + "VehicleLockedCommandTip": "🔒 This {1} is locked. Use {2} to unlock it", + "VehicleLockedKeyPressTip": "🔒 This {1} is locked. Press {2} to unlock it", + "VehicleLockedCantUnlock": "🔒 This {1} is locked and you don't have the keys to unlock it", + "CurrentlyRentingThisVehicle": "You are renting this {1} for {2} per minute. Use {3} if you want to stop renting it.", + "VehicleBelongsTo": "This {1} belongs to {2} ({3})", + "NotOwned": "Not Owned", + "NotCloseEnoughToItemContainer": "You are not close enough to anything that holds items", + "Job": "Job", + "Player": "Player", + "BusinessIsNowPaintBall": "This business is now a paintball arena", + "JoinedPaintBall": "You have joined the paintball game.", + "ItemsStoredForPaintBall": "Your items are stored in your locker and will be returned when you leave the paintball game", + "LeftPaintBall": "You have left the paintball game. Your items have been returned.", + "PaintBallEnded": "The paintball match has ended. Your items have been returned.", + "HeaderEventWinners": "Winners", + "YourPaintBallResults": "You got {1} kills and {2} deaths in the paintball match", + "NoPrivateMessageToReply": "You haven't received a private message to reply to", + "WeaponDoesNotUseAmmo": "The {1} doesn't use ammo", + "ChatBoxTimestampsToggle": "You turned {1} time display in the chatbox", + "ProfanityFilterSet": "You turned chat profanity filter {1}", + "ResetAllKeyBindsConfirm": "Are you sure you want to reset all your keybinds to default?", + "NotRentingAVehicle": "You are not renting a vehicle!", + "StoppedRentingVehicle": "You stopped renting the {1}", + "VehicleEngineStartKeyPressTip": "The {1} engine is off. Press {2} to start it.", + "VehicleEngineStartCommandTip": "The {1} engine is off. Use {2} to start it.", + "StartedRentingVehicle": "You are now renting this {1} for {2} per minute. To stop renting, use {3}", + "VehicleAlreadyRentedByOther": "This vehicle is already rented by someone else", + "VehicleAlreadyRentedBySelf": "You are already renting this vehicle", + "JobRankTooLow": "You are not high enough rank!", + "InvalidKeyName": "The key ID or name you input is invalid!", + "KeyBindsReset": "All your keybinds have been reset to default", + "KeyBindNameTip": "Use simple key names, letters, or numbers. Don't add spaces.", + "UniversalInlineExamplesList": "Examples: {1}", + "KeyBindRemoved": "You removed the keybind for the {1} key", + "KeyBindAdded": "You binded key {1} to {2}", + "CopyAllKeyBindsToServerConfirm": "Are you sure you want to copy all your keybinds to the {1} server?", + "CopiedAllKeyBindsToServer": "All your keybinds have been copied to the {1} server", + "MustBeSpawned": "You must be spawned!", + "ChatEmojiSet": "You turned automatic emoji in chat {1}", + "FishingLineNotCast": "Your fishing line isn't cast!", + "CantFishHere": "You can't fish here! You need to be near water or on a boat!", + "NeedFishingRod": "You need to be holding a fishing rod!", + "FishingCastCommandHelp": "Use {1} to cast your fishing line", + "FishingCastKeyBindHelp": "Press {1} to cast your fishing line", + "Paused": "Paused", + "PaintBallAlmostWin": "{1} only needs {2} more kills to win the paintball match!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOnOff": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} \ No newline at end of file diff --git a/locale/spanish.json b/locale/spanish.json new file mode 100644 index 00000000..e61b6fb8 --- /dev/null +++ b/locale/spanish.json @@ -0,0 +1,758 @@ +{ + "TranslationProvidedBy": "PerikiyoXD and EliasDR", + "LocaleEnglishName": "Spanish", + + "LocaleNativeName": "Español", + "LocaleOffer": "Este servidor se encuentra disponible en Español. Utilice {1} para usarlo", + "LocaleChanged1": "El idioma se ha configurado a {1}", + "LocaleChanged2": "El servidor mostrará los mensajes en {1}", + "LocaleChangedNote": "Esto no cambia los mensajes de otros jugadores", + "AccentsListHeader": "Acentos", + "HelpMainListHeader": "Categorías de ayuda", + "HelpSkinHeader": "Ayuda de personajes", + "HelpVehicleHeader": "Ayuda de vehículos", + "HelpBusinessHeader": "Ayuda de negocios", + "HelpHouseHeader": "Ayuda de casas", + "HelpRadioHeader": "Ayuda de radio", + "HelpAnimationHeader": "Ayuda de animaciones", + "AccentNotFound": "Acento no encontrado", + "AccentSet": "Acento establecido como {1}", + "InvalidAnimation": "Esa animación no existe", + "AnimationCommandTip": "Usa {1} para ver la lista de animaciones", + "InvalidAnimationDistance": "La distancia debe ser un numero entre el 0 y el 3", + "CantBanClient": "No se puede vetar a esta persona", + "PlayerAccountBanned": "La cuenta de {1} ha sido vetada", + "ClanNotFound": "Clan no encontrado", + "ClanNameTaken": "Ya existe un clan con ese nombre", + "PlayerNotFound": "Jugador no encontrado", + "ClanCantRemoveRanks": "No puedes eliminar rangos del clan", + "ClanCantAddRanks": "No puedes añadir rangos del clan", + "ClanRankNotFound": "No se encontró el rango del clan indicado", + "ClanCantChangeMemberTag": "No puedes cambiar las etiquetas del miembro del clan", + "ClanPlayerNotInSameClan": "El jugador indicado no está en tu clan", + "ClanCantChangeRankLevel": "No puedes cambiar el nivel del rango del clan", + "ClanCantChangeRankTag": "No puedes cambiar la etiqueta del rango del clan", + "NameNotRegistered": "¡Tu nombre no está registrado! Usa {1} para crear una cuenta", + "AutomaticLoginIPToggle": "Se ha {1} el inicio de sesión automático por IP", + "CouldNotRegisterAccount": "Hubo un problema al crear su cuenta. Por favor, póngase en contacto con un administrador", + "RandomTipsToggle": "Se han {1} los Consejos aleatorios", + "ActionTipsToggle": "Se han {1} los Consejos de acción", + "AutoSpawnLastCharToggle": "Se ha {1} reaparecer con el ultimo personaje usado", + "AccountGUISettingToggle": "Se ha {1} la Interfaz de Usuario", + "On": "Encendido", + "Off": "Apagado", + "Yes": "Si", + "No": "No", + "True": "True", + "False": "False", + "Locked": "Locked", + "Unlocked": "Unlocked", + "PasswordNotGoodEnough": "La nueva contraseña debe cumplir los requisitos", + "PasswordNeedsBase": "Las contraseñas deben tener al menos {1}", + "PasswordNeedsCapitals": "{1} letras mayúsculas", + "PasswordNeedsNumbers": "{1} números", + "PasswordNeedsSymbols": "{1} símbolos", + "PasswordsDontMatch": "La nueva contraseña y la confirmación de la nueva contraseña no son iguales.", + "PasswordChanged": "Su contraseña ha sido cambiada", + "AutoLoggedInIP": "Ha iniciado la sesion automáticamente por su IP", + "WelcomeBack": "¡Bienvenidos de nuevo a {1}, {2}! Por favor, {3} para continuar", + "WelcomeNewPlayer": "¡Bienvenido a {1}, {2}! Por favor, {3} para jugar", + "InvalidPlayer": "Jugador no encontrado", + "InvalidBusiness": "Negocio no encontrada", + "InvalidHouse": "Casa no encontrada", + "InvalidVehicle": "Vehículo no encontrado", + "InvalidClan": "Clan no encontrado", + "InvalidClanRank": "Rango del clan no encontrado", + "InvalidJob": "Trabajo no encontrado", + "InvalidItem": "Objeto no encontrado", + "InvalidItemType": "Tipo de objeto no encontrado", + "InvalidRadioStation": "Estación de radio no encontrada", + "InvalidGate": "Puerta no encontrada", + "EntersProperty": "abre la puerta y entra en el {1} ({2})", + "ExitsProperty": "abre la puerta y sale del {1} ({2})", + "EnterExitPropertyDoorLocked": "intenta abrir la puerta {1} pero no lo consigue porque está cerrada", + "PropertyNoInterior": "Este {1} no tiene un interior, pero todavía puede utilizar los comandos en el icono de la puerta", + "NoBusinessWithItemType": "No hay ningun negocio con ese objeto disponible", + "HeaderKeyBinds": "Atajos de teclado", + "HeaderAccountHelp": "Account Help", + "HeaderVehicleHelp": "Vehicle Help", + "HeaderVehicleDealershipHelp": "Ayuda del Concesionario de Vehiculos", + "HeaderJobHelp": "Ayuda del Trabajo", + "HeaderChatHelp": "Ayuda del Chat", + "HeaderServerRules": "Reglas del Servidor", + "HeaderWebsiteInfo": "Sitio Web", + "HeaderDiscordInfo": "Discord", + "HeaderAnimationsList": "Lista de animaciones", + "HeaderPayAndSprayHelp": "Ayuda de 'Pay and Spray'", + "HeaderAmmunationHelp": "Ayuda de 'Ammunation'", + "HeaderVehicleTuneupHelp": "Ayuda de Puesta a punto del vehículo", + "HeaderBindableKeysHelp": "Atajos de teclado", + "HeaderSkinHelp": "Ayuda de Ropa/Personaje", + "HeaderBusinessHelp": "Ayuda del negocio", + "HeaderClanHelp": "Ayuda del clan", + "HeaderPlayerVehiclesList": "Vehiculos del jugador ({1})", + "HeaderPlayerBusinessesList": "Negocios del jugador ({1})", + "HeaderClansList": "Lista de clanes", + "HeaderAdminsList": "Lista de administradores", + "HeaderAccentsList": "Lista de acentos", + "HeaderPlayerInfo": "Información del jugador ({1})", + "HeaderWealthandTaxHelp": "Información sobre el patrimonio y los impuestos", + "HeaderCommandInfo": "Información de comando ({1})", + "HeaderRadioHelp": "Ayuda para la radio", + "HeaderRadioStationsList": "Emisoras de radio", + "HeaderKeyBindsList": "Lista de atajos de teclado", + "RadioVolumeChanged": "{1} Has cambiado el volumen de tu radio en directo a {2}%", + "VolumeLevelNotNumber": "El volumen debe ser un número", + "RadioStationLocationInvalid": "Debe estar en un vehículo, casa o negocio o tener un dispositivo personal para cambiar la emisora", + "ActionBusinessRadioStationChange": "cambia la emisora de la radio del negocio a {1} ({2})", + "ActionHouseRadioStationChange": "cambia la emisora de la radio de la casa a {1} ({2})", + "ActionVehicleRadioStationChange": "cambia la emisora de la radio del vehículo a {1} ({2})", + "ActionItemRadioStationChange": "cambia la estación de {1} a {2} ({3})", + "RandomVehicleCommandsDisabled": "Este es un vehículo de tráfico aleatorio y los comandos no se pueden utilizar en él", + "HouseDoorLock": "Casa {1} {2}!", + "BusinessDoorLock": "Negocio {1} {2}!", + "ServerGameModeRestarting": "El modo de juego del servidor se reinicia", + "HeaderSelfItemList": "Su inventario", + "HeaderPlayerItemList": "Inventario del jugador ({1})", + "HeaderHouseItemList": "Inventario de la casa", + "HeaderBusinessFloorItemList": "Inventario del negocio (En venta)", + "HeaderBusinessStorageItemList": "Inventario del negocio (Almacén)", + "HeaderItemItemList": "Inventario de {1}", + "ItemSlotNotNumber": "La ranura del objeto debe ser un número", + "ItemSlotMustBeBetween": "La ranura del objeto debe ser un número entre {1} y {2}!", + "UseItemBugged": "El objeto que intentas utilizar tiene un error. Se ha enviado un informe de error a los desarrolladores del servidor", + "PickupItemBugged": "El objeto que intentas recoger tiene un error. Se ha enviado un informe de error a los desarrolladores del servidor", + "DropItemBugged": "El objeto que intentas soltar tiene un error. Se ha enviado un informe de error a los desarrolladores del servidor", + "HandsBusy": "Tus manos están ocupadas", + "CantUseItemInSkinChange": "No puedes usar un objeto mientras personalizas tu apariencia", + "CantDropItemInSkinChange": "No puedes soltar un objeto mientras personalizas tu apariencia", + "CantPickupItemInSkinChange": "No puedes recoger un objeto mientras personalizas tu apariencia", + "CantSwitchItemInSkinChange": "No puedes cambiar de objeto mientras se personaliza la apariencia", + "CantGiveItemInSkinChange": "No puedes dar un objeto mientras personalizas tu apariencia", + "CantTakeItemInSkinChange": "No puedes coger un objeto mientras personalizas tu apariencia", + "ItemUnequippableNoAmmo": "{1} (ranura {2}) no tiene munición y no puede equiparse", + "NoSpaceSelfInventory": "No tienes más espacio en tu inventario", + "Business": "negocio", + "House": "casa", + "Clan": "clan", + "Vehicle": "vehiculo", + "Item": "objeto", + "ItemType": "tipo de objeto", + "Gate": "portón", + "Door": "puerta", + "ClanRank": "rango del clan", + "JobRank": "rango del trabajo", + "RadioStation": "estación de radio", + "Months": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], + "WeekDays": [ + "Domingo", + "Lunes", + "Martes", + "Miércoles", + "Jueves", + "Viernes", + "Sábado" + ], + "CardinalDirections": { + "North": "Norte", + "Northeast": "Noreste", + "East": "Este", + "Southeast": "Sureste", + "South": "Sur", + "Southwest": "Suroeste", + "West": "Oeste", + "Northwest": "Noroeste" + }, + "NewPlayerReadyToPlay": [ + "Te han dado algo de dinero. Usa {1} para encontrar lugares donde comprar artículos", + "Si necesitas dinero, los trabajos son los puntos amarillos del radar", + "Para conseguir un coche, visita el concesionario de coches. También puedes utilizar un vehículo de alquiler cerca del punto de aparición o tomar el tren", + "Asegúrese de leer el {1} y utilizar el {2} para obtener información" + ], + "YourCurrentVehicleDeleted": "El vehículo en el que estabas fue eliminado", + "Distance": "Distancia", + "Meters": "Metros", + "Feet": "Pies", + "Kilometers": "Kilómetros", + "Miles": "Millas", + "MustBeVehicleDriver": "¡Debes ser el conductor del vehículo!", + "PlayerJoinedServer": "¡{1} se unió al juego desde {2}!", + "PlayerLeftServer": "¡{1} ha abandonado el juego! ({2})", + "TakeItemFromHouse": "saca {1} de la casa", + "TakeItemFromBusinessStorage": "saca {1} del almacén del negocio", + "TakeItemFromBusiness": "saca {1} del negocio", + "TakeItemFromItem": "saca {1} del {2}", + "TakeItemFromVehicleTrunk": "saca {1} del maletero", + "TakeItemFromVehicleDash": "saca {1} de la guantera", + "AccountHelp": [ + "NO comparta su contraseña con nadie más. El personal de {1} nunca le pedirá su contraseña", + "Utilice {1} para cambiar su contraseña, y {2} si la ha olvidado", + "Algunos comandos: {1}" + ], + "VehicleHelp": [ + "Sus vehículos personales se guardarán donde usted u otra persona los deje", + "Visite un concesionario para comprar vehículos nuevos. {1} para más información)", + "Algunos comandos: {1}", + "Visita un taller mecánico para reparar, colorear y poner a punto tu coche. {1} para más información" + ], + "VehicleDealershipHelp": [ + "Visite un concesionario para comprar vehículos nuevos. {1} para encontrar uno", + "En el concesionario, introduce el coche que quieres comprar, y se te mostrará el precio", + "Si quieres comprar el vehículo, utiliza {1} y te darán las llaves para que lo pruebes en el aparcamiento", + "Salga del concesionario con el vehículo nuevo para confirmar la compra" + ], + "JobHelp": [ + "Visita los lugares de trabajo para conseguir un empleo y ganar dinero. Busca puntos amarillos en el mapa", + "En un lugar de trabajo, usa {1} para conseguir el trabajo. Utiliza {2} para dejar el trabajo", + "Usa {1} para empezar a trabajar. También puedes conseguir un trabajo {2} y {3}", + "La mayoría de los vehículos de trabajo están cerrados. Usa {1} cerca de uno para entrar en él", + "Al entrar en un vehículo de trabajo, se le mostrará información sobre cómo hacer el trabajo" + ], + "ChatHelp": [ + "Hay dos tipos principales de chat: fuera del personaje (OOC) y dentro del personaje (IC)", + "Mezclar estos dos tipos no resulta en un juego de rol apropiado. Vea {1} para más información", + "Algunos comandos del chat: {1}", + "Algunos tienen nombres más cortos disponibles ({1} para hablar, {2} para gritar, etc)" + ], + "ServerRulesHelp": [ + "Las acciones irreales (powergaming) no están permitidas. No eres Superman", + "No se permite ningún juego de rol terrorista o de terrorismo", + "Siga siempre las instrucciones de los moderadores y administradores", + "No mezcles los chats (metagaming). No puedes usar información en IC que fue recibida OOC", + "Mantén el inglés en los chats principales. Si no se te da bien el inglés, utiliza {1}" + ], + "AnimationHelp": [ + "Las animaciones permiten mejorar el juego de rol con acciones visuales", + "Utilice {1} o {2} con un nombre para utilizar una animación", + "Para ver una lista de animaciones, utilice {1}" + ], + "WeaponHelp": [ + "Visita una armería para comprar armas. Usa {1} para encontrar una", + "La compra de un arma requiere una licencia de armas", + "Las licencias de armas son gestionadas por el departamento de policía. Solicítela allí para obtenerla", + "Las armas también pueden comprarse ilegalmente en algunos negocios, vendedores de armas y clanes" + ], + "SkinHelp": [ + "En una tienda de ropa, usa {1} para comprar ropa", + "Cuando tengas un objeto de ropa, equípalo y úsalo como cualquier otro objeto para mostrar la selección de personajes (revisa {1} para aprender a usar objetos)", + "Algunas pieles están restringidas a trabajos, clanes o por otras razones" + ], + "KeyBindHelp": [ + "Puedes establecer tus propias combinaciones de teclas. Utilice {1} para ver sus teclas vinculadas", + "Utilice {1} para añadir una nueva combinación de teclas y {2} para eliminar una", + "Las teclas por defecto son: {1} para el motor del vehículo, {2} para las luces y {3} para el bloqueo/desbloqueo", + "Pulsa {1} para ver tus objetos y {2} para equipar un objeto o {3} para desequipar todos", + "Pulsa {1} para usar el objeto que tienes en la mano, pulsa {2} para dejarlo caer o pulsa {3} para recoger un objeto del suelo" + ], + "BusinessHelp": [ + "Utilice {1} para comprar artículos o {2} para ver una lista de lo que está a la venta en cualquier negocio", + "Las empresas aparecen con nombres azules sobre el icono de su entrada", + "Comandos del dueño del negocio: {1}", + "Un coche nuevo en venta aparecerá cuando salgas del concesionario" + ], + "ClanHelp": [ + "Pedir a un administrador que cree un clan (similar a las facciones/grupos/familias)", + "Los propietarios de clanes tienen pleno control sobre su clan una vez creado", + "Comandos de clan: {1}", + "Más comandos del clan: {1}" + ], + "RadioStationHelp": [ + "Utilice {1} para fijar la estación de su vehículo, casa o negocio", + "Utilice {2} para ver una lista de estaciones", + "Puedes cambiar el volumen de tu radio usando {1} con 0-100 como porcentaje" + ], + "WealthAndTaxHelp": [ + "Sus impuestos en el día de pago son el {1} por ciento de su riqueza calculada", + "Su riqueza calculada es una suma total basada en cuántos vehículos, casas y negocios tiene", + "Cada vehículo es {1}, cada casa es {2}, y cada negocio es {3}", + "Utilice {1} para ver su patrimonio actual, y {2} para ver cuánto pagará de impuestos cada día de pago" + ], + "MustBeInAVehicle": "Necesitas estar en un vehículo", + "MustBeInOrNearVehicle": "Tienes que estar dentro o cerca de un vehículo", + "MustBeInVehicleFrontSeat": "Tienes que estar en los asientos delanteros del vehículo", + "MustBeInVehicleDriverSeat": "Tienes que ser el conductor", + "DontHaveVehicleKey": "No tiene una llave para este vehículo", + "NoGateAccess": "No tienes acceso a esta puerta", + "GateBroken": "Esta puerta está rota", + "GateHacked": "La puerta no funciona", + "RadioJammed": "Sólo se oye la estática de la radio", + "VehicleNotForSale": "Este vehículo no está en venta", + "VehicleNotForRent": "Este vehículo no se alquila", + "BusinessNotForSale": "Este negocio no está en venta", + "BusinessNotForRent": "Este negocio no se alquila", + "HouseNotForSale": "Esta casa no está en venta", + "HouseNotForRent": "Esta casa no está en alquiler", + "DealershipPurchaseTestDrive": "Conduzca fuera del concesionario para comprar el vehículo, o salga del vehículo para cancelar", + "DealershipPurchaseExitedVehicle": "Has cancelado la compra del vehículo al salir de él", + "VehiclePurchaseComplete": "¡Este vehículo es ahora tuyo! Se guardará donde quiera que lo dejes", + "VehiclePurchaseNotEnoughMoney": "No tienes suficiente dinero para comprar este vehículo", + "HousePurchaseNotEnoughMoney": "No tienes suficiente dinero para comprar esta casa", + "BusinessPurchaseNotEnoughMoney": "No tienes suficiente dinero para comprar este negocio", + + "ADDED-21JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "HeaderPlayerHousesList": "Casas del jugador ({1})", + "HeaderPlayerStaffFlagsList": "Banderas administrativas del jugador ({1})", + "HeaderStaffFlagsList": "Banderas administrativas", + "NonRPName": "¡Nombre no RP! Elige uno nuevo:", + "InvalidStaffFlag": "Bandera administrativa no encontrada", + "InvalidClanFlag": "Bandera del clan no encontrada.", + "InvalidLocale": "Lenguaje no encontrado!", + "HeaderJobUniformList": "Uniformes de Trabajo ({1})", + "HeaderJobEquipmentList": "Equipamiento de Trabajo ({1})", + "InvalidJobUniform": "Uniforme de trabajo no encontrado!", + "InvalidJobEquipment": "Equipamiento de trabajo no encontrado!", + "HeaderVehiclesInRangeList": "Vehiculos Cercanos< {1}", + "NoVehiclesWithinRange": "No hay vehiculos cercanos {1}", + "AmountNotNumber": "La cantidad debe ser un numero!", + "NeedToBeWorking": "Necesitas estar trabajando! Usa {1} en un lugar o vehiculo de trabajo.", + "NeedToBeOnJobRoute": "Necesitas estar en una ruta de trabajo! Usa {1} en un vehiculo de trabajo.", + "CurrentJobRouteVehicleColoursChanged": "El color de tu vehiculo de trabajo fue cambiado por un admin.", + "NotYourJob": "Este no es tu trabajo!", + "JobPoints": "Puedes conseguir un trabajo llendo a los puntos amarillos del mapa.", + "QuitJobToTakeAnother": "Si quieres este trabajo, usa {1} para dejar tu trabajo actual.", + "NotAJobVehicle": "Este no es un vehiculo de trabajo!", + "NotYourJobVehicle": "Este no es tu vehiculo de trabajo!", + "HeaderPickupTypes": "Tipos de recogidas.", + "HeaderBlipTypes": "Tipos de iconos para mapa.", + "InvalidGPSLocation": "No hay locaciones con ese nombre o tipo.", + "HeaderBusinessList": "Negocios", + "VehicleForSale": "Esto {1} es comprable por {2}! Usa {3} si deseas comprarlo.", + "VehicleForRent": "Esto {1} es rentable por {2}! Usa {3} si deseas rentarlo.", + + "ADDED-31JAN2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "LoginFailedInvalidPassword": "Contraseña incorrecta! {1} intentos restantes", + "LoginFailedNoPassword": "Debes ingresar una contraseña! ! {1} intentos restantes", + "RegistrationFailedNoPassword": "Debes ingresar una contraseña!", + "RegistrationFailedNoPasswordConfirm": "Debes confirmar la contraseña!", + "RegistrationFailedNoEmail": "Debes ingresar un email!", + "AccountNameAlreadyRegistered": "Este nombre ya esta registrado!", + "AlreadyLoggedIn": "Ya te encuentras logeado!", + "RegistrationFailedInvalidEmail": "Este correo es invalido!", + "RegistrationFailedPasswordMismatch": "La contraseña no coincide!", + "RegistrationFailedCreateError": "Tu cuenta no pudo ser creada!", + "RegistrationSuccess": "Tu cuenta fue creada!", + "RegistrationEmailVerifyReminder": "No olvides verificar tu email! Se te envio un codigo de verificación.", + "RegistrationCreateCharReminder": "Para jugar en el servidor, debes crear un personaje.", + "NoCharactersGUIMessage": "No tienes ningun personaje. Deseas crear uno?", + "NoCharactersGUIWindowTitle": "Sin Personajes", + "NoCharactersChatMessage": "No tienes personajes. Usa {1} para crear uno.", + "NeedEmailFor2FA": "Necesitas añadir un email a tu cuenta para usar la autenticación de dos-factores.", + "NeedEmailVerifiedFor2FA": "Necesitas verificar tu email para usar la autenticación de dos-factores.", + "SetEmailHelpTip": "Usa {1} para establecer tu email.", + "VerifyEmailHelpTip": "Usa {1} para verificar tu email.", + + "ADDED-13FEB2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations.", + "NearbyRadio": "Radio Cercano", + "FromRadio": "Del Radio", + "ToRadio": "Al Radio", + "NeedToEnterPropertyCommand": "¡Tienes que entrar en el {1} primero! Usa {2} para entrar y salir", + "NeedToEnterPropertyKeyPress": "¡Tienes que entrar en el {1} primero! Presiona {2} para entrar y salir", + "InventoryFullCantCarry": "¡No tienes suficiente espacio para llevar esto! (inventario lleno)", + "NotEnoughCashNeedAmountMore": "¡No tienes suficiente dinero! Necesitas {1} más!", + "AmountMustBeMoreThan": "¡La cantidad debe ser más de {1}!", + "WeaponBanned": "¡No tienes permitido usar o comprar armas!", + "TimeNotNumber": "El tiempo debe ser un número", + "HeaderDefaultBusinessItemTypes": "Plantillas de Ítems Comerciales", + "FixingStuck": "Arreglando tu posición y mundo virtual ...", + "CantUseCommandYet": "¡Debes esperar antes de usar este comando nuevamente!", + "NotATester": "¡No eres un tester!", + "AccessDenied": "AccesoDenegado", + "InvalidSkin": "¡Esta skin es inválida!", + "HeaderInteriorTypes": "Lista de interiores", + "GUIAccountSettingToggle": "Has {1} la Interfaz de Usuario", + + "ADDED-23MAR2022": "DO NOT TRANSLATE. This string is just a comment to separate newly added translations", + "CarCommandHelp": "Puedes comprar un auto visitando un concesionario de vehículos. Usa {1} para más información.", + "SkinCommandHelp": "Puedes cambiar tu skin visitando una Tienda de Ropa. Usa {1} para más información.", + "BusinessVehiclesRespawned": "¡Todos los vehículos comerciales han sido Re-Spawneados por un Administrador!", + "JobVehiclesRespawned": "¡Todos los vehículos de trabajo han sido Re-Spawneados por un Administrador!", + "PlayerVehiclesRespawned": "¡Todos los vehículos de los jugadores han sido Re-Spawneados por un Administrador!", + "ClanVehiclesRespawned": "¡Todos los vehículos de los clanes han sido Re-Spawneados por un Administrador!", + "PublicVehiclesRespawned": "¡Todos los vehículos públicos han sido Re-Spawneados por un Administrador!", + "EmptyVehiclesRespawned": "¡Todos los vehículos vacíos han sido Re-Spawneados por un Administrador!", + "AllVehiclesRespawned": "¡Todos los vehículos han sido Re-Spawneados por un Administrador!", + "AllVehiclesReloaded": "¡Todos los vehículos han sido recargados por un administrador!", + "YourVehicleRespawned": "Tu vehículo ha sido Re-Spawneado", + "PlayerIPBanned": "¡{1} fue baneado por IP!", + "PlayerCharacterBanned": "¡{1} fue baneado de su personaje!", + "PlayerSubNetBanned": "{1} fue baneado por Rango de IP!", + "CantModifyBusiness": "No puedes administrar o modificar este comercio", + "CantModifyHouse": "No puedes administrar o modificar esta casa", + "ServerTimeSet": "{1} estableció el tiempo a {2}", + "ServerWeatherSet": "{1} estableció el clima a {2}", + "ServerSnowSet": "{1} estableció nevada {2} y nieve terrestre {3}", + "AllJobsReloaded": "Todos los trabajos del servidor han sido recargados por un Administrador", + "ServerLogoSet": "{1} cambió la imagen del logotipo del servidor {2}", + "ServerGUISet": "{1} cambió la Interfaz de Usuario para este servidor {2}", + "ServerBusinessBlipsSet": "{1} cambió todos los puntos comerciales {2}", + "ServerHouseBlipsSet": "{1} cambió todos los puntos de las casas {2}", + "ServerJobBlipsSet": "{1} cambió todos los puntos de trabajo {2}", + "ServerBusinessPickupsSet": "{1} cambió todos los objetos recoleccionables comerciales {2}", + "ServerHousePickupsSet": "{1} cambió todos los objetos recoleccionables de las casas {2}", + "ServerJobPickupsSet": "{1} cambió todos los objetos recoleccionables de trabajos {2}", + "BusinessBuyItemsLabel": "Usa {1} para comprar ítems", + "PropertyEnterCommandLabel": "Usa {1} para entrar", + "PropertyEnterKeyPressLabel": "Presiona {1} para entrar", + "PropertyForSaleLabel": "En venta: {1}", + "PropertyForRentLabel": "En alquiler: {1} cada día de pago", + "RemainingTaxPaidInMoney": "Has cubrido los impuestos restantes con {1} en efectivo.", + "LostMoneyFromTaxes": "¡Perdiste dinero ya que sus impuestos son más que su cheque de pago!", + "NextPaycheckRepossessionWarning": "¡Si no tiene suficiente efectivo para cubrir los impuestos en el próximo cheque de pago, perderá cosas!", + "NotEnoughMoneyForTax": "¡No tienes suficiente dinero para cubrir tus impuestos!", + "AssetsRepossessedForTax": "¡Perdiste {1} vehículos, {2} casas, y {3} comercios ya que no pagaste tus impuestos!", + "Closed": "Cerrado", + "Open": "Abierto", + "VehicleDealershipLabel": "Entra a un vehículo como conductor para comprarlo", + "TakeJobLabel": "Usa {1} para trabajar aquí", + "StartWorkLabel": "Usa {1} para empezar a trabajar", + "JobEquipAndUniformLabel": "Usa {1} y {2} para cosas de trabajo, o {3} para dejar de trabajar", + "NotYourJobLabel": "Ya tienes otro trabajo. Usa {1} si quieres este", + "JobLabel": "{1} Trabajo", + "PaydayBonusSet": "🤑 {1} fijó el bono de día de pago en {2}", + "AllHousesReloaded": "🏘️ ¡Todas las casas han sido recargadas por un Administrador!", + "AllRadioStationsReloaded": "📻 ¡Todas las estaciones de radio han sido recargadas por un Administrador!", + "PlayerKicked": "🦶 {1} fue expulsado de este servidor", + "AllBusinessesReloaded": "🏢 ¡Todos los comercios fueron recargados por un Administrador!", + "UnableToDoThat": "No eres capaz de hacer esto", + "SetVehicleClanConfirmMessage": "¿Estás seguro que quieres regalar este vehículo a tu clan?", + "SetVehicleClanConfirmTitle": "¡Advertencia!", + "SetItemPriceBelowOrderPriceMessage": "¿Está seguro de que desea establecer el precio del artículo por debajo del precio del pedido? ¡Perderá {1} en cada compra!", + "SetItemPriceBelowOrderPriceTitle": "¡Advertencia!", + "MustOwnVehicle": "¡No eres dueño de este vehículo!", + "RandomTips": [ + "Busca puntos amarillos en tu mapa para encontrar ubicaciones de trabajo", + "Puedes establecer combinaciones de teclas personalizadas. Usa {1} para más detalles", + "Usa {1} si no quieres ver tips o información extra.", + "Puedes editar tus combinaciones de teclas usando {1} y {2}", + "Presiona ℹ️ para ver tu inventario, y use las teclas numéricas para seleccionar un elemento", + "Usa {1} en un comercio para comprar artículos", + "¿Encontraste un bug? Repórtalo con {1}", + "¿Tiene alguna idea o sugerencia para el servidor? Hágales saber a los desarrolladores usando {1}", + "¿Quieres comprar un comercio? Usa {1} en uno en venta", + "¿Quieres comprar una casa? Usa {1} en uno en venta", + "¿Quieres comprar un vehículo? Visite un concesionario e ingrese a uno para obtener información sobre cómo comprarlo!", + "Cambia a cualquiera de tus personajes con {1}", + "Usa {1} para iniciar sesión automáticamente cuando se conecta con la misma IP", + "Usa {1} para encender / apagar las luces de tu casa o comercio", + "Usa {1} para reproducir una estación de radio por Internet en tu vehículo, casa o negocio", + "¿Quieres hacer un clan? Usa {1} para más detalles", + "Las armas legales se pueden comprar en cualquier Ammu-Nation." + ], + "PromptResponseTip": "Usa {1} para aceptar, o {2} para rechazar", + "PlayerConnecting": "👋 {1} se está conectando al servidor", + "GetStartedJobVehicle": "Entra en un {1} para empezar.", + "VehicleTypes": { + "Car": "Auto", + "Truck": "Camión", + "Van": "Camioneta", + "Taxi": "Taxi", + "Bus": "Autobús", + "PoliceCar": "Coche de Policía", + "Ambulance": "Ambulancia", + "FireTruck": "Camión de Bomberos", + "Bike": "Bicicleta", + "Motorbike": "Motocicleta", + "Boat": "Barco", + "Helicopter": "Helicóptero", + "Plane": "Avión", + "Train": "Tren" + }, + "AlreadyOnJobRoute": "¡Ya estás haciendo una ruta de trabajo!", + "GaveVehicleToClan": "¡Le diste este {1} a tu clan!", + "JobDisabled": "¡Este trabajo no está disponible!", + "SetHouseClanConfirmMessage": "¿Estás seguro de darle esta casa a tu clan?", + "SetHouseClanConfirmTitle": "¡Advertencia!", + "SetBusinessClanConfirmMessage": "¿Estás seguro de darle este comercio a tu clan?", + "SetBusinessClanConfirmTitle": "¡Advertencia!", + "MustOwnHouse": "¡No eres dueño de esta casa!", + "MustOwnBusiness": "¡No eres dueño de este comercio!", + "GaveHouseToClan": "¡Le diste esta casa a tu clan!", + "GaveBusinessToClan": "¡Le diste este comercio a tu clan!", + "BuyBusinessConfirmMessage": "¿Estás seguro de que quieres comprar este comercio?", + "BuyBusinessConfirmTitle": "¡Atención!", + "BuyHouseConfirmMessage": "¿Estás seguro de que quieres comprar esta casa?", + "BuyHouseConfirmTitle": "¡Atención!", + "BuyBusinessLabel": "Usa {1} para comprar este comercio", + "BuyHouseLabel": "Usa {1} para comprar esta casa", + "RentHouseLabel": "Usa {1} para alquilar esta casa", + "AccountEmailAlreadyVerified": "¡Ya configuraste y verificaste tu correo electrónico!", + "EmailVerificationCodeSent": "Se ha enviado un código de verificación e instrucciones a tu correo electrónico.", + "GUIPlayAsCharacterButton": "Jugar", + "GUINewCharacterButton": "Nuevo personaje", + "GUIPreviousCharacterButton": "Anterior", + "GUINextCharacterButton": "Siguiente", + "GUICharacterSelectWindowTitle": "Seleccionar un personaje", + "GUICharacterSelectMoneyLabel": "Dinero: {1}", + "GUICharacterSelectClanLabel": "Clan: {1}", + "GUICharacterSelectLastPlayedLabel": "Última vez que se jugó: Hace {1} días, {2} horas, {3} minutos", + "GUILoginWindowLabelEnterPassword": "Por favor, introduzca su contraseña", + "GUILoginWindowSubmitButton": "Iniciar sesión", + "GUILoginWindowResetPasswordButton": "Restablecer", + "GUILoginWindowPasswordPlaceholder": "Contraseña", + "GUILoginWindowForgotPasswordLabel": "¿Olvidaste tu contraseña?", + "GUIRegisterWindowLabelCreateAccount": "Crear una cuenta", + "GUIRegisterWindowPasswordPlaceholder": "Contraseña", + "GUIRegisterWindowConfirmPasswordPlaceholder": "Confirmar contraseña", + "GUIRegisterWindowEmailPlaceholder": "Email", + "GUIRegisterWindowSubmitButton": "Crear cuenta", + "GUINewCharacterMessageLabel": "Nombra a tu personaje", + "GUINewCharacterFirstNamePlaceholder": "Nombre", + "GUINewCharacterLastNamePlaceholder": "Apellidos", + "GUINewCharacterSubmitButton": "Crear personaje", + "GUIChangePasswordWindowTitle": "Cambiar contraseña", + "GUIChangePasswordPasswordLabel": "Introduzca una nueva contraseña", + "GUIChangePasswordPasswordPlaceholder": "Contraseña", + "GUIChangePasswordConfirmPasswordPlaceholder": "Confirmar contraseña", + "GUIChangePasswordSubmitButton": "Cambiar contraseña", + "GUIResetPasswordWindowMessage": "Reiniciar contraseña", + "GUIResetPasswordConfirmEmailLabel": "Por favor, confirme su correo electrónico", + "GUIResetPasswordEmailPlaceholder": "Email", + "GUIResetPasswordSubmitButton": "Restablecer contraseña", + "GUIResetPasswordLoginButton": "Iniciar sesión", + "GUIResetPasswordRememberMessage": "¿Recuerdas tu contraseña?", + "HeaderJobList": "Jobs", + "HeaderBusinessInfo": "Business Info", + "HeaderHouseInfo": "House Info", + "HeaderClanInfo": "Clan Info", + "Locales": { + "English": "Inglés", + "Russian": "Ruso", + "Spanish": "Español", + "German": "Alemán", + "Dutch": "Holandés", + "Polish": "Polaco", + "Chinese": "Chino", + "French": "Francés", + "Japanese": "Japonés", + "Slovak": "Eslovaco", + "Arabic": "Árabe" + }, + "TwoFactorAuthSet": "⚙️ Has activado la autenticación de dos factores {1}", + "AccountServerLogoSet": "⚙️ Has cambiado el logo del servidor {1}", + "ChatScrollLinesNotNumber": "El monto de la línea debe ser un número", + "ChatScrollLinesMustBeBetween": "El monto de la línea debe ser entre {1} y {2}", + "ChatScrollLinesSet": "La ventana de chat se desplazará ahora {1} líneas a la vez", + "InvalidEmailVerificationCode": "¡Código de verificación de correo electrónico no válido! Se ha creado uno nuevo y enviado a su correo electrónico.", + "EmailVerified": "Tu correo electrónico ha sido verificado", + "EmailVerifiedTip": "Ahora puedes usar tu correo electrónico para restablecer contraseñas, autenticación de dos factores, alertas de inicio de sesión y más", + "CommandRequiresLogin": "Debe iniciar sesión para utilizar el commando {1}", + "CommandDisabled": "El comando {1} está deshabilitado", + "CommandDisabledOnDiscord": "El comando {1} no esta disponible en discord", + "CommandNotFoundHelpTip": "¡El comando {1} no existe! Usa {2} para ver comandos e información.", + "CommandNotFoundPossibleMatchTip": "¡El comando {1} no existe! Querrás decir {2}?", + "CommandNoPermissions": "No tienes permiso para usar el comando {1}", + "GUIResetPasswordCodeInputLabel": "Revisa tu correo electrónico para obtener un código.", + "GUIResetPasswordCodePlaceholder": "Código de verificación", + "GUIErrorTitle": "Error", + "GUIWarningTitle": "Advertencia", + "GUIInfoTitle": "Información", + "GUIOkButton": "Ok", + "GUIErrorResetPasswordFailedInvalidEmail": "¡Correo electrónico inválido!", + "HeaderVehicleInfo": "Información de vehículo", + "HeaderClanRanksList": "Rango del Clan", + "HeaderNPCInfo": "Información de NPC", + "NPCAnimationSet": "Estableciste la animación del NPC {1} a {2}", + "NPCNameSet": "Estableciste el nombre del NPC {1} a {2}", + "VehicleTooFar": "¡Estás demasiado lejos del vehículo!", + "HeaderPropertyTemplateTypes": "Tipos de propiedad", + "MustBeLoggedInAndSpawnedToChat": "¡Debes iniciar sesión y spawnearse antes de poder chatear!", + "MutedCantChat": "¡Estás silenciado y no puedes chatear!", + "CantUseMegaphone": "¡Debes equipar un megáfono o estar en un vehículo de emergencia!", + "HeaderAnimationHelp": "Información de Animación", + "HeaderBadgeInfo": "Información de Insignia ({1})", + "NoItemCloseEnough": "No hay ningún elemento lo suficientemente cerca", + "CantDropJobEquipmentItem": "No puedes soltar elementos de trabajo", + "CantPutJobEquipmentItem": "No puedes almacenar elementos de trabajo", + "NoItemEquipped": "No tienes ningún elemento seleccionado", + "NoItemInActiveSlot": "No tienes un elemento en tu espacio de elementos activo", + "CantPutItemInSkinChange": "No puedes almacenar un artículo mientras personalizas tu apariencia.", + "NothingToTakeItemFrom": "No estás cerca de nada de donde tomar objetos.", + "NoAmmoToLoadIntoWeapon": "No tienes munición para cargar en el {1}", + "LoadAmmoIntoWeaponHelpCommand": "Para cargar esta munición en un arma, equipa una y escribe {1}", + "LoadAmmoIntoWeaponHelpKeyPress": "Para cargar esta munición en un arma, equipa una arma y presiona {1}", + "NobodyCloseEnoughToHandcuff": "Nadie está lo suficientemente cerca para esposar", + "NobodyCloseEnoughToTie": "Nadie está lo suficientemente cerca para atar", + "PlayerNotSurrenderedHandcuff": "¡{1} no puede ser esposado! Necesita tener las manos en alto, ser noqueado o tazeado.", + "PlayerNotSurrenderedTie": "¡{1} no puede ser atado! Necesita tener las manos en alto, ser noqueado o tazeado.", + "HeaderCharactersListSelf": "Tus personajes", + "HeaderCharactersListOther": "Personajes de {1}", + "CharacterSelectHelpText": "Usa {1} para seleccionar un personaje, o {2} para crear uno nuevo", + "ItemDoesntDoAnythingOnUse": "El {1} ​​no hace nada cuando intentas usarlo", + "ItemRadioStationTip": "Usa {1} para configurar la estación de radio", + "VehicleLockedCommandTip": "🔒 Este {1} está bloqueado. Usa {2} para desbloquearlo", + "VehicleLockedKeyPressTip": "🔒 Este {1} está bloqueado. Presiona {2} para desbloquearlo", + "VehicleLockedCantUnlock": "🔒 Este {1} está bloqueado y no tienes las llaves para desbloquearlo", + "CurrentlyRentingThisVehicle": "Estás alquilando este {1} por {2} cada minuto. Usa {3} si quieres dejar de alquilarlo.", + "VehicleBelongsTo": "Este {1} pertenece a {2} ({3})", + "NotOwned": "Sin dueño", + "NotCloseEnoughToItemContainer": "No estás lo suficientemente cerca de nada que contenga objetos", + "Job": "Trabajo", + "Player": "Jugador", + "BusinessIsNowPaintBall": "Este comercio ahora es un campo de paintball.", + "JoinedPaintBall": "Te has unido al juego de paintball..", + "ItemsStoredForPaintBall": "Tus artículos se almacenan en tu casillero y serán devueltos cuando abandones el juego de paintball.", + "LeftPaintBall": "Has dejado el juego de paintball. Sus artículos han sido devueltos.", + "PaintBallEnded": "El partido de paintball ha terminado. Tus artículos han sido devueltos.", + "HeaderEventWinners": "Ganadores", + "YourPaintBallResults": "Obtuviste {1} muertes y {2} defunciones en el partido de paintball", + "NoPrivateMessageToReply": "No has recibido un mensaje privado para responder", + "WeaponDoesNotUseAmmo": "El {1} no usa munición", + "ChatBoxTimestampsToggle": "Activaste {1} visualizaciónes de tiempo en el chatbox", + "ProfanityFilterSet": "Cambiaste el filtro de malas palabras del chat {1}", + "ResetAllKeyBindsConfirm": "¿Estás seguro de que deseas restablecer todas las combinaciones de teclas a sus valores predeterminados?", + "NotRentingAVehicle": "¡No estás alquilando un vehículo!", + "StoppedRentingVehicle": "Dejaste de alquilar el {1}", + "VehicleEngineStartKeyPressTip": "El motor del {1} está apagado. Presiona {2} para encenderlo.", + "VehicleEngineStartCommandTip": "El motor del {1} está apagado. Usa {2} para encenderlo.", + "StartedRentingVehicle": "Ahora estás alquilando este {1} por {2} cada minuto. Para dejar de alquilarlo, usa {3}", + "VehicleAlreadyRentedByOther": "Este vehículo ya está alquilado por otra persona", + "VehicleAlreadyRentedBySelf": "Ya estás alquilando este vehículo", + "JobRankTooLow": "¡No tienes un rango lo suficientemente alto!", + "InvalidKeyName": "¡El ID de clave o el nombre que ingresaste no es válido!", + "KeyBindsReset": "Todas tus combinaciones de teclas se han restablecido a los valores predeterminados", + "KeyBindNameTip": "Utilice nombres de teclas simples, letras o números. No agregue espacios.", + "UniversalInlineExamplesList": "Ejemplos: {1}", + "KeyBindRemoved": "Quitaste la combinación de teclas para la tecla {1}", + "KeyBindAdded": "Has vinculado la tecla {1} a la {2}", + "CopyAllKeyBindsToServerConfirm": "¿Está seguro de que desea copiar todas sus combinaciones de teclas en el servidor {1}?", + "CopiedAllKeyBindsToServer": "Todas sus combinaciones de teclas se han copiado en el servidor {1}", + "MustBeSpawned": "¡Debes estar spawneado!", + "ChatEmojiSet": "Activaste emoji automático en el chat {1}", + "FishingLineNotCast": "¡Tu hilo de pescar no está lanzado!", + "CantFishHere": "¡No puedes pescar aquí! ¡Necesitas estar cerca del agua o en un bote!", + "NeedFishingRod": "Necesitas estar sosteniendo una caña de pescar!", + "FishingCastCommandHelp": "Usa {1} para lanzar tu hilo de pescar", + "FishingCastKeyBindHelp": "Presiona {1} para lanzar tu hilo de pescar", + "Paused": "En Pausa", + "PaintBallAlmostWin": "¡{1} solo necesitas {2} muertes más para ganar la partida de paintball!", + "HeaderClanFlagsList": "Clan Flags ({1})", + "PleaseWait": "Please wait ...", + "HeaderServerRulesList": "Server Rules", + "FrequencyChannelChanged": "You set the channel of your {1} in slot {2} to {3}", + "ItemTurnedOnOff": "You turned {1} your {2} in slot {3}", + "SkinSelectHelpTextSkin": "Press {1} or {2} to switch skin, {3} to save, or {4} to cancel", + "SkinSelectHelpTextBodyPart": "Press {1} or {2} to switch body part", + "SkinSelectBodyPartNames": { + "Head": "Head", + "UpperBody": "Upper Body", + "LowerBody": "Lower Body", + "Hair": "Hair", + "Hat": "Hat", + "Glasses": "Glasses", + "LeftHand": "Left Hand", + "RightHand": "Right Hand", + "LeftWrist": "Left Wrist", + "RightWrist": "Right Wrist" + }, + "ActionTips": { + "VehicleEngineOffWhenEnteringKey": "Use {1} to turn on or off a vehicle's engine", + "VehicleLockedAfterEntryAttempt": "Use {1} to lock or unlock a vehicle", + "ShowItemsAfterPurchase": "Use {1} to see your inventory", + "BuyCommandAfterEnterBusiness": "Use {1} to buy items from a business", + "UseItemKeyAfterEquipping": "Use {1} to use your equipped item", + "UseItemKeyAfterEquippingWalkieTalkie": "Use {1} to turn on or off your radio", + "RadioCommandAfterEnablingWalkieTalkie": "Use {1} to talk on your radio", + "ReplyToDirectMessage": "Use {1} to easily reply to a private message", + "UseItemKeyAmmoAfterEquippingWeapon": "Use {1} to load an ammo item into your equipped weapon", + "AnimationStop": "Use {1} to stop your animation", + "JobEquipmentInventory": "The job equipment is in your inventory. Use {1} to see them.", + "ViewInventory": "Use {1} to see your items", + "VehicleRepairItemUsage": "Stand next to a vehicle and use {1} to repair it", + "VehicleColourItemUsage": "Stand next to a vehicle and use {1} to change it's colour", + "VehiclePartItemUsage": "Stand next to a vehicle and use {1} to upgrade with {2}", + "AmmoClipItemUsage": "Equip the weapon and use {1} to load ammo into it", + "GenericItemUsage": "Use {1} to use the {2}", + "EnterJobVehicleForRoute": "Enter a job vehicle nearby to start a job route", + "JobLocations": "Visit a job location to get a job. Use {1} to find a job location", + "JobRouteStart": "Use {1} to start a job route with this vehicle" + }, + "DisconnectReasons": { + "Unknown": "Unknown", + "LostConnection": "Lost Connection", + "Disconnected": "Disconnected", + "UnsupportedClient": "Unsupported Client", + "WrongGame": "Wrong Game", + "IncorrectPassword": "Incorrect Password", + "UnsupportedExecutable": "Unsupported Executable", + "Kicked": "Disconnected", + "Banned": "Banned", + "Failed": "Failed", + "InvalidName": "Invalid Name", + "Crashed": "Crashed", + "ModifiedGame": "Modified Game", + "FailedToLogin": "Kicked - Failed to login", + "NotATester": "Kicked - Not a tester", + "ClientScriptVerificationFail": "Client script verification failed (possible hacks)", + "ServerRestarting": "Server is restarting", + "Desync": "Desynced", + "FailedToCreateCharacter": "Kicked - Didn't create a character" + }, + "DevelopersNotified": "The developers have been notified of the problem", + "NoJobLocationCloseEnough": "There are no job locations close enough!", + "NotAllowedToUseJobs": "You are not allowed to use any jobs!", + "CantUseThisJob": "You can't use this job!", + "JobChanged": "💼 You now have the {1} job", + "NeedToBeNearJob": "You need to be near your job location or a vehicle that belongs to your job!", + "DontHaveAJob": "You don't have a job!", + "StartedWorking": "💼 You are now working for the {1} job", + "StoppedWorking": "You have stopped working", + "ItemsStoredForJob": "Your personal items have been stored in your locker while you work", + "NoJobRoutesForLocation": "Your job does not have any routes for this location!", + "CurrentJobRouteDeleted": "The job route you were on has been deleted or disabled by an admin", + "YourTax": "Your tax on payday is: {1}. Use {2} for more information.", + "YourWealth": "Your wealth is: {1}. Use {2} for more information.", + "InvalidKeyBindName": "Key name not found!", + "BusinessPurchased": "🏢You are now the owner of business {1}", + "HousePurchased": "🏘️ You are now the owner of house {1}", + "CopyAllKeyBindsConfirm": "Are you sure you want to copy your keybinds to the {1} server?", + "CopyAllKeyBindsOverwriteWarning": "This will replace all your keybinds on the other server", + "NoPromptAccept": "You don't have anything to accept", + "NoPromptReject": "You don't have anything to reject", + "NotOrderingAnyBusinessItems": "You aren't ordering anything for a business!", + "BusinessOrderCanceled": "You cancelled the business item order", + "DidNotCreateCharacter": "You do not have a character to play. Goodbye!", + "BusinessOrderNotEnoughMoney": "This business doesn't have enough money to order that! Deposit some using {1}", + + "ADDED-12OCT2022": "DO NOT TRANSLATE. Example of line below: You ordered 50 Colt 45 (100 rounds) for $5000!", + "BusinessOrderSuccessInfo": "You ordered {1} {2} for {4}!", + + "AccountSettings": { + "UseWhiteList": "Access whitelist", + "UseBlackList": "Access blacklist", + "TwoStepAuth": "Require 2FA code on login", + "AuthAttemptAlert": "Email login notifications", + "NoGUI": "No GUI", + "AutoLoginIP": "Automatic login by IP", + "NoServerLogo": "No server logo", + "AutoSelectLastCharacter": "Automatic spawn as most recent character", + "ShowRealTimeClock": "Show real time clock", + "UseGUIForItems": "Use GUI for inventory", + "UseRadialWheelItems": "Use pie wheel for inventory (like GTA V)", + "NoKeyBinds": "No keybinds", + "NoRandomTips": "No random tips", + "NoActionTips": "No action tips", + "ChatBoxTimestamps": "Show time in chat", + "ProfanityFilter": "Profanity filter", + "ChatAutoHide": "Automatically hide inactive chatbox", + "NoPlayerContent": "No custom images (like clan logos or spray tags)", + "ChatEmoji": "Show emoji images in chat" + }, + "SaveSettings": "Save Settings", + "Cancel": "Cancel", + "AlreadyOwnVehicle": "You already own this vehicle!", + "PropertyEntranceFeeLabel": "Entrance Fee: {1}", + "NeedToBeInJobVehicle": "You need to be in a job vehicle!" +} From 66391bcaadb9f5f68db915f408a59bb7b0f9f6e7 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Tue, 27 Dec 2022 23:34:15 -0600 Subject: [PATCH 07/23] Change logos --- files/images/asshat-logo.png | Bin 36196 -> 0 bytes files/images/server-logo.png | Bin 57299 -> 0 bytes meta.xml | 4 ++-- scripts/client/gui.js | 4 ++-- 4 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 files/images/asshat-logo.png delete mode 100644 files/images/server-logo.png diff --git a/files/images/asshat-logo.png b/files/images/asshat-logo.png deleted file mode 100644 index 0ac65cb9e6b5d95f6b9fc61e31b857c2f5d945db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 36196 zcmeFYhdvb&_Bf6aWn`RV z??Z%hgd>g-!uLLUe|~?(@6jV3?s47M9`}7cU*9p*J#~WT1Pu+%shfH??$OZDlc@ih zkAV?`tid_(>(~>0-5WHA)PJaky!T+_xT~I-2MrC&Y3hI4enQ}18k%65n>ViB_a0v% zIK@A+#R&fK&yd--HIz7Iz|UePm9~*z#*~M@T-W*Ee{Vzz2Zf&)wx5xH%zY!DZ^9 z@mqyAP5P})M@+Bth5!1se}5(5a65o7vZ<7qn0P=%zgH4M3w|*mzz;1gCh(J%AN*kN z1*8A|KAJlE``^_6zx4k&fbux_!FKTI>6o{+j-?HiU8oXaKlibXf@E8YqokyTL+@|dBv zyY-7412-?U3e~z$JQ!%0Ni=hWngFzKAexQK1n+(Ps;`=|1qXfQPMF zg>ByKS)j^YsF<*Z8FII4uF80pX2t}d2k+AFRJuKT-hXxqeYA~v?!Q4xXY)Hpld~cI z&#Ruogz~!Aw>g@usbEWegaqY1Jzl03^o-tR0x*LiiN#ChhBi5?fo!yZLnKF`>FPRt z4acO^u$1r7d;1Jv5lSX!3HR>3{}^`Kl*)!W?#}jj^uV<>ipqi)Hx&>deq!F3r@?l5Ux4BFXo$1pA8CpDcKuhi0&DJ>BE#=m*=XU9$;0dX_o9t)V#iAd1WKbFUsF1M!U1K@1^CPG8wtL?@K#ij;ncDna@5-0mBU}KtsOltY_aCK#M9M z6H^7qxsKdSR6O23ni{`s&+#H2{l0+Y`3S;K)g{AYlxClGQ4ua0`%v$Yr~d}2wDGEz zv&=IuBKxS^W$^gKH-5U`6G7Et_U>?Zz5lX}FxylNnHR#3gLOG(u5488)yvzNh$1h= zRVUTYT`)NajK&DkfmQOn-S1aB8$F1)1m*c_$_v>|1)bAX=eD(}n$rB25xG2CRtZ!j z$Fy-h;l;V4wf>~W`^l~e`cJj6ZcD}CkIwsTf`q`!uau$`l^I?>1l?ul{$A(l^DhCSw5cs_`8L8_9y4&yB z)4*%^esT7kRd_>BC0im@CfBuk(ph;>rj0Z4@1EMq)Cs`!IL%Zeg>yKY8vkuFL8a_^ z=sb z0fDM>)foFms(eUVYGVaXR|pmQ=wR=dD+QNCZ`OJ_{@v>FpX7Ehe0{oW48EjcEzmsq zL7u%g+MG((p8#mdW-6x5MF<7|T|>wKx)9NrP$9#-pmhu0YZ}lTzyr=8=_~K0#w=^K z&;~T`9}W0IGYYa&1BkdZ{j9947s||}uOD2ej{%5v+}-VoX+>M%hV zC3_qm%>lA)0+sJ1yjhhIA%TMA;1_;|l<$4n)J-b`sY#W-d`MUC zTbNcz;6w%7Xowb80R`IhscOc*{MSWSct$|=UHdO@Y6S;nPd(}0r!vFNSXR(X(Rx#v zLgnm*FBP*N^iR>kj`XZI#noz&Bv0%P+5GnHB~ObFbkT|p@O;B}#NQQXsjOO>URG9C zN9Q}b(0DYyUWD;k`0`*@=^PCJl6?ku zsbE||N%2&N$nL#CZd?L}>ez0sq~ITnrNNX{<9>Ko85{UsqyeJ_FDYfVEOiz1>e4PF zJx6$}r5c%5^%ANalgP_jA3GV6r#m9TK~srR#-Ph@>jS_}zZz5kAr%^3In^A~RSJ_xvUn=7BQ6 z5@me8>%ZLDhNu})F?;-V$9wF;3bH3ek(}P%(e7Oa{WikAZAta2Z(dRs#TQa06qv@V z{REoT8n-aSbk**WQ>Gfk2r>=!gs~;(jtb>=g>)#M4fb;OfC}CtDMBRo8U2Vp{ zXqmDABG^N*Q)dN&3(^9%#&RMkwGqYpaxW*fGd7B-kjld-{kor9pD5!(Pq1nYy*!Ca zM&g;yS3>^!dZa4>etdl}<6p3>o>Uqc*e}NnCZSd5CNtk5 zQ7bySx{lLFyS`OWCqx_0rGjy>wI`)-Tm`nPB!dpvu_U>4U4V>8s*$)oQ+&0Hv`Pzn zU*mi?%rb@#h1$@vT#Ckdz65{m)vn&bG30KdNc08-n{y{#2a_F!B> zb;NmHVD!9PWSrPMWSu@7BU0KqU}zsj*3CaXm^*_f)*BWdA<%8sz|5i zMFS148u{n=eoXpk^l>zHuU7qtWcVM@pidQe4GSTfcO0k0jb)rWuF!p{Mi%tSmV zi+%`=UMu_0F7efIt95SZ|MraJ^OLNNYp>K*yIfqzhx|#us5V078F9uk4=JS3hbsRf zjd*rf(c04(OE-O(3a7?>W+EMJ-2L{g59jZiKx0c_?b9N=K4<a*T1|&q<%x(d470 zY2Uu?)Vi{A=Ou1oDDQ4<5!JT=+)D&kjq2xaql^ym<|pX1rdxaf_t#sWMtKbU56%o9 z$rH*ZcDrD-%tm)=)vryC9l-BDL7WKlKoy=KOA=4Z(3tO@f70jizllrX9;nDCrmDB_ zg(r#mgu@fdnMS?>Alw=9(88chVU!n{mn|HERtZ=yM=oj}Aa#;h(V{Gr>g8yz?Qg_* zK(f^sp4a2aMO^u~7X0W9vjB?WhM>|vR4K?~?v-fOv{_4~- zx4!q^?6~DlRR1`vO4Yat%4I^a@y&{NUmIxmgX6|;NdP;tJ2O# zZ4~N6f&GaZ+3s0+X9a*E~ehMrQXC`@kl{B>BkYuM3W9<3x z-(6j3tY)76h%<=WJ|)fBL{XqM|GASVp$bA(Zyz(_?qLs$edi^t?dN#FOy%07PyDsE zCx)Ul_l^^l^((_E?zoj$zg$2I?l*0~XCERl-4A_-X2T)MTu?k>Ry*RYBVdBD3p7LE zSqKmDOgJ6N$YyXCQ3QYb^jn7lu+Mz4)L6C(t?2NNU|YVi-?XnYH-?%9Y=%)j=@hi? z7#hq3pGip`8p?0b&l+6s7<-OC+9<}}3r|&L8kZzr_f!a7a)h$^Z7pB^M<;olJgJO2 zm+G3n$b1zC5oSrRqM~tqWJ~nIS=Qjh=)=>vXiMPg)BgLqGbqb4#ElgZq6vVy2xQhz zR2}YD{o_~XDWXW>DgXFtdfZ1B;Z73FPvpqx3W7BXEBWm{dMiJK%f>=zfn)Vt8S%OK zkR(@fApB_jzX@(bd)3~EcUzy&oW|*|rfV*qI|)JHl(;L(iY5B>0>WD?5vDeb^YURH^aABqG^SL9&dA_7LeT_1S)cydbJijCAPZp_uSQ^wwrOQYL;$S9iXrPQ7Pcmgs zGE2ivf8YC-k$*1rNKON9Du`tj*=DEXMwJ)teH&HWR{BSAZ!fC~?u2Y&^=pYh$sj2p^WqE?1i4^!6pG$kYFx$%0UJP>-o38DxRAEL3E^6|#q65u8$jz}F7 zLgCM-XW4%`UKuc=Mz+07*G-Ju=%_NoI|2;kBPu2s5UywpheMC*&nUV7@jHHy50}X$ zDoz$O=uy~y*LMWzrUDAjWj5NjbCu;b>J_LG73&<)+3NfgH7Eb?Oc@z7OL;35-tfAoZS0$0?gi4QJcbSeD1b;w_n(?vFrxWu8>Jm<}4$7gO7=8kzO{ zpIbl-;*o*JYFd{>ZHQDLF<2wtPqnwo9U1*2>PT;=qD(797_&#y0!kePu-h8% zk-lq@*7bHrnig=1bSY9Yc;yzYBR)B=H%Pq#nV4Gf|E&q<`oi`03+g{* z-+S`>-O)x%!z>vf3qKqNoMJ#gKDo^JPkJk$NXiuG&$Mf@u}Lp;Zy~x!B$AQ)0bi64 znjW~fu48Vvj8KmSF$NFp0^vYe4j3RUL7QZul_6a&gly#8HAC_Z$>lRpMjL7zr<~xa zZaPyi1Yik!uf3;MhD5n+wJXD^9|*fVhr7iI6r#;|1wYUbMW&6N^VkPmF})ebT*2<< zeO*SQRUNdt4WJO{$#D`3s5{)@Tg_<96lDL*&}ro$tBdN>v>@X5ysDyVP9}$n<-OE< zvVymxUtRIbFe=eS@8gb0V?gk~Z|v~I?0PU2E6ge*PU0vtS@{Vnk_k@ zM{I70r46vuVro{qP-a|^nzk7g6C(|bEI2qOSQ?ZV=+rcZKqPP^AXU(U^nT*(nZ9>& zp>yoJO?wRg;n2}pbv(W83jmY`HM>NMPDDetfTpyA2J)t{*H%`%O`KKNc(y`8@K5 zo+E<^0|kmtdmD+nkF)8-ao!EWz`P}#`xCY=~+9^_- zaL8SI3;yue5M~XTe|wf`1I#aZ_5LaDene&zP>8ndqEui=$!vf(ymY(SI&N`+KWpye zlS)<$IAqxUpZ#;xt@OLzeT*2!^Y<^c#pMJxTFPDudF$vCXl3L}rlR@XklbAR-{)th zvYV87N7V{PntxH@y;fH3D4{|tj2wHDv-_Xt{>4Hv)`tAzTD)U<|I-<6$b}D~!0te{ z1x3Z4fmJRou(l$*j91&FKMc&gb(Blr2Xom1{YK;3OxXDs$^qP%>gONfnp6rUJZd6Y z31d=_|AFpjCQZCF>(ym1(+fj-K7n*Eu60x~;sb%I-(y>>(1vVt=t!QvT=RGN0Rqfk zcJDcoUq2hk=Bwm}%}DS0w~Yy3d!fP3$z<=SR#jh>ToGUSDPc>DFeP#-(hL zc*noTj+})dg*M=6)rOH?UIp9)%ihV@ks}5;JpRJ@!nT2L%eWsI7R>$Z))5| z_E!c{1PcAqtqwbo^46|Tv{>Sk{~hW?yoS3|w}&9GMyvQbwinu|n^msaztSqeom(Z+ z5Odl7(UG^gKRy&tJi1@uoxR+@iB7!)DA@nGYFoqSa1K-b^hlkZjxP?_Dpi$##Fb*_ z7;ina7~1G5WB(j5H(q(9j$ppRmg(&%|CwtY?uqq<*g0fZGhjb^uh{9{8YxvXZCSVK z#7$gmo7<~V1M(9guWG(`{20Z>Bi$^yzKeRDiaH+h`0EAN@h;)h5cq2cJi`(yscE4VsPFDI78NQ3y}y1FhbI7EwgSl=JZ-D*{`C6$|C zT8wccITyc?0)ZW3)<(~*dT?9wc4j>fnr;jT)Il-2KiH7;#Zir;I#}b~Ju|m3U4z=r zp4zBDrOf-W08Xopf`PH-WIV#pFTsC)ET_X0w&p%>Ceq(g|#2000F>({{ z12lM?tM}6Q>GDi@ztXO$&5D+_?Z_s0J?bHE%TE<%!WeJE@%dgUH+ga5{-enX0U*)p z@Qv{5V`a?6Wsi85tMde=m@bfnantSF>K`sSL;U~P({gkw_|l7v0M7tQg&x{~g2GQu z?Ecr6ud&g&y^>X8?)v(0Pho_NWE-E5x%wk%mq390 z2VzM$K=Ha(kP7lu!sCH&(wKhFM?!GhcSjUfN~2(l@I_Y&Ri)5LH?c^!+@ z+m9HeLf)%|Sb8W?MaqB}g=Wh*S9O5u-DDlUYueWz1TE0gC zZY9*D^oY91AERxAL}tw6Qcg`-=8dKA75YtmBize~lC#raf9!G8)4ti1{l^PH2IeHJ z>9A0)heloso-;Um5#Lxg^!lQ9l$j>ALfQo?aEH=S6=X{3%h@sRZZkaK!5<57WCxK_ z@x&sF8Sa(^A6+j<_gEF_V3wRD_=C{D*#uuOEi%Hx5A4n2wT7U2>Oz@!XUt!rFD?}^ z)GT1Jqw3)qGqADztz&>})41`)mc6jk|8~)Qk@hv`dhm5msFqiq3E+_P*70&?_bfXN zmQ*aAB)D8XVb8?gdlQfjT7_w%Rfwq`47QK?wY1thsyUsCJo_7Roy}tdL9(?p(yO@o*pJc1iQd>oh6yDk|b<@*E#miPRtS05yh*Qlu() z?vP@owYy(0$rWZH*XY!*!U8T5Gv7MSn3VV?FrKH;LBGvo0Ixpa1`P-7VE!uBZ`&C_ zGL6V9z;VboJ&7W`~uDq#L~nEA6GIcl4eW8Xat&7+eTV9quhJyBYOaoi|)&VG8}FX{4iRg7rSSd?)R)u#Jt3J zs4#uIA0b4Zc5K~;lIOL_#3IM5W2%6JZQ!9j=gcJ^O0ri-{W`D3cFjBNR{@t?nb4rU zAnCo@_F!&|UGb?uYibYoo(!AqcH6EZ2WWwnyxdS08Cj1kr!>cSOV*~O4)9)uom1;& za>Ms{1l``5;!d~|nzo~2^{e_eU-QROL%_o*%Zcpzx>c61%yVV0Zn@E(m0_OUs|aSQ zJ8+lBHFRV#lpL|N|b>+6q5`knLd z@~z-*1vm4X$K%PGgWGX#%tDT>8TOZ(zxZ0kuWMA9R88jZ5j#2Fe&cl%L6*OcFWH5bSLqS9CWphROwp93;Ys`RP|?GI>C0^dr)px_9xmUIu>sccc>0Ny2Se#5OJX zt>a>Y<%3=6Y`}qdAl>lw#riDdu4rpIEsgD#P~S%psk`}ccdWTZMuGD_h_Z|fp4>RE z#cVo!d{o=iBz|fw^uz8GL#o+Fi;SdLk>;4$~;bE=$NxGCcd#+2_5}x3!ao&F7J%>6G z6dQbXs(~vsxPqi}2PBrinFfY^s09=K?v3FHShuptY`P*LlGdYdDZu&dbG=v%Rgq!e z;7Bdr>$}&)XN&{ibo z!6dq5_Q}jL1-yrKt6Z-eBMG6f%piGk>DomV+9;iOOtOl{&?EbddCuP2;&={T4*qnd zq(@SQeSvVnfzQRU96YU5IF678+}%%4A^Wr-iX51>p@DG~0o|+6AQenSzbcWjlK`s< zv#`(H?0t8-tPdst9FPBl^Zg96FKfe~g*qWOhow!`0S5JzuCL$f8Y%87*}lF#tv z;qBw&os+cH<#2rZ?d?|Z?uD_k_wqc9J*&wJDcS_5DZbp;0Z3O!*WOuRg|_p_TrlCP zngBT*Wkf-ZxBX}hPBC(#!LR0umo1qlI&w{Ara5)Tw|1Fp!rUtwpwj zCep}wDqW(K9OwIRjMa+EuF~xa=#mjJvay1BL?`S-eGxj{UpF5^dVC6e^>i<}3;RJ$0ySvFb}WLH zTk;=}K zBxA9tjW=%2*QiSX*MS3=HiM^aCY{xQ7@7ZX%|v;OCClZ7w%Z6SiRSonqqC3EWQ|LP zV?rrUOs!MJFgHgI1+oQu^s4K zxyJJBq_s)3SN9DWT@w>l8mCF^5lLw$>RVf&#f+TWxC$G1)^r4pZ}&@K`I=#3o93uC z6LX)RNS7HxxS>X_k6640q*Hxt<9iWXy*TgcQ!%q|(kfc%2N$d?s}JQQ?V5Q22vTcD zmG@6rYp4p(F7qgO^e#B9nC%-fc^(mhsSl(ZR7*3Ia?>71qk76{L_Hntv+kHN7F*99@oFtBEG?eQPlV$ z?_T@{_G&a4f?mm_zd!c8TiSP2P7XJ0NJV4+gp^5O(@{)*ZVvQ58XL#beq`cK6%3a&!MXQj|@{rt>GoUA<_tSEm#>AZT zH*oL$2zG@i6(Sv()atVuxmM)1@_#!e{2(p0RqM(w#}Q-TKJ^5Fm!I}D^-R#)L9EbV z&Z77ZcsO0&gOExx_w~WE%hK*~5)el*Gl|pSrRLA!PWYA#>OJ;XX0_s0m;E<$R-ieX z9aZJ{^>Z~3PGPmRAlmu9Z~dN(oqhDwbiM+|0~W}-7tiTD)%LnRIvK;SDtVIj0@<-P zkd7KuFX^HaVB*}5?|qiGKAW{hGd}vCVNeW`|7M3>-@mO+AiqrJcT2#SW-a57qwK%d z_bRY8z|OLr>$YeDW(i6-8-o>`xQ7z*6zW%LUcqNDN2l`Ryihg~M8vIgaKdCEr;L{5 znUKcVC2{O`v1ro{0}Cv5D;w#(K?2KzzlnrV1r}}8{1c|hhTfAK3b{oD&`u#TBF2&0UYhR!PC^jQYLg8M_R-JZ9Do&~Uq3_AhB z1nGA5j14;EBju2%w6wN;&Xs}W>W=H2xi@$*8cU=&w4u*o!B8a%9?VJ(j-%@8a zVsTM~Z0vB%H}@(?$gX3+m4p0a`vQIM)+{sMlJ0X`G&q#;&&Vyt zCD7#YsYEy+H^0}^&EwpupYl;42@$`yHackL2C}a?ud{0m3`=!WhL#NL@v}0m&z65b*db=BMa*J84!;`;~GZ?F$<(G5;sg`kXI$4A@}1iI}bp= zZ)j%qq;6~O_jo-F1$qc_i#&?j{hyx*nMxZEyXp8-3yZIOZom?QYCYQfHTNS*j#qR= znE{lb7f`YC7}fLG8^EL8Lq4h!eRV~2}X4O3@Cm9ewFmW15#2KC( z(7x59!(?~5tVH0l+^2T7q~iuf@U(p%nb_-c9KCq=(eC zkOvV>SNuNRadG*eFu%fU_E7QhKZ$`1j>Siy+{VTxM~eBp{0aQ#tBMSO$;EFTSy6r; z9L)%0lmaij_4Xyd>Jub-N>}$yCR+X|OGk&dPa&{;Rg`k-o~ai;JwjjR&x9F$9c2+{ z=qmkgb-l<)r(}|}4V*EDtd-JP5PxrKY8*qduSg;6q_27*qoE>)#NjZ(x`dgG+dSUYq% ztQX?he>t9nI4Apd-JuQm@y#HK4g1mA85ntQarfyXDooNYB)1JYrf#%7f0N6WoNikBzf~n~9rH2*eeGG^ z*qL9HRT7EeemF?yIbFDtUgNdkQ@deMk}sK>F}@h^Dy|VV2h@zzLydcxx<9XkV3O~7 zMLtE5_bLe#gmwDUwQudy*7{m9kDYzv>;I*O4cr(-6&3UG+4Hv+7#E(!?w1#%X{(t0EDgLqedb106QB!&19l*14!BLeQZroFi!gWMmXZM!*Y0KGR5-cPQFf9Nu|`<9G+JoX$R#BbXORhTOKn{>(ZL3)DvcKysT zcbzieqKcIx4n_=+bg_i9k1@)3I~`_N?)UM2)BobGeHf>b!DiBAwn4PE{{) zfZwR7U1-%m&GLxkwTKwYk})A>@2&qANmaq`u2%QH?`8T>9mcI0|GKCMuVj9LLZloo zKdBAlk+ZVcq&C)BxJ@?HNKNXUC)87sc=u()oI?lM54_YnNYSViyO7BLMVEpz#lMd)~4Li&q|Ix{$9WC!G@g232;{l-Kn;{ROtHwblB9yhwH`PIPsmQjdn$S#Bw2wEyHM^ zh|9V>$tf5VBtgIXnBYfOd_r-`jtjEThTClOOt z&VJn@K>)v?Wk+vlrhfTdTOIEV>M`HO-LY-+?P&Mbu9$IaT;p<)VHl-~*dJjhkoOfh zraQh+K?#+g^&KtUw-Kj)1|KN$M^-GOos?$}CcXtUIYrNiI}2RO2IjePl4zT8J(i!F z*6b@3#bdIuD|^qWep4oYVw_vrky0zHQqTJp#NbNM=oYZ$3OZ)AhGkjpuKw}Ju=6sm zMa#b|to@3O15Kr8ScyLk!YJilmNrUOT87un5;(NBTYTg%dywl11~V;E#x9EpsPz*1 z`d&B?%%^J5l8X2c=@D%!^&n+b`wJc4a<|H{f$-b_vj*Q)@>Ce*bX)0hs;vE5cC^eM zqw_B+L#ngtL73 zQhzt)*tOlF%}c-sym8eKeeF!)dno^cZf3Fp#ds6U}}Vv!M^!$LhwZl=CN zFTMPhV9$*aSys_u*CNoON6g;Lw)1M=YD}tjk(Yq!0q^>bjacT&El<;lea|0R8xKjA zx8|q455X1MLAkb{=)(FBq7Y6l|AE3W=|ymitCb^ErtUp|j-QiDdT84np+613lePR} zT^fKRW?WytUPmS~lcecdd_14H)l5m>oZ2a}jkb)`{`BZMgx}8DbT|^@jCd}nPKnC7 zq;U}V*piCF_!*p%iuJ=eNnf-1xRh2f@o{r5D{75?=7#JG*;NTi^1S_e zA=aT)uL=Y*j`}0nNzK%EYU`L?l}5TV*m(5O&P)>HK^pSbp(Us(c4wY)Q7G%4zMg%4A%iILc2CP zjeS>4gGgU-FOJfF^wwut)B}{(8Z(wq{LjSv8s0r3wZkHXhf4Irn`zuW@ri~1B^xT$oi zG}5Sf#d6}pDfI?3Tx6_{tFx}2Qs60C{?n|)3MYY3+c_TGr|Xzm0ke5;bYI`ynR=TU zwUn0Q#GXGhlQTKI(%3J56hOBM?TlL5xgj5HLHlfJk#>=5>Pu!$uBEsw?kbfGmVkVB zy~hQ5VU&`oK&^+)*8e+!h4>z37N(%=-Xra+B02gP>URGI)Wrx|Qr;;XOI0vE!>2mC z&HKdpQ;QzM-;Q{GZ+2v`Ljg-#6kQ_GZIs=v`;`>EdjoWXPP>tuTHKxpH+=Eguy?cp zp-nM0)QyzA1Ki%`x~X7AP}h^5rRB+9xs=kR0Gb3W zH{|0tTNrmAffl|5CFdxD)kqzG&)#~BG3Sc`uZfUI`RMCf5#Q){Ek}rBTw~v3_+OVJ ze;bdD-I-;5j+|0k?dm>{XPBwS&P+n9484#URnK&^A`)YbBk!0$(A~HQ>KA2A>@R*X z283RKq^Y>fa}$*hp15fJ=|W!bJ#2aS6jZ*EoubK*#3e`uhEcsJ$f!t! zv`E|6h?iuWsV5jtB7CNT8-J*&03Tgs9J!3?7wXjylP@XTLC4`ETRPeSLoK zxms<)pABPj-Olxx8G%FeRjTtEjr-?1s+uz&+6_1Jr<`fxG&!7VeJjxOqcZ?`ocQ0c zymNmY570H26C;UoFAZWW<&edJVhZA6XfJ!g`^9$0Or5K)JG|HGR#{EIwAv`{G61FY z0eZt+HFBbA$KE<>d#&|-IPtP!b%H* zf430l#u~!-V+ZCJT#@)P$Af~&2BkL#jX9G+-=Zk))RdKREC##Odr&VN(5Au*TFBE> ztTt&(%x;arx6Wl;^rSS;fzv>ab06 z9@j2$m3H}lmaSLOlVCmT)#F3i+C0vV6WdX%>vII{>>{c74YySDvn-?K;L3gEP1>c9 z@wY5?6KJ1TexDtuRt#4pWFF(xY!+X~Hd(tW2nI-03=^11rJm4?US>NAct6m8eFo26 z9k76Lje${q;XmpQD38=nq>VGp{4J~zWPjMBi+5<*1vDtK5=BhXR9%eQx61K53F_{} zdS6u#u`hFxJq-*?x^mE&)MlRzx~!3SaF>2PjffLLA?@9`SSIR6e#9P-VsAAZ({5{A z`}^gQ5*v2m*7(Hd7}mWO<*(k$xKJOjK4Q^VAdXxQqKt1}Vu)ufo!I(q9ITl0Mo$_-^IqKZf)O}+AMeblxI8zx3|dsh5U|dvb8<*0 zk2Phpxh%dqb2q_z{Zr&X+7{*4@pZ8l86v0wqN|3<&~+?Z&bKle>GHz6TUBEBoTr&M zxZ^7abl2_`;P^+pIZ)SftcgA09_t-uzZy|gyhMiLp~K?_HE;S42O;iNUYuOqq($X< zm5;h@`oZX}b8b_X(7e8T+xCv042byZk6u<5S=A2*6Zr)a>X!Nqo4hQR1RBoLULgme zgLWuA#u_ftsm3<>dmlD|`Q4h(=guE)XS7&;mDfvX?C=NQObGSnzq|GGg8p0hYgfYv zY#rXBLIjmn8K4(Hz(lp_`IHQS*O|LxPa0z3Jqmf(l(BciZ;gk0sF?oJuwRJ@j_KbL zM#}8fe-SUQEpYfW@e=l-ymQRcPFLAaeHMTJQ$PM4awhc(0r}&61u(nE2GES6g35+f zmYVabBV|7f@|PP8n$>PS4`)QcO+WS5{Jh(u3={R#1ck2}upu4++B7uihP^dWm{4gyIVokZRN{-wS!Goh5CZb|PoKbtS5B#c^oNj^E&ZrCpdI{3pOx-xyoCw#O~A?9aL{Z7&!` zp=L)sHya+OmH`h^30jCv*Mvq&9hdmu*N@1Dzr0;`Cw5f?xgm0+efA31@5hBSntzDb zmT~P(g0o9vAHyqSQopTM?A1~QdVkV&jM3-XZl!_-=%fNo)@N60|H4^Hi(ALm>s8Ir zyc;6*3d(es51tQ602-!t$2B={_LHFY>c&PoFZ0l;v=y8Zjp$z37%;*&WX;!wJhHNF zV#*qbuPpIg{AeY@_bzIJ)iVB4Hr{+m1Z7i{qH_(C>a&oHDJi+<%HCZl3NOKOCsat-LvWXoJ<`BVka#7;LNa_@y+jNpq0QKA>9tka>Xu!dP#Ft~ z{QlRmjrz?0`Lv_4;DrM8DV`v5@_emQMYR{Xj<7LM&Z}R$|Kq-lRc3W@wtCABr~-uk zK8Ao?l82eZVyiid2X9u|k>$H|bw3$|J`hh>XJuJs4sZAUyQALd5vCWJ-jYEB0kvu6Ib{HCZp*B-$s@)wxaCNnwABaRBkD=i& zAC-kJrTX}hXAJ6g`;XJIVZn>RKoxEUY4>v4iSmMBTNJ0GVjhSjp+SH#5S=f7^J!+~=cS$(vv6xzNM$(pcGr4-P&_%wNsvmTkC>aA3lc zm`SqCqzYS2l7fJ^?m0p-O!qS}-26oJG~(F^gP|Oh+W`__t_Yge7F{)-Y^%X+Q!T3W zA{_8Zd4mj+jSv~VrGU!=!xvp0KQ3DoT z@rv#_zgxs8M#^r`G4PNz^y`rTxYmjM{SpS=y+A+D8C;E&MWtW*7TNM#M&!bs-n53umB5r&QTNc^4~E1^R{ba+Fms?GX^4`{D;a;8&qeRSx^sNlO4;SrI< zO4gKd)Y24_0G~E^K?UWu>(vP%U4Q(eEJKmtBjJUfn4YB;v`>8Hw8u)$HJ%2qWwlfZzHl_~t=8(oto&@T({F5^kzv)$2#5?R>DW?bDR zwjAjyxiN!D>tlYDuef)*`{VwY-5yC^Wbly z{K~b?3teUJ1!?=>wj=(d@3z1#hXHq}C-tH++VZ;AB}}k}>DG(>7PPPJ%Enm2_2bw_ zIF^rexubqsH&yT3ED&69JiQQGaMk|nLx9zqR!DNp=K?Bt+aZQ>oL9DNvgbhbC2pI zI$rGRpzXOpNZBP!B-GUSN$+-9ZCx2T{i*&1WqwV)@XpOVnXC6@5f?s0j5PU{=(yf_ z*G^XZ0EYxzO9y?yi{usL%al{nUlZ-ynpWj*h|1XOdhG0(w51Q@?;_x<_mur=ZGTB! zJ1ajT>1>z_45m9+<5PWuMdpo$s4JE>>v}nRz7x0N63X)YaP<;|F{U;vWa8KY3N+QJ z@Us9Dl;(PJ*Fku+zFdVv6|F^>ZN0PXnyYczDGL%`SEdTLN}|@^7gp|ka+&t&6JitN^|HD(RNfBq55h4((c=BBuJJMgJf}Hxy~#bpD+^ z#Mmw-Q4Zbh*9s3E7DueHtBkWvv4{IIMw5d(j&7jBDL=OH-klLJHrg~Yyg>W0Ib5pi zgxcEJ__^#ilsPAL7PV2S?e$J&kBXkfH?1Yz()$aqIrW1!R|UT>C$|ee+?`K~L2jj} zA?7-P3EHd!P&Wan*6P;BzVj`%()Y4%4`R&U97wjkeXW>?o{&<)Pd@jklcd{nXxK8HP&-|mv1sCJsJ3hO3GghrE{NoG1Q74$vRe04{f=}Fka1+>wVd_Ms0u3 z5`s^bum_(!lxy6U)f_4j*uU=r&paHnIKZ*Zu`nP~HS@~i1gvE`^}@N1*|vsO%sEY6 zuvV>63v4ur%0BckePG;uUw_=wKJRo!ld_kx--D)u-Lfg%jl+(4PGT1~@J^QxCwC}; zFA-M>tUk+eUbcuKRG7Mz{GX_V3XtmMecg$>uo7@$QS)#zB1uDbr|vdw!0rk$h}>*} z9=+%Y1oa;(Ry9aE+mvH)1&Z7|>GK!u<&;=?dTXnJ@0Ww}9x8i3-BIT3`FwOyfU=tD zIUJU&KS|}{VU!T-z@3<3>x%F_jmiyDAANGy zq~$#4n?`1O1OzF}@I7tP2u7iMLU0mCJQZ z;LSUVOz#|sA2t6#^qcmFzg8XF_(RFeZd{?=*Zey@0DvEE2d$6GsC##vJxr?)2{xPp z(Xcx_yuTM&P=V@M(O3upu^EB30ifdXFH=~MilGwaPC z36i_LQ}bgUjpxZWZr#S*nMxxs!(`xI!>Q;Db9f1y3gN`VJmE2Y|x*v;Pkw1*aG+jhRI7sy+!nzpTG6mHPLHk zNiY2V!mcgzwXF`I{%eR;oiSU8=Y2ig;AiNMh8^w%EIA&2Ln}wyUrE)pSeTk!+FtQP zTOB8{O}T3?T%nd)hvFD|+B6+HU&%zND_9@J1}WRzyHk9R6}fgogH@RuJe6{Iml13y z8#Ah~Q!l(4@rvlQ{!Mba-0Cj=_h=XH%1Elt{<^*{FB?g?uA`>muBG>MMtYJM>ab!z zC`gA4d?fJuN>8FSlpJ`%<~C2>S{h*)TH?qoT-0TkdA0mb)o=jGwAF<4c^niS_bOOG zt}m%6wp!^8i*BxTxB0@s>KwS_2LC+GO{>vaO~+hy@^Ybnr0(GZ}j^;C2+A|q?Peb9mHGDW4@(Jw#}#L zlmnWK?C2tbrwG9Z6z~%EU7fFS?vxq*Zt617%N1I}`9ZsE4a6fIAzj(&|JUA^zeD-` zaod*^N|x+WQ9@-i&|>*|-xeeU}#?{m)Uy}jO9tRv8k!FdC=;{KtcG^LR0xOlGkbz%1p{E zTHi8_)g`!Smj>yNCW&Q6$0?ZDsHUmp^R~<3B5{H0pkwp#ZS(3x)#!!o``f>)S6UrUVW&uT4h*t4J8tc=jHL2XoEc3 zQ5k+DFZKSZyar42r}M$d9*+fk1QlKBGLw?~clSFwK9Je&(zT%j~b#!F1LnTV0bIyc+`@W&YL%5?e_myu%D9w9Km9 zL*mbG-F{6oL>da?>BYt-UX} zsqjh4A=B-|R3If%mW9N)KRz%)Vx%&=RsMwfaffv-L*{uJL-!;PHhJ>={lpxDP;Y=G zy&WH9BabCRLV~2Nac$uzxELi<+rP^i{uh{CKB~78> zFuqbAcAIr368laf;Oy4?T;gE0_Vv1^D9LHN8z%8xfH^@ zLyMcQHcV@m7!F{l+lQO(CrxFsxcJ&}k5HZ;S@I2n<|7jaQpJ^RL`b&c&|{eka3@&( z(W=@y1C`Z`f%kR2aY- z(&6K03$0<8i~h8y*0Md*4e;i7H=cIpC(Jzx=@-{t zI{v=p@nIb_D~&J@|9&Ujp62PIHzNhY)wbl{Sp;D8-a=(KolY;Iq_#M zVGWIo(A^zEw%eoYzJq7BjKGW+thXZ=B00~`ddHU(C}m&LQ!d!^e`3REE0qhS~scRRQwJees* zzoPsC^78*~rnBIn{&*82#=zoCN`I(Au_Sf0ik~cm<8E~Vo$DfIFA6Jsv{+c(zqX=F z*vLDqVNoigKXbIxQC;BIaFkzCJ0Uk~vu~PeMTy*>6|iyizHPJOu-%o;3}jrz>;^1s zs53Rp)YtqqeT})$Z6>!U+Y{2$K{#Z;sz_H18J#RBD zE#d#+;?r3ZErv?R%m~sRe7SrU+vrD&%57ydNy;pdWZt#@S?7QgJ~5`qIt$qduHVxS zlt)-ioT6-WhO`g_IX;HL5?@Y*hM|NjlrGcRvlIIOyzh zNvLw;wXW=_CXbxNpHclH`>1rayGw|iBl(!Hs(-~$pNO0?4u7z@bufn%VEVM}@MN|G zm#!A6_xSl8~~_GzGfqrDiaZvL0WqWZ6wgr6du zt<~J^1$FSBf|QSM-Z|=fdyi$m>j(BQ>KTR0&6qwRe9#6tQ}rZXDe?AVokldad<=l0Q|)SniNaoOl;uF(A5r$EAf9e<)*a}+V-7t%Xkq=iDu@nA2PlCt zb@y7*WSTiy8PWHMMBBiY)NPIQX6PJN8eZZj` zydub+gMPQ-IMjKNEtt=k62s0iv$VczvSL+58q#|eFTC=#fLGm~V+qHNkG^YF@yzzk zcYh3kIJ02fJiD>~YiiLaPJsI`&kMh~5X(WzD>(R&0RkD~@!ed8B1fyCQv=}M3FT#o z7`Tb!2b@!=;zG~Hr@Y(88K`xP@M1h8d;o+q_nKd-ta0Z#OXJlVc}Kh!8|cKM0`8su z6KC$1rJTpMRBm+qYy}!TV##Q3@^Hg$gPF?HaeeGER-}IIyE-k(;1ICl>+Q7 z3GqFM@E8H1;rH^z)wtpQV@}Op3|p6JQME$8GfU6jM$LOOQ}M6RhpTx;_Nn4nBama8 z=YOAkS2czJNPnvTa(;pABNoDWg+RTlpN;@1#pwEGj|~;iEqL4F9?aJDEmDBRa@w4Y zj5m10 z+$vs2A4wm6-gcN8JDHWOq#Q4-Kk+uU(#@E72yB5?4z#sgv>MYaWcyS$a?Gq5)uByF zSJ#AR;wMYtrh4TCw;7DA;kPx5#R%PTKob`oL|FFQup-)>w&=RHmDf5Pq>LEwHu&Z_ z(}s{gg&$u3>5}vIB!s5=5pWx+&Y0#jOXU}V@%d_o)`vUmK-Lo6J({iSx(lCKl0HthQ60Jsb88DPy9UJ;)2W_Q;XQbGzm7j6_vbOH^XY`{4X4id zv1=P2r#s_i1E2czT-!{WbZ#c_e9x9z8qI1)rCWg)(fN(hLAUQMs2{D@cLP4KwGG@f zT4(q9bJ3@6A84ogULie%<(z<2k)TklamRLPM}qAy*UIH3x+;*s56q)Qp&rgR!)8s} z*%a`R#nV22aw^XI~Ax}x^n ze|LUOk{Gt}3P|!Tz3D8U^tL$v`svu=UVTx+%(-EpoaB^-?|;%G!j(m?h}T+zqq9c8 zy3);?UFmw=f+UuW3|54_k&){1ElJmAC7=q+{%a99Lo(W`zPcvVd3$V)$oMI^`r|AV zj|+7PE~63|wuAR@UMCo-olMlcYyc8KKp;xk>R#CX%>31=D^af_A|m+w?R}6L4mcxL zQfFHH3h>Fg@~IM!qK_KBrcRg9^Hzph=jR=%C2V`|bd7jhFj2$Yl3Tg(yfbXHLai)w zcHd;-jNZNz%N3p*@`-gq14lzX3aBNJ!qA!3W(L!3gX>W_lWuJwP{}DJ)G2O ze545%IJao6U|~+zcj1XVO+~?uQL0u$XQD5?)8;eDCZ?QxW>b3r)9Ne?oMQXKNL5Vo zaQOg&EmaW8^%LLOEY)ahOKG9&n;YQquEE;3RvRn|C*2t|hCJ;9?tOK2sHv@3G9Qn(QFRhb`};6)|L(>>Y6N<^UDezB0imYDwGwQsax)_Ou(7f+ zKM_qFLLVmkGXf1HgxY+=@h#0$MDpV%Ty*i|0lA4t8ug?dRiR#<#CUfwPyy#h-cRH^ zblr2yC{DcgZCTNuaX&gAXqO6o!Yei`!gswCUu5PP)>+3d_zqIR5QGVQR&T)gR zXsr*EmBt<=2Bj=2?99;<9FCE-fu1eV7o%DCyl5qSkHz=oCezH?Nv2nmy8_>T>3t|w z8+)l_c4uIva`Qp>#>>Ei(!KX=I;Spfb0xs|5pm<8XbqOhzd> zXFgzWh(>DwB|_dkvr?)?qz|@o6aSNSHdf8VI#QXE+`dDR5Ly5HaC*Qy{y9G^|Hvk; z{O=9~?|7??y2F=cFA*r}6HN#mDg+r-B*w8z$E)Jq{w>U@{fO1?=^#ej%CU}(m2z9D zYgrztx!B)fQuD|A6y8DvU+;gU0F5H~_?%rE4+8^Ca^(eXEU8Im_s-Vl%*ro^2gx0D zzd=Y%C9vx((C_|4iJSr=I|u)>m-K^%WyYs#DFvYee>QeGL>+iY^FN@8^XS9gS`!m) zyzVrJ5q@w9X>N1#>2-42Rvh<wPKoC{83K0HcS`FNBaKHd>^3qovn=tyG%oh%+!^;HqWP|0-)IBQ~FW3<{L7;)x zvd@3${7RqMd6BnO?YrF8jM^n>M09}*Nxjx!S?d*>L^lK9Xm?h=3gtd>?u*JY>`wXd^`VvH$}PY zF3fG`btxS!s>{y?N}Ag6&=#sfra%{FspxVsZft)KdpNDL6TGutUwo>aYt(xo(a^xA z=BcPhGT5a|)ZB?07z|V12`F!tv{6q6U%JzGe(34w-eMWSsUQBRq7^%=-X5F8T-D4& zrT1T#|KOF^O=vQ0+CFggXGTEtSf})!t2dP~VwgTVjh_!nJCo)JfY|kE@#W zjfpA}G+Sj!dqDP={VN{_QB~cD+t1_o=k+8O-|OI-_)7EW-rVxA$GS}epFqKe&`9I| zpny=){V;pn`xY5w()n^d_FH)_7x@2F8mLwjNF0uoA>3s-@tJv3jBv6JVav>`H+2`f zuW6CGdCyMA*VzOen2OUL#M{(~|5;cA7D*nkN~sYl^VPR-Ne7L|Y7CbopUEI&^DrPL z{j%+gpJ03p!h}l`?8{@@*X3vr^mIQ|^FT&*uUC{92POz-=oDNYqh6Sr-KyVDKJu8G zAw?WBi=hZ2BVb&=U#PpPxxX`5mL}X#HuP>XC$cXy0&P{H8qJP6M(%NTdl_%NS{{G6 zEaf9RXdD(vU+Fas>r3yS#CYV%zqVKa3UBWlCJ)f2;(u+51x7iSvc+TArm431yTL(4 zr<9o{j}TVb+;+WiPl9N^lz4v~*rk;}cN)tLSb>$P@E;gvY`%HBQ>oT(4tKQX9Dg_+ zq^#?huH^8W(X&du9tk#u9<;K}YTjdhzB575K{AI(Lf)YnS+z3Lxp*vD)5kq%o|uyZ zxF&K3!PFYTY}!4&_Gd>;@dCg}r{S zC{xQaKtSJ*vmXNEih|bcq(~-VmkJJ=c^}n9EtughQ&*uo$oQr1^#mu*_{o(qL(Rl` z?GeZ{DuIpgJ9 zJoL5NuG7+x1(uL9dvF98(xNW3b*vpWuJB#L9*qyo>bs_$Q@L&$Qp95KGq`7*AnesV z^-6#7wUlAl`#Zz+@RE;sY;SGFfRK_?$Gdm!Cnis2n<96&!@|sYX9bHCA9nz5tuy4z z*T^_yChEpmyLIuYfwLvL|9CN|q?RRj3{4hWSbTI<60DNTR4M&F3=A{Mnak$q;fMRq zTM8h~H@A+>0oRzW%Q1a|Jk<{%0}GjzftvTyf3bqyXJpFq`<0|yW_}E74XzcG34HX` zd!1<}y!ejmhKmEgmFmX#kqw(s0ntjqmUM5N+r9QX*BaXvuNBGoXN5_Co*R!R3k{ ze3GLhjPUPo?!3D-iwT-y`^PE_cqWv36Y$3Y92-zhigu_}3AA1Ju02M+d2_0`bONzt zfO>R4A!wdpsu$)Z+IP*8P+Numt3MV9D_93;ziK5cFSPrX0@)Pr2MRLqiMXjU!f9x& z(ks@VBH4B2R0!EYaTjq>*Y?+i{#XWMf|eU~3Rt}qUnhPCvZ4(xJ=!6mb9Ec;2Vy_f z;k2XwhIC@IMC@zK8`zg`<+76TK<7S>rFT4K5=s_a83MT2fp}m~$j&@5`CwsXb#$-b zjFX1%esf!dDbQK;ftmJWq8)r#P!StMvIeyBGF`^CE2MuJ;X~?GSALxgH53u4tI=>^ z-nt2`00Z?co!=^&IqTan)x_SvzDELUG_O}sFiN=V7A6~b`LpxtfgORpmZ!G?Y&}4= zKU1Ob+G`~r75Lvyoq%+XJU`#(=MuUzdIgt(VON7{eg(Y#%>Ndc1ZE?7qTRVw91ZJ2mEHl}i@GQMQn~iJ;jP(nB>0iSy z#+4sAE>}J1e*rnCfD)72#|Y98KzCBFOKhE^-v!npcxyHsG1(av5=*2uN~7b*fx z9cDQ|#9PpHfUR4yOo~~g@%t_bc3!4 zfoGiM&l5|5wg+i^qNaSM7qC6#mHU@uE7R7CA~tNcfpsuT8`z@3EZy1*NhOa7giZ5~xr?oZF{c{I80i@k9 z-wj%B!eBT)d_4-+2dMJF*Z|n|`;+Ey<5Ca_!WrFky9Z%osnACsa^o@lXR$4U`W${} z*JyLSZ#PU}nfkOEQD45SBV?R6k;>P+ALpZ8BLVtCTN}OcUj?h-1B<>gH3Y!t{LE_U zp3~0g&M#iAk4M<-E#4f!+LId4aORO#WiJ3O=toC&K;D+}79JK@uYlgEIwD z(c)MFA3n%upNYdC%@0g^Myk3}SffzKk^amgThYuG1gsBb+=KtQIJQeQ;H#-Yifr(nN=05=FhgisYYdeYl#s0!v z2!8dTI$PA=5dh@cP}C?)1-v{tAV-Lfww7^{e2Wkr(sZ@yS|c)7#A`VPXAWXgLH7jz z!h7&6$STIv50>I27m7_`E3;XpjcNzpKytE#4J?TKJ1*aZZgj-%oH?O0MVEf;JN<6gmi51fDj>A{Joae1 z7zl?P8Omd9r@e4!Mz{=W5Xc5TCy#xDP~o*840M|PjeGB=_v>79dYo7an$r2{(2iy) zpj{Cjym(-a2&2AKo4fdmvO0ycH1SgoqLN?KOau_C1Zjml86dC5N5844TjzvVX+Woe zu3R~y@zZBEYN_qTA%r?B>sySrKGypK7hn((4HAT-(CqabWH~d}BoQP@K(E#Vu;c?8 zZ7d?A+Fw3;uS2P>aG9^vK{!Zsa4hVS53Z5PIS1n-}M}PqwmsL6bK?BT0 z(1eT>X0S}TY7%4XFmGPVN&LhPEvn`l`tZO`wUYj!%i6nYU|$e&8q|=zN7QuI0K;XZ z-v!8YZkio`4cQE1C2v#%6UQ};;LNeWx`mtF;8ktI61o3-m4y+l29fA@kM5zAy(~ef z({3cz8Kd9t;J#Q=ZT+RjKfeZSyjHfk&#qsf$bvZ~N@n!JH2b}{Pq>k$W|ly98Q2p|%o5(7%#J-fl!A7}Q;@HlmY@~Pm-unxOaKTuvXl!wm3Y?p z)ql^s!Z2=^uq`T*9QtV2WUZsVbd2YL9Eea~Jl}9NszX7%ZRhDJDubXHwIfycnG6}#hC_+V;h@kQHpIHRPmJn zJJ2k1xlfWE`<_AqP9*UO^`=E{Ohf-!xWfr~DCUh2@$-qNK^*M?{fB}!0enkt1K1@~ z5Sy1hztY$x*ZHpdy^UPhX$t8?hnCHmqRpK|6w{fe%JtkA7g{H*dj;j19tKQB@Da>IA7sCIE`WP{Kx=27v+2(xNUe z=qt2-YOSkmsg&fnk9LhMUl>p6;2^QHkxQzsS}Fsd5VCP6sT90DR+&x1wdv{DNIJDO z_%!xlW=ZPAWL-cQ4m*9)`Tnt$gm>n46)%fH4uADYyqE>d=D8D(-}c~|fcjlpb8BM0 zwxthH>>t1~OCu+K{zZwT@ct2y`Sj9^EGB$TIE!XU#w|M8AEUh^-ro+BC~bCUOlEsBO-8IXa*lstq>@>)$c_b ztK8B7F;k|@PSAs_k>=IFbDpHbd^=BN#Kb;P+D*wi?>+l6G(|;mD z?Ey+c-tQxh4jfAeb|KNLK-WXBIZ3Yp@E>WKF0Zw-xKa9wqCERa?!QhLN1Nwlf2j5% z(}0;#P~TIxX5SXfo*Nf_OjNKFFLKSc`!d9t-Zz_D1eE6t5Fi2<+4#Zu+l)vYU!-u( zY-olpvM=K_Q|3W>bhW*_>I0YGT~1T|17Po|V+|EY{~T0r*-X7)i!u68jEgHLaaAWH z>7q_L%WFJv8HX(K0-e0M1yJIL!7{X~pK{P}SfK@HmQLU_3AGv+pimj+$50^kParbB zER3$2bSnp}j#cu=l(dsE2innRa)K>JAH3b$4YvZ&#lP&z(7bfPpZP`hkJ!O*}$=6 zp$oEf6d-b^4#;PH$^Xg?@zWgkXx_K8&p}C#v4ANy&9Eep>xE_VnBM$=vmU#x{I?&^ z7^y|MN>h6r_37QrHzK&!&`h^;Y7R`I16xV|#nOsKP3vY4g2>}AxX$jAj{@uOz5(_q z`rbK;k`jNXN$YU^_En6ILAg+cq}RY3v$^~;Y+I<`%is!LeGbFmJawX!a*Z|50Rk*_ z8+ixkYe_ARN*JBMlT`|@#dAai)kgl;lQ|~pT&~h=%Zh4Nq8dzpav$*l=)wyq_MID* zeknh=rUop_1EU{0UrK6Wv8o0jCdM8RNch=BJ;=Hw!lRX71PHsj1(!iwnXFqhlecEL z6Aq&bj={WoQYWUW{4>~yHGA0^kPF-gU=*>5n3TEM0N_tI-u>}<5Fq2*`|+V zhGTR}Nw{F=ejCW9;DZCntR=Wqz$;bZ@pRd@XF}bYbNey~1?BJJEC1#$+``QkLQz?G z3NrDif_`xnypFuy+A34TBWFddZm=rm6$NCe0$ey|s?2f!gqbKfU1h;)rIGMCDPh8- zBK03HG@~Ewfp81gx*F8Z-YRmM>&5Vnmm-((OZ^Tt4&e1RK9__umjaD`{?}-7={vIu zUbo(lYScPxap_KfvX(>fSNAUG%s-lnl6zMX!Z_9Ky0S8DETgXUF_71&Dz&NdLi-$ zmS+7hie!NaF=b4=yuJnWjS3VpMd0VnHJ9I&F7&VK;6Fnvl)y%|Gjkg%4%;+2yz+)U zQ+OVR*#|+rk<3)bd!*vuEBP~|Cn>93CuS^_goe39aulDTpl^cg-OEZ#0B)wPhrRhs zh85h(K>^cn7-bbYp^>MrfD>Ad8N>H$HesU?C_i{#Wm)A%OJBUNf@HCiU}qC+rb2Bt zbj}Mu7hXkoIVr@IYwg6~(n8mqfLQ+aUib$ja@y^2f{Uf%e{Cc{oAklgfX{C9OkUac z?@`TgIw+Ylf0gog&x6EC*W(Vk;7~Ys8eg6v@2U@o#=Mj}CLSPwuW|YqZ0)(%DExUr z`c=!j#H)`09P_*8D&5p!Q>=^@OKe0rm2Zwqn>;*3Bj>HvPM~MqjrV>92Tf2UA!-WJG1z_fl`3xnN0gAk*`yZb5jp@0 zRrzRzx{s5^&D>^n$NcY0b0lB_HvKpPVO|w))q&t@h9^J_G;#)c?2Ps)&d0%J^9J}Z z&0J?a%DzQ0>nF{uuQFFjzM6HvmD6WL6iy$oRGLul`b^@7ZpcZ%kCt%_0SIS1CbHK+ zDB<>Hr%P`2kb%2Hx%7?(2;X|=E*v>gW_ASPD24zuD21Lz=fCM*Z`RF0J?(e6Z-m@~ z#KW7bQ_36Q&(o|x+o%IKcvMVX%!AMVzPlCgoM8xijFP7L(x0#ZcCbz&AToR5LQ?URQI>pm0e+&~a{SxFLkUf@bfrbS&^=r{yk(!O=kx6D&G zEx_~WSOEDTI)L)B@EFs`2{})phOGZ>xv;AXmVhn6_wyb&@|^ue55@-`hco`zp}Y(P zVI2YNI;k7X>~Z!i^2GPIZiQ&X+88_=H^sD61djsCd|oo9MAuoMlF?%fM< z`TOt_yBh=_@LC5L=5Aj5s2LpF5qPj+*O^k@3w%ed+^^FFiC_lXcow9shC#>cX;H)T z`lz~y8i(mGJ6;-4!+VJB~+ z9wrt>-GnjAbvdIP52!B|q%YIh^($U-Ia(LW--}spt@Jw6F>P7C`HFHncqfL`>5%&v zd||j_@|p&xCa~7_?~a>StmyFY!u$gc?K767*8y0l41PCA`iZ0?bsC!2pT!2-dqm2I zvjKC575qn*LdMdJn$PI@ghuay=-F-%E(v@Sm;9Ck+K0HoWgPCDYc^uErMkde(jqIo z&t^5OHY6xRSG&;9-qmtp#@*VTi2PLI3i{kJ$?w9$J1Jek$c*QKPF4^ZwLO%-wkoXZ znKA4B6KO~4WDBL3Ef_Pv@t0-ZKtu(A30v4~Cjl^A*aLG|$As!E3A49)XC)!F5h=)Z zdEj(sB{+o1&x$L4UFLY}==6kF$d(f7QNPp7+sa02vuUfO08iO7_V_^Mqt4oAVHB~1 zpTCBlH<|zK`fxAMxB7N%!@Ga_(pbEvL9xyKL>8y_$%p9;gHtdjKv^X1ViFSU4Lk)< z-)+3`_;>#2kcjJ8?GbgDJp!lGu7_CaPVyjzx@+EO*;HA0 zzyKE|{4SLwWbbKbJ{H6~Nw}JWWDQpv^ZnMvZjdz5bcd58+~&YU>S$E9Zu=@B>+H!A zj%6GHD@9l9?9jY(MQAu&@l`kx)}H}t?BxUM(xtSc@lT`2Y1ZGU%p!xkKOk&ohR&ov zLMTUnb+_wJXCeOp+;6MR>HRm!n((_{~6MBjg&pKP$CfOyU^)t?5Q@)OhO z0sK5_f*fg8B7s*IdS5c4vwd)pkMwfRSPFV9Xe(pBGl9ic1Wuf9D`|<5>@XfA0{Xqh zP}3hJmCz7(#lWS17u2sCxQunvL-A?|4;YFl2?(JhH9#WD$m5HLLWF!|m)BS6hJfGh znr=&P(Cq)R&dGtd0RmE6xgr7Atr`@m1M;{6!WNx&RYDO^b$<&2dU8$MgrS=z^X#zC z)g%vVP*H8O25A9(azXtPw{EV=N&E|S5UH{8mpCc5$Y0o@FMX=onGgY4!yY9o$%-Wj zWP;lR?gbG{(fHuvO3KeAg|RN&1-15ytI2mpY5DAzD@VP=d)Iw|fg>*R&C7{^?%h+g zLgam!ss{*~x1Ad0{`q?T`V#>|L(rc){{Fd|@4tu%sjwVvViD{uG>nxC6eaxwc|R=59o`L;~`#v4P~pEJh4{IuDB^0 zc_zDvuTYYX99_-6RPLXG#c1M*R+Ljecm6yb&J_nkZANrK4jRQ>*a1*Kr6Xwk&eGWu zSO49r*|nnh@{}ulVuQX0N?epZ4L1`p0EcqvOrz`_Vx3Xf>p0~F`*#d@l-x?7*D{Sa z6unb@4AC*Htf{XIQIzm?XBKN>p^&t@Q(f7DwO@OMu)`47!7>e$Q)yNG)~BO>YtCmS z;qON>!H~v$&C)r{(g`$GOQCHtzlGAEjqjYPQ|%6DX5bgT7?y&nhh5GzquknRZm-{Z z`Vu-VDH}~+uQ%ArBmqvF$S~@wT#h{86cPv`HzSqVE}{dYjoI#>TG@>gw?-o#6D*;w zfq*`Vb@iIGe{=sZ7f=8_<2q31yqLcMbTbs!!yt1j!AI=Bk;j9LY0;do63vbm0tRK{ z)FP*~@BJG+46b=u>s*}xmgX~1i_|&3e-&tk9vUlhg3?z@jXDq20Yd1yG7->k4r1hQ zU;TnB`}R0#2h^hl99VXJlkHUtCb??lN3E|2EjeMIIUb9wnoqzl$n3ONFs=q-Ab(LNQx!XzKc)t<Or%_ zscm7W+)(r4suSDQBETUGj@p}z70S#Xe>OtRT|3k{pxNJ8h}ikoF&=f-%CQ*?6~7mw zIoSLF0jP_sjD`Xsvr%;l69u|4!FYN-CRJqqd5*7;BI zy~kaL%pndXbC}2<%9Xnry&C(#uEwT{=7}#$L>~HU9kzSx8IJmUyS+rRc8mvR7(t9} zGclUUqy|2HOF)Qh`>A`g4yPWSZhkfST*_0_vDx$T!4|#8!CS8g9GnJXe*O#ny^50B z0y*5&=f1G0MFEB2z1116ga$x|^)CzA4k`Rz1#|V$}KrPO(BO^bu8oi|Adh;3{Y$=A2pH`bSiZI0$(Z6KN1 z+r=g`q}EWpyKEgm*~_(viuao;=a+!Pg7MBMDA9Z23;jbWpC7A>mC(@h!*5Jqu!+x12= zD#F&hNLC`>AU(MrQgr6)QoPD`UW6YmUzymK;)j-DnvFdCs3oanQ{C_NnUd?Ou&W5} zPj<<>w@ZC544ju;1|a0xupl^=Poxtbs7C`9@LvCA^;<<5kIFQa^@MTsV%5I!n^59c z7>N9KVgMAdR|0NhTK$DJsw%(obqDSK*x(tZ;Z9N00^sJ)VvMe+NtyNJb4oe8akr+6 zK1hbdE~p}e)h0b$_ko|MAY@h2xLnTKO1uKn2^$$G zZi5P7DQ}Of?*c^o!OH!HoM^Z^dgCVE;4u;TP~#QLq{o<#eGSob^Hg)@f6vaT`@Pkl zVuH+Tk&o#mQ!iS+Lz045g^cx2{#XjlH10fn@rQ7NtNkd?3Y-it7;x!fQ%cq!7tc23 z!qF3nKY!ID<_T~8of%fOFZ$J-=C14EIj{@8>~Qq!`#%fkK?^^?f6bfFoOfc*Bc*Fn zkX%fzu|5}j(6)7u9ycx>P+pyc`rY;H2ss#`08HXAFH)D`?1{N=iji`mC-6nJrY)PX z0x#bmBq7z)*_bHx)|+okc}+#Y63GV%ql)y{RO|-Obw1Cbcs$RrVixbN2@AYSrgEU- zvOH!10@R+; zhA~$W<@2T0uBg_~H-FQRc$tD9&au@jNCN&$Y^@k7HQa&E+m|`SOK8}ir=7Q54lES; zvBOrc!xv{^X1Gg|`MV$eU;Vu?iS==u?IxX{r5vCqJRG(ZrT6Q$o^?#213LiLsHIGG zGubmhYvCG7{c~2VR{AduKPce_h<7AX;vwW`)}YS+Bhs`U(Cfn0zTn_H0d`4xM}Hg& z%2%1+^KRv&O{ibT!jhtZF{YyXrk1r6+bnqWp=My7i~j3C_r*dQnsa}1-68tA>$J-@ z`#Tn|CS8+3ZVe#x4WSa+y*0kbj$}>?ksm1oyLzhaNFK;;5d@u@l^1?$&e=KSYz9i?9v}MWhW5kq<-Ve!g7kvanx-{J=MLG# z!a7i(=6?_R%Py~Zl+5+Ub8v%-U2R~HoZVp?!0p`yy+$qYYfaj{{0P8=`~t4y2d{Bi zFbE%o!<1JHwl*Ns+FQAq%&30^%3Z-5MF(Suo4+zf;kJC>QttzyD8N3bv0|-UIJL#|TfkR29bT z1E8kxj{Z@A=k5~_Y{nUVZNqVvM{PBYl00@U$#H>BgL~0h z>5D?Ui}^EXGkMYG+pRJqY)Whs!Ru6C6$`I7yY|Jc4iPs2`!6pROm%;t`PMcfhTNq9ES{S{MCqSC7CgeL~ zIPUZ_dV)_6oc)43ZRLB@>?wi&0&45f`D2PEpn{!0t*bxDI0y_lf&CD6p0GaYK@9k0 z?|!^iO|y9D+2|Rlu_R}=MA)3u$gg)gotZitXG2=_it-XvXTQ0gDLW%rnPi#Q^j!@U zY@t6NMtzf3+?|fJgflOj-;Sot6@8G%(y4qhG6BL_k{7nF2J)8gRz;5@@kq*iD^#;+ z>eccm(gkSSigdTU4W-JY=qYIlC2-7UJ}P_YOWgnS6tm#LVq%wy0DjjHD5QQ_wNe{(# zj~mFt-Gt1zR*Uf`K+PRyzI@~ecKQHl96p*^Ee5Ifo>b&rb9oOb|MCD0kC0irpiPc8 zvSxmX09aASr?*AU%e#$9qE8`C{HBMz zxb=l!xMxQ7;vT1GLBhh**b-cY4X9j3e}}mAb=Wx5IAg)%Yt0+0b)#P=Kb`XF5D-XZ z0>i@ZzTc`_{>sr*N#yIhkZVM$SyxpnbQn~CPM-)X3iA9C=qLL9mRNO7m??HEqi65d z6A2?$bz^TEw|VuQN7b|EBMf^oKrKk2@mQ>8k-2qtPj#Web%$0=)z1 z-EsqX4~^{cIq{sQUv;Fb>?Vj?qwuGzr$;XuD#UUKf^?p1oe2f} z)`Zx$!Evbr)4It}z+!u{iQz%o&$K@tj>sDYZ%)l7B)UM)-Ya}D^5-${RM!oI!M*0u zapsIwAHtq-l`uEAew21$Z}O6~1I|Ii2916I*O#@c0x)zcT_ z^Gz%}T?3$+m9RV2b4B=-g+=PwCt(`^Hc5rKJrj+NmtO16h}7~w|FKv$&)`j=GxX`0 zNmoC(KV<3(SrwzJUS6d`8qX}=UwZK1ij8}}Aea>FP>l7R%q>necxNUDA{50rBrdAj zVr?TDT}SJ3*=+3Y!}8dNo!}z62J-Kquj^~0JO?W0oN<}J`LCT?-Gmpet~_}*u7yL^ zI^Z}Rav1SjN!3BvSo%C81?klRN@&q0u+9xX!o|xxI~RZGTi)Ob%4Ka;-qpO0unaaT z(1DvqJB3sjc+@@+K`BOLSzlaBLe}IadfG4mX?4`hijMEP;p!r;qFqZYUb?z0eSK~` z!vA&Q(CoOz_FhvbVqa+ZT7T|SsMsbDLG+E_-G^pRS6=!hsIAfmuU7Yq@;MYKK6Kl_ zvHO$|%=c>HbArBclYD;wqHKezY(hQUeYh!;)wtSF)6}^byuA2f838TE66?I(Q*VEe zZ~w-&E=x@f8h&-~Zqs~JB9>hNGFW^M-WgBYdF>Ca3z{+~>+Y_Sbrh}@l(Y8yo)x9M zLB*@#?_!ZkC;QX@OV#f49{ zLy3`~9T?1mm%F#QwKcA{fw-axuvMS$^Jws;@#_4kS5hs8cF#Sld(oU+Gb^3ndR|dx zxa9-6+G)YGWhrHGw2q~p8^~96xnvi8C+1k|0CUD7*RmSm!>9lE#C*8%QnvFYT@FNB z@>OOa2DVxDo;}748>J3?aX&t^4z9oTX=CNsH|-tP`42gyr&6p}Kup*}Iz#c~ z0ceM3U*DN@x+3Bs0#%R4zAe#Bz0vaaEgjd+>S^?W7izEwG2&y9+(Yd%m{-?Pt)doN{kR5eJw zTFI0h@%+_&v~d_zBad3!@eWxZkjA{35(>mYbL6;?zx!NB8@05&3o>A(B4-&kmzUnR zIM(rZekf2NJy(JHY^9b1hQ(jgOZssL@k(rt1RWzLGOuSvygv5km_w}F!=L$FYS5E+ z#&cxe9PtJn_Gbj4dS>*FHje@@qL*U|grXJmCZICvG^i5`b~z+J0oH|J4_7D($0VWi zmyCZ%lVaEi$%hnw!e^0dsRYXYlOkx`>7Vj)9H-d0=R=Y}bL#klz^l#gRlhLi{fE8l zM@Jx+pZiBV3!}W)*G5NF@O50#~TA`td+L&q$!cDa{)cs>^bny{Cp0y9N{qlZu zZKLAW+WYj>?M|Fy<%B^e(;~*BtN=3E9H;c}=b%!dqW%S2weT zhrHY#>fRXayGS>@FARzdv%_{CqlOc@T-d%bZAQ`s#3DGZ2P|IWcp1<`g33SAuN|PA zb|>S`Oeq0(95-{%vGK&E_fl4nn4y^v1iMEYPb}#CKN?U@k_{Ck3vf>gi#6PP_)lPH zW#wX8%+@{X*`Q^QnH}8dWb}EYsrTaV45)GrSQwwe-SPTic76eR0KX)+IF+MT(?En4$-=F^b|KFef|D#aNDKI<# z&qSP?IAXptnx(__Mff@RkKxbUTxqU`m@ck>UupiiX>cR| Iy6wyV13bIbX#fBK diff --git a/files/images/server-logo.png b/files/images/server-logo.png deleted file mode 100644 index 00d6750214ee3b544413ab6ddef48ab4840aa200..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 57299 zcmd?QH6QXGm?tZ1RQySqbicL}aVf?JW|?(QC>XmNK76fIVYJ3)SVf4=vB zai5t?=61{w((006*{my^-}01#jw;Q*+}us6hyIOVV}VRn*| zYVwkjlxl9y)^?6o006^GYND{*fEd}3iDoHvD&{HW?vFwNJ?sy2%0;?}?@McEt3t<0 zO=e4|T3R49<*EH0Nn!LN=zFC6qyJ=4g(U`oZj+95t&ROZZi`uCB&$KjDZ)`EDJgT^= zOta_5t?qu;kY4qo?n%ybM1NOL(t*H~*@<(-S1o;v{Wh5El2T-EOHBmm&| zt-O@DmXGnjT$BtW?b|kaYdSm*gik>Xa__XMC_iPUseOVELBjqZg@cq@6cU2;TpVI9 zj*TQ0ga6+T)EXsnQj}vUVbqjSNdW4oBsJ@KYr4nH`)T3p-yQCLnO^tjzIV;4tk8eW zclr+XO)6slzq*2n2rwzpS+4K#@6K*UM^%|^a$H#i} z^Yd5vtMV2^?uXO0#?IZhboY06bvoMG+N!_THa5C^=8B}9b-Taamf_JUH3%F32Dbe+ zE;hy!Wuc^`G}WS-eGLiR7y zH!!MyuP%-UV!L^_?%Z4De19b2;BbPuHj3MX8H&twyf_Z)m1(gB2%SH+FBG}zY%Q|k?#ollemEPiU6+jmN% zlz@`Zkba4AAQ|ZMFEJF)3`SH`R3Z&T2n9AaTM{;65EVT7NgnnAp02-WsQ{QA4jql7 z!r4rnMXga+T(8a9HJ85Qtn{-^UDvl6;d?`ZEgr|9V-v!%Hx~j?rA$fUMS{%jpMMwu zpZ0oFw$#7a+1r0(0Mo)ESfGU3A_@!SCu&rHRoJAHvhq|Swoi2LLRV%%*^}A0#<<{y z8s#?zT&N|m6Jfv;7Oviw!otE<=Y?6bonPVWw|93RXM%3tK`a#f-8WstK5GEv2K~o} zG|QAa%oxh2*CCMUVu4EM+LBem!UNUIeVlijzkB#QoNFz867M$`!)L+!b_TC)FOOTV zL|b1KawcwjH#Ro|$vk%EAHZ(g>SxJu$m!@bxpxaX(?w4)6G+s{tgy85f@Red%_Wcq zv*j&rYHBJnzVvmX%|J@~f+!2lq%h$**!9U3qR?zGHHUjLitkN3v_=O_MdO~D&D(i- zlkX0?dlmHTV-Tymi-7YDqA(*v+!_7*_b$~hGOd+y+(!fsV1|Pqzw2;CG##F{Q z{la3(<@c17Sbq)I+d8@m$T#6HUudPIi!P)$o5{ke)h3Ic&DWZ&-gfy_1OHZ*d$f>p zTy%rvZfVEom`&tfXvQDkmBuBZ)oZ?r8F<~*B7dT30rt5B1!}6d^p=;?=i*)>#YhZS zH?{_8n7@zdajlHmGO>!1C_R~HS7f!SegLP02kIuwD(H|Mx@K!y-fYSFW;Rh-h5ERz zFQ?=(IG6k9xCtB@Df=dg+=-4)J)@Y&h%pbV{Jz38G?G+zdHDDB^RausQ?_%DZ?6TAzb~PeR%)9m z?~*-F)jhv31NcOE4<)-7jNGs5QRWw4-=LsI73$}t=)d|g8S6^H&A*qGl@+)QTPnWG z=jFCp9vlcKZL9YOtHJWy8Ag@h9pMuw7=3U6OVp6igeYb;-)8XP zqt1t16KKR2`^P%u4VP7b_Bk|raQ4Nf1yKsGDW37jpGnJ^^;_insZ9~7Pyw_dn6+#P zE0+VdbZp(u4k|w?KxDgbp99lG)vI8Mpie?dN`Hl5NBE6t9#80cVr7)(;fXp z)bzLA#(TcE;>8Y3cq=4PXt@s-`D}bqiuSDBFXWb~;SDH3TK?I33gKdy;U495TZ(Dg z2O$T}C6BZFw8!g1)tbu6N6sx*EF0>o>gsw^6DGP_S++)%jxx^+gATX-HUef{Y<{A6 zrdc|Uv+{*{&{kV1TNs!;R-^Tltxqr0gOg_fTdR^zO zaoo&Jg20Ea{q|xK5b*LFRy5mldptg!&@VW>88lgr<^1;EdZ883mfbRAUybA{)W#{CBHaC5k7>veqz8Ue~4o3OA24dX* zC!b9Bs9EJoyo~LF9_DOK*_CV4o3nKL1jc0SD%VU*Uy!kBs9CPS=8M`I`I&ROYLP(v z{U=$FO#LI>Ek~ZGxVH8ZVdu}EAhE}#`BKIE6G6+|Y6eh2Md8ozdr0W~fO~Eqzg?>t z8=`^cm+1OH@` zrpjd5=b?yY-IOB6iK!D}(|Yk%(9u~rfz?#5k{XeBpt3E)pHn>R{}7EF3|sA&u-3qY zHx9B-Db3f_*nIR0V6YvNEu>j>%bbGm@Ey|!hT{S;oZBJGe)Fy^97qi#!~`4pF2Na# zhz=310JTE7geHGPwa|;YR9>9N<*Zq2M!o8h|8@9@_dy&)ww{T2SHFLl*UwH*x!)@| zFQt;r1N4-X45h=2bXD5r+WHZk|7d|8X0L+b%)6oH=fwcTVYkQ9;85|Uqcneg=IwzO z2QJLjI%~=|B2zPmKEWei8u?#~HlGSWTn=GNQ(7^NnIC`GUkKW&Bbs%{hj`F;9Eikx z3cRxjo~!eL`IF&aCWg=bgiQ->>&TMp2((UiHA4WW7b`(Q z?A<@^`6#UKvXpt&EQOR#D16fP_+;p7rWn>-T>bo@JeT{4QQBQwxm^nhz91WY{CS1K z-|vA2J>aP@6Acd{W@NexQp8O&9IN_=zYXThbAffmWe<@z$skR|kz5QHnSnp%bXt={ z?D21vHSmC$YdL4}1?mAeY1SsO=J0SJVkygR>Gj3)@O&Sr-RObml-#pply+g{B zl#`#xCF0lsv>+;$N{_B2^&htQG1Uh8`Ue{4vuz~MkC3|j!I^9Cz@ohe_B)dn+c{F* zO$`{X+hqq5A-+iwt-m)loYn}5Am+~z-$RYsuU~bJs`HpFYx%Uj=8>W0ZckmGh`N4_ zjao1ldC-_M!7RoE%tK$4ZmB2f)p+4_pz?p){~4I=kVPcdj1DyPHqFLKZpriz6UF(} z&WL_8#Vi}DY1x*IaUy;Q;@85-zY3C1INR?A$v>h_OfM64|Du-MfwGq2$H4HyVZCKr zL{L-u73ZxCKgmY2Gb{Ep_M(VF2gSF;Ng09U@Ft7c`PX;PtPxUoPxDtVz7Zz%ZJXaB z@VRXi^)DQ)J^*|$lcfW*oIxyYNv|JCwzS<`UK$rcanB{H>t_B2HmXIg4&IOpK%RKv zxy;{C2J21L2u{uEoP#PZwF}2`|EQCfv?gI`+SvH*iH^gU#SsmSxPG+HCI`L*!@e;= zR1%dLnK5vKUf!su@B%fWO-f;!^|<3905}lo;pb>*aR8R}9~SJG>Z+h6OnJ2=>{`!Me)rOkWZb*?wmQVRET2`G3@;wM;rp(CV z3uJyrie|ICy$`GPDtmKqJ-MoNiuou0HCGY^VvXaskW846(U~Q?~#gAv`SY z`QQ=m%Y6!UOPA~L>1g(gjjd?bVaM>pnfzWo8=G?d>(K<7&wM;(W~@lV0;h+82P{#U zRSo`>_rf7Vv8N-hu!#2^bY0^j0;f_e6+A0g-uv7)u7X(iNb=)Z-;+As@sG9o@a4QLPj0HL)x>JeIRn#qpRd#VB>M6;h=T?d z;2RX*L7%(Ib&^b_kd;C9>&o!&x;e_9$R!UiAVOSnb&9_<4F7cwCo>m{)1n=iQbEDc z7WNB&zxfh*h1rO->zsv3ZacN{bO7m$aS^UnkP-^$PJ-M5+JEhzVZ&y9TM-+f@d;BO zwnqfmAMBol|5CGCcp|U}3q%77#GMBSSKH@(%GsUxmu&l&t-^U=g~8XZpYQDr0)fbc zJxbx`KtOmyB9EV>ft}#$^CJAv|7Ea;%eO7;GzrL^=lG%Cvatc31khI`QO#1<0^(SA z9mUDb)=y!fx4!QI|M1=)>$qf2C05kg@?++^%>5#@;1-Z~jO%kTaZJj#?>GzKnI!mV zzO%EFb?zft{XPdCarKK1=a5Hp3PwvM=R@G3C7<6mRABfdG;!u9{hrqNS5&gz{TJ#& z26B7fLyEccdWyeYLa9-dfIp~#+r%D91Bwc^`R2X`0?m3CIrB`G5QW6mW1~}nnVrM- zB!L6wh4pm@bQ93GHs2idw!-E~+{y@N+>`J@o#n|whBrW<66d4wggHL>p?02hoWvLx za46)kBl(cghPwP1#vtCa^p<4b#oY`odmqUZ1kWkeol5+ZtxiLy7^=KxKs@$P!yW#W z4ezZ08pe0os~IpBaORHGaQT$Ph5BEKB}Y74l2;e};_e7lps~z~9k-JDlKI0wqwUgA z*4hl?)|ibc%X0ML&OtZ1-_>Y#F5AK0{w~yPBTShNl&sEbzuX*R*ZaywOzfY}-lO}4 zY`ATuQk&(LswHx(@Xz*>1^CUnFSu*{zCtt3B5-BZ5tVH__@+sXkH*wi!!C(ayK?*O zhHqqO82DE*oyEZG5VfS*0!L7Oh%=%K6iK(X9S<0 z7``EAob18!;x*w!;I}Ve{oJY}z6hgP#Y|ugA3>R#87cTsFv@2B-RHz3=RWYBuS{zk z4ZP4yr%=M>#(U&L*5*MSO|wn}yntf0xD@ujrC~Y&a>XB>gM#7S52&qK^t}Nk?DLrI zYL4t?zYu$kXenDxu|s)03pV4PCR%`a6A?fU|GACPQBxSgTjXNBj@{-ICVt$U^gO?T zHs&NHTIDC^dr9+cwKX?i4=k!S)YA6+q|{60=i1>`tMNtZoWbgg-<>06&n>0of7- zv;v7^kzm)}vSNXuGyGIdt8j4fWi~Anj~PFtvQk-iMSfmf5x|HHp*~QoK?(A%Ew%h^-y#^WR|a3sMDHFT ziAtx6a-vyyF!iGR|kO0tBo}2t)k+4H0p6(XlbN+Ws_lesPtv7NiHtc?`%@IrU zOluwPMksvi+rl+jeUglbBph@G6^=%xpDztYLg?+UPbbw6W>(+uxao02299e=<7Hfk z@4tneR8h%I(skJV$IXw#vBL!z?q3oe=c)JytyH!T7Xl$A@+!d&6qUTap=M)!e$}}z z2A-a`C>6B$(QCRU*4d{VDQb9$6Wide&-Gmz_NVpdy%@kA*3%-!Ad<=?+mQBUq|?(= zdk>}$g}@2aV?rxg0_QRwx`!YsiN~PpUa{=F*~LWBY`JZSEMR81z}4Jm$sV{vGj>;vNFN|Y9(WRZ1nb6dWhqvJCSlLuNJJn=)EWGPvf z|L{=0gDth7+O|#o?CwIZ3&q&R^{KuKfU$q> zYLz>t)fX$xp9s(cpS)dvXYZanm?ueLyvjI|+Rc3()KFlZvEFd%Rjn*2uv#UV!f@Js zk|}3c>eU~)4b&S(A1NIa#^;tTm9kwINht;<7cNg{3TLiJH13BWz0YZ7@2Z4|arY$x z-8e8Ss;f0=YFx^fd49Xco8OdMtHe_n`hKf9pDdU*QyCrD7n^4$zP!MmPWe0* zHJmN)YvdNn$o4!;<*^e(5&DroE2WXCra-3~=WR*)KoR5R&ixF4P}{RI71=fTXFO<@?S~+QMyJKD z?%XqJn=^!?0cmM}U?QHoTST)L!%D+C41Qycj@}ELrJ)r9-$WIDgO3Z2W9YE3MwYKe zNPSf}e}5y#dvDbY$C^b|`w4>e@}#P)95-nm*5v~~&5DB6_+h3t^i?S>w=gO!Q3>6Z zebS9C_Rp(>iF_nYdpVulFET7iw9Pe2^ysZYIZFYzYh4FWf8cd9Uj$u|#aI%piLIk! zR~*D9{VV;)>pQE7G$RrdOa?euje*A!x(L!IOxCr85-+8d#1v+;zUmnny%-0gakC5L zoFbTcx_Cjn*lF3l>ZCRDo4P@TBS}Rxz>Uq zuT7ygTwHsHzURI|4n1>BZbOOq>jkzKT_e2Q+yU*Sr9+ia)keF3yl(vHLM16H!*kt# zM{dD~Z@BOiJ(o*~F}$i_|p^&_Hm=f zJ!%s8!PKf&ItnZC(z(F9e8}(L0bc&x&Mtxc)_{`2h)l2Lff7qJ3CZZWSx|Zcg{U#g zrJ-rX>Q0#6kC{KeF=(rZ*M%~ke^#DWHy-J@`imOZyRVu>-rn8ZWDJb3l}7WS^?XX^ zbQSvu>-^D_GT8d#iKLMlLj!}%9XF+z!_`biRF7t~9UWh8bpUm|@mKtHYl`ZE$6QD0 z4AD3WDOGXUIJAtu8TlvfHE(h5ot0Bs#CHF%{(OV%ynH`Rl(bYq6s((C{@A!UTGsCt zb3PF8oi-97*EJU}T1C8Iiq+?$AH~92oz$tlP(OFYc2DC|gj?3?572%D6*6dZZf>V$ z!bL1jjjQ`Ch#wynD2TZIyLCwf7tS|-bJMsv&t4(9*>v)eqZff=)~y>PIWb+x=cmbI zu#Hyof~>@sW>NP?KahTa>tMlVoC-knIMOgb{baA85${(r#Bki3+@7{0U%wq#8<0JY zbyiB5jQPs?iZ#~5yd)70cl&;O$*&^@h!8#SZ$Y}V4N8f#sIQ3x)yr$Z<87T$-}^rkk^ z3@OFGI?lKV(!>P3W)f&c9_TRG8z8L-W zGa3WaSE!n;+qxohkIU1A7=OtSEJ_7G@efs+qd+xmHDz&`z`za==e@{B{U^{YWjGG; zT2BAtaEA_FepG$qOF4e)FNjt;S*jA0{{S`KyG$&Y#wH@$eY`(s;-BysXJ&@;X#eN9 zh*yWGInir>9ha#P2|xG1x{%O!^B)@$R#l-q7{6>_5c;qB$?>S2bmz-7lzC`Wfew+= zE;sNUp%}$&s=i79;8z-P(yd+;T&9oB=1JJ_@Gy$*i=~lKZm_KRuZB~_$JF?zIu!hP zO28*dryjE-Rx^&Y4<1~_^UvWb_9Q2xu0!$bwGlJ;`~QAsS$wp~)*OlO#`Cq?gjG{_ zfsW;3e8KKqVeMyw=tzXnus_Vx>}yf_*KlDOhjZ~768QY*ui?A+Zp(7Gax3RM8@dV) z8X*qT8!iJFxyV}Wa)FpOr2h4>+a!(GKD{;Pi2(A3*duj?=SZ8iaOYOynO*!>75v_H zMMqBHn_532Q)L19Wj@22wIHTtLGlif!gD;&li;aUj(hPp+jD;0W`#&F3z>kmy?v_V zp#hsuzHkL@@t+j*;Jc9wj$$+Zy+qD$etr{F0RNoB6>DRwDHpSn`z;o;VczoGo?mXm z*qLNB7<|3XwG@ijLY_IxZQ@&DO0&;)-g$5ObxWcHQ!g05kGO6%k{; zSeB$d(X3L$wJ)>QxJ*M=1L1Dhclbr51K@A2beKV@ZJNW%n<^y44);?!N^Pmdl-dtozGb#)?*<>iOgX|ySzqU6BB zs;a-)WSrkEQruqPitIo@sW|-~pSj{(vGvD2&vp*K{Wu{-xtBg`M3z{0m=ZxrXQ_B* zEG}w$p>zi29p@SrM?-WM?6o$hnxt%V8DX=9jX>yWv3MEw?3Ie!H!X%`4FuA`5V(n%6#ys-6rco57w0-WM8ESP)CA`Dr;OLSM4=v$@IHBmL9mxsOiy9Z39f`+Cb@WsG*MEqxmJ*)=M2sm3W*X zM>ut0YQ?{r!~_!j_CR;F%))yY_UoB`#wCyE4n>_zQdHZ-@az0s56M1AB5-loXw|pm}RF$GhamKuD9lh-vJJ*2Cw3B6jV323kvv zN~c|40iU$Ehp#IOfoNevVbjd%fFDsYPU~)*YM1+F;sr0^p(6AzJ=xGBkDA96j|SV- z;TGAkE0);OSH)~ucro-AZTfTTEsqWP_wl}Afo1hsbY}B)aN7d;MN`~XQ)mOB^~T-$ z$sLlq+CdE8^^AF3-tsRd&FBim5b+B5hyWtWspAK~c?4pM?glGwbY&0eIXK{6oNKd+ z{fHfNhqWy#B)^YZ0d$8vrz8T{S)XQta$g0Fb|uYflad$n5!7Y3VEJ9GvIyHmRKIA z7g56XmV^a<<_`j}^0_rWU- zQpTEYQG16*X$Sdeh1lyhs-_hYX?iRUGxY zenN|%t}6eve&imxV3Lc&%;UBMaGB!1`3WU*#wwVpT>LIQWe)W?TSGIUdNbuJms+ip zd1NFwpzUPqA^Sle0s#CyIax}vBJEq~uWXO@kjS-Y5pPpg9;gjXo32yorQ7Sw%ggJw zp2{j+u3+A_d1g@xGQ;vz!GnxRlT?XE3HICZB%{Ccm!U5fqO_>_U62U>NgvYn5%uyx zf)VAH)F2WZu#mjqy}WWBrhxwD!1aWf0LGJ&w|CpL7p_RT<(t@AU2$=-t}M@#UJ_o> zpU@+U8CvsSd{2`z5tRP>6R5H)9DEgV;}gdXgD?T-qmcX-Z)DV3w<7gy`upHJLX@X9 zU3`Fy^4tF7q%P1j4i(M6(gpLpg{9TPg%S5_8KT9bFe-Rjrjl$uJMh5+2&}zVn*QDt z5inhntKwQ#Mf9(ZRl%R15=*NKASO#b6O^fwQI9VdzseTu;H0muT}r^94*9z0BY^ni zQtkxhNyTF8t#@M`a3Bs;gw9H3KfuA-Hcls3$O~*q0d@_hZ z7?mn(=ta3*ldF9?GzB@TYT+acWio@!EJPy0Co8~PgOqX9XS34OWV9-J#~+yNP?0Oc z!n=s?G+t1rD#_2@SXwIGTcvk<2Q-BHJDCr>wYvTMxUs zzhK!AGNNf$ZqZp5OFf69XM%kk6v+H!b93>xL z)a^?7UEP+Q^3R8bH>6|GG^`x7Xp(c-wzc~|UWNLm740=&e}uZ^`Y}S*$NwohmM`Sn z`|ze?=#^Pt1|hvCDB&3L!3Z84MMlF#qfP7(V?7Z)cpA}kSg6Jtfa>bZGT111OCsiN zH@nn_!VClP$Lod!{uSNbM(b)@di0|ju*on?SSBxV#&K_CKWEC#o`Kqby!CKAL6t0c z84C5D(gSR((U8Vz#df~FpG})ghdQ;ED z1cVyqrZdeS!4Y{V*x1;3Nzd#&>UBDNYcX51%@i{iI}Qgljw9QRjU^es-Yq;GhikPb zR5y{Rees}rm%>5yf1!HL@5<-r4U3PCyhJCw+T0)iXN2zqjwyc`lGr6MnM8vK8l}`E z2C1)rg6WJS#zcDB+H|ZzCV4u^1rrRi8jD@5^{^a|JwWE>=2jIWJTGD;8**h5d+on# zGC!EieA|9}CVaB{eB$TgY(0&3yV1{-OjSeT126Vcvisx#=!uUPVejxTVWVGR z1swGX24=k`Df2>PT9cX#A>S)IZ03cebr4TvVh#X@^Q26rP?O3sVSajLAjo*8b4^0? zwvn*~+D5s-S+1N7)|Yta{taor=i$|}{S4Dkk=~KJd_Nh6Iy0hW>+&djslovTeE{8%WSUmpNp)wH#c38FX!r15+-U5 zjF10xm}cL&qq)uXdmnM`d!jGZ`v)7!+|lbNi^S!qlZEU`4;&sR4ao!EUhdPWb>)W& zijab)r&YLvqQ}_BgL?-6Wb!s&xOZ4kpJRJ>^^p0XO|OX$<| zH-6~B`{LUg7;D5OsN-Dq$G|q@?kOaQ_^-S3v$Hc+iNT!lXUr2^ev|}Hz2$eBbf($i z?+NMf4Bon}uq}}y;cS7x-%%%-6|()4=mP>I>k-}!j_ut^AtxV^LND+UMzD^m(b(*N z1SBA59KB8^SOpcHXjloc5d5!Xy=)tu9pWA_H)FTR@w`SdTy5$G^;&%K&m zAU?v(#pk1~#(9hTIbMtsSLA*E7|y>Ge~4^Ut~2`$d%@tZCXqp8>T~db+#1VhnR&{C z<2p@a{{X3={L^O!93@%VNbp~o*wJ^-DY+OJ7=#|4p8Nq$?W`70f=1~$Edz)AsbWFZ{tM2hvAM0;&kBg>m{{3~~t) z4Ip$$0SpNu3*?uNh68Gq0)>^Oi?Ni}Uw++%K6`B_PRSL{-c)5f+(1oSe$TYDwdI3N z`$PDdClE=0f8xPzdi{{6ig9QApFKfb_E!dt@Qi3?U~QQSy}Zq%3(TT{ST9q`oJZ?s_dSer{Ai-BeJed&-hBK$YvJfU$DQ;R64}$)#N~r+rV;#?=d=GLv-d^<)FiPFXwc%e8%|gpE#XMO^B3Oe1$ID_R~py zeNl6Y0~+5iRFg8$mbKD$r8@9wXYoYGi3%gA&c(Ow z0}yWZgz~+TkGF#^v0_5QrgJ{)ick!nx@?Zc7Hk!=pmW;O%?_@`k$@}1qk{v+cEo_J z+@WY1vP+AL6~uRZz;KH##N8DlLbAoM_L(q8^B_&_Jhq)5@xk^6=4Oh)Gj#xWET~76 za?6LWvyc3f&5xKe?yE9ukN+)P<->lnFT*L$it@TdyDE}WFG>YPYuXEUQE8p z?(^9P#RByW46uUp`4XE%XI_lQJz-{}Ck4;?pJ$zZ;-qa>>vlbO`wot(NL%c?qIdcY zrorlu@NQy5XaECXYpN)SAH|p^9^H2_65ccm>d&6K3-|_zodUrIxs(2OVUb!pU0)mD znqi)}XqYu7SDF?l+J!f49RKMFRjavX_-nZWN{px8n?NZh)%FQn;)%E=tA&xlgdBh^ zI2KbmnrGjA*J}hPhgc2oh4Ro#;s!I4$Z6_!lE^{e4z_55g52nVj&7+S_l<8G3(WN# ziI048Lw%1jdaKd*?cc3zn2^JfE%OhQ5v;?6(hlb%Em|mHn};dI@>lOg>e<&MYFxlo z?(u3!4~WIHv;B7eSH*d+>!5You?&U<1S5n=&o#(EUtkhTq9yo>A zbOX0p;(DNy(-)a+U9XFU#}{bpqOXMDy=MC`T}lQq#(7PyNfZB6DyQ{i6xSCTT!EOY zf6)kcJlG$L306g9fRFF20^<39cx#`4L{9R}9zUSYC}ZcW>!ndPJ8Xw90n;eU{lD@iE(_v_NerE8%WR5od~p0=31w6a3c23wbz_PBby9woP&DG9^p>4bc; zg@3$-+*$YC((sDESPsaV{#aU#`;;L@r`=RK3m&2|T8~H45;|r5P>_t%Of12MDLiRf zdnJZ)p1FwDdf-nqcXWI__sN}h=9wxcW^kn9cF1iR9J!Cj@N{r$9}EsmeVTjt#-vnC zA@a*LG03#yGKfsA5gtHZlcU1M0Y_tuu(-KdC(}gaC&v9Ipq8nu{Zq31{#l*IV*%4< zBwdz^fYrF>j&gk3PFD+$hhMO%rn6K3ke~ZQmUqi_p1q%Em4-o$UbO35Tx}Ocn4I#E zGr!E?7TokwOZY3nn2T4xxYi-PWK^d}_Q}S`RRaGZox$PB(^H@vK@j4(Sp`@A>WH+X+=zAX&Pbn1cQZBVn35mMZ_U`WA#EC)76>@NSM$Z5Nnli1_u$NsYz)_B_sytE~%sFOE=9zLc9`z5AUTy|wif772~3eW*}%9fRD zBTxJV#s|HabL(IAx)BzC34OK>sRl($ysDZa_NyzQn)J+v&4G5 z*ab_D+0l&Lcu)Y@c@J2Lwuv9JrFXDEnMngcRQH-4v~uJy#_7Q^v38V^_}8gW?!DD7 z&&_FBb#+`V9i5qd;10!K~>c_y07m5=6iQAq zf^Ab4DPCe00 zTI7a-1-38q|KDAc2EVq4xtTgRI52l{aSiC%q>_yJMD4xG^lH&KWhe)%9jN39t!4fb zW|;4xdW(R;2NNX8{hcs&y=K2ujJJlYbtiFu<2>|#@d%n`XONKnvR!_-=vvk=9kwDU zD0n+bak(9!@eZIuvx(3@N-x-8#)Wc23puXS7|#AEF{p8O{R%1#_)@a@v!mm23ww3u z=H_Ox@#F|*^~+uJTG$=>&YjFgaNXTiUpTSs`+PZ4&97Q^ozU9aiu+qCZZhIK0n5A+ z6OK&(1KHsb;(ia@B*ls^?-F2#iIh*)J>9%jKwv71Yg8#Yi;GCWRT7-ZuM>O(iKGZz zy<@<~6i^XwbD!#U1-7bp2z(cn(OYZF!1*5uN(O6#@!q!AeIk=SHSB&1hLs0Y=?{#6 zKT%2dTd0Q4pX(f`8|tUBd1o?%c)%Djfdf3DU&+|q4<;jZmm^Q%|Gu#pbuPM2$L{H2<16pqk(82MxPu_54$Xq_%b{_^sMEaLO;w!27o+1<=`f#qNR{^=!z|9pe2P z=B3gEL+q=uVBYq;LGT+7tS(HsDo>=d^1{z5fO8c|G3S}Ry}f1UI4p(Ya4m%#kt#;D zs%e+#kJgvCACx%rTqz*rar{Jlpj+6=e?xGkByhTFdlZV z&KOnHRSbo7bESw|w5Wh%_4rp(am|5ym*4dNmD!R`Eu5b@jjw!MePN;WjgF@9?spYI z4Bj7OYfOcf&>1B#&hZpy(*QO*#g;b6D?jM=NqBfr0sNFOS2S`i7kl1w)DX;IyA);p z^eSzKVjEe$`@I+qmbSw|_iG73E+R;hq8JiZam?e)WLBVD0LPoSz4iU$tku_8Cd_x9+Bc#&G;5GA^(sPZMZwZ9}2Bb^p231 zc~Z-}F2*OW5xC1#+|jn@-UElmcFkD&5o1U=&Rm(1Stz{)3T`0&U-Uja6UZ)zP&nAx zJrd4XTK*8dG<-TPk*Mn+WrFQmM8}ALaQ&C^f8UE;>DqNus^2gHEk}#(m3B;14|*_= z7Ibk&3Ut58U|BUqiMNvIr^;u3pp}NX**q8)9IM{!@uT{r%+w{C4KK>#NU^Dfjd9yD#HO>%ximnD>}nu(W_X zttj&(jZZ90+Iiye{9`E05K9e(N-9yCI{xZZ89b5P02im}W(O&q{$tlHR}m(He^oy- zlNr%my@$K&j!ybuAI`UVQ4_th@H%*lY47ADl6Z15GK&?@oz|jM@GCwvq)ZX&a{d`+ zqi);v$-f5S6Wg`sG?v)pxIcFJUZdd<(7V@RrgF^R4GpzKo?1)gnKYftrS&QSp%829 zsiiR4h$WjY2~OradWQy!|Fy_0ocPNJ>Pmh0)bPHOB@u_-HTns_z~U%7m*wF@;i%J& ztj+)Mh}QPr13svO>p*RC#B8e$Kjr5erWg=-8i6lqH~hSa+b>G~J#3)cdGCp-n#X2M zZDek;R{@uE9ZNCo6}GBv?TH@A%0dD@Uv?)=*>Hy3GmUPQC#hA!i-}AN`Ub1;!nO=l z34WxY)|2|)p2ihf+W+FLy|@+5zqqCtaf(o*`Uffy@PxWgoksr0lA*QP%YNQ&jl6Op z#6gM^fZI00A4t9OM7utf_Kem#S-KyRm-mqqXT5yUe4>lwkl%*wfqB=kd0pngBqfe$ zM`j^|!IG@a$ijmr*_wRjX@5~b%AxJ)?C)QDNgEQ0YmvX4tFMd-oG12at46hS-Pro( zxB}#50rk12QL6h-_M`Y^WS?3eJ^EsinG+~x*!N&Z4)XNdU3R>LyqO}`{^$8?3R!nn zVGl{$`o~WRbWDTJybRl;K7P{SG$datig*1FQ}2dYc2d^~UWfCiy?8 zLKWZjXuFwcRM&F)Nf&Lr@Z#k3LdR1-t6H$<_HKSKyx)a2YDO^Ax+l*BC@76=hZ;c)k z0|O}6$}9XtqND|VXrG^+j-;cUQuExIqPoEcahrn~_1IWT|NY!b)iSou->U%-2&6lmj}Re;b=~#A3FJH@ddtQjY8H9=2B~$L zWVGXNEjhSd2LIu3h;!J25FXCVb^m+B{ z=S)b!uwyad7sK{1VOj<*lJqjOEfOYh#9;AXIC3jzbHcgmtD$blD?QPk#1iFmRwVD| zZDDOj#RneZv_l7qy0~wa6qR=d7|n%$Kb9<84tmRl%dxp_H&y6~gh0;gmtP>zv!AS= zX{Pw?i@hz?o{VAR4mxcWS%>#k3wCu>47uR6G4ek)iSYm9qWz%BxWsmRWAj&RS3Vl^ zxkSBAnr2IAMb0doK`?!`OyjN{h*A74CPTN7&B0co*_;sm#blB^ImRiTE~WWRhAr&= z&2>7x&}y35KS8xHKaq23o~xce*eW@Y@e}jDZf`=1S|>HjBa%c=Ot9H^!_-9)TBLJw z#2{vvl_&ag{Bu3ut>`Y?+^BC>TD}K~G|>7zqU8F%iMmqQErxwAN$$APU(qOd znZG+Ea(_V{Z_`utm{yVbztl@&0IY%|vY1m|{d$O(@#^{isvW$N?)1aVBQJ%**RZYt zpX7Cj`-b9aszg5dhC(5ByOe)NbK_d6?!3oqJfFb9v@>-q9y424V!A6ykj@!aBZSArq}CfEo`y zZD5u9+_9;y+maNi^1c=k)_}=b|J8lvnE)MHqha;*lRe=oi3_o5I?bU6+#IEz{ratL2RO?7CXS$qd9uz?gE z{K8IivPE2rIdzV>ScM!dz_zOJ#pa7cl7JX-5X83R7j* zf`NfJv>b^O@BCS(#Il~2%`c3+i-B=9MUu@t)0IEob823~`f#Et$kW^^2->fEB|ffh zs8bFaInoR8GY>>UBcABU-@79$Bt}C#kmIt|bpJpsM+9FttwxwwPWt$lw&?`Wk{o>vXgB@=EGKx3C zushNeNvaCLRxtSN0yeu@QiYvY<39I=gA&dWSnGSxS@K3fIBV!3VfP5T*~|dLA#PY+ z%arC&p+VX0=09;ViTrN+%JWYOy2djQ4TGOh_3vCS6I|iFN#NdmfkfhQWaz` zs;{~IkKFh3B8J!W$I3+u0mj?D|M5F+%c1QDfQ;3fGNQ#;tx&!=LsBEsJttAW$?7?C zYs<{!4WZ^+Gt7lVa_0aR__v)oP8`C83efxi?pmLc?a!EdOpw`n(k0ve+3>Ioall>< zy=2H6Rp5q>nMa&i9&XEJ1wH`gJK6Rd(TKW+IR|gf$9~3N8!;aNP8v2pC25?Dr2l$-NG6Gfdn(l@e@86Wk_w8kiYx*%kj z9aWJ|<1=EZ>7vAXnG7Sui*QqOhY#39es_}bAVL7OnR4r+j)`6fl&NJ5ql1rhuccYL zLu>_4zd9fMmE)gCdzV9K3wj5qtV9d=#JTkU*n7*jsKPZ~c<7LnE-7h{?ruaHr9(PL zx+I2@4w25GL!?WP?hffex~03Bv)udLU*1pW4>GG#so&CZM z=G4VqSM&GRtH?qW6&CPD|8k^{hSZ%49z2_|U7{)iw}cHC=z``Qymyfjh&_?6n4sjO zpcb0wr&G=DaecpS}aHU7Woo>fMw0_S*(7@pP{jH>L5iS*eM@fpv zG~bJ>Nbbc*pOjP&tOzk?-IbAL%Z45)+WPno0=)P;FeQi^#Os7jdFjBMRHrH9IpU&= zlARIKuwZgyyTQP~lCZyr?G5Ka0nUs0^3hp2<7D-zD)ktjqU3FtUME$9dAlDvozrkP z1KT--d-VDEQ-8-Jw7)RY9{Wo*qgV$KO}U8M>+u2b1>zyZz_(>sie%DgGX!=w17%~~ zM>o7k#}SPaugabT5$7kjW?Wc^vaD`}N8xYK5e!{9vjZg6{YiKCUT}T$`!LK1I;}KA zrFp^Xfl9+Ir}MU}fr7ap-`Hmy0TFaij3O8`OHE5DLT`teNK9FdDBzJ$2b2B`xQk*?|%G62)#3htdU5&+>V?kqgzj0ORM-m8nl<} zNDtNg*e>kM6|>Vvx}}ddd2HXeI}~F(Zdl+ia3luqkZ*T?1|;S^WIAj%orPGKf(lEe z+X8XTu&1O5f~vttq2#0rRCfv(t)_*<#@T5PuEU#rfz`5}F+g#5Hku((N1gqX67Mor zLrN*@N(f4)xti_Cy;-iN%0i{KC@Hmum=P&9Ap9?4Kw`G34A;?c@C*~jN*4GCo|ItQ zRbu30_Wb|`^8JWRwog0Dv5iSOqP@?*$|?)gQr(&B!S+e{V7H){uM^2{&h!}zEpV{e zKNcpk_{rMLo}=!f!c1jOsqRrgu?<4FL;vE-4jg{46N2uvodeT~Ld_3B5{eomSUR8M;}XuYQ({3RRF^x1lWHbw;zo z`-WUOudiDw#NRFfGIBG#CL=KLh1J?|0E5mWiSiIux&P;gbCDuA^`>z^rX`-lQV6b+Df~qkd$O9qCUn_g z%DrN1-az?Tu&%6ZAJPA7uBaPT#{wKD>JB}{C2Li>g?8CD7L3`=g7g84_BwK2IAr%3 zWft^BjrFvWQS`-Na17#zA%dZ7a*D0@-a;FO0ndwg@I=Z?C zwkc^CK4K^KzqUn-Owa*%o9EQT?XGFYD5Z5$AS0_6&lY0W<@Jsb^qz>_$agImSWq6B5vtB@Fh(Hh~Wu9>r(IYJP_d&0|6#E{TISvWWxr$uZgG`D=3pn zT_Y08K_B^wL&`q1q=z$?LugMjwJ=Dy@FFFh58AFPQ1{jAx5Q*`)+)+2gn`pE( zBv9?!%Q?9nQ?VWwd)Aj{-$o&R`i@w%UZ)R?G2eqjku}g98z_gqF0!$alargQrArc- zau6@MaU?Epb?4r<=D#>QGxD_A5Qg14-vAu8Tfm<%4O!XZU z+i7FrXs?bjeh>D1WbsOc;NO5&YZ~sasJ#tyOLT=9to?=b$2;KU6)?u}T^5aCc zImjG+2D?n#4n?*8HPR%tQ}$-~{MCW|y{ZI5kS}lF;0tTeI3uXF|Eg-|ack>MhV`B{*Xsq3 zdE;ymfw(ITu73X3i-y_R*$fQJS+NTv__lXq)wU>*Au$$A2lJc>y1}aNkXsYi#sEcH zOCoH4Vf4LV8COv$d2|N`j5zIkD@vRYKW2G`&Sm=*vVmjEUziDIWbvDMjnQ#|NrBR4 zRz5d!CJev}KnH~PNccqvC4)D>yojKp2J3)yt2vhwL8bgGYl89Rsm~VfbVU zviYA7@%eqX;X==%loxjP1(gvCffJ3ZT5YLE)+T(IU-M)d>iF`1L!kcGiwg z`=cbYJ$iJ=Gld!1ovFY=*^Ohw$z_GWkv=ys3ypAHHyciGg@WyWv8Y%T$Qx5S`EHvp zkpX&Nuqb2a12C45zkUINLD4Rv^MW=L1MIlJP&N!R4^XK(QudhS-y5o{Pf&3^LjlCt zRe(|1d><=HtGQt*~Gaq_5lmGrf6ww$=fcKRf%+ewe-K$j5Yq82QV&s zosGb%{t0*AbN8ty*81i({UY7R-5Mc?mDY zu;tkI7ySV2dNX7q+%uLeXRqb%v5w8$83<6ef5RWuNHkp|y{P|PDnoQFVN+bTf8wa0 zCbgjIK!K>*-*H4SKc8P%uK3zM)3adSMVAuY``STNXU!LP^;a5zN$l&g^>s(ihDve} z8zFJydX`ZLG9fndWI;2ui&PnP?+-#!yzBwrn8#>)j>sy!#T-zR1q!&lzw3_%S5;Nb z@4rsvgZKNxv8)IJx@1*4R~+q9F9M)T+D+Mr9z}E51QX3`{dx{ zM14Joi`R7`%^U-A5&%v%M250zFM_d5@w3FrlR&6KW{N>6AGv6UZFumR;;} zt5{FRqE6*zF=FZT*J4O~_r+*TTV|!H zApeA4B}@uGylUa@JE3zfQq~U(vvbZN#J#6oFk3hp7)evTK!Rav^ib?Hs#d&i~4O_jK2c~1%>#yowll?V|eeD9qjf6 zS{KyI!y|i`MFIbwtXC<#>4_OG-Kl(FJ9g$&V80mzm{wq6Hj~P7tS+5F6@PluZ2|+8vZEq|y>##H4 zC5sjwYM2#Xue#J<`Cm3|>iGwIAc6Nr+?YmqCKXmQ%^{Y?+5;VRegg8_bC`|7#Hr$B zX+h|vD#K~zJTlC=mZR#ub+}x{)}v3Rz$;k!C!k(DLzMFOZ?mSc52;;$Iec>K6VR!i z%I`v)?Z!RuoRd#HSmwQndNSOM-otI@tpqA?!@F_Zd?u4!xVrv=9$n2c;2`PPOTDfV z2s_m>djMqoq77Z~Rk#@5C1+f45ydC!?P~zUOut+Ng4`q{Jw?p6hm$j+nfDG`fl!{D z3BYV|L~Y%nkG`t3Z@Dy}??rBW^v=A+1to)b(He43InbvfR+{~7)C2V&wre&CAG#va z!RixvEd~0$vv^uk)a`HNCY6Lb_tZ3;-69SIoPmI)Ld<&rfl=zuL82p1L5qw=aRA9E zUlj6DD{1lkDU`M1&?&q|4C+*QY85dtn}jpRR6Q{$YX4XysDN}&vmNWGo;=iHDFs?C zYH9h5aI^TPokh1a@K3%IH-iqnqy5edZV0)ssX((;zD^y|sgW<`I zhI^rMeL-vLlW8Kxq5a{5xWb(2`%=0H`D3vDp>@8Djc;jIEvB z)Fp#!j!TQdMd+ZM^mHWjlB4*Grt^6a_?!mGe5h93x*J&0%k6L@p*XEP_nDp^9(Ujw zQZclIKR*E#>IGHFTS3!C$HgwZ!OevL&OV`GYtRP^SElaYE&!1{?_5c4l^!x!GrX_Y zByY`-)xwxcdMF&?D}s~|&sb!8I*#*ds3zq_UoJXrD?yW9<{!vtp*O(sGM1KZaA`v0rAG$GG zQY?x3^Jkg|fsR7jU`@wIqkFW508mlBcu42MGtTkms88*A5uvv|VDyPRA<_V`nt zN_kxD$n*ke_=QA#uEVp;Gs$tXF=ELrSP!-a(Gq)vCTV8X4WKb@$r3vyHO{74ra_Fy~rb)&p9?)b898w;yce^#knyObYWmz}n9JL`T!`nvq60>B{(409T8GXiy`!qaf|j zfxeNV#>zK}D}U62a(a}1b*y$Y#G11Imqaq~TFMe~Vb~R_uz#7AdG}lt_i+3p266E# z!uljv2DMdV|;IyiXAapin z57*5Y0#R_W@(?sDgd^7ma8Dy=?VAE}4N@%lKB;AOr0(a>p92&i+Izg6U!Gv?W#@n0 zl_mG0Man74)R=pBc&%-|SO{C(>)tggz<#q2)d*#{?DipX-;rvN?nc?LKD10*nUE5&V6l&=B{~$VTA({2gQV zgu;`%dfiXoY(_5iU9DAk`JXH*Kl%sit4sOdBL@oI`m`(TYS$%Vsv(pkM45|G1dl*Z zh@(b}G6bn4&;r%`duPhDQ{9Zgw6o{?SQi$JkSOp#^$%3zM5I)wFw%A`0zWp%DGaHsynOoN;eFXWe&!7QM{&x(yG3$K+kE%Y{|FfXb#OFR_D{ z88X^yC!-C|y`rlm)Oat{bb6ZY_o|A;W7|xzT*`}XUHyhiZsmr^}{1hj-cHEn&es8f@lYYNSKzEoCLI-TWIoXtvqgu=9Bv4^?HP8Pi{ zO>=EY9;N4~OD=h}-kw6E(#m7jNXg3F=Z8r0zyul_jZ{RyD}%X^2=s00&!5M0z$!@Z zHbffJFXu}d%YlyQ6Wp$$zEsxwo5k3TCfUii=E&tf5#EAxPzGzruu$I;LedeEH9pm2 zJMMr#U+q;QaNA1F%H9zbYQ~5i~n=ylzyt8E(Q?xsEkGa$z#ea`t zY~F~-!&EBX`w5PyyJlg0e^&G%42BC`ng6W>jJwMiiT>kZP<3dzgv!`^OlqV z6asn<(+9fO9n10fpKPM_ z!NDa@`r#KUh%mW0(Fl=bA14Fn__LkHT+V;)}kIEt;&yrwx5cmC9yhUa3 zvs{GH2pOMhGGVc)JH@R4V2ZO6**;1_Vo^M;gceIgK7}n{Gb6aBtgs=t_q({;r!VOH z8}fvVJ9=|a*`0sEs>fHnCwmY1v$L~99Kg&!s(1+=!=%3$4DH_-+YR}j^IF>;*$#>R zPpO?sxG!J{#w`cz-l3nKo$&`z$-xP_R6TRNLu> zs`7;x)WE`{Y0o%{`6G9#^P`_9fajJQ2%}kF8>8hZy9ZK$+H2(0Wm4Gcqu;w-7cUrm zJ{<9H(0#+^9Wa)gk5>~Z6!}n|_ZH)R_AS8cc{SG8msY$2Rr>HHUw_ASi(NLSAn1Iy zt8bFY9_Vb~JuqyVoMK~%_f~V&< zUjVNF+15>aKM(pHS*671f-ej1MMfyfuTGYdUr`F?9AKRWnJvX;8PD9rAz$*%jkqD_K*YTd2otIp_r477*to_nos!8Hf(%RFJ zg-3mO`d6eVsWb#7P@ z-~>xiXfHQKh=}FK&gq~-+4>Ic@l34)MHen`9x)Tgp6+gmxdzIvBBKxs8Nv09^ONt- zey4BISoV+AGXI>eU{Ui<$?w9Z29v0iFKr?1xvRZ<;u8>3f8DUv^vG614#7Xpvd#T5 z+((53FY6rgRD$fbByY(X zqB3~iGZIov>R5}t&%8ihwW5yFPUlhDS4nN$1ZeGI&Tf6mBIsQ1*$Q-QP}zaBK5PtqWR_^ zIMV->Gv({wr)QslmiRNbq569&>)PYmDR+stRDI=~43=RtX*MV)e_db)*obmA+;S_| zEHmp(q|CN{8J@pt%FEe^BTEVjWcv+eN;nDyN;x${VhbaPK8 z4z!;|4ip4t!v63g>r?F-D?X858DpKJb(bEfuy}6WT8Il_=Od_9w5N-6ZUor4t?VQT zy0kIR?2d4ut1o(O95kB?(RsxP^(OKpXS~G*zZjlrq^A=3OCH5_4{>`5dW0YyO}x;2 zAV*(+55Q$a8x;6lc=`{V{=LX4)^*3lIaAZq7ix`QJyX*YFTL^e4@Ny(NoBbO%{%4e zau@~L>GR!R8zXlQRWz9gNmnutEP1-HN%H{N5_#w75c{i9^Gbou^xQC!nhImj&*KP+ zqHQ1SV|Ge^^c;9-1#5to}=U zuV`qv(wd7kAha0Qe_jKw&zQ4qv9^mYAlgFuesYHN_x+T}Ym*^sy2z9A^l2LaYHJKx z?+A630dlEulDTP|d-7+%A`Lr>ZUlILoytth&T7nUXUf_Sp9!)nvfk8#R z!%K~CO2%Sh3f*dXoe;jz?mmyW7;0wme~!qHJope3eRE3Hj=yR>x9xRJMWqe8jIVKo zpyaKi{ep5D-8v*$v$3IFvM+XKO%Ayn7_D*6Zxu}&;%UhD=Zi@GfP%*)q2>xNpCK=$C) zOX+n^tZ@bQTk&}xnnUCB*3Zj zjtVA#tvuOCPsVgc-SGwD;bl8FHUlF#S)QG}vR+vt>uFsPpM3t)2~QeK8&)Sp)wkxQ zk=$B_EWSa4yf5zNz9&m-TM-k*v}w{7t<3ITu)?7p=qr^}SiDWF%X9d9peKQD^bRf} z8%G|?$?T*+_Afv1F=oGbG73>LZrl=|-j(7&B%wH%94K}$GD{nkQ!uQ0&Og+lmD6<@ zqaM(m4))?oJk`wT))R7iwXK*$&%DG_S~=jM;zuCOOPB73p{;{0vfH0kTuQGfc5-+0 z&w&!i`$24RwBu(9zMzz@;D^%LDHUwX90bzXN#)7I*~Vq=a19;8fs`35k?87Vxu@tR@!lUtkQNd18B z!#X=7yncsYzekgie)9QnZIK>f4f@AW;dD8vW?VNW;yL=X;j3Ha`1_xg6Q$HM>+Ebw zLdEG#Hg9%K2Y2h@Eu;UsaqQaCSk(b7B}122)Egc{wt1(ip?VDu%IuCacJ#Q&@ht!esqp%ce$Ogx0UvZX5y5mmRJ z^E4=|mAEX(pi_$fg7pWb)EH9G(s z4m@rQ8G;mS6m%KME@=W_nDe6K_nJr`6FslnTwqjHuHn2Ti$5t>qinP$2a+YsoPLZc$)c+8F%D?kkTK;wx{o)$2y9A zbk=+XV|dc3eA))(Dfml_tZpsTl>rhtzT}Rx+q2DCl_arGRXcCakY902k;c%h&8$-2 z0Mf6lVp%|U@QmcTN{UyQ`FFKjNYHSLpX#n}nN{+*!e6|{hbVk7lu2^q2 zyf9K{Goe;Lf{l)@1PXbgxd>fHhM#XI`JB!E2vjR&C&gcDR-`&oN6TT;1mW3#f6;&f z*UyK1VBzk+cam7=)kc}0Wa1p=&jYpiubKx)F|+8PW0G0}G3#89!X_jk3-uI|Qx`Q2 zUAO#_ZRvN`TzZG&=YplG2^B}#J3>QWPswX`I1cA&J;EpmPDSQ30Co5F#B=3Q<5J~o z?R z>vBfb9R*-9`*+ej7VHR7_4GB!ym&!#|C|d_{q@pDP07>_#G|LFM&YND7*nKDNeihe zg(f>fM=!CdQ_wLC3OPt8xFG^6j1zFhxG}}(ulQnaT`O?dqNr~*kn*z#>{kq##WvM3 z^2o}eH!Rz}xCn>zoR=J^Nu+t;ivgOhO!$z}Ytta>BV6M$bA3bS%}A#1g$cTWB8rMHls56F-%agJq?$*K)%M&wIE>?h{g11Mv9j5|0^wlnRy0JkRQMTORQ; zrZnXs>6e3V>-F^PM7@`ZC;Rbkz2mDZYM{W3*bV02Z%nu^m^p$$8Z@_&PC=y9%1mD0 z=Wd%7>h=Zc%^s?5H7(@QVT4Qbz_-?hpI<{Z61_-Gf%O^@xWfW+EX;ScR_A{IuFcKM zqs^pGjx%9wdAXcrqkOluKW(#U{pg#w?04=Co?7#tb9P!SV=hJc-OSuhK8Y6Tu4Mh; z72qR6xV`B>;SdXl=#n!T8)3PlUYQCI*!}1<%0`&xqv`8#k3Zt(MYq)!IXa905HBP= zV=us^Ef$S4#v-c_CwJOfPzk5|QCL5ujPxs>~MnMJYriX`-T_c0~qbJtWXP(rt&eGWP^6o z>Q3u*JIDUi^74~g<;^0nsgt^L5EQ$%aSo&oa2Wlp-V*Q?8*l@1|A*MHtfj`e{FeNp z;{2&|58p}ppdnx5r9k?dj0ar@JM~BbeLsk+A%rwW7B^YYc7k; zX?^#lpiqae*Pns7b=t~uA&^r{;_$QmO9RX%WCU7#Ts4#*%)OIbPKutTfH#yH`C#Bb z5Sy}~7A_ztXo|224|5#t;JVioPJ?IyQ4u^0%!G>E-B_KZ|LDuP?Qp+P>VRLj#g>OS zQ-i|S&i}fqcz`_SxcuK<8*lf93@s>-!ia*dcjG1@NQn1%)}Veo>l=nTk@4*Yf1DT_ zE}GUvbIY)OKo=pKLIeCo9~}`tznn^_l_$j*#QopzA@;M^KOF4sq0{0ZAtEBOqW`Bp z3Hkqh{(o1%vh$}m6;S+yl_u)-=?chN6l@0YM0B>SH}nhxMONFo1ps0^I`tE4i{bf;I5!Edxaa|E;-Fc`k~LjfL(k z#MeF6-CEbAoRjZLbn(9`dS*L_uYGg|VwBB&Herr_b{_sW-(>h>EWR%ojqA?;n%o8?8l&8-8eOG``f1yx4mt2#Jh!~UKwL0*du zDkrr#@aGsH>WSob$JET@#j!SnENYOiNF~)!+58M8|uxz2P@Pzw5^N_Q=1;ItDjr%wCT06?eocFW%Y% z^G%P^>O9b_=Iu8hfg1Y2;V}0D5M$~bm|ntrJ(O8Ma<|m;_s3g9iJY%kr2*S78TS@q zCy-8U-CgR{+n7QMB*kV<ge;1C48m5UeDL;Ru&W`5x0Auz! z&B}FgsExmaJ>1y8FFK9Z6ANF=g6q5kPww)Uq#FioNXt4gbSAD1TsG%1~UZNf4tL5p|%J#QM$8L zR2+z))bOd~@M$miUK#Ml9rF*9NqhcZbCn;T(D?JCGf>&3embgHEvAJ6Y3Rlb04L#| zWl6eNNcBkxlb|(V*Put8b#9 zAMy2E^)H){8oX-HhlnQ5{NWZr^(n_{5#fR?<9|;Euc2r=k~H|zAauMYDaucQX<`JX zoL^GBwJVz}{Di3l41oQ>ru3KZ=g&A!_V%y@H$F7HOwE9vSJTMlQ=_QBb9ExlT}LMH-$(H4#mrRb;yBek0BXTSd{BMQYSK2#waxElVXK*ZGo#N7{fE#t)? zl|c`IKsK|ejBqv}Lm0=-*7kN1*h)GkxI2PNjbsy;iC%yor-OalLVS;6hU) zc|@yZVT)Z+2hi5c9R}H=t;rZ34$^`*x!-Cy*lznvCObT1t5UFc0`vSi%@XXh>P)J5 zh)sK+3|Vk%+hqY^CSuwhwjMOsWG z25QWbLk4I;O#EOcLKZZ{|I(Ze~`CD&<7BJ5Fz z^1*5$*6g__Dc!p?PVbfBh1nyYo)ZK0FLo!qQg|4=QyOAa$6MYUEolkNa1k5(JYCJF zemE_ws*((PCb)2jn1^mqWiLPBT@58s`NT;Am5_Fx*LK4ugkyf^eH<}I83ZWESpNXA)P&>vPhJ*dmc?iHO<>(iDyIE!OBxX1_Y!r!Tu%&oZWz^AwfL2lY*r1g z#!0&*>Rpv_zII}`8+<~WQfXG@KopO=F{IPQ&EDQ##N9r|iIoj_`L4*_iBGumm)9&t zCV+Bwd+PgA^~Jzfe`lRa=Ad*WuODy@hntSqsQCNH-#VYR#k(>xq&^E8-7*yEjb*%D zMh!ao6|s?PTINjrnuvJ%jr|(av=<3&7WHbAj}o`Ry-gP|)UJlH{(g;%@zFcmMd`)B zn|A-j4#Ar=VUNEviJRpN;mYjC_*0JiKS?JVp@2_wCLIiBQap{!3;p1!Ne&IO>327paYEH5u_pcu7hM4b9fd;F)p z!Q++nlX9iqoM8zYM3Dnuc}{Cp?JP?nPLd(u5m!I{3yEq_176)zndx@=$GqafOtLv7VGCQKWc&mHkv$N!kK_=i7)t0pX5ft?M6^oZCXFt>io?DDdB^z1MF zj?ngp16Kz}?T@`T6Xu`_{-0f6gPqc+u#^Dgb5*KHhLNOnkTod)Iz(Dvr#95}^D}XB z9c<&_%z#wQ(8{Pxg}0+y?~`R=V4ySrAAbSmpMOFfLnCE|Ft4;*{$aQed#{{(M)Rr~SvNeIOHismxmB#8)15Hj6{ z2>?v500&xl{51F9fRuxuyI`(;9t0qk_Uf*oYYxrqwe0#3S0Ti_Sx;fB@cR0CRs8X^ z=Zgw&DpJQzn@X{DXemC%eY5rrx1oCqL@xcnHAjfiWT~s+j0m&k0MKGW>c+>%3!0Au zYAS>SE$D5Yr(&AUArxty3#S=BuR_4u%p6>r3hP=vQ^PyBs@WnRRnumnHsr=A?LCku4+5M41)w6MfqarA#P@XtQ?N#Qrv?3@*2hAK%sLr09)MB*o_1iuVD zk&fKk77`4bUA`CkpJKwE^|?0cpijL0vKX){*|WZS=dg^k9VKGz^wj=NkBnR^No(!|O;69o zJylG^I87Pp^OB^rboPdIA%ME{cIppNZ*C)8gN2c|eeLrLjVd8koY)eB&ewcmi>g~q zC*&``g~Y9k=X+tHlZMiO-s3a|2egs|)6|`^#`FdKaHyr(tfuOHZ+%1W=*!gLSpf^( zEkfA%bJhGz!OW{?B3mIGinN7_PF14iAX|khyW#s%PBk%kK={qBole}Wu<#WAe05p} z%ZEejh_-Y;e({LnkEYu>B8>5*6|56(OcRN$cLrr#R0wA{q?5K$EreX3!v&_ByQTGF zQ^z;xUy7MBSs}Uv;3e(cPrS%OYeK5G zpDKYoYQX-cw(H%4NS@4?TsH44E&Z0Dp|$hDfnr(B@H>r?j!c^6snq?x#AM2mUK}El zA3p6Gd}HM99KfV@sDHgO?L(PF3)~ol6i6J0JgGwpIuxW+Eq_6OY!R)5e3EuWHb&|-N7BhV! z%{ner7Vu2Uk+eRiA_2p^Nfnu$0nYh4jY*td7!E697^Kv^Kj$tyH4QRzSA$(>q(jm-;Tx$i~cT=b=`H8h-AAy0CS{z=-DmuYNtl({^6*u z>$uGE4fwB@YusYJn;qvEMNE0lH8mS;j8_1qJe&@N5M2AtDuZTvN2u}53Ak~(ZMpy4 z%ICf|X6RWT9he{ZIJtSjjH4x`T-=6rykZRUPEJmhb)c0c_O9PL4@nl8bvzkO znbb4W(G7jU!ZcYc*~-=N_M~pA2O>%w2S8}~&5h{QXp1k`(Kl`xO@YoNQDBg4Z@64D zk=(jl>B_G=MP2_|yfEN4q?+4#G35OV8QBsj#b!mL{!-nBEpuxY5q%wtR`<$oYZxKD z|3~i|Y|5CipZgzkULHaOlZ%yQz}{3RR)bTm2xd^!M5}g0l$YS<_@X!aGZJ7h^Hj$N zU0q0^!37;!3OZ*UM{?kMwNlmLJ{*q@V94*&PmsxrZPjF^Oe5e`k$jtJyICP6^1aKK zv}-uMDzj`1)6jY6{rEh|ZYW?!g-`5XrW)#drLbpL&jEE%Wd*Bllug|5CfJn`vcQuK zU&jOXNCHpppVFP|L$m~>!uFTVa+SkGBJm0azbk-UH~F3IAMRDj3lx85k_+g5eJpS5 zcyRI`tf+&X*PsZ%y6rzq$XaA0db(_R4aZb%f|7mRc#(ADGPbJuDI7mFPa-~FYllG@ z`ALM5!r`a2qmCKij1za9j#mTG%b8&1*XqggpY zv<>f8m6Fo=cN^nPE6C8KNUde-NJi52h{5<#7{4?xqO2U1{=6_4k8r@S3Z_FHDKoX9 zR))P1Tl)3$SQSgzDQ}LDRWqamf5|m=QxfnsQxQsreJxDkFcp*c`Fe3xwAB475x#AI4AM`uAYQ={DscV5L60akx#?JFBxOl@ zWbvo{ZUK@I@U7?g>s{pbc?Plg9aDwKOvUCTm*Z=oBLd24%{u%{z_Js!koj~ip3D{b zw(s&_A?2d7fJ$QE39_`Z^89)!LwKUS<}JXE2g|Ok`PnS-JY_~AFiDJwOO6QJQDsek z%~E8M4v1f4R zFE!~=darB(ELEuYMT1xk^xx0CF$y_P`iH#V_VbO~#zo%IZM~q?NAneR zMQw|xlP*!>A?01SXFIT}ur9#2 zfE|3~t#g=(+SV(^rqLH!o8AfPgpK8R-Y*{@|KCHo_P)fd%aV^B53Mum%b^tmepSAvuP=br|Rf3oVVA_L&>F1SB@t8q=~XKys*3Vcp>aO{-w zKs^g{ zRZc6Vx%DutyX{tJ-8-HS*CFP4Tu{`SWxxdDAngI>?H4demvMK*CxDxpqu`~37#$2rIt%p-zr4N z^~W4aKBt3^I58_2kt4S&npjIA2C45nv*g&!0m1X{e+n(NiONGWWPk3+A0|FKcqUFw z1X^I9`7%z-|Dfl*%KLFZsgLLA$0Vt{o{K@`z0TmiFd>zPL z8&*X~uB(5H71HuATcetS-LpMsi?5He+}Ii#TgG3By+Girt3tBCf{oOI5km&Blz=ViMHJ?8xF)$ul8`CL{_C>8M*C* zQGBxPMMq2B+GE80AVOh-JRgxg@UTlj)fY5|S6tK!@lG+uyA{~fSD|Sl=u3yD&g5QE zeG@#?<#b*4XU-r`Tj;;Nvp~TdfuY?v#73ilD^cHTH@V7K@3Z|G!CKH%>XV_Vn7ms& zZEbSnAY-6EEadfx?uTZLiJb@jAEwTNEvm3x+mw`)l%z;ViF9{&cZ1Z>ozl`FT|;+B zNrQBE_ke)X(%mzA`R@1I$M+YQ#aj1sKi74h%bXt@R$jWEPC4|IxMOdi;5Qdu%t+lk z2Bdp8`%HGo=^VVn=i`qgB}F$8#z2k1htEua*5y~c`o=`YHA+n_T8cIl&B-61fX(%Fd*;}npbj;x zK2p{`I1Z-dGtF{hi^ZQOgO>qJDn%P@09lOm=H_N-#<;h+lOA`%Vq~Gb`pgR{huv~) z;G|_!xN_(R(A`HK&=}T7$uRWC3K+P0j(ViYrDJPTsNrn}5C@m{t|ISzkL%DnYNN&) zU)*W?TVZ&u!}yz7yW3_cd)Ubn>;F|uxkDE^L}i9`8!2j@FmFlKXPonfJl@(yV=CRD z?%E(#{BunGZiyBXm?!wCZ9nNlXkLDFoE=TfX>d_N=4Rv9i9bWLJMPzl;=@c_AqU)E z=K&-THQm?`=0*Nb63ZV#g!eI$LLAw%{eNbfMG6#|?cjavj_^&Rc9N1mIF@NI^&h5k zW8$}GLchBm9XH2Ii=1^FpJeJeN^$O%$n^*6g(Z2x&{T z{BT-dTYKV$EP#ja)HLBR&|3Ek8p9~{&52&WG^FISWa5lF{|FQ8hJc=8CVt4xUZN8w zz|X1qFWqjh?K*5u@o2m39)soS@tnbab4)!`SaJ~@;p4lyMa{pELL34UR^M#`^MO@! z^_~g)LMaK<>0)wnjSY^hg=d&9tBerw)tf^pD&y_VHHNkBw>Sw{z>y4Y;8l>pdrcXM zjD;`jqd!Xp*;Cfk2S`wJDK9W&tad`gOuO~{foQC)eNrVH4yEu2Q3&5#Jo2U_vfMej zk8ch8o-$=E;jCYmSz!7T_1@kWpAnj{5SDR>@|IM0{)melW&54CAE5ICCXL)QU0lg4OqGuv|GL;`9CHWVsAj8AVP&P=KbchVwU2DS zX$4pSf%cqhGw;SP&r1;v?qZix3=2WDcSH(KHhgLac=9Mpo&00C<34N^dRk5Cg}QE0 zK{{X*6#xFNriQ$6%`7Dd1r}RbhG^BXe0O_@Agog5oG%nH4Xs1%J|b=wvdIL38sPPk zKE^5EyMZV?gB(3)M1Psg0Qfc7Z;!)|9Kfic89RW}T^r!RXUU=bRlY*g-x|k%e`9!- zd2q)Xt=t)KN{#gv;4pK98xPle*6zVaW(0n|AOBU32M)}Ub1KVV+44X>+Nbn{2w6?U zfw2H+JPU^?i6_fj6vpIp{ITa4F^zT?x)zI}Bi9YN6Lp3{{{zzewMs&*@jin*Kw<&f;3gFsj(6r{!$b(cuXWMN78D~~K zQ_;CLQLCYqf<0c?fR>>h|HLA~)SW;^P=!S)JABb=^tfll?tB%l*<~{{w2HttYkKc! z>{O^jp=j1mzayc^c;3y}yl$i>lf=NXH^Yjbw&%Fm8p@x3GsrYvwU5t$wIFKeT^d^n%@G$_dL z-wi`>NTwQ(y6xSo0h#2i0MQjiW_NOo{bkCp0vZ+=9&n#*qtk;;BFsVW$D&#;st~PO zwX5|@2pPZ$Q#-uG5OrQ8J4CyYR>=q@=I+}L;F8n9=j^Qie#99cQ={|BsOGZ$$Kxk? zh6We@5u=En@@A8H%oA&sn(yBslVYg>YPE29#iA4AVKNskxE1FEyZ8mPN!^%ET>4#&m=~V0!6LW zKL=$u+61wqSBu3&^ITpL)RF%XC#M5hEOoWEiN%n46wPuli# zA4mBrXIgKT3@FaffbTMC1Iw6d9`=xg3W0Xbw_4EGz0zUlyo_XDQPF?dTv3ttjEIp; zp_d>W;%&3Q*MBSs2T2)9>g@!-sml($iMovOk0GvmH~q`WoGjj?c2$wx!j!}E^&|@W z5Wf&K?$7b4I^?JaxYl4%%o8@+Z%CqMM$Mk`at%7l3ulJM!1KkPKEnv&ZkTrW^2!p@ z5UWczvp+c@I-djj?}4uo_kWRH(T~4yFxhidL#H2?hA<|Gz9Uvgh00UyXrccZjS-d} z9lj7Uv6mAeGu2o7{KE0c+l%@n*4l0Bo`VqSpf+mnI*jda_UwekGXVzvIVVW*)o`ha z0J817L9W~to3b20UfTS029PSxe*DsXd2Fb%^oyM|Q_G61Pgv()G}LJ*jtxL_@k`z( zQt%N&2nU?Qs3S-Y6XswX2CQg)jZ~T_0>vXYoQ}#rl@D7~k@bmc_0p(+9@$U~)pT_B z;gYO5Ot1_G;kFz6Gw0x`*$~Bzn6viafg-%$kLG4i!aE*H_1P`{#}Lk$a4UsH7KiT=BlZ=aOd_5*95CI+x&g(NxfcQZ~%p=C)6SkPt@w}ZXj4L=PM zeGOWN6Pl^G?CWZ(@4?AqGYLV`REH_P-tZX6gh_4@W9RZX8TYQP0wG6?8{1GSMB&)| z_R7v>O^#oRjkGf8#a0AR2Jt@+DgJAZ$1vD%Gm8s3sHVB33!Q)Z6brP1>8ZwquR6!j z_6{K7^7C|&;i%#RX|3KM=Uw~p={m@QT}!TtW~@D{je;;MW2ofqtK4D5N&w05q8z}K zJ~qnpp|IJ)bf)f+1(m_gY9d2T*6{diK{5om=EmOBn|N=4?~N@%xuL)o^=+aHVapwv z&%w-SX-G?>3=t?mCM;FOUM+@qhC8bt!2!Qj0PjA<_|0U-lh~NG)sO72@e}^sdq!M? znbQJ?)-~a5@3E`&8l+*xeg*OBR2Byodnn+~0Bi~<@RI-!)5pE(yl(2$E|aNuBuz|v z2l{aMX=7H8Ltf<(Q7pXf4YP}_;ldhoRV?ZO<3B0wFb~1#Q;~j2!al%$Jf65PzRZte z?+L!yMt&!t_KIXJXR^LHZ zd-%_BG@K7y^uy}%OQ6=hPR)l2`eXFEmkWSwe9EUsjpp)_AqOAwvkfiNoOB$~Ja>2^ z#=Gklm~y*$9G6&koSgyGg!XH#f8wb@UKm9|;Dl-0Qh@ja$=T8d#enxdPBY>qmb z6N1NtJvNk$z(s2RBiR2yB3mSD-xp6F|bxgwY6}P`* z+aU>E7UMJLq^cpvg3q5CA4=U`+yim3$s?V#CV?JB+p_(y!e+l{*BV!Q>NiyQ{V)UK z7Iiq^8$+6*FaRL}H4{`H@zV8r)RXoyN}H6)f0*V5GCLDQ^{IB`t?q~FlNy22ybIfBJk(kXuh*wwMKJ|P@6 zbFv|UX%uu8aK1=*Y_=HY96FqNN#Gu$bwxwroGRC|)uVQZ|CqACNn~_&(UTH z`9jCjw1UFK3=n@m7d#A}U3{E`Ym4I)T)i7Lx6Hl@E0uaftDM0~`PNcGe;`$vqU3(v z>Qp(sMJy~%j2vsrpBBIu+Zz}eRm+ui+0j~N%lhLkYdA0MIJwEM_T2G$-X5<;IlRG9 z{QHY}!n5E$Sjv5%2aJkL z7nbMOm>zB>7~{#x5~>J`X$*^nd3np=wMm_H2`_J?^Ao}{ExYAtt(9rEnXW&wV%??V zFfp6Ak2V)dim0gJuZItYGGb=CMDyufRVDi@i>Osrcf!up>=ib>=5bic+cgS=pS0gHX;FF32nZx> zG8d;1%mXig2)~<`_4R$V=VKPgJvC)4vRMX&&V|vihHSQK7^1rG@u;X-?|}- z=WH7`tLC8d)jFT4%o0-MV>SnMb@$XexbPme{8Ke_SaQD-vE$9SQS8KDZQaT_4v3vQ$>A}!o9yfV5-`L086>*>@<~@X&4u<3k?L& zFD{-;U@KboGX-9l;NMzjfB!g6HpQ^Fp97|We@AY=vKLR7&($754vQHutIrL*^0#AP zqja9|P9rU-H6O6~ksD7Hfl|YO-v!7>iMk;cw5b$2^gMTAj1o(f6#bH=~y)?$x z{nH=`;aBBKY5{LUm4|ETgvvAz4i3tH|CBbPM=_3&&DyP-!AOU6F%#X5bE~oH z+byx9al`QNmjCwcc)%fo(s8(-W)q!SxB@7)H*|KsgkZoaI|RP@x|dQJ5?ado*6nz| zLgDWL5+&Dn@rjFsC%%~!`^UT^XwKa%xGAA3_RYfc5mEX4ihJ(tj|!~tH$RC}VpG`u z)OlZ+fm7+58$YWp-tr67V}$SNR5?x5Co(~NRHz4e!_Mwlx!YY}Ci%z1JiZ@?p=svs zkEFmItN{kPQ99k<)@J>drzh>@SrkgGgQ1|g-vkgtfd}lNZr{Q*PhK4GZ3X#lw*oh{ znyC`E5~o0=CzRiTF=K220!mIK>tZ*Fje_!dof;}>o9VlEJ&-Z3X=;=S+;^98adQig z_;yuRS3AT2Yy~&u|FuHPZH$MHQ%`N{XOx~r zj`39HFCIXmQ1*VQgj*+pPj120WPWDm+#X;X_A@wr5BNlIvYlTxqZNN%=6pwVQqtYy zo`#v)LOSl~MZ06fG=3bIQ)s14JF5qe(i?#M%{&?xt~GbM=q!rkQ#k%J?}z*jRnaA| z0lqzpi8zf+@|VN_fI?|u^*NA})K27p=h1>U#s?d={fX%)^wH1Hiz@okgy`c-Lsu8H zQ*-Jb{3JF% z5A`vMcl@k$EFxHQEuH%(CXy!Uyes(aV9$*b4u|bOk61FvxY2~% zxe=BIssgv#B5^QN2XHipR}s2PwPPVTN)fp2)nR|xw&_mczO(ltyr78__{#kv3uGM6 zR!Zyp1PNY7D-K$ufI%S@Dks1&AtL5`fb{eMa^%L^R=29YF>Bu@Vgl6Dn1<1hjy!?x z75-LZ6Z9@~viR8G_-q+U_dc0em63Nmlk8_}@E;6I5%1fi40tquLT}GxI$Cq~wPjV! z$0{{yCyIO_ccfdNY;ynker%EBiG%>twy6YA?ATD#o_M^Bg=$n#T^KMWyj$22$RBfd zItnis0;&zZ_QlchV%g>xw(J1T3CTC&-j)i(iBTPlTHFt!M^t>%aR!LVG{^i< zEr)Y`PupVmyT&bTLCl%u*ru%C!Y+$C`HB1jM&a%dwYlCrVXhTcrT?Q=WW4hB10H>n zfnR^*d>*$0LoDExH5xP-PUb%g)i{}zvB{--^N=GqK-B2o=Lu(i#Hh61Npdx8r=MBQ zR*TNh|03q$(S%S2ZqD0j%<(Osb?8KuJ`#> z|6asm)gg%nH6_+R6P@nao21)l0OtY_6uj%T_-n0O)nFYexz|7;xNQVHAI?FtmUBDT zO*T*sX>_>|vA6+@XfQirye<&p=KJ8ZBJ}@cYL=>AGo6va$7anHmPYAL9%I@D4mSk= z8bj$LbZuqDn`fBolS$V)s_4g6PiBXEO zRDw}U8Jw(=6~UQqMt>-Xk?6giPjR=hj&}}lHPAMM?FiwK-vP70M6+K{w>3prh^}vt z=IpoIKlko!)aqcEWS0!vt{AZ@`+rhsTTF9_Ojty3efDdq);lm>1R^cnBr;6)egQR= zsZvMyZ}xvW3|2uSbITQ&#cwzY%zSj>nl=wPN>-0H%TLNetm$+cfe(KX8<1268e*z? ztVzME{vSly;n@r%)4n-XdsgoNliCWA_=C@w#CpG&8-1abVH0rh<(dUQwphu&3h^3U zZgY?f5>x(EJ{^FxJ*UBXJ#X5Kfo9v`lv66w-))B>ymemgLU z{90RU=edce=Wn+GY~}6}OK)f5*b&y8V>KWV^^;X8iEd3+q=-FG$z-Mm&=k4Saz+c$G&Xer)-hgV7EQYk24vMw%LxKXmV0@oPmJ(!i$l?JN-;` zupUVQrkub4Qk)gE7dS2RG$}i9)2T7^L3`o~S+4{P>33{8U)8SD8h!;-=NHv#p-3e! zb1;}0)y$Kb#5ps+uvRCK;HY8&2OM#@i$@em83RRfofa#fUjQpKDvbnNNz}b->@^M_ zTGoD+FqAu5JdEMbhn1o8r3Jb@Q<8{8-|Xha0+v+FE)p)3OT*9H!{%*iY~Rf@`O{dk zIY7$T)2hnwrYC^jnx%juHOR$9NQUJVH+ya^C$^9n{Le6!+l#<6*ah7k<+|% zp#tLN(zWU3dIZ6>hWD+evHC!WkKDiW4Rfb-JCpav87n(bCTMR?0cze1!0i)Q#ZVRrVst-?RPC`2Nlli>9sX^yqRwF~0AHd;azb>sf?P zy_@s7%EITGhGfynEF>N}h8HB|J_i6LSoYP-QXxsUfqhA+56q)!6&ZJi^2(#RVkMF+ zD`%Gou7)qN&CEawI6z5V0Z$U$R_fS62kUZ$vdg2B z!j4W)m*gfRDR%MUjEPFHdf0lHq?D~}A3O_Rrt$-MjZWY|ys8c%?EsF2?0Eg`c+y@a zQex6b{t7Sd1Vqvru3Yu*NhZx4EBC8q4vtBY@#G!HXk5WN>iO4ChgtuyeFRN<5#*AV z(nCz%-Q+eXEsT0Dw?p5XiMf5%QEdY`|H8&9;!<3mY;Q=`WL0QR-zB{*zYyJrF8c!1jK-JoL#Iu z$u{?vJNDI5zO9~OVkVb z!#dsa4fafBb5mEs_IZ#4FDFU->$=W&Y+L?Cv6<`$>szTq$?2?7ggdwpr{P99|Hb zXl>XN+2u1;NBndE^o{&U2S-eJS&j%$Gc{T{6)JS@{-aGUxIG?Ko&iO}BSmAK^5(_c z5~)?S@;z0_s(@oXefef@CwZUO|7FQJ+mz42#mkQmub5O#WG>v8Bdc3uEsl0UU33;@ zTgFg@f{WaW;H!z19x|+YfqkQ5Vnbf|HBNA|ZDBo2IWL>ttv*DicXr3dN(qM4cu8Ul z%8xreIq8hwg#nqemrVU#i0|rN)h{@)bbpaDNa`c|6ouCBV#Fb=uYhoSfpt}-9#NBF z<^rIs7~+_C;!OL{!Vigk`nCthj>J#?{a0+hGi%Q}N}&*w{<3(JxTYP>*AGt5ChgY%pI!m6CQ~8!j;zZmA##c%# zJV8+tIIz3?e92U{i4sOcX09sX;9lyIGLR6=zLKW1>S&S@RWCB;2Mcz{#3~*$)5kw} z&2wQg5?ZO&z2;#Hds9H&P08a_5Xh-&acS8{fUXQ`pSF}FR`PIlsR-NQvwU2hbDX-ZF3=X$SFH9~Yy(7V1<_3ddb;u$+YTn)#$xu@%n zAx(piE`1&QJ;HR^b}fgjbbNb{DJpQrfbH@b{}WNlJyQ!%tz5=VBAf^b=DrH`) zQKMXJ%qjO*mZG;mIZZ7O)4Vs;1#$;LiEvG-dMJq)38ECK))DBxrxt@JdtFFMlHK$H z$n3&tMx#_RB00IGGH1K&|LXZ<;SvfKe9mk$$|P1C&6;3eGfLwCEZ@YGsfM73!d7c3k9-#zcM=I+~+$1%4=@nr*azgi1=XhOEviJ>EqcW*2WF{ zCSTX8ld0du+GiSCz-998^;O*lP>!(_{w8TY6+}wU?lfDa%*J|cK7k+n)Fqk6x?VYP z9Z+>P?q3+FX=QTq+`a1gcGoZ3JWBD`slAu>)QHq;K9$L8h>?;YXC80*mmtFQ7wL5M z_FCzc)~h|yd)kRvH^44D#XV{MfM~BVU&R+$URXV0eQF=2nAV{62^hA$)bK?M18)AN zFlfw$6;wq+(L!u#job=jw|x&Nv=mI{ENnTVH>+xjiu#@IEg_DtH>9M3NKUGr;rFej zGw@n#Hdl&uyZ52-7ff2&f%r#L$eaybbVr$PjHb}&-4Bf?R*s+-)VQ_GUCjyTEwJzB z-%BIA*jGC&2szV=#TF4iFmx2C0nVgrSBiUu7cf?;O!V>$))BUslfD3@ugD*&ES^9I zn?+x^`Appb@h^NoR%B740Io#sO^AQg8*z0phb1)^B?S>vB3E!%T(GaA*43b?n>>)1 zhDbV8dsu64(@PW&vAikrM}Ge$Am>P%t^9@J?EBS?-SJcHSNtQUxcLW7gX235i>ZZT zX{>l#Zdz-=qHPYLYhT2%S4XH~43;AsRu!v^=^kT+%&Qq0 z`4`i&u)du_^~>g-EgRmEVjry2%QEZfeDP$H4tuh_z2rE3bG2Cavg(B49u{}VM5<&J z{lvf@f28=mG!PN`p{dP^WHZ9fFG^ob&DXZ+62;lRyHiNjS#7?XV;HizG2PvcSmN<` zeVA#;J6?>e<;DeO1AET)do19rIdT1V**o0E2Va_~o6%}5@T85JfEKP*azC*(R!qFK zHJ%B0pHedfaOC8jXz*8!CBVXQC%rBD##+&|mA9VwV>J6Yj^T5JqQ1O2LXMhw+Y2tF zP-QOhi*Oa5-Z~yjj;0$q7hXC}PEv;II}0pT8bwiEm}G#rpjg zBVp3bEr-rjp$pdU5#ivK7bHP_+c;+$lndeA>mimBJBKU#J=W@EC_Y@)QA8))hsrV{ z1MfXiJUBw?Zp*O-=-5XN?~mY0sw)wjU8*aIuI*9!Kaza<;DF%-sn$dYItO#|$b+y& zv{heASh;@S%85|L7hG(v{LMW#W!_jB7YcFc&PhTg=5C6UqFde;sI1`mnXsuQGvi+l z>-DUq;A3YL9J?MDwOyM5{1`MvfuzH{$p!g;x-GgRKgh`U`Cm)GT&U-X zDrBqzP|{eW5BOREqCeqLV$XLzeI%Gze*j|&M23p!w<1MQ2KdeRp(}j~0(Dp5B{c40 zRR0Qd)lt2Po;^tpzFXc!TGcJfWTvL#D<=lr@aCHb!(D`f#xcZKTCezD^uk~H ztjv4o!YF@az1}hcu4R)OX5*X^&;MTimBGVd{kO3Ieiho!zGFglO~I;gGtX8*o+9uj zz;Q~x@#bV0Sgqp2QI$0)s+w<`?kk3be8Y;_n08wn=n6}U{ikSTpIxyYoJvswUZ!d6 zI5~qsi(;e)K`lhmjhmG9U0uczJ+yH?3PwgbQ9VG!#3noQN6P1C(>;Kf5G!dB<6kRn zpk!;oor-6z6Q)a?gSw}?@~wFZ%g7C(>8wIkdoTIPj-w_@+AL5_xZ#dG*et-@wB#wNw?r`n$)6OBtC64$8z;O{(W@Nv zE#HUt1MIf%cu4D-nLiOcjZDmnH$HltiKDpJLr-Oku}B6%nMdpGN6ww5XXh8mFATM#7*I$p>S<&+QIK79%Z*V*E|26$s2)bo~DxUo=7;BRd*RwmCo zC4nYY*SJi=VcRZ{JV^rD3<`)KtP3?f?1sdkKKlSWEqo{=(-A}1}qs0w#rrF_tFN2{{pd_JpPI86)4xnEEz(kGGjuA10Y)P z`r#B5kLBKE0d7P@KnKo92)KzvFIMIGt3fNDjOio_&r=O(tbh|SFj3h zo`E#NV)ZrNDH&t!>qD&V464$8Ihl@(8RF5Wl4f%G1f1@#U;v(a0^%P%0_Hz{=5wY$Qk^#e=C!*PIYEDkLpT4J#0;h zlj#CFFb}xE#3!S%yVY+uA9a_7jWu{)ZTYU2$$irss|}|GThGbr2v@!+^v+G}*6Cr! z-4GWBlpz%DaG0%+9~cT7bnD?Cbwxlwv7Kj6S+uCKgtUmHzn~9=Klpk48HmC(q<(0V z|J_LOzZtYuR{U(w=stL(`LM)3Q<{GGKOC%N?fo5P^&gbO;EDMQdfh5w*`R>SO}mLB zoL3PoZk9|eVj|_Fw<)^0?Hv}d=Nx1YL};>-7E$kaLRKIS8jvO7#~ORK+qU08=7Kc0 ze~p)#ytbcOj+OP*E^AHy=eVp6?9oLzF{NPu8&H?;AcC}^xMvzuW7i>e{2cknYD(4I zBQKr<{TM~(>%Y72fzjPBeqTf2JK=J<8YIbJg7HZ&+Dc3i+G@aH>yMe^!!*9@nyvM* z3e!ib2zXyTrrM2IQlIT$bba2~6Zz`IoYM+^907j&$lw6HBYuQUNq?-tZ0yYJQBfIU z_et)v*o4{q)97ZmY(*c=`75g$V!oMlT;XZr3x0La44z%qp~SljrtLoks_7Rhyjg{w zCQ`lVX>YG@Z{_h&cDkY{{`(fTl%T7Wl_(~ZQc}hN>Q|lrt#mJ6DCs{k)Z(h!wCEB^@aARW&gNCKJ@Na=Gx3 zbSu2(>V|hwiXC0V=qBU5+FuGhbp-5U9L(!UCmR=>Eyoaq_QakPix2QKoKonO{P0_a z-x?^uEhqbUB2U;iu5#{4yu#!0Pup+93b)Iv24cSaN3U0F7>049V_$q%Y7dQfIO+(c z4=|8uo|0+Ri5>FW!V`NhN2N)7pTHx`i^nEX!MD>EPz{WqIu`I>@*{RAQp zRT^ag*to#^ju3Hb*TANAbYa_J^{?g@jZ}1I=0$YaHi6AJ%`o^Obvzus^h z>{k+zUVEtaHcEYmr8xjPR@0S#IIF~PiMm&ziRdbFEfCjE~vdVa-^^v|*8 z?#QS47~+h1*F(u3g1#T*A82+@{Cq(-?+Vf=bw*V1si>`FdSy-W zsR0Q{?6< zPA)r?k?vYTfuM;QjuU{vvn$a%w#0rN;PGiF+Oypz&hbGfA%isQPV|e1k?2yZ)1hq^bVE9=%L4ZVG4>6&DbswptQb?8VEAErLg*PtgLa15){!7q(XZJDm{V`p ztPnkBI?%0*!?oxX%W9JyT*+~go2pr)CIWlj6EVoqepYP4_8$wNOg6`7@Fz06SkdSS zNaJXj^uTTIxb!tj!PO_!Y_Aqti-mn9z3AJNjoRz?~_<* zlJx{>|7F-uGVA^N3QHe?^kmFmkt;pRWKNCD!_`bmHQ^t1%bi>qmxbco5t6EC@LjL3 z+qLSm1Rj^Yv?l{{t&0-MQXRddeP6qgf>4t9aHj6@MAzWg3!F^_!?7pgLeA7SL&^j` z^^6&JDq`B&pV_c4WxywNdbpnj>y@+yOwkg$-CgVEj$c=bQx&W%8P$Omx4avUMm#BI zCi_QM6}by&T>g-kPHyXN&{69_vH9cL3|1L3Bvi{wPiMad?U-0~KhJVZ3%b!b>{b1p zO@ZdW$<~Pj#{=EDe^r&LxKfv2M&!Hjj1MPT=7<*3pAU$>2t6z<)0oh(c!Q5J`>}#czqHmb8)@B3sKmb)1943TWTzz2eln{xDhIH|i31ph_+dcnE2H=N z^~Iv$XDg|qW5MN?%r{THhI#lVQ>3iuEUJf<37ApfFpaQ8QtVkCIVDD47!MoKK?3ie z83=?iq?BRN>2r4WkZ@XapuibrGJ$0PRA9P0#X-a(k5*M$JL<$-NPeKGx&f2mpPWq)SA%0|Y9XoFFzEgN@q@zx|9W zmOEBd@zS&EJhi~Ibtcvd zAPUAeyqDgScXzxa&$ZkXvX5s_(&eVU=Lc4*UE57nn`5?2_MgW8@0(rN+f&t9GoRO1 znA|&ZKP{a%iXOSEmsvNUb0wX94p>@=etyEstyEnfejeuL{>|y`(Y0-Dpv7W97j+jxC z)R~&`Vl&l<}J*OPkHq+7wl{JJ6LZpyi_=QL0qLFwwnZ_$w`EMP_v3%!`R4 z>oVATsjIqfm$*_+^gVv1@4r$54EwsaKi`8EmzEsij8;QjwG|X%rjGi*0e@1TA@|w9 z>!;aa8Mj8aa?;f__HiF%>u_qStGpfOF&1Z|e$*_Zu0T&#td~m7_Zgfss9Lul>gd+y z<~(mZllLc=Ef!bh!Xnhc@YOqf_|_XzogbHP!26;c-{MN;lHSbw?N_dr2IaHMez_O0 zKJ@__Sj%;jt4o-xr87+b_Wj57;3Znq9R#WrvRCCa8UH%1-ijdbB>8)1TjX)BrUz>s z9i8oLKDS2rDWGM6IK4!{(h=*O18;g39*zvo{QN3J`J2AahC%7>HBcOZwU(9+6)V{u z#}^({(NdR%Ocyq;Q?qzFDAs1#D+n^7>`FxkClDe z{DK2e8Jr&hye@wR0!8s^e)|qJF7TPMoi$^=So?Q%C%XJ>jqA(z5ev<9P!b~m;@cRk z-M?G0#i=cl%;`0r=!#-MzmUFE`6!FY5(!{NCLF}ml5070Z8sGpY9$=J{qY%q6$%hl z=9;x*t(a^R&TZGH7<}UU}L^w8$to>{IwjUg!i#A&w zy$z%H#el}Mw3pgJvrac&?4lV!c)`ccI|sq<`C`c1mNRR|{2YGg+Yu+~%oCD`IRDS% zsq-I?XQF@Q;ay(YOH;51t3XqGyMZ(tp;Gjbw%^_&{>*^Gz*nd8^D?|2P_j2^>cC#i z3>lnznRy_GvJ!k2fVz1u1f;1RdB)q=VN^?bd^!yzAi$Ov z5S8h}wZ@3coR3l8DI>eUL`T7^kk6o|+%RCHiXx<(bs>aJzdp83*9TUqedz`g3uV^n zUURfM>H!ddxRRd_w&QVd$7w1}k{&-&K_24s0X1Wz(sKb%Rssu|g*qf&9LbV?+@|P> zuc`iGw*!t+8Kbw9xUYFZ=cal{oY=Nr6}{ulSJ<#r451Ab2a~m(-4pY4zDYQD#dKwp zn=kMIj>Cxbx;&LpXEEP|08EznuB#?XK8Ta+k`}32WCRMx2hmjvQXFXCN8;wO{r6tR?>DE_ zcX~Yj^)B>+CtE))UUDOOag=Z5ck{rMHd?+D26W9N;Y~Gi=NSyBp{TDiHPK?x2XAri z1>R`O6FM-wJy+iT3}vyJ#ffeK(Bz}V(^l{KD}ZcqC~!pi+f$X_a0OKOy@efonASul z0#H1tH8XnlwyVa;-i_YiPL^8SPg!Iovcy7hU(d?=3zcYc(8Ei-KDpO;Xe@3}!J;jq z#s~Vw=-X|mmSKMV1gOs=L~eAKwfmn|hHRwS*~8+OcJ}P>Pfj=cgc=^52QL&(KZH0K zLS+lCYGmQnkvMZ65k1&*G-7HQO5W5t?r#XpDW8>i`mw8iCH{`7_r3pze3}3Q8;4-C zK>M5j-NT9sM=FZX6;@Qpk*emr(71Yu-N%{FdjD=4aGVM~*vJBKK_<8+Q^cP>eah^T ztouuD>TVj7y+X4RJ~AF^5iw%F^35v{hq8xW&@zHVG{a~6{;20;QMZkb&axa+rH!xS zWF{Bs^3sxR7j=KjL%roVR`{$)+{vB#vlVTd%k3ZK(30)@xMku5MQE8yi{-D0qXi7G*Gn? zPGj4tk242?N$ShA>)dRk55lj2vA(nU`u4wnotpc%NKAItJg6HaamlJb{gB6>Gy-}r zOX?8Ok@iV#DEmIME*%ycS%?>62a{wDv`#pETaI#m)cZ8OxDFgkd)jG0J(EZ$7Pb3& zELy&Vo7%2D_h$w=I-rzP-K_K2a23uk(_~`>RcC$g5ArQE-%AAZk7OMyWI3LAPhwKK z{|JaR&ulBTIm=O+X={l#SGgfo{Ergzc(U1e$tmtB0Kht9;PLbGbDoS2=ZcV*o~vMI zQU<}tTd6dFiAp4a3uo@ZSxdlH`lQb6Xm9^ab`wC@eB`xNB~imitLaD+?yRjwNzQc8 zhIfuWy`{T%V{t&BO;t`b*Kx=+#*jkCcN>Ao<(RdXAoYew>cYFsbX1|EJ_ z8rXZfhG7NrTUdIGeP!stHX~MgdIw+k1n*JfQZV1E82zI0!|^y>aSbApd=j%Rkx7MH8e{Uc2~)c|scFU(WrQPI){| zxsaojF3MH7PT5o)OZt49GM|sP5!!^w~9RV9%y1e~mFizf%gqokW9;H&33XH$5yS0o`-XZ16{k%hMmb*x(lWL!dH9Je(B^IS$rGU-E)6IpVCG{d_zL z+ux4su)DXQ4=du+kSHOf(9y8}V4&yOumFmNNI-#)%`GelBI`=-Ov@(U1Mk&h_ba#V z2WQ4)3|A1|PQcaQt^A7d-7WcqZRJYjSzA#y=xhR#EArN3vf(i=SH?LlV@};Z64&Jj zltV<3Zdh1hap;KxQWfZ@CW%HP#k61EE0Ubjlj9pmgR9_md3y3g!bYfW8Cs|7pcCL^ zOTd?xtU`34BJ6>^kY)23#ov$ol5Sp5WKq4J5=HVjNy@P7vt~>|1qzYq(uYNE5x#-6 zN(=7L^IJmCDmX_O93lVGE&mIMywDt)Wcb!z_n5dVU3Th~tvgS}7G#5*EqKg~h+-RR zv1Qn{$m7?MxxE(h^_0iXteU#5#KRy;BR* z@{#g|c1g^NfvDvl#P+7U>hd0~1?4lx8ng!k9PWKUHVV^L$!k;d1s6Ox{Z5E8*M-WE z?H&kHYEB>QNcZ79s`6L$NoYYPhtOTJC{41e+S^Q+IhL9I)kdc9H=dDOY&F#o~d zMm*S_$U;=xng?1(GN^>;2cq6cO;1iQ%fwu9vFr=0dvI46&MKVq5x@DJ-8h;QfSx1) zrgrE|EeFbPb~gVL{E&YzFgHAoD=|IMQ~7p7*r~28j}CDz{ptV{_e%X0#0OX%^Jd|t zdi@{P!AY`+O4)*?e>qJ4{Y0Hwyc#XCzIt|l2M{>>7dIbpIc^=94uo=IZ=XJyd8DMM zv_^8F$+$^jQ6V1}IIQa1(koRHx^|EJpN=M`ms*Sv11CUS3BoAmgN+N)^);d96h&@j zzSjP=91xA|jcH}EL+&2O3X#(@HMyIw^$d*FQUqQH(2&LJm3#23@59-z)EPRz0i}1Z zwHm{{M_RzG(9UOs ztxm7MJGoC#WQfv`Rre#xg{-WzVG9mnT9zHqwbPx?n`IW!;i#;2lw^vHNUlHi?Gfe5 z7rORMtMZN{xBv;ZLkC zj_!(4v>LFCz&Em05W*scEaEacyd)=EmuKLy zT3^o`@^q9Pg40xI;9tuA^z`9z-SaCGtS(>RJn|4*3=jQ|5NeILwIS|mo^#DkBxiRY zE^m?dox=!<5HTZ6=zEG`Qz>2l=-j#^iEISN`v(e*PE0TUVeB5TUqdk`?D zKxomly;?oyZSn$pI@CW=E82$RskG1a3tl$FuRPL3#AJ6G$$9hYoii#m#2EYUq++5D zhv8=BqG>4e_pGWqR!C76L3aIpY5eDUTnz4ShVpYW>tj7?q z5W>al)gnooV#ck~=(zY7_R7_q=nUAaqsgUtpj{IsIpg(G5Qt~B^xur4{{<|jnI7~2 zw5znAu7JFUt#@7VY^s|!th1$*t+tba!h)5J@6Mk8!7Ek~{D-63^~35qBYq&pqN_o0 z=^{hydUUZ9+IF?9lM`)d8UdDz#Ew7e5sHCj7ao-s zgqi6Na=+YD`wRokHm9H*1Aip9l#PgvJ4k=?bXcB==uFwj>Zu~wOw1w<+4JfGl}#AG zGIU5VPnd7JIBnw()6Zdg3@KomH_3gp7Vl3ZYX)Z>Xo#>B-JyjUUi>;j3C9d<@7*@a zYW7dfr%j>0e2$y+E{JCx#>uMPQ*T{zf+5w+#2;!{uM54qryqlYtp2QN`{Eh`(8-S8 zH@d`9DKNm*LK`XnQf$)vl#CQF8?~wj(dVL-w2p&CQ3e5oRA=Vn(o*9a?Svly<|d~a zL>4OihsrqQ1&(dBpPv~C@eYi@vqYeC09mPI;%4gUMD|(U4$%KHW@cl%;An`#;|6^*jpw?KKN#eQX6nQ`s}0yn z4J?_5)3mzI1ZVp_;J=oM^m5R}W8o?mPj(P8s)aS83mEsr=8~R11adn$I+^ob zM4xM$m^IJD;tx@9@eIs(Q)4_rH!pltC%ke*f&LJ)r7V1?;M8`=D~O@K_UVU+Y$P&Nl)vZEU%fqNC5 zH?<{=6X?XhXRUE&lze+kZ$^DcfusIX7pfsLeC$0_n0_(e-0udw!tbhfJUy@v?9W4i zh>OH*zF}gQ1<CMVmM-dmi%QSxG z5!?Jh_!TZ7BQx_fU!G0L*&|Jda#RV4H1APtq+H>SYmHudkstWoGJ<9By4)-Y@O3m6 zE-8p%lAPiSbxKn~%2ll zRL1WBP(v$ekexhS5m|j5K zt2s8@(fv*45(7wxnmXbTo6ck?>qSVI&X#gDYfTWd=>hY+=n4XH()->xeGL+# zqBa{k=`x`VvN!PQ_j=03IH2xNIedu?_lB!~Ioa+&z2CdjX~%)cEPMdQA{h=V7v}2r z^O8rSl6-RN_lBCr<52}yOtvWK%>6^lA?|M#;E;Kob;o_1{MIf>&vo4%x;kRol1P5Q zHVPhlpKwK+X3L`#3&W0Gr9<%wDdigQVYxdC7TVk(G}~Z+T{U#H;wLTDR^IcY(wl9p zc@o|4szXkQbn{zWEjTOf5UHGlLOb1&Lw{BzB__iB@LQ;4d`&Os(eNoJXtT&vGsiMrhHh7^mv^ zcY$=8s9htft$umFPcwoFeTOB%z^RBgkp|!sx~WFC9+e)eCFb67G8nGkUOW|{ka_4V zkER>Okan-DX&C2x4PrazIg+&*<1NV5zg8Ox7k=^N$z-hm^X*gPMIf=~o4R>~00Bej z2tVg?lXA8i<@`n`Q%X25Z&_@Sw)XG+70gH+waQOJe12$0tYq)}aOKd*ong)tqwkW% zV*(Q@jJjI9@SoT;v%arZbAgY#74uV0nmaev$n3}+c?MagPL7V`U^&8Ludm!rujQ*X z;tMwk;Wlo|O@v8PRb8%+Pv&w0|GB)?x!9a_9p%%>az**m2qOGk;e+m~`z_tuIXkm- zD(#~|2ZKC-RPxuK+94$qAdky=m?`1&*s8sw3L6Y=9N0K?L5N@mCddmKUsjGSk);5L zSID*!Db?w=HRslSdNUyD`B3Z%-)-`?2auWH0B)n3Pi=at+1QY4zc2Q#cB))E0_C!wS>ed8mh@3IpTW{0o)6;VJ`|_bq@epM zwKF{#!}&~rDwWQ+H(5Vq=4%!kpCg${eL-l)4u>?a)TVmQNEa8yjK9Hb<>1xHE>MA( zsi<9WgdUoNf8mDHUGNdn1J@<*T|eS6VJMXrpm=pHta>=zy^7&l%dq9q6MJubxNqH; zhtE%rgMzgF1tJ7SQS7=PIeqCm{Ohh+JGzU}BVn1AnI~WPD>2pXD_ZnqDYs>`U^74| zc`9&%@CTnu<5#IA-J);H?i9Cqf>z>za!C!n0v7o^GBbYz+4&B97rE$fdx&^d#%-== zxSlWdYq$Lj3+X`=KfFB%9PM8}P8h6QY->JMB4_WT9S@Q~Z zBfDc5LkFBA=$l)K5m-CD+-(L<;}DGX$z-TQVU(jTwo$%lyP=#^kyrxKarqm9WeiOm zQP2)@+2n#OiqW12_BZ0+q&A5u*V5EK?N zk2HQqF9aY})!)eBo0aA#Rc&t!Jgq9%DApYn(Z1AQ94BnFm>h{Zn86oXA9ZY-AD$Ie zu!naJ!m{ioifq>P{|`I!YWj@pd=UY#tzJb4&=N>Nr!2{gX-fgUB+B_6BE3v2fe0o= z7O*KXKlz_acd!zP(F%xx+pr#M`|ktC@+Vh^1bi)#$K zUd$Tyw9-EiK*|W<8mtpGw6Kp5bZt$%k=F-ddLI8v$4u7|KOh}Y7veVHZjQ%3^7k6B z2AZ^5^4^Ok>59aV2K>|In5qh<>uK1%aTHzN#;`m5zzJG!J9~ezi3i%aqEp8rxy)y{ zv9U3#v*caLX_Nl-J`WtFT2JKu0U*NROs{ckV{r=Q5kP5&#f^ zvi8r|`qjVuwybd&wabP=42t>HN)Cf);{g4P(lgy>X_Yw^sD#qBqWiniQej-|snRS= zYiG0Bx!|Q4i48g6g6eJOG^Zxpe+oU}TO!7py5mVy_NBt+NoKt1NB&Sq0^|AF&+~p< z-7hO;0^%Q!WcGx1mrOAnFNCRXDO{p00A*oF>|nO)0!pgbI*tkh(#G-Va*hKGN+1%= zVZi#Y1OpMdAiFct>dxM};XE{VC&T5pv_Hl4SB8f!sw%RW3n!P=7>pk)F{)2selkC* z-?zSIbZdPx!}bbCLaf-c!A-D^?Gs7 zKTTf7DV_LoZ}-^#r>&`yoZuOA2yBGtyu0&?j_Lylr1Fieq*VA$u1Up&B?@U{y(K)+ zg?Q%6Ov+bb>?EsAx9IovUc|M!AoB0K+PwHqeP!|LbSt~LyeTlqiId%vW8WZa_L;V1 z=6CeKj#I6f2U(DVO(TW>uYy_eM!2lJiHis^M(PdBmd><*f0RoBdpZyy_D_*p{qyBT zWWOq*Z~3VQ%;8hiXHO2V4QcHx4z)Ff&W4@0r>~m`&rx|_lGRlNU(IYD-z-=&kWB@V z2pLq7^CQemG^J~dJi9VN+d1t)2k~iZXLFg~Xev}i*7|IQe(ShBh8#;LF}CQ5o^}k- zIH)oy*72o83^%qysNStvFf$) z1uBx=yn7qAt~Vk(hxdK_>0H-eOf;-tmS>Tyd&xuqQQZAOw)gl%wcyV`X{za|mMJ4c{sTj< B104VW diff --git a/meta.xml b/meta.xml index 7706aa96..1ca42fd2 100644 --- a/meta.xml +++ b/meta.xml @@ -89,7 +89,8 @@ - + + @@ -114,7 +115,6 @@