-- --------------------------------------------------------
-- Host:                         127.0.0.1
-- Server version:               10.4.32-MariaDB - mariadb.org binary distribution
-- Server OS:                    Win64
-- HeidiSQL Version:             12.12.0.7122
-- --------------------------------------------------------

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!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 database structure for coozv
CREATE DATABASE IF NOT EXISTS `coozv` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci */;
USE `coozv`;

-- Dumping structure for table coozv.0r-gps-player_gps
CREATE TABLE IF NOT EXISTS `0r-gps-player_gps` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `targetCID` varchar(50) NOT NULL,
  `targetName` varchar(120) NOT NULL,
  `attacherCID` varchar(50) NOT NULL,
  `attacherName` varchar(120) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `targetCID` (`targetCID`),
  KEY `attacherCID` (`attacherCID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.0r-gps-player_gps: ~0 rows (approximately)
DELETE FROM `0r-gps-player_gps`;

-- Dumping structure for table coozv.0resmon_delivery_employees
CREATE TABLE IF NOT EXISTS `0resmon_delivery_employees` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user` varchar(64) NOT NULL,
  `profile` varchar(32) DEFAULT NULL,
  `level` int(11) DEFAULT NULL,
  `exp` int(11) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.0resmon_delivery_employees: ~7 rows (approximately)
DELETE FROM `0resmon_delivery_employees`;
INSERT INTO `0resmon_delivery_employees` (`id`, `user`, `profile`, `level`, `exp`, `created_at`, `updated_at`) VALUES
	(1, 'EIH18257', 'profile_1', 1, 0, '2025-11-15 17:06:02', '2025-11-15 17:06:02'),
	(2, 'JND68700', 'profile_1', 1, 0, '2025-11-15 17:08:30', '2025-11-15 17:08:30'),
	(3, 'HZK30117', 'profile_1', 1, 0, '2025-11-15 17:57:20', '2025-11-15 17:57:20'),
	(4, 'DER51835', 'profile_1', 1, 0, '2025-11-15 18:12:48', '2025-11-15 18:12:48'),
	(5, 'KNK63128', 'profile_1', 1, 0, '2025-11-15 21:26:03', '2025-11-15 21:26:03'),
	(6, 'KWO81231', 'profile_1', 1, 0, '2025-11-16 10:14:41', '2025-11-16 10:14:41'),
	(7, 'BYW00072', 'profile_1', 1, 0, '2025-11-16 10:25:37', '2025-11-16 10:25:37'),
	(8, 'WNE62099', 'profile_1', 1, 0, '2025-11-16 19:30:28', '2025-11-16 19:30:28'),
	(9, 'ILW07586', 'profile_1', 1, 0, '2025-11-16 23:22:14', '2025-11-16 23:22:14'),
	(10, 'DMW04194', 'profile_1', 1, 0, '2025-11-17 03:35:33', '2025-11-17 03:35:33'),
	(11, 'FNU16178', 'profile_1', 1, 0, '2025-11-17 03:37:56', '2025-11-17 03:37:56'),
	(12, 'NTJ05393', 'profile_1', 1, 0, '2025-11-17 03:43:41', '2025-11-17 03:43:41'),
	(13, 'DVD07998', 'profile_1', 1, 0, '2025-11-17 12:49:37', '2025-11-17 12:49:37'),
	(14, 'BMH54317', 'profile_1', 1, 0, '2025-11-17 14:26:26', '2025-11-17 14:26:26'),
	(15, 'XAP13242', 'profile_1', 1, 0, '2025-11-17 15:06:23', '2025-11-17 15:06:23'),
	(16, 'OVL98907', 'profile_1', 1, 0, '2025-11-17 19:07:38', '2025-11-17 19:07:38'),
	(17, 'TIV56684', 'profile_1', 1, 0, '2025-11-17 21:32:57', '2025-11-17 21:32:57'),
	(18, 'PDH43092', 'profile_1', 1, 0, '2025-11-17 21:33:13', '2025-11-17 21:33:13'),
	(19, 'QLZ47727', 'profile_1', 1, 0, '2025-11-17 21:59:56', '2025-11-17 21:59:56'),
	(20, 'KPU11623', 'profile_1', 1, 0, '2025-11-17 22:55:49', '2025-11-17 22:55:49');

-- Dumping structure for table coozv.0resmon_garbage_players
CREATE TABLE IF NOT EXISTS `0resmon_garbage_players` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(255) NOT NULL,
  `characterName` varchar(255) NOT NULL,
  `exp` int(11) DEFAULT 0,
  `photo` int(11) DEFAULT 7,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.0resmon_garbage_players: ~1 rows (approximately)
DELETE FROM `0resmon_garbage_players`;
INSERT INTO `0resmon_garbage_players` (`id`, `identifier`, `characterName`, `exp`, `photo`, `created_at`, `updated_at`) VALUES
	(1, 'EIH18257', 'Russell Crowe', 0, 7, '2025-11-15 19:40:38', '2025-11-15 19:40:38');

-- Dumping structure for table coozv.0r_multicharacterv2
CREATE TABLE IF NOT EXISTS `0r_multicharacterv2` (
  `identifier` varchar(255) NOT NULL,
  `settings` longtext DEFAULT '{}',
  `slots` int(11) DEFAULT 1,
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.0r_multicharacterv2: ~5 rows (approximately)
DELETE FROM `0r_multicharacterv2`;
INSERT INTO `0r_multicharacterv2` (`identifier`, `settings`, `slots`) VALUES
	('license:4a276580d89b21abb47aa3194548158001996daf', '{"color":{"name":"dark-green","hex":"#04CD96","shadow":"rgba(4, 205, 150, 0.72)"},"animations":{"single":"uwu","status":false,"camera":"front","entrance":"top-and-bottom","scenario":{"status":false,"single":"WORLD_HUMAN_SMOKING"}},"filter":{"status":false,"type":"default"},"mutedMusic":false,"streamerMode":false,"coords":{"pedCoords":{"x":2967.989990234375,"y":5321.2099609375,"z":100.68000030517578,"w":139.24000549316407},"id":19,"cameraCoords":{"x":0.30000001192092,"y":2.5,"z":0.30000001192092},"scenario":"PROP_HUMAN_SEAT_CHAIR_DRINK"},"focusPlayer":true,"clearMode":true,"weather":{"status":false,"type":"EXTRASUNNY"},"time":{"status":false,"hour":12},"particle":{"status":false,"type":{"pName":"scr_xs_celebration","pNameChild":"scr_xs_confetti_burst"}}}', 1),
	('license:5d108d60a0a641aeb27d2ecfb5ed4c29de02f3c4', '{"weather":{"status":false,"type":"EXTRASUNNY"},"focusPlayer":true,"filter":{"status":false,"type":"default"},"animations":{"entrance":"top-and-bottom","scenario":{"single":"WORLD_HUMAN_SMOKING","status":false},"single":"uwu","status":false,"camera":"front"},"streamerMode":false,"time":{"status":false,"hour":12},"color":{"hex":"#04CD96","shadow":"rgba(4, 205, 150, 0.72)","name":"dark-green"},"clearMode":true,"particle":{"status":false,"type":{"pName":"scr_xs_celebration","pNameChild":"scr_xs_confetti_burst"}},"coords":{"pedCoords":{"w":139.2400054931641,"z":100.68000030517578,"y":5321.2099609375,"x":2967.989990234375},"cameraCoords":{"z":0.30000001192092,"y":2.5,"x":0.30000001192092},"scenario":"PROP_HUMAN_SEAT_CHAIR_DRINK","id":19},"mutedMusic":true}', 1),
	('license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', '{"filter":{"type":"default","status":false},"mutedMusic":false,"streamerMode":false,"weather":{"type":"EXTRASUNNY","status":false},"focusPlayer":true,"animations":{"single":"uwu","camera":"front","scenario":{"single":"WORLD_HUMAN_SMOKING","status":false},"status":false,"entrance":"top-and-bottom"},"clearMode":true,"coords":{"scenario":"PROP_HUMAN_SEAT_CHAIR_DRINK","cameraCoords":{"x":0.30000001192092,"y":2.5,"z":0.30000001192092},"pedCoords":{"x":2967.989990234375,"y":5321.2099609375,"z":100.68000030517578,"w":139.24000549316407},"id":19},"color":{"name":"dark-green","hex":"#04CD96","shadow":"rgba(4, 205, 150, 0.72)"},"time":{"hour":12,"status":false},"particle":{"type":{"pNameChild":"scr_xs_confetti_burst","pName":"scr_xs_celebration"},"status":false}}', 1),
	('license:5dfe5f48ff9b14901a40705e7b26b2f2b42ca953', '{"color":{"name":"dark-green","hex":"#04CD96","shadow":"rgba(4, 205, 150, 0.72)"},"animations":{"single":"uwu","status":false,"camera":"front","entrance":"top-and-bottom","scenario":{"status":false,"single":"WORLD_HUMAN_SMOKING"}},"filter":{"status":false,"type":"default"},"mutedMusic":false,"streamerMode":false,"coords":{"pedCoords":{"x":2967.989990234375,"y":5321.2099609375,"z":100.68000030517578,"w":139.24000549316407},"id":19,"cameraCoords":{"x":0.30000001192092,"y":2.5,"z":0.30000001192092},"scenario":"PROP_HUMAN_SEAT_CHAIR_DRINK"},"focusPlayer":true,"clearMode":true,"weather":{"status":false,"type":"EXTRASUNNY"},"time":{"status":false,"hour":12},"particle":{"status":false,"type":{"pName":"scr_xs_celebration","pNameChild":"scr_xs_confetti_burst"}}}', 1),
	('license:743d1329c84c50587593410bfd0f02e858c89d89', '{"clearMode":true,"mutedMusic":false,"weather":{"status":false,"type":"EXTRASUNNY"},"filter":{"status":false,"type":"default"},"color":{"hex":"#04CD96","shadow":"rgba(4, 205, 150, 0.72)","name":"dark-green"},"focusPlayer":true,"animations":{"status":false,"single":"uwu","scenario":{"status":false,"single":"WORLD_HUMAN_SMOKING"},"entrance":"top-and-bottom","camera":"front"},"coords":{"scenario":"PROP_HUMAN_SEAT_CHAIR_DRINK","cameraCoords":{"x":0.30000001192092,"y":2.5,"z":0.30000001192092},"pedCoords":{"x":2967.989990234375,"y":5321.2099609375,"z":100.68000030517578,"w":139.24000549316407},"id":19},"particle":{"status":false,"type":{"pNameChild":"scr_xs_confetti_burst","pName":"scr_xs_celebration"}},"streamerMode":false,"time":{"status":false,"hour":12}}', 1),
	('license:b2b7ae3786c6db6e43241fb669b632f89d88798b', '{"weather":{"status":false,"type":"EXTRASUNNY"},"clearMode":true,"coords":{"pedCoords":{"w":139.2400054931641,"z":100.68000030517578,"y":5321.2099609375,"x":2967.989990234375},"scenario":"PROP_HUMAN_SEAT_CHAIR_DRINK","cameraCoords":{"z":0.30000001192092,"y":2.5,"x":0.30000001192092},"id":19},"streamerMode":false,"focusPlayer":true,"time":{"hour":12,"status":false},"particle":{"status":false,"type":{"pName":"scr_xs_celebration","pNameChild":"scr_xs_confetti_burst"}},"filter":{"status":false,"type":"default"},"mutedMusic":true,"animations":{"camera":"front","scenario":{"status":false,"single":"WORLD_HUMAN_SMOKING"},"status":false,"entrance":"top-and-bottom","single":"uwu"},"color":{"shadow":"rgba(4, 205, 150, 0.72)","name":"dark-green","hex":"#04CD96"}}', 1),
	('license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', '{"streamerMode":false,"particle":{"status":false,"type":{"pName":"scr_xs_celebration","pNameChild":"scr_xs_confetti_burst"}},"color":{"name":"dark-green","shadow":"rgba(4, 205, 150, 0.72)","hex":"#04CD96"},"clearMode":true,"animations":{"entrance":"top-and-bottom","single":"uwu","scenario":{"status":false,"single":"WORLD_HUMAN_SMOKING"},"status":false,"camera":"front"},"coords":{"id":19,"scenario":"PROP_HUMAN_SEAT_CHAIR_DRINK","cameraCoords":{"x":0.30000001192092,"y":2.5,"z":0.30000001192092},"pedCoords":{"x":2967.989990234375,"y":5321.2099609375,"z":100.68000030517578,"w":139.24000549316407}},"focusPlayer":true,"weather":{"status":false,"type":"EXTRASUNNY"},"time":{"status":false,"hour":12},"mutedMusic":false,"filter":{"status":false,"type":"default"}}', 1),
	('license:cd5b6b574e0faf91f80aefa9dd79cfe1b96720e7', '{"streamerMode":false,"time":{"hour":12,"status":false},"mutedMusic":false,"animations":{"status":false,"scenario":{"single":"WORLD_HUMAN_SMOKING","status":false},"camera":"front","single":"uwu","entrance":"top-and-bottom"},"coords":{"scenario":"PROP_HUMAN_SEAT_CHAIR_DRINK","cameraCoords":{"x":0.30000001192092,"y":2.5,"z":0.30000001192092},"pedCoords":{"x":2967.989990234375,"y":5321.2099609375,"z":100.68000030517578,"w":139.24000549316407},"id":19},"focusPlayer":true,"clearMode":true,"weather":{"type":"EXTRASUNNY","status":false},"color":{"name":"dark-green","shadow":"rgba(4, 205, 150, 0.72)","hex":"#04CD96"},"particle":{"type":{"pNameChild":"scr_xs_confetti_burst","pName":"scr_xs_celebration"},"status":false},"filter":{"type":"default","status":false}}', 1),
	('license:f48b1763874dc421ce69e0968937af91708b8fb5', '{"color":{"name":"dark-green","hex":"#04CD96","shadow":"rgba(4, 205, 150, 0.72)"},"animations":{"single":"uwu","status":false,"camera":"front","entrance":"top-and-bottom","scenario":{"status":false,"single":"WORLD_HUMAN_SMOKING"}},"filter":{"status":false,"type":"default"},"mutedMusic":false,"streamerMode":false,"coords":{"pedCoords":{"x":2967.989990234375,"y":5321.2099609375,"z":100.68000030517578,"w":139.24000549316407},"id":19,"cameraCoords":{"x":0.30000001192092,"y":2.5,"z":0.30000001192092},"scenario":"PROP_HUMAN_SEAT_CHAIR_DRINK"},"focusPlayer":true,"clearMode":true,"weather":{"status":false,"type":"EXTRASUNNY"},"time":{"status":false,"hour":12},"particle":{"status":false,"type":{"pName":"scr_xs_celebration","pNameChild":"scr_xs_confetti_burst"}}}', 1),
	('license:fb9bafa16730e620ba108210f4f623683935e33e', '{"streamerMode":false,"time":{"hour":12,"status":false},"mutedMusic":false,"animations":{"status":false,"scenario":{"single":"WORLD_HUMAN_SMOKING","status":false},"camera":"front","single":"uwu","entrance":"top-and-bottom"},"coords":{"scenario":"PROP_HUMAN_SEAT_CHAIR_DRINK","cameraCoords":{"x":0.30000001192092,"y":2.5,"z":0.30000001192092},"pedCoords":{"x":2967.989990234375,"y":5321.2099609375,"z":100.68000030517578,"w":139.24000549316407},"id":19},"focusPlayer":true,"clearMode":true,"weather":{"type":"EXTRASUNNY","status":false},"color":{"name":"dark-green","shadow":"rgba(4, 205, 150, 0.72)","hex":"#04CD96"},"particle":{"type":{"pNameChild":"scr_xs_confetti_burst","pName":"scr_xs_celebration"},"status":false},"filter":{"type":"default","status":false}}', 1);

-- Dumping structure for table coozv.0r_multicharacterv2-codes
CREATE TABLE IF NOT EXISTS `0r_multicharacterv2-codes` (
  `code` varchar(250) NOT NULL,
  `slots` int(11) DEFAULT 1,
  `active` tinyint(1) DEFAULT 1,
  PRIMARY KEY (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.0r_multicharacterv2-codes: ~0 rows (approximately)
DELETE FROM `0r_multicharacterv2-codes`;

-- Dumping structure for table coozv.0r_multicharacterv2-transaction
CREATE TABLE IF NOT EXISTS `0r_multicharacterv2-transaction` (
  `transactionId` varchar(250) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.0r_multicharacterv2-transaction: ~0 rows (approximately)
DELETE FROM `0r_multicharacterv2-transaction`;

-- Dumping structure for table coozv.0r_unlockedslots
CREATE TABLE IF NOT EXISTS `0r_unlockedslots` (
  `license` longtext DEFAULT NULL,
  `slots` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.0r_unlockedslots: ~1 rows (approximately)
DELETE FROM `0r_unlockedslots`;
INSERT INTO `0r_unlockedslots` (`license`, `slots`) VALUES
	('license:4206393e68b40bef0ef930c63c01466c5408ec27', '[2]');

-- Dumping structure for table coozv.advanced_stashes
CREATE TABLE IF NOT EXISTS `advanced_stashes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` varchar(100) NOT NULL,
  `access_type` varchar(20) NOT NULL,
  `job` varchar(50) DEFAULT NULL,
  `gang` varchar(50) DEFAULT NULL,
  `coords_json` longtext DEFAULT NULL,
  `stash_id` varchar(100) NOT NULL,
  `radius` float DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `uniq_stash_id` (`stash_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.advanced_stashes: ~10 rows (approximately)
DELETE FROM `advanced_stashes`;
INSERT INTO `advanced_stashes` (`id`, `label`, `access_type`, `job`, `gang`, `coords_json`, `stash_id`, `radius`) VALUES
	(2, 'DEPO', 'everyone', NULL, NULL, '{"x":-1532.9,"y":151.2,"z":56.1}', 'stash_1763236902917', 1),
	(3, 'DEPO', 'everyone', NULL, NULL, '{"x":-1818.82,"y":443.35,"z":128.51}', 'stash_1763236927315', 1),
	(4, 'Depo', 'everyone', NULL, NULL, '{"x":-2679.17,"y":1313.18,"z":147.44}', 'stash_1763236940332', 1),
	(5, 'Depo', 'everyone', NULL, NULL, '{"x":-62.42,"y":837.35,"z":235.73}', 'stash_1763236953156', 1.8),
	(6, 'Depo', 'everyone', NULL, NULL, '{"x":-108.11,"y":998.83,"z":235.75}', 'stash_1763236963077', 1),
	(7, 'Depo', 'everyone', NULL, NULL, '{"x":-887.92,"y":54.43,"z":49.14}', 'stash_1763236973021', 1.8),
	(8, 'Depo', 'everyone', NULL, NULL, '{"x":-844.59,"y":-35.36,"z":39.59}', 'stash_1763236983365', 1),
	(9, 'Depo', 'everyone', NULL, NULL, '{"x":560.87,"y":760.38,"z":203.17}', 'stash_1763236993862', 1),
	(10, 'Depo', 'everyone', NULL, NULL, '{"x":1394.61,"y":1149.98,"z":114.34}', 'stash_1763237005533', 1),
	(11, 'DEPO', 'everyone', NULL, NULL, '{"y":-999.57,"z":-99.01,"x":265.64}', 'stash_1763309745611', 3),
	(12, 'Depo', 'everyone', NULL, NULL, '{"x":351.93,"y":-998.79,"z":-99.2}', 'stash_1763320029850', 2);

-- Dumping structure for table coozv.ak4y_blackmarket
CREATE TABLE IF NOT EXISTS `ak4y_blackmarket` (
  `#` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `currentXP` int(11) DEFAULT NULL,
  `tasks` longtext DEFAULT NULL,
  `taskResetTime` datetime DEFAULT NULL,
  PRIMARY KEY (`#`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ak4y_blackmarket: ~0 rows (approximately)
DELETE FROM `ak4y_blackmarket`;
INSERT INTO `ak4y_blackmarket` (`#`, `citizenid`, `currentXP`, `tasks`, `taskResetTime`) VALUES
	(5, 'TEM43359', 0, '[{"rewardEXP":1500,"taken":false,"hasCount":0,"taskId":1,"requiredCount":2},{"rewardEXP":200,"taken":false,"hasCount":0,"taskId":2,"requiredCount":50},{"rewardEXP":300,"taken":false,"hasCount":0,"taskId":3,"requiredCount":8},{"rewardEXP":400,"taken":false,"hasCount":0,"taskId":4,"requiredCount":20},{"rewardEXP":500,"taken":false,"hasCount":0,"taskId":5,"requiredCount":10},{"rewardEXP":600,"taken":false,"hasCount":0,"taskId":6,"requiredCount":5},{"rewardEXP":700,"taken":false,"hasCount":0,"taskId":7,"requiredCount":20},{"rewardEXP":800,"taken":false,"hasCount":0,"taskId":8,"requiredCount":10}]', '2025-11-18 00:00:00');

-- Dumping structure for table coozv.ak4y_dailytasks
CREATE TABLE IF NOT EXISTS `ak4y_dailytasks` (
  `#` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) NOT NULL,
  `playTime` int(11) DEFAULT NULL,
  `selectedTask` varchar(50) NOT NULL,
  `taskResetTime` datetime NOT NULL,
  `done` int(11) DEFAULT 0,
  PRIMARY KEY (`#`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ak4y_dailytasks: ~0 rows (approximately)
DELETE FROM `ak4y_dailytasks`;

-- Dumping structure for table coozv.ak4y_dailywheel
CREATE TABLE IF NOT EXISTS `ak4y_dailywheel` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(255) NOT NULL DEFAULT '0',
  `nextRoll` varchar(255) NOT NULL,
  `coinAmount` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ak4y_dailywheel: ~0 rows (approximately)
DELETE FROM `ak4y_dailywheel`;

-- Dumping structure for table coozv.ak4y_dailywheel_codes
CREATE TABLE IF NOT EXISTS `ak4y_dailywheel_codes` (
  `code` varchar(255) DEFAULT NULL,
  `coinAmount` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ak4y_dailywheel_codes: ~0 rows (approximately)
DELETE FROM `ak4y_dailywheel_codes`;

-- Dumping structure for table coozv.ak4y_fishing
CREATE TABLE IF NOT EXISTS `ak4y_fishing` (
  `citizenid` varchar(255) DEFAULT NULL,
  `currentXP` int(11) DEFAULT NULL,
  `tasks` longtext DEFAULT NULL,
  `time` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.ak4y_fishing: ~3 rows (approximately)
DELETE FROM `ak4y_fishing`;
INSERT INTO `ak4y_fishing` (`citizenid`, `currentXP`, `tasks`, `time`) VALUES
	('BAF46354', 0, '[{"taken":false,"requiredCount":40,"fishName":"smallbluefish","hasCount":0},{"taken":false,"requiredCount":30,"fishName":"bluefish","hasCount":0},{"taken":false,"requiredCount":20,"fishName":"bonitosfish","hasCount":0},{"taken":false,"requiredCount":15,"fishName":"garfish","hasCount":0},{"taken":false,"requiredCount":10,"fishName":"perch","hasCount":0},{"taken":false,"requiredCount":20,"fishName":"sharkfish","hasCount":0}]', NULL),
	('HSP42891', 0, '[{"requiredCount":40,"taken":false,"fishName":"smallbluefish","hasCount":0},{"requiredCount":30,"taken":false,"fishName":"bluefish","hasCount":0},{"requiredCount":20,"taken":false,"fishName":"bonitosfish","hasCount":0},{"requiredCount":15,"taken":false,"fishName":"garfish","hasCount":0},{"requiredCount":10,"taken":false,"fishName":"perch","hasCount":0},{"requiredCount":20,"taken":false,"fishName":"sharkfish","hasCount":0}]', NULL),
	('KNK63128', 0, '[{"requiredCount":40,"fishName":"smallbluefish","hasCount":0,"taken":false},{"requiredCount":30,"fishName":"bluefish","hasCount":0,"taken":false},{"requiredCount":20,"fishName":"bonitosfish","hasCount":0,"taken":false},{"requiredCount":15,"fishName":"garfish","hasCount":0,"taken":false},{"requiredCount":10,"fishName":"perch","hasCount":0,"taken":false},{"requiredCount":20,"fishName":"sharkfish","hasCount":0,"taken":false}]', NULL),
	('BYW00072', 0, '[{"hasCount":0,"requiredCount":40,"fishName":"smallbluefish","taken":false},{"hasCount":0,"requiredCount":30,"fishName":"bluefish","taken":false},{"hasCount":0,"requiredCount":20,"fishName":"bonitosfish","taken":false},{"hasCount":0,"requiredCount":15,"fishName":"garfish","taken":false},{"hasCount":0,"requiredCount":10,"fishName":"perch","taken":false},{"hasCount":0,"requiredCount":20,"fishName":"sharkfish","taken":false}]', NULL);

-- Dumping structure for table coozv.ak4y_multichar
CREATE TABLE IF NOT EXISTS `ak4y_multichar` (
  `#` int(11) NOT NULL AUTO_INCREMENT,
  `license` varchar(255) NOT NULL DEFAULT '0',
  `charCount` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`#`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ak4y_multichar: ~0 rows (approximately)
DELETE FROM `ak4y_multichar`;

-- Dumping structure for table coozv.ak4y_multichar_codes
CREATE TABLE IF NOT EXISTS `ak4y_multichar_codes` (
  `#` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`#`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ak4y_multichar_codes: ~0 rows (approximately)
DELETE FROM `ak4y_multichar_codes`;

-- Dumping structure for table coozv.alizadev_blackmarket
CREATE TABLE IF NOT EXISTS `alizadev_blackmarket` (
  `#` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `currentXP` int(11) DEFAULT NULL,
  `tasks` longtext DEFAULT NULL,
  `taskResetTime` datetime DEFAULT NULL,
  PRIMARY KEY (`#`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.alizadev_blackmarket: ~0 rows (approximately)
DELETE FROM `alizadev_blackmarket`;

-- Dumping structure for table coozv.alizadev_unlockedslots
CREATE TABLE IF NOT EXISTS `alizadev_unlockedslots` (
  `license` longtext DEFAULT NULL,
  `slots` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.alizadev_unlockedslots: ~0 rows (approximately)
DELETE FROM `alizadev_unlockedslots`;

-- Dumping structure for table coozv.antitroll_time
CREATE TABLE IF NOT EXISTS `antitroll_time` (
  `identifier` varchar(255) NOT NULL,
  `time_left` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.antitroll_time: ~5 rows (approximately)
DELETE FROM `antitroll_time`;
INSERT INTO `antitroll_time` (`identifier`, `time_left`) VALUES
	('license:4a276580d89b21abb47aa3194548158001996daf', 39),
	('license:5d108d60a0a641aeb27d2ecfb5ed4c29de02f3c4', 0),
	('license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 0),
	('license:5dfe5f48ff9b14901a40705e7b26b2f2b42ca953', 40),
	('license:743d1329c84c50587593410bfd0f02e858c89d89', 0),
	('license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 0),
	('license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 0),
	('license:cd5b6b574e0faf91f80aefa9dd79cfe1b96720e7', 26),
	('license:f48b1763874dc421ce69e0968937af91708b8fb5', 0),
	('license:fb9bafa16730e620ba108210f4f623683935e33e', 0);

-- Dumping structure for table coozv.an_engine
CREATE TABLE IF NOT EXISTS `an_engine` (
  `plate` varchar(64) NOT NULL DEFAULT '',
  `exhaust` longtext DEFAULT NULL,
  PRIMARY KEY (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.an_engine: ~1 rows (approximately)
DELETE FROM `an_engine`;
INSERT INTO `an_engine` (`plate`, `exhaust`) VALUES
	('82DJN316', 'lg86fer812sf');

-- Dumping structure for table coozv.apartments
CREATE TABLE IF NOT EXISTS `apartments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `label` varchar(255) DEFAULT NULL,
  `citizenid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `citizenid` (`citizenid`),
  KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.apartments: ~0 rows (approximately)
DELETE FROM `apartments`;

-- Dumping structure for table coozv.auth_codes
CREATE TABLE IF NOT EXISTS `auth_codes` (
  `transaction` longtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.auth_codes: ~1 rows (approximately)
DELETE FROM `auth_codes`;
INSERT INTO `auth_codes` (`transaction`) VALUES
	('vaga');

-- Dumping structure for table coozv.av_vehicleshop
CREATE TABLE IF NOT EXISTS `av_vehicleshop` (
  `name` varchar(50) DEFAULT NULL,
  `price` int(11) DEFAULT NULL,
  `category` varchar(50) DEFAULT NULL,
  `stock` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.av_vehicleshop: ~0 rows (approximately)
DELETE FROM `av_vehicleshop`;

-- Dumping structure for table coozv.bank_accounts
CREATE TABLE IF NOT EXISTS `bank_accounts` (
  `record_id` bigint(255) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(250) DEFAULT NULL,
  `business` varchar(50) DEFAULT NULL,
  `businessid` int(11) DEFAULT NULL,
  `gangid` varchar(50) DEFAULT NULL,
  `amount` bigint(255) NOT NULL DEFAULT 0,
  `account_type` enum('Current','Savings','business','Gang') NOT NULL DEFAULT 'Current',
  PRIMARY KEY (`record_id`),
  UNIQUE KEY `citizenid` (`citizenid`),
  KEY `business` (`business`),
  KEY `businessid` (`businessid`),
  KEY `gangid` (`gangid`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- Dumping data for table coozv.bank_accounts: ~0 rows (approximately)
DELETE FROM `bank_accounts`;

-- Dumping structure for table coozv.bank_accounts_new
CREATE TABLE IF NOT EXISTS `bank_accounts_new` (
  `id` varchar(50) NOT NULL,
  `amount` int(11) DEFAULT 0,
  `transactions` longtext DEFAULT NULL,
  `auth` longtext DEFAULT NULL,
  `isFrozen` int(11) DEFAULT 0,
  `creator` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.bank_accounts_new: ~0 rows (approximately)
DELETE FROM `bank_accounts_new`;

-- Dumping structure for table coozv.bank_cards
CREATE TABLE IF NOT EXISTS `bank_cards` (
  `record_id` bigint(255) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) NOT NULL,
  `cardNumber` varchar(50) DEFAULT NULL,
  `cardPin` varchar(50) DEFAULT NULL,
  `cardActive` tinyint(4) DEFAULT 1,
  `cardLocked` tinyint(4) DEFAULT 0,
  `cardType` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`citizenid`),
  KEY `record_id` (`record_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- Dumping data for table coozv.bank_cards: ~0 rows (approximately)
DELETE FROM `bank_cards`;

-- Dumping structure for table coozv.bank_statements
CREATE TABLE IF NOT EXISTS `bank_statements` (
  `record_id` bigint(255) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `account` varchar(50) DEFAULT NULL,
  `business` varchar(50) DEFAULT NULL,
  `businessid` int(11) DEFAULT NULL,
  `gangid` varchar(50) DEFAULT NULL,
  `deposited` int(11) DEFAULT NULL,
  `withdraw` int(11) DEFAULT NULL,
  `balance` int(11) DEFAULT NULL,
  `date` varchar(50) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`record_id`),
  KEY `business` (`business`),
  KEY `businessid` (`businessid`),
  KEY `gangid` (`gangid`)
) ENGINE=InnoDB AUTO_INCREMENT=10016 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- Dumping data for table coozv.bank_statements: ~0 rows (approximately)
DELETE FROM `bank_statements`;

-- Dumping structure for table coozv.bans
CREATE TABLE IF NOT EXISTS `bans` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) DEFAULT NULL,
  `license` varchar(50) DEFAULT NULL,
  `discord` varchar(50) DEFAULT NULL,
  `ip` varchar(50) DEFAULT NULL,
  `reason` text DEFAULT NULL,
  `expire` int(11) DEFAULT NULL,
  `bannedby` varchar(255) NOT NULL DEFAULT 'LeBanhammer',
  PRIMARY KEY (`id`),
  KEY `license` (`license`),
  KEY `discord` (`discord`),
  KEY `ip` (`ip`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.bans: ~0 rows (approximately)
DELETE FROM `bans`;

-- Dumping structure for table coozv.bbv_blips
CREATE TABLE IF NOT EXISTS `bbv_blips` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `data` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=589 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.bbv_blips: ~58 rows (approximately)
DELETE FROM `bbv_blips`;
INSERT INTO `bbv_blips` (`id`, `data`) VALUES
	(526, '["Kiralık Malikane",439,0.8,"#ffffff","vec3(-84.650879, 1003.818481, 243.780823)"] -1528.9989, 119.9751, 55.6444, 177.7225'),
	(527, '["Kiralık Malikane",439,0.8,"#ffffff","vec3(-57.097778, 834.472168, 238.934082)"]'),
	(528, '["Baron Malikane",439,0.8,"#ffffff","vec3(1443.819824, 1106.703247, 113.370483)"]'),
	(529, '["Kiralık Malikane",439,0.8,"#ffffff","vec3(541.638367, 790.838501, 198.269653)"]'),
	(530, '["Kiralık Malikane",439,0.8,"#ffffff","vec3(-2655.683105, 1332.671875, 146.343628)"]'),
	(531, '["Los Santos Park Ranger Department ",60,0.8,"#32b811","vec3(383.129517, 797.085632, 194.009094)"]'),
	(532, '["Kiralık Malikane",439,0.8,"#ffffff","vec3(-1044.493164, 223.041229, 62.764771)"]'),
	(533, '["⚔️ Loss Family",439,0.8,"#ffffff","vec3(-1524.994995, 129.094849, 69.463013)"]'),
	(534, '["Kiralık Malikane",439,0.8,"#ffffff","vec3(-1779.648438, 435.570557, 126.807388)"]'),
	(535, '["Kiralık Malikane",439,0.8,"#ffffff","vec3(-851.442078, -28.561707, 49.943459)"]'),
	(536, '["Kiralık Malikane",439,0.8,"#ffffff","vec3(-883.578613, 53.277924, 57.839767)"]'),
	(537, '["Hastane",61,0.8,"#00ff2a","vec3(306.757263, -588.656677, 56.726074)"]'),
	(539, '["Megamall",124,0.5,"#f01000","vec3(72.394897, -1769.262817, 34.303101)"]'),
	(540, '["East Side Ballas",84,0.5,"#7f0bde","vec3(111.357300, -1943.883057, 19.783447)"]'),
	(541, '[" Los Santos Vagos",84,0.5,"#ffff3d","vec3(318.411560, -2072.109131, 17.744263)"]'),
	(542, '["Crips",84,0.5,"#0000ff","vec3(-28.775879, -1517.304565, 33.600304)"]'),
	(543, '["The Families",84,0.5,"#006915","vec3(-129.309265, -1618.238892, 31.515625)"]'),
	(544, '["Los Aztecaz",84,0.5,"#00eeff","vec3(434.528168, -1516.966797, 28.283081)"]'),
	(545, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-911.91, -451.08, 39.61)"]'),
	(546, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-268.911, -956.445, 31.223)"]'),
	(547, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-47.49, -585.85, 37.95)"]'),
	(548, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-911.91, -451.08, 39.61)"]'),
	(549, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-933.50, -384.39, 38.96)"]'),
	(550, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-1447.31, -537.77, 34.74)"]'),
	(551, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-617.75, 44.39, 43.59)"]'),
	(552, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-773.88, 311.73, 85.70)"]'),
	(553, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-468.84, -678.36, 32.72)"]'),
	(554, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-810.06, -978.83, 14.22)"]'),
	(555, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(292.25, -162.46, 64.62)"]'),
	(556, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-169.286, 486.4938, 137.4436)"]'),
	(557, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(340.9412, 437.1798, 149.3925)"]'),
	(558, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(373.023, 416.105, 145.7006)"]'),
	(559, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-676.127, 588.612, 145.1698)"]'),
	(560, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-763.107, 615.906, 144.1401)"]'),
	(561, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-857.798, 682.563, 152.6529)"]'),
	(562, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(120.500, 549.952, 184.097)"]'),
	(563, '["Kiralık Ev",40,0.5,"#ffcc00","vec3(-1288.000, 440.748, 97.69459)"]'),
	(565, '["Emlak",475,0.5,"#00ff00","vec3(-115.121, -605.403, 36.281)"]'),
	(566, '["Emlak",475,0.5,"#00ff00","vec3(-1371.115, -503.707, 33.157)"]'),
	(567, '["Emlak",475,0.5,"#00ff00","vec3(-1581.242, -558.449, 34.953)"]'),
	(568, '["Cocaine Lockup",497,0.5,"#ff0000","vec3(51.92, 6486.31, 31.43)"]'),
	(569, '["Counterfeit Cash Factory",500,0.5,"#ff0000","vec3(-1166.843, -1386.159, 4.971)"]'),
	(570, '["Document Forgery Office",498,0.5,"#ff0000","vec3(1644.294, 4857.999, 41.011)"]'),
	(571, '["Meth Lab",499,0.5,"#ff0000","vec3(1181.816, -3113.832, 6.028)"]'),
	(572, '["Facility",590,0.5,"#00ffff","vec3(1.79, 6832.14, 15.82)"]'),
	(573, '["Bunker",557,0.5,"#00ffff","vec3(1571.97, 2234.43, 79.06)"]'),
	(574, '["Garage",357,0.5,"#ffff00","vec3(507.87, -1496.00, 29.20)"]'),
	(575, '["Garage",357,0.5,"#ffff00","vec3(639.16, 2774.31, 41.90)"]'),
	(576, '["Hangar",569,0.5,"#00ffff","vec3(-1139.08, -3387.34, 13.94)"]'),
	(577, '["Vehicle Warehouse",524,0.5,"#00ffff","vec3(-668.50, -2385.95, 13.93)"]'),
	(578, '["Crate Warehouse",473,0.5,"#00ffff","vec3(926.66, -1560.23, 30.74)"]'),
	(579, '["Crate Warehouse",473,0.5,"#00ffff","vec3(-324.90, -1356.23, 31.30)"]'),
	(580, '["Crate Warehouse",473,0.5,"#00ffff","vec3(274.54, -3015.40, 5.70)"]'),
	(581, '["Clubhouse",492,0.5,"#00ffff","vec3(973.487, -101.972, 74.850)"]'),
	(582, '["Clubhouse",492,0.5,"#00ffff","vec3(-38.47, 6419.88, 31.49)"]'),
	(583, '["Clubhouse",492,0.5,"#00ffff","vec3(1737.78, 3709.592, 34.14)"]'),
	(584, '["Nightclub",614,0.5,"#00ffff","vec3(346.02, -977.81, 29.37)"]'),
	(585, '["Aircraft Carrier",16,0.5,"#00ffff","vec3(3082.31, -4717.11, 15.26)"]');

-- Dumping structure for table coozv.blessed_tunershop
CREATE TABLE IF NOT EXISTS `blessed_tunershop` (
  `#` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `plate` varchar(50) DEFAULT NULL,
  `engine` varchar(50) DEFAULT NULL,
  `wheel` longtext DEFAULT NULL,
  `driftkit` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`#`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.blessed_tunershop: ~0 rows (approximately)
DELETE FROM `blessed_tunershop`;

-- Dumping structure for table coozv.boombox_songs
CREATE TABLE IF NOT EXISTS `boombox_songs` (
  `citizenid` varchar(64) NOT NULL,
  `label` varchar(30) NOT NULL,
  `link` longtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.boombox_songs: ~0 rows (approximately)
DELETE FROM `boombox_songs`;

-- Dumping structure for table coozv.business_owners
CREATE TABLE IF NOT EXISTS `business_owners` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) NOT NULL,
  `vehicle_model` varchar(50) NOT NULL,
  `x` float NOT NULL,
  `y` float NOT NULL,
  `z` float NOT NULL,
  `balance` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.business_owners: ~0 rows (approximately)
DELETE FROM `business_owners`;

-- Dumping structure for table coozv.casino_cache
CREATE TABLE IF NOT EXISTS `casino_cache` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `Settings` text CHARACTER SET utf8mb4 COLLATE utf8mb4_slovak_ci NOT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.casino_cache: ~0 rows (approximately)
DELETE FROM `casino_cache`;
INSERT INTO `casino_cache` (`ID`, `Settings`) VALUES
	(1, '{"PodiumPriceProps":{"pearlescentColor":111,"modAirFilter":-1,"plateIndex":0,"engineHealth":1,"modFender":-1,"color1":111,"modArchCover":-1,"modBackWheels":-1,"modTrunk":-1,"extras":{"1":false},"modFrontWheels":-1,"modBrakes":2,"modHorns":57,"modTank":-1,"modArmor":4,"xenonColor":12,"modGrille":-1,"model":819197656,"fuelLevel":1,"modHood":0,"modSteeringWheel":-1,"color2":111,"modExhaust":0,"bodyHealth":1,"modPlateHolder":-1,"modTrimB":-1,"modSeats":-1,"modSuspension":-1,"modWindows":-1,"dirtLevel":1,"modDoorSpeaker":-1,"modAPlate":-1,"wheels":5,"modRoof":2,"modDial":-1,"modSmokeEnabled":1,"modFrontBumper":1,"modSpeakers":-1,"modTransmission":2,"modXenon":1,"modStruts":-1,"neonEnabled":[false,false,false,false],"modSpoilers":3,"tyreSmokeColor":[1,1,1],"windowTint":6,"modLivery":1,"modFrame":-1,"modEngine":3,"wheelColor":111,"modVanityPlate":-1,"modAerials":-1,"podiumName":"SHEAVA","modTrimA":-1,"modRearBumper":0,"modSideSkirt":-1,"modOrnaments":-1,"tankHealth":1,"modRightFender":-1,"modShifterLeavers":-1,"modEngineBlock":-1,"neonColor":[255,0,255],"modHydrolic":-1,"modDashboard":-1,"modTurbo":1}}');

-- Dumping structure for table coozv.casino_players
CREATE TABLE IF NOT EXISTS `casino_players` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(128) NOT NULL,
  `properties` longtext NOT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.casino_players: ~6 rows (approximately)
DELETE FROM `casino_players`;
INSERT INTO `casino_players` (`ID`, `identifier`, `properties`) VALUES
	(35, 'WKL81749', '{"firstTime":false,"luckyWheelCooldownUntil":1735587618,"vipUntil":0,"logins":7,"activeTime":331365,"chips":0,"lastSave":3944239,"lastDailyBonus":"12/29/24"}'),
	(36, 'TEM43359', '{"vipUntil":0,"lastSave":19077743,"firstTime":false,"lastDailyBonus":"12/30/24","luckyWheelCooldownUntil":1735757317,"logins":3,"activeTime":18732389,"chips":15460}'),
	(37, 'SXF16791', '{"firstTime":false,"activeTime":1527339,"lastSave":5143525,"luckyWheelCooldownUntil":1735961132,"lastDailyBonus":"01/03/25","logins":1,"vipUntil":0,"chips":9250}'),
	(38, 'MZH23055', '{"vipUntil":0,"luckyWheelCooldownUntil":1736075817,"lastSave":30605483,"activeTime":29805307,"chips":0,"firstTime":false,"logins":1}'),
	(39, 'APB01636', '{"chips":1020,"logins":3,"luckyWheelCooldownUntil":1736338751,"firstTime":false,"vipUntil":0,"activeTime":3376572,"lastSave":3439854}'),
	(40, 'ZDF30906', '{"lastSave":4092930,"firstTime":false,"lastDailyBonus":"01/07/25","luckyWheelCooldownUntil":1736339799,"vipUntil":0,"logins":2,"activeTime":464121}');

-- Dumping structure for table coozv.communityservice
CREATE TABLE IF NOT EXISTS `communityservice` (
  `identifier` varchar(100) NOT NULL,
  `actions_remaining` int(10) NOT NULL,
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.communityservice: ~0 rows (approximately)
DELETE FROM `communityservice`;

-- Dumping structure for table coozv.crypto
CREATE TABLE IF NOT EXISTS `crypto` (
  `crypto` varchar(50) NOT NULL DEFAULT 'qbit',
  `worth` int(11) NOT NULL DEFAULT 0,
  `history` text DEFAULT NULL,
  PRIMARY KEY (`crypto`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.crypto: ~0 rows (approximately)
DELETE FROM `crypto`;

-- Dumping structure for table coozv.crypto_transactions
CREATE TABLE IF NOT EXISTS `crypto_transactions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `title` varchar(50) DEFAULT NULL,
  `message` varchar(50) DEFAULT NULL,
  `date` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `citizenid` (`citizenid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.crypto_transactions: ~0 rows (approximately)
DELETE FROM `crypto_transactions`;

-- Dumping structure for table coozv.dailygifts
CREATE TABLE IF NOT EXISTS `dailygifts` (
  `identifier` longtext DEFAULT NULL,
  `index` int(11) DEFAULT NULL,
  `collected` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.dailygifts: ~0 rows (approximately)
DELETE FROM `dailygifts`;

-- Dumping structure for table coozv.darkchat_messages
CREATE TABLE IF NOT EXISTS `darkchat_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `password` text NOT NULL,
  `owner` varchar(50) DEFAULT NULL,
  `name` varchar(50) DEFAULT '',
  `messages` text DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.darkchat_messages: ~0 rows (approximately)
DELETE FROM `darkchat_messages`;

-- Dumping structure for table coozv.dealers
CREATE TABLE IF NOT EXISTS `dealers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL DEFAULT '0',
  `coords` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `time` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `createdby` varchar(50) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.dealers: ~0 rows (approximately)
DELETE FROM `dealers`;

-- Dumping structure for table coozv.depolar
CREATE TABLE IF NOT EXISTS `depolar` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ad` varchar(255) NOT NULL,
  `sifre` varchar(255) NOT NULL,
  `num` varchar(255) DEFAULT NULL,
  `identifier` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- Dumping data for table coozv.depolar: ~0 rows (approximately)
DELETE FROM `depolar`;

-- Dumping structure for table coozv.dream_jobs
CREATE TABLE IF NOT EXISTS `dream_jobs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  `experience` int(11) NOT NULL,
  `pickaxe` int(11) NOT NULL,
  `job` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.dream_jobs: ~17 rows (approximately)
DELETE FROM `dream_jobs`;
INSERT INTO `dream_jobs` (`id`, `identifier`, `experience`, `pickaxe`, `job`) VALUES
	(9, 'APB01636', 0, 1, 'miner'),
	(10, 'FWI31344', 0, 1, 'miner'),
	(11, 'IVE21097', 0, 1, 'miner'),
	(12, 'CPQ84937', 0, 1, 'miner'),
	(13, 'EFY95341', 0, 1, 'miner'),
	(14, 'SSQ54649', 0, 1, 'miner'),
	(15, 'OWY18016', 0, 1, 'miner'),
	(16, 'PDN28580', 0, 1, 'miner'),
	(17, 'DFS18015', 0, 1, 'miner'),
	(18, 'DDI30587', 0, 1, 'miner'),
	(19, 'NDF00315', 0, 1, 'miner'),
	(20, 'HFY79706', 0, 1, 'miner'),
	(21, 'KEE73782', 0, 1, 'miner'),
	(22, 'DHW44817', 0, 1, 'miner'),
	(23, 'CKY95174', 0, 1, 'miner'),
	(24, 'UZF83326', 0, 1, 'miner'),
	(25, 'CEE84594', 0, 1, 'miner');

-- Dumping structure for table coozv.favorite_channels
CREATE TABLE IF NOT EXISTS `favorite_channels` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `player_id` varchar(50) DEFAULT NULL,
  `frequency` float(5,1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.favorite_channels: ~0 rows (approximately)
DELETE FROM `favorite_channels`;

-- Dumping structure for table coozv.frkn_fuel
CREATE TABLE IF NOT EXISTS `frkn_fuel` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` varchar(50) DEFAULT NULL,
  `fuel_name` varchar(50) NOT NULL,
  `desc` longtext NOT NULL,
  `img` longtext NOT NULL,
  `price` varchar(50) DEFAULT NULL,
  `ownership` int(11) DEFAULT 0,
  `rate` varchar(50) DEFAULT NULL,
  `owner_name` varchar(50) DEFAULT 'Furkan',
  `employees` longtext DEFAULT '[]',
  `gas_prop` longtext DEFAULT '[]',
  `gas_netID` int(11) DEFAULT 0,
  `gas_price` longtext DEFAULT '0',
  `gas_tanker` longtext DEFAULT '0',
  `gas_data` longtext DEFAULT '0',
  `gas_level` longtext DEFAULT '{"level":1,"xp":0}',
  `gas_safe_money` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=194 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.frkn_fuel: ~27 rows (approximately)
DELETE FROM `frkn_fuel`;
INSERT INTO `frkn_fuel` (`id`, `owner`, `fuel_name`, `desc`, `img`, `price`, `ownership`, `rate`, `owner_name`, `employees`, `gas_prop`, `gas_netID`, `gas_price`, `gas_tanker`, `gas_data`, `gas_level`, `gas_safe_money`) VALUES
	(1, 'Maze Arena', 'Gas Station 2', 'We\'re here to ensure your journeys are safe and comfortable. Offering your vehicles the high-quality fuel they need at the most competitive prices. Customer satisfaction and vehicle performance are our priorities. Just take the wheel and leave the rest to us', '../images/stationimg1.png', '15060', 1, '1.5', 'Frkn', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(2, 'Maze Arena', 'Gas Station 2', 'Every journey has a story, and a quality fuel is essential to tell that story best. Our station not only provides your vehicles with the ideal fuel but also welcomes you in a modern and comfortable atmosphere. We\'re here to make your journey even more enjoyable', '../images/stationimg1.png', '34560', 0, '2.5', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(3, 'Maze Arena', 'Gas Station 3', 'Meeting your fuel needs is just a step away. Our station offers a variety of fuel types and quality fuel options, along with specialized care for your vehicles. When you stop by, you\'re not only filling up with fuel but also enjoying top-notch service', '../images/stationimg1.png', '25250', 0, '2.2', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(4, 'Maze Arena', 'Gas Station 4', ' you\'re looking to make your journeys more economical and efficient, we\'re waiting for you at our station. With suitable fuel options for your vehicles and specially designed fuel tanks, you can enhance your performance and save on fuel. Safe travels', '../images/stationimg1.png', '34555', 0, '2.8', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(5, 'Maze Arena', 'Gas Station 5', 'Every journey is an experience, and a quality fuel enhances that experience. Our station provides your vehicles with the best fuel while offering you a comfortable rest stop. We\'re here to make your journeys safer and more enjoyable', '../images/stationimg1.png', '45620', 0, '3.5', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(6, 'Maze Arena', 'Gas Station 6', 'For longer and more enjoyable journeys, our station awaits. We provide the energy your vehicles need with our quality fuel options and modern facilities. Join us to make your journeys more comfortable and efficient', '../images/stationimg1.png', '21950', 0, '2.5', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(7, 'Maze Arena', 'Gas Station 7', 'We\'re here with you at every stage of your journey. Alongside offering the most suitable fuel for your vehicles, our station provides you with a comfortable resting area. With our top-notch service, we\'re making your journeys smoother and more enjoyable.', '../images/stationimg1.png', '28020', 0, '2.4', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(8, 'Maze Arena', 'Gas Station 8', 'Providing the energy your vehicles need is our job. At our station, we offer different fuel types and quality options tailored to your vehicles. Just visit our station, and leave the rest to us', '../images/stationimg1.png', '45975', 0, '3.7', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(9, 'Maze Arena', 'Gas Station 9', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '65750', 1, '4.6', 'FURKAN', '[]', '[]', 76, '{"nitro":155,"basic":15,"":5,"premium":45,"electric":35}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(10, 'Maze Arena', 'Gas Station 10', 'We\'re here to make your journeys special and enjoyable. Our station offers various fuel types and high-quality fuel to provide the best care for your vehicles. Let\'s meet at our station to make your journeys more comfortable and safer.', '../images/stationimg1.png', '84250', 0, '5', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(11, 'Maze Arena', 'Gas Station 11', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '65420', 0, '4.7', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(12, 'Maze Arena', 'Gas Station 12', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '75400', 0, '4.8', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(13, 'Maze Arena', 'Gas Station 13', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '32500', 0, '3.6', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(14, 'Maze Arena', 'Gas Station 14', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '78500', 0, '4.9', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(15, 'Maze Arena', 'Gas Station 15', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '34000', 0, '3.4', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(16, 'Maze Arena', 'Gas Station 16', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '67000', 0, '4.7', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(17, 'Maze Arena', 'Gas Station 17', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '76500', 0, '4.9', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(18, 'Maze Arena', 'Gas Station 18', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '98500', 0, '5', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(19, 'Maze Arena', 'Gas Station 19', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '45000', 0, '4.2', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(20, 'Maze Arena', 'Gas Station 20', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '23550', 0, '2.1', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(21, 'Maze Arena', 'Gas Station 21\r\n', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '41255', 0, '3.2', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(22, 'Maze Arena', 'Gas Station 22', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '45500', 0, '3.3', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(23, 'Maze Arena', 'Gas Station 23', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '65500', 0, '3.7', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(24, 'Maze Arena', 'Gas Station 24', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '45000', 0, '3.4', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(25, 'Maze Arena', 'Gas Station 25', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '23500', 0, '2.8', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(26, 'Maze Arena', 'Gas Station 26', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '47000', 0, '3.5', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0),
	(27, 'Maze Arena', 'Gas Station 27', 'Your vehicles\' peak performance is our goal. Our station has specially designed fuel options and a modern facility to provide the care your vehicles need. Just set out on your journey and leave the rest to us.', '../images/stationimg1.png', '53500', 0, '3.9', 'There\'s no owner here', '[]', '[]', 85, '{"premium":12,"nitro":8,"basic":5,"electric":15}', '{"premium":100,"nitro":"100","basic":100,"electric":100}', '0', '{"level":1,"xp":0}', 0);

-- Dumping structure for table coozv.fuel_stations
CREATE TABLE IF NOT EXISTS `fuel_stations` (
  `location` int(11) NOT NULL,
  `owned` int(11) DEFAULT NULL,
  `owner` varchar(50) DEFAULT NULL,
  `fuel` int(11) DEFAULT NULL,
  `fuelprice` int(11) DEFAULT NULL,
  `balance` int(255) DEFAULT NULL,
  `label` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`location`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.fuel_stations: ~27 rows (approximately)
DELETE FROM `fuel_stations`;
INSERT INTO `fuel_stations` (`location`, `owned`, `owner`, `fuel`, `fuelprice`, `balance`, `label`) VALUES
	(1, 0, '0', 100000, 3, 0, 'Davis Avenue Ron'),
	(2, 0, '0', 100000, 3, 0, 'Grove Street LTD'),
	(3, 0, '0', 100000, 3, 0, 'Dutch London Xero'),
	(4, 0, '0', 100000, 3, 0, 'Little Seoul LTD'),
	(5, 0, '0', 100000, 3, 0, 'Strawberry Ave Xero'),
	(6, 0, '0', 100000, 3, 0, 'Popular Street Ron'),
	(7, 0, '0', 99997, 3, 5, 'Capital Blvd Ron'),
	(8, 0, '0', 100000, 3, 0, 'Mirror Park LTD'),
	(9, 0, '0', 99999, 3, 1, 'Clinton Ave Globe Oil'),
	(10, 0, '0', 100000, 3, 0, 'North Rockford Ron'),
	(11, 0, '0', 99950, 3, 95, 'Great Ocean Xero'),
	(12, 0, '0', 100000, 3, 0, 'Paleto Blvd Xero'),
	(13, 0, '0', 100000, 3, 0, 'Paleto Ron'),
	(14, 0, '0', 100000, 3, 0, 'Paleto Globe Oil'),
	(15, 0, '0', 100000, 3, 0, 'Grapeseed LTD'),
	(16, 0, '0', 100000, 3, 0, 'Sandy Shores Xero'),
	(17, 0, '0', 100000, 3, 0, 'Sandy Shores Globe Oil'),
	(18, 0, '0', 100000, 3, 0, 'Senora Freeway Xero'),
	(19, 0, '0', 100000, 3, 0, 'Harmony Globe Oil'),
	(20, 0, '0', 100000, 3, 0, 'Route 68 Globe Oil'),
	(21, 0, '0', 100000, 3, 0, 'Route 68 Workshop Globe O'),
	(22, 0, '0', 100000, 3, 0, 'Route 68 Xero'),
	(23, 0, '0', 100000, 3, 0, 'Route 68 Ron'),
	(24, 0, '0', 100000, 3, 0, 'Rex\'s Diner Globe Oil'),
	(25, 0, '0', 100000, 3, 0, 'Palmino Freeway Ron'),
	(26, 0, '0', 100000, 3, 0, 'North Rockford LTD'),
	(27, 0, '0', 100000, 3, 0, 'Alta Street Globe Oil');

-- Dumping structure for table coozv.gksphone_app_chat
CREATE TABLE IF NOT EXISTS `gksphone_app_chat` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sendcid` longtext NOT NULL,
  `channel` varchar(20) NOT NULL,
  `message` varchar(255) NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=807 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_app_chat: ~0 rows (approximately)
DELETE FROM `gksphone_app_chat`;

-- Dumping structure for table coozv.gksphone_bank_transfer
CREATE TABLE IF NOT EXISTS `gksphone_bank_transfer` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` int(11) NOT NULL,
  `identifier` longtext DEFAULT NULL,
  `price` longtext NOT NULL,
  `name` longtext NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=161150 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.gksphone_bank_transfer: ~30 rows (approximately)
DELETE FROM `gksphone_bank_transfer`;
INSERT INTO `gksphone_bank_transfer` (`id`, `type`, `identifier`, `price`, `name`, `time`) VALUES
	(161120, 1, 'QDS83432', '100', 'Aracınızı çağırdınız $100', '2024-12-12 17:24:29'),
	(161121, 1, 'WHZ71107', '100', 'Aracınızı çağırdınız $100', '2024-12-12 23:44:31'),
	(161122, 1, 'QDS83432', '100', 'Aracınızı çağırdınız $100', '2024-12-13 01:58:25'),
	(161123, 1, 'QDS83432', '100', 'Aracınızı çağırdınız $100', '2024-12-13 02:42:06'),
	(161124, 1, 'QDS83432', '100', 'Aracınızı çağırdınız $100', '2024-12-13 02:45:40'),
	(161125, 1, 'QDS83432', '100', 'Aracınızı çağırdınız $100', '2024-12-13 02:46:41'),
	(161126, 1, 'HWH38496', '100', 'Aracınızı çağırdınız $100', '2024-12-13 14:50:44'),
	(161127, 1, 'HWA90637', '100', 'Aracınızı çağırdınız $100', '2024-12-13 22:18:00'),
	(161128, 1, 'CFH18616', '100', 'Aracınızı çağırdınız $100', '2024-12-13 22:18:07'),
	(161129, 1, 'HWH38496', '100', 'Aracınızı çağırdınız $100', '2024-12-13 22:18:09'),
	(161130, 1, 'HWA90637', '100', 'Aracınızı çağırdınız $100', '2024-12-13 22:18:24'),
	(161131, 1, 'HWH38496', '100', 'Aracınızı çağırdınız $100', '2024-12-13 22:18:27'),
	(161132, 1, 'HWH38496', '100', 'Aracınızı çağırdınız $100', '2024-12-13 22:18:46'),
	(161133, 1, 'HWA90637', '100', 'Aracınızı çağırdınız $100', '2024-12-13 22:19:01'),
	(161134, 1, 'HWH38496', '100', 'Aracınızı çağırdınız $100', '2024-12-13 22:19:09'),
	(161135, 1, 'HWA90637', '100', 'Aracınızı çağırdınız $100', '2024-12-14 03:10:01'),
	(161136, 1, 'CFM02968', '100', 'Aracınızı çağırdınız $100', '2024-12-17 22:19:45'),
	(161137, 1, 'BCT78863', '100', 'Aracınızı çağırdınız $100', '2024-12-19 15:12:40'),
	(161138, 1, 'BCT78863', '100', 'Aracınızı çağırdınız $100', '2024-12-19 15:17:43'),
	(161139, 1, 'HWA90637', '100', 'You bought your car for $100', '2024-12-30 04:59:18'),
	(161140, 1, 'NEJ17289', '100', 'Aracınızı çağırdınız $100', '2025-01-06 10:23:06'),
	(161141, 1, 'NEJ17289', '100', 'Aracınızı çağırdınız $100', '2025-01-06 12:33:54'),
	(161142, 1, 'APB01636', '100', 'Aracınızı çağırdınız $100', '2025-01-07 12:28:08'),
	(161143, 1, 'APB01636', '100', 'Aracınızı çağırdınız $100', '2025-01-07 13:51:25'),
	(161144, 1, 'HFY79706', '100', 'Aracınızı çağırdınız $100', '2025-03-09 03:53:23'),
	(161145, 1, 'HFY79706', '100', 'Aracınızı çağırdınız $100', '2025-03-09 04:11:55'),
	(161146, 1, 'DHW44817', '100', 'Aracınızı çağırdınız $100', '2025-03-09 05:54:28'),
	(161147, 1, 'CKY95174', '100', 'Aracınızı çağırdınız $100', '2025-03-09 05:57:38'),
	(161148, 1, 'AHY06468', '100', 'Aracınızı çağırdınız $100', '2025-03-18 22:47:09'),
	(161149, 1, 'AHY06468', '100', 'Aracınızı çağırdınız $100', '2025-03-19 15:55:06');

-- Dumping structure for table coozv.gksphone_blockednumber
CREATE TABLE IF NOT EXISTS `gksphone_blockednumber` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` longtext NOT NULL,
  `hex` longtext NOT NULL,
  `number` longtext NOT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1755 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.gksphone_blockednumber: ~0 rows (approximately)
DELETE FROM `gksphone_blockednumber`;

-- Dumping structure for table coozv.gksphone_calls
CREATE TABLE IF NOT EXISTS `gksphone_calls` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` longtext NOT NULL COMMENT 'Num tel proprio',
  `num` longtext NOT NULL COMMENT 'Num reférence du contact',
  `incoming` int(11) NOT NULL COMMENT 'Défini si on est à l''origine de l''appels',
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  `accepts` int(11) NOT NULL COMMENT 'Appels accepter ou pas',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=302759 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_calls: ~0 rows (approximately)
DELETE FROM `gksphone_calls`;

-- Dumping structure for table coozv.gksphone_ebay
CREATE TABLE IF NOT EXISTS `gksphone_ebay` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` longtext NOT NULL,
  `price` int(11) DEFAULT 0,
  `count` int(11) NOT NULL,
  `item` longtext NOT NULL,
  `kapat` varchar(50) DEFAULT 'false',
  `adet` int(11) DEFAULT 0,
  `cid` varchar(9999) DEFAULT NULL,
  `store` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.gksphone_ebay: ~0 rows (approximately)
DELETE FROM `gksphone_ebay`;

-- Dumping structure for table coozv.gksphone_gallery
CREATE TABLE IF NOT EXISTS `gksphone_gallery` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hex` longtext NOT NULL,
  `image` longtext NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=7471 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.gksphone_gallery: ~0 rows (approximately)
DELETE FROM `gksphone_gallery`;
INSERT INTO `gksphone_gallery` (`id`, `hex`, `image`, `time`) VALUES
	(7470, 'ZDF30906', 'https://cdn.discordapp.com/attachments/1324062255251456113/1324482121536110734/screenshot.jpg?ex=67784f99&is=6776fe19&hm=bcfce5a5c4abe78b32b96634c84abde0f782fc598c8032bf47304cf03d7fbacc&', '2025-01-02 20:59:07');

-- Dumping structure for table coozv.gksphone_gameleaderboard
CREATE TABLE IF NOT EXISTS `gksphone_gameleaderboard` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `tetris` int(11) NOT NULL DEFAULT 0,
  `snake` int(11) NOT NULL DEFAULT 0,
  `twenty` int(11) NOT NULL DEFAULT 0,
  `owner` varchar(500) DEFAULT NULL,
  `name` varchar(500) DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE KEY `owner` (`owner`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=541 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_gameleaderboard: ~0 rows (approximately)
DELETE FROM `gksphone_gameleaderboard`;
INSERT INTO `gksphone_gameleaderboard` (`id`, `tetris`, `snake`, `twenty`, `owner`, `name`) VALUES
	(540, 103, 1, 2960, 'UAW69493', 'Ümitcan  Uygun');

-- Dumping structure for table coozv.gksphone_gotur
CREATE TABLE IF NOT EXISTS `gksphone_gotur` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` longtext NOT NULL,
  `price` int(11) DEFAULT 0,
  `count` int(11) NOT NULL,
  `item` longtext NOT NULL,
  `kapat` varchar(50) DEFAULT 'false',
  `adet` int(11) DEFAULT 0,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.gksphone_gotur: ~0 rows (approximately)
DELETE FROM `gksphone_gotur`;

-- Dumping structure for table coozv.gksphone_gps
CREATE TABLE IF NOT EXISTS `gksphone_gps` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hex` longtext NOT NULL,
  `nott` longtext DEFAULT NULL,
  `gps` longtext DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=419 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.gksphone_gps: ~0 rows (approximately)
DELETE FROM `gksphone_gps`;

-- Dumping structure for table coozv.gksphone_group_message
CREATE TABLE IF NOT EXISTS `gksphone_group_message` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `groupid` int(11) NOT NULL,
  `owner` longtext NOT NULL,
  `ownerphone` varchar(50) NOT NULL,
  `groupname` varchar(255) NOT NULL,
  `messages` longtext NOT NULL,
  `contacts` longtext NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`) USING BTREE,
  KEY `groupid` (`groupid`) USING BTREE,
  CONSTRAINT `FK_phonegroupmessage` FOREIGN KEY (`groupid`) REFERENCES `gksphone_messages_group` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=577 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.gksphone_group_message: ~0 rows (approximately)
DELETE FROM `gksphone_group_message`;

-- Dumping structure for table coozv.gksphone_instocomment
CREATE TABLE IF NOT EXISTS `gksphone_instocomment` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `messageid` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL DEFAULT 0,
  `message` longtext NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_instocomment: ~0 rows (approximately)
DELETE FROM `gksphone_instocomment`;

-- Dumping structure for table coozv.gksphone_insto_accounts
CREATE TABLE IF NOT EXISTS `gksphone_insto_accounts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `forename` longtext NOT NULL,
  `surname` longtext NOT NULL,
  `username` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
  `password` longtext NOT NULL,
  `avatar_url` longtext DEFAULT NULL,
  `takip` longtext DEFAULT NULL,
  `averify` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE KEY `username` (`username`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1510 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- Dumping data for table coozv.gksphone_insto_accounts: ~0 rows (approximately)
DELETE FROM `gksphone_insto_accounts`;
INSERT INTO `gksphone_insto_accounts` (`id`, `forename`, `surname`, `username`, `password`, `avatar_url`, `takip`, `averify`) VALUES
	(1509, 'mesut', 'güneri', 'mesut344244', 'yemliha2005', '/html/static/img/icons/valeuser.png', NULL, 0);

-- Dumping structure for table coozv.gksphone_insto_instas
CREATE TABLE IF NOT EXISTS `gksphone_insto_instas` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `authorId` int(11) NOT NULL,
  `realUser` longtext DEFAULT NULL,
  `message` longtext NOT NULL,
  `image` longtext NOT NULL,
  `filters` longtext NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  `likes` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `FK_gksphone_insto_instas_gksphone_insto_accounts` (`authorId`),
  CONSTRAINT `FK_gksphone_insto_instas_gksphone_insto_accounts` FOREIGN KEY (`authorId`) REFERENCES `gksphone_insto_accounts` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=375 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.gksphone_insto_instas: ~0 rows (approximately)
DELETE FROM `gksphone_insto_instas`;

-- Dumping structure for table coozv.gksphone_insto_likes
CREATE TABLE IF NOT EXISTS `gksphone_insto_likes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `authorId` int(11) DEFAULT NULL,
  `inapId` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `FK_gksphone_insto_likes_gksphone_insto_accounts` (`authorId`),
  KEY `FK_gksphone_insto_likes_gksphone_insto_instas` (`inapId`),
  CONSTRAINT `FK_gksphone_insto_likes_gksphone_insto_accounts` FOREIGN KEY (`authorId`) REFERENCES `gksphone_insto_accounts` (`id`),
  CONSTRAINT `FK_gksphone_insto_likes_gksphone_insto_instas` FOREIGN KEY (`inapId`) REFERENCES `gksphone_insto_instas` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=470 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- Dumping data for table coozv.gksphone_insto_likes: ~0 rows (approximately)
DELETE FROM `gksphone_insto_likes`;

-- Dumping structure for table coozv.gksphone_insto_story
CREATE TABLE IF NOT EXISTS `gksphone_insto_story` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `authorId` int(11) NOT NULL,
  `realUser` longtext DEFAULT NULL,
  `stories` longtext NOT NULL,
  `isRead` varchar(256) NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  `likes` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`) USING BTREE,
  KEY `FK_gksphone_insto_story_gksphone_insto_accounts` (`authorId`) USING BTREE,
  CONSTRAINT `FK_gksphone_insto_story_gksphone_insto_accounts` FOREIGN KEY (`authorId`) REFERENCES `gksphone_insto_accounts` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.gksphone_insto_story: ~0 rows (approximately)
DELETE FROM `gksphone_insto_story`;

-- Dumping structure for table coozv.gksphone_invoices
CREATE TABLE IF NOT EXISTS `gksphone_invoices` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `amount` int(11) NOT NULL DEFAULT 0,
  `society` tinytext DEFAULT NULL,
  `sender` varchar(50) DEFAULT NULL,
  `sendercitizenid` varchar(50) DEFAULT NULL,
  `label` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  KEY `citizenid` (`citizenid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=4093 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_invoices: ~2 rows (approximately)
DELETE FROM `gksphone_invoices`;
INSERT INTO `gksphone_invoices` (`id`, `citizenid`, `amount`, `society`, `sender`, `sendercitizenid`, `label`) VALUES
	(4091, 'XRS51596', 100000, 'police', 'Rıco', 'QOU80537', NULL),
	(4092, 'DVD07998', 1000, 'police', 'Boklu ', 'FNU16178', NULL);

-- Dumping structure for table coozv.gksphone_job_message
CREATE TABLE IF NOT EXISTS `gksphone_job_message` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` longtext NOT NULL,
  `number` varchar(50) NOT NULL,
  `message` longtext NOT NULL,
  `photo` longtext DEFAULT NULL,
  `gps` varchar(255) NOT NULL,
  `owner` int(11) NOT NULL DEFAULT 0,
  `jobm` varchar(255) NOT NULL,
  `anon` varchar(50) NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1793 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.gksphone_job_message: ~0 rows (approximately)
DELETE FROM `gksphone_job_message`;

-- Dumping structure for table coozv.gksphone_mails
CREATE TABLE IF NOT EXISTS `gksphone_mails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(255) NOT NULL DEFAULT '0',
  `sender` varchar(255) NOT NULL DEFAULT '0',
  `subject` varchar(255) NOT NULL DEFAULT '0',
  `image` text DEFAULT NULL,
  `message` text NOT NULL,
  `button` text DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=97953 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_mails: ~4 rows (approximately)
DELETE FROM `gksphone_mails`;
INSERT INTO `gksphone_mails` (`id`, `citizenid`, `sender`, `subject`, `image`, `message`, `button`, `time`) VALUES
	(97949, 'HFY79706', 'Hastane', 'Hastane Maliyetleri', '/html/static/img/icons/mail.png', 'Sayın Mr. Asd, <br /><br />Son hastane ziyaretinin masraflarını içeren bir e-posta aldınız.<br />Nihai maliyetler ortaya çıktı: <strong>$500</strong><br /><br />Gecmiş Olsun!', 'null', '2025-03-17 20:35:55'),
	(97950, 'WLF54664', 'Hastane', 'Hastane Maliyetleri', '/html/static/img/icons/mail.png', 'Sayın Mr. Santo, <br /><br />Son hastane ziyaretinin masraflarını içeren bir e-posta aldınız.<br />Nihai maliyetler ortaya çıktı: <strong>$500</strong><br /><br />Gecmiş Olsun!', 'null', '2025-03-17 22:28:45'),
	(97951, 'HFY79706', 'Hastane', 'Hastane Maliyetleri', '/html/static/img/icons/mail.png', 'Sayın Mr. Asd, <br /><br />Son hastane ziyaretinin masraflarını içeren bir e-posta aldınız.<br />Nihai maliyetler ortaya çıktı: <strong>$500</strong><br /><br />Gecmiş Olsun!', 'null', '2025-03-17 23:15:15'),
	(97952, 'VCW52710', 'Hastane', 'Hastane Maliyetleri', '/html/static/img/icons/mail.png', 'Sayın Mr. Dsadas, <br /><br />Son hastane ziyaretinin masraflarını içeren bir e-posta aldınız.<br />Nihai maliyetler ortaya çıktı: <strong>$500</strong><br /><br />Gecmiş Olsun!', 'null', '2025-03-20 21:18:47');

-- Dumping structure for table coozv.gksphone_messages
CREATE TABLE IF NOT EXISTS `gksphone_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transmitter` varchar(50) NOT NULL,
  `receiver` varchar(50) NOT NULL,
  `message` longtext NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  `isRead` int(11) NOT NULL DEFAULT 0,
  `owner` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=168842 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_messages: 0 rows
DELETE FROM `gksphone_messages`;
/*!40000 ALTER TABLE `gksphone_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `gksphone_messages` ENABLE KEYS */;

-- Dumping structure for table coozv.gksphone_messages_group
CREATE TABLE IF NOT EXISTS `gksphone_messages_group` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` longtext NOT NULL,
  `ownerphone` varchar(50) NOT NULL,
  `groupname` varchar(255) NOT NULL,
  `gimage` longtext NOT NULL,
  `contacts` longtext NOT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_messages_group: ~0 rows (approximately)
DELETE FROM `gksphone_messages_group`;

-- Dumping structure for table coozv.gksphone_news
CREATE TABLE IF NOT EXISTS `gksphone_news` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hex` longtext DEFAULT NULL,
  `haber` longtext DEFAULT NULL,
  `baslik` longtext DEFAULT NULL,
  `resim` longtext DEFAULT NULL,
  `video` longtext DEFAULT NULL,
  `zaman` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_news: ~0 rows (approximately)
DELETE FROM `gksphone_news`;

-- Dumping structure for table coozv.gksphone_racing
CREATE TABLE IF NOT EXISTS `gksphone_racing` (
  `identifier` varchar(60) NOT NULL,
  `track_id` int(11) NOT NULL,
  `player_name` varchar(255) NOT NULL,
  `best_lap` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`identifier`,`track_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_racing: ~0 rows (approximately)
DELETE FROM `gksphone_racing`;

-- Dumping structure for table coozv.gksphone_settings
CREATE TABLE IF NOT EXISTS `gksphone_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` longtext NOT NULL,
  `crypto` varchar(535) DEFAULT '{}',
  `phone_number` varchar(50) DEFAULT NULL,
  `avatar_url` longtext DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=25418 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.gksphone_settings: ~119 rows (approximately)
DELETE FROM `gksphone_settings`;
INSERT INTO `gksphone_settings` (`id`, `identifier`, `crypto`, `phone_number`, `avatar_url`) VALUES
	(25298, 'HWH38496', '{}', '7806549710', NULL),
	(25299, 'HWA90637', '{}', '1081612733', NULL),
	(25300, 'ORO13170', '{}', '8062695579', NULL),
	(25302, 'QDS83432', '{}', '66666', NULL),
	(25303, 'VRQ42008', '{}', '816350', NULL),
	(25304, 'WHZ71107', '{}', '432173', NULL),
	(25305, 'CFH18616', '{}', '264689', NULL),
	(25306, 'QHJ46697', '{}', '375974', NULL),
	(25307, 'CLE45988', '{}', '194688', NULL),
	(25308, 'RMP06314', '{}', '247921', NULL),
	(25309, 'RFV35162', '{}', '712297', NULL),
	(25310, 'LJJ08401', '{}', '257883', NULL),
	(25311, 'WIJ29990', '{}', '533862', NULL),
	(25312, 'LFE75676', '{}', '398916', NULL),
	(25313, 'NVN17629', '{}', '810680', NULL),
	(25314, 'URV08797', '{}', '696301', NULL),
	(25315, 'BSI53923', '{}', '762950', NULL),
	(25316, 'YAH62223', '{}', '335787', NULL),
	(25317, 'DLA92312', '{}', '208243', NULL),
	(25318, 'BCT78863', '{}', '789964', NULL),
	(25319, 'JWG24183', '{}', '934929', NULL),
	(25320, 'USY54784', '{}', '666356', NULL),
	(25321, 'MAN23839', '{}', '838656', NULL),
	(25322, 'KON61685', '{}', '714994', NULL),
	(25323, 'SWM62619', '{}', '174987', NULL),
	(25324, 'CFM02968', '{}', '903654', NULL),
	(25325, 'UDZ51313', '{}', '546118', NULL),
	(25326, 'NUM98527', '{}', '555534', NULL),
	(25327, 'EPD54844', '{}', '739210', NULL),
	(25328, 'HKW23968', '{}', '310126', NULL),
	(25329, 'CCT99472', '{}', '944951', NULL),
	(25330, 'XHZ81419', '{}', '586221', NULL),
	(25331, 'IFQ10355', '{}', '126913', NULL),
	(25332, 'USQ49385', '{}', '641194', NULL),
	(25333, 'LBZ29973', '{}', '137662', NULL),
	(25334, 'COP67516', '{}', '359138', NULL),
	(25335, 'OHX07476', '{}', '298728', NULL),
	(25336, 'ARD80754', '{}', '144291', NULL),
	(25337, 'BFT15110', '{}', '668710', NULL),
	(25338, 'HJD86468', '{}', '395957', NULL),
	(25339, 'MKN11380', '{}', '224911', NULL),
	(25340, 'MJJ35010', '{}', '668836', NULL),
	(25341, 'WKL81749', '{}', '459136', NULL),
	(25342, 'AUO56318', '{}', '372240', NULL),
	(25343, 'LOT03634', '{}', '489988', NULL),
	(25344, 'TEM43359', '{}', '288772', NULL),
	(25345, 'LVG01978', '{}', '252266', NULL),
	(25346, 'RIV10887', '{}', '631702', NULL),
	(25347, 'AVC93665', '{}', '628357', NULL),
	(25348, 'RCW84276', '{}', '971257', NULL),
	(25349, 'VTB89229', '{}', '564342', NULL),
	(25350, 'GOE83795', '{}', '976374', NULL),
	(25351, 'BQR15906', '{}', '440152', NULL),
	(25352, 'LET77898', '{}', '308338', NULL),
	(25353, 'CUW89856', '{}', '951877', NULL),
	(25354, 'NMU52707', '{}', '125464', NULL),
	(25355, 'JOJ60978', '{}', '761297', NULL),
	(25356, 'LXN39219', '{}', '846960', NULL),
	(25357, 'DDK73929', '{}', '861887', NULL),
	(25358, 'TYU58000', '{}', '749113', NULL),
	(25359, 'TTJ64953', '{}', '414535', NULL),
	(25360, 'LSA69495', '{}', '783677', NULL),
	(25361, 'YRB06722', '{}', '461590', NULL),
	(25362, 'UAK73475', '{}', '841136', NULL),
	(25363, 'KRD98892', '{}', '638135', NULL),
	(25364, 'QAC48150', '{}', '287884', NULL),
	(25365, 'ZDF30906', '{}', '476301', NULL),
	(25366, 'NEJ17289', '{}', '332588', NULL),
	(25367, 'HFY79706', '{}', '188202', NULL),
	(25368, 'FWI31344', '{}', '531722', NULL),
	(25369, 'HEQ78385', '{}', '508141', NULL),
	(25370, 'APB01636', '{}', '993955', NULL),
	(25371, 'HPQ03117', '{}', '708138', NULL),
	(25372, 'SXF16791', '{}', '810540', NULL),
	(25373, 'MZH23055', '{}', '865812', NULL),
	(25374, 'MQZ35496', '{}', '469195', NULL),
	(25375, 'WZV30598', '{}', '787625', NULL),
	(25376, 'BRJ18661', '{}', '593984', NULL),
	(25377, 'UEG71426', '{}', '279800', NULL),
	(25378, 'CCR30530', '{}', '322670', NULL),
	(25379, 'RIM03351', '{}', '281654', NULL),
	(25380, 'LZW30510', '{}', '637316', NULL),
	(25381, 'NSV21630', '{}', '308734', NULL),
	(25382, 'HXJ50396', '{}', '619356', NULL),
	(25383, 'GEE26175', '{}', '765259', NULL),
	(25384, 'RVW04033', '{}', '830727', NULL),
	(25385, 'VBP74885', '{}', '813311', NULL),
	(25386, 'BIT19030', '{}', '475815', NULL),
	(25387, 'IVE21097', '{}', '246476', NULL),
	(25388, 'KEE73782', '{}', '657844', NULL),
	(25389, 'NQZ34705', '{}', '714449', NULL),
	(25390, 'AVJ04523', '{}', '495374', NULL),
	(25391, 'IPV68228', '{}', '961494', NULL),
	(25392, 'VNU89082', '{}', '266864', NULL),
	(25393, 'KVA03550', '{}', '486996', NULL),
	(25394, 'UPJ00165', '{}', '178166', NULL),
	(25395, 'KSP57436', '{}', '708411', NULL),
	(25396, 'CPQ84937', '{}', '987248', NULL),
	(25397, 'NDF00315', '{}', '455260', NULL),
	(25398, 'DHW44817', '{}', '981564', NULL),
	(25399, 'CKY95174', '{}', '859367', NULL),
	(25400, 'UZF83326', '{}', '233244', NULL),
	(25401, 'CEE84594', '{}', '673673', NULL),
	(25402, 'WIE15154', '{}', '367489', NULL),
	(25403, 'UAW69493', '{}', '507798', NULL),
	(25404, 'VCW52710', '{}', '276217', NULL),
	(25405, 'WLF54664', '{}', '833395', NULL),
	(25406, 'JYS78192', '{}', '267432', NULL),
	(25407, 'AEY78871', '{}', '887322', NULL),
	(25408, 'NPF75386', '{}', '589111', NULL),
	(25409, 'OKT69470', '{}', '918946', NULL),
	(25410, 'VQO03826', '{}', '298947', NULL),
	(25411, 'OAR69061', '{}', '185888', NULL),
	(25412, 'XRF14123', '{}', '533482', NULL),
	(25413, 'BEL96112', '{}', '434569', NULL),
	(25414, 'BTO14085', '{}', '734316', NULL),
	(25415, 'AHY06468', '{}', '218627', NULL),
	(25416, 'CCT80766', '{}', '298881', NULL),
	(25417, 'MUR16142', '{}', '165592', NULL);

-- Dumping structure for table coozv.gksphone_tinderacc
CREATE TABLE IF NOT EXISTS `gksphone_tinderacc` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `passaword` varchar(255) DEFAULT NULL,
  `date` varchar(255) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `gender` int(11) DEFAULT NULL,
  `identifier` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=439 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_tinderacc: ~0 rows (approximately)
DELETE FROM `gksphone_tinderacc`;

-- Dumping structure for table coozv.gksphone_tindermatch
CREATE TABLE IF NOT EXISTS `gksphone_tindermatch` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL DEFAULT 0,
  `friend_id` int(11) NOT NULL DEFAULT 0,
  `is_match` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=7296 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_tindermatch: ~0 rows (approximately)
DELETE FROM `gksphone_tindermatch`;

-- Dumping structure for table coozv.gksphone_tindermessage
CREATE TABLE IF NOT EXISTS `gksphone_tindermessage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `message` text NOT NULL,
  `tinderes` text NOT NULL,
  `owner` int(11) NOT NULL DEFAULT 0,
  `time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_tindermessage: ~0 rows (approximately)
DELETE FROM `gksphone_tindermessage`;

-- Dumping structure for table coozv.gksphone_twt_followers
CREATE TABLE IF NOT EXISTS `gksphone_twt_followers` (
  `follow_id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `followid` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`follow_id`) USING BTREE,
  KEY `userid` (`userid`) USING BTREE,
  KEY `FK_gksphone_twt_follower_gksphone_twt_users` (`followid`) USING BTREE,
  CONSTRAINT `FK_gksphone_twt_follower_gksphone_twt_users` FOREIGN KEY (`followid`) REFERENCES `gksphone_twt_users` (`user_id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
  CONSTRAINT `FK_gksphone_twt_followers_gksphone_twt_users` FOREIGN KEY (`userid`) REFERENCES `gksphone_twt_users` (`user_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=409 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_twt_followers: ~0 rows (approximately)
DELETE FROM `gksphone_twt_followers`;

-- Dumping structure for table coozv.gksphone_twt_hastags
CREATE TABLE IF NOT EXISTS `gksphone_twt_hastags` (
  `hastag_id` int(11) NOT NULL AUTO_INCREMENT,
  `hastag` varchar(250) NOT NULL DEFAULT '',
  `postid` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`hastag_id`) USING BTREE,
  KEY `postid` (`postid`) USING BTREE,
  CONSTRAINT `FK_gksphone_twt_hastags_gksphone_twt_posts` FOREIGN KEY (`postid`) REFERENCES `gksphone_twt_posts` (`post_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_twt_hastags: ~0 rows (approximately)
DELETE FROM `gksphone_twt_hastags`;

-- Dumping structure for table coozv.gksphone_twt_likepost
CREATE TABLE IF NOT EXISTS `gksphone_twt_likepost` (
  `like_id` int(11) NOT NULL AUTO_INCREMENT,
  `postid` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`like_id`) USING BTREE,
  KEY `userid` (`userid`) USING BTREE,
  KEY `postid` (`postid`) USING BTREE,
  CONSTRAINT `FK_gksphone_twt_likepost_gksphone_twt_posts` FOREIGN KEY (`postid`) REFERENCES `gksphone_twt_posts` (`post_id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
  CONSTRAINT `FK_gksphone_twt_likepost_gksphone_twt_users` FOREIGN KEY (`userid`) REFERENCES `gksphone_twt_users` (`user_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=3157 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_twt_likepost: ~0 rows (approximately)
DELETE FROM `gksphone_twt_likepost`;

-- Dumping structure for table coozv.gksphone_twt_posts
CREATE TABLE IF NOT EXISTS `gksphone_twt_posts` (
  `post_id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` longtext NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `content` longtext NOT NULL,
  `media` longtext DEFAULT NULL,
  `poll_options` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `comment` int(11) NOT NULL DEFAULT 0,
  `commentid` int(11) NOT NULL DEFAULT 0,
  `pinned` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`post_id`) USING BTREE,
  KEY `user_id` (`user_id`) USING BTREE,
  CONSTRAINT `gksphone_twt_posts_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `gksphone_twt_users` (`user_id`),
  CONSTRAINT `poll_options` CHECK (json_valid(`poll_options`))
) ENGINE=InnoDB AUTO_INCREMENT=4176 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_twt_posts: ~2 rows (approximately)
DELETE FROM `gksphone_twt_posts`;
INSERT INTO `gksphone_twt_posts` (`post_id`, `identifier`, `user_id`, `content`, `media`, `poll_options`, `end_date`, `comment`, `commentid`, `pinned`, `created_at`) VALUES
	(4174, 'ZDF30906', 3377, 'dsadsadsadas', NULL, NULL, NULL, 0, 0, 0, '2025-01-02 20:57:58'),
	(4175, 'ZDF30906', 3377, 'dsadsadsdsadsadas', NULL, NULL, NULL, 0, 0, 0, '2025-01-02 20:58:01');

-- Dumping structure for table coozv.gksphone_twt_retweet
CREATE TABLE IF NOT EXISTS `gksphone_twt_retweet` (
  `retwettsid` int(11) NOT NULL AUTO_INCREMENT,
  `postid` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`retwettsid`) USING BTREE,
  KEY `userid` (`userid`) USING BTREE,
  KEY `postid` (`postid`) USING BTREE,
  CONSTRAINT `FK_gksphone_twt_retweet_gksphone_twt_posts` FOREIGN KEY (`postid`) REFERENCES `gksphone_twt_posts` (`post_id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
  CONSTRAINT `FK_gksphone_twt_retweet_gksphone_twt_users` FOREIGN KEY (`userid`) REFERENCES `gksphone_twt_users` (`user_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=402 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_twt_retweet: ~0 rows (approximately)
DELETE FROM `gksphone_twt_retweet`;

-- Dumping structure for table coozv.gksphone_twt_users
CREATE TABLE IF NOT EXISTS `gksphone_twt_users` (
  `user_id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` longtext NOT NULL,
  `username` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `displayname` varchar(255) NOT NULL,
  `avatar` varchar(255) DEFAULT NULL,
  `banner` varchar(255) DEFAULT NULL,
  `is_verified` int(11) NOT NULL DEFAULT 0,
  `verifedbuytime` timestamp NULL DEFAULT current_timestamp(),
  `banned` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`user_id`) USING BTREE,
  UNIQUE KEY `unique_username` (`username`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3379 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_twt_users: ~2 rows (approximately)
DELETE FROM `gksphone_twt_users`;
INSERT INTO `gksphone_twt_users` (`user_id`, `identifier`, `username`, `password`, `displayname`, `avatar`, `banner`, `is_verified`, `verifedbuytime`, `banned`, `created_at`) VALUES
	(3377, 'ZDF30906', 'dsadsadsa', '123444', 'ddsadsa', '/html/static/img/icons/valeuser.png', '', 0, '2025-01-02 20:57:54', 0, '2025-01-02 20:57:54'),
	(3378, 'LZW30510', 'babarp', 'babarp', 'babarp', '/html/static/img/icons/valeuser.png', '', 0, '2025-01-06 19:45:05', 0, '2025-01-06 19:45:05');

-- Dumping structure for table coozv.gksphone_users_contacts
CREATE TABLE IF NOT EXISTS `gksphone_users_contacts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `number` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `display` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=93638 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_users_contacts: 0 rows
DELETE FROM `gksphone_users_contacts`;
/*!40000 ALTER TABLE `gksphone_users_contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `gksphone_users_contacts` ENABLE KEYS */;

-- Dumping structure for table coozv.gksphone_vehicle_sales
CREATE TABLE IF NOT EXISTS `gksphone_vehicle_sales` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` longtext NOT NULL,
  `ownerphone` varchar(255) NOT NULL,
  `plate` varchar(255) NOT NULL,
  `model` varchar(255) NOT NULL,
  `price` int(11) NOT NULL,
  `image` longtext NOT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=955 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_vehicle_sales: ~0 rows (approximately)
DELETE FROM `gksphone_vehicle_sales`;

-- Dumping structure for table coozv.gksphone_wanted
CREATE TABLE IF NOT EXISTS `gksphone_wanted` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) NOT NULL,
  `fullname` varchar(50) NOT NULL,
  `reason` varchar(250) DEFAULT NULL,
  `appearance` varchar(250) DEFAULT NULL,
  `lastseen` varchar(250) DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.gksphone_wanted: ~0 rows (approximately)
DELETE FROM `gksphone_wanted`;

-- Dumping structure for table coozv.gksphone_yellow
CREATE TABLE IF NOT EXISTS `gksphone_yellow` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(50) DEFAULT NULL,
  `firstname` varchar(256) DEFAULT NULL,
  `message` longtext NOT NULL,
  `image` longtext DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  `filter` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=96223 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.gksphone_yellow: ~0 rows (approximately)
DELETE FROM `gksphone_yellow`;
INSERT INTO `gksphone_yellow` (`id`, `phone_number`, `firstname`, `message`, `image`, `time`, `filter`) VALUES
	(96222, '434569', 'Cznn Daltonn', 'heyse  abı ulasısın', '', '2025-03-20 03:49:57', 'mechanic');

-- Dumping structure for table coozv.gloveboxitems
CREATE TABLE IF NOT EXISTS `gloveboxitems` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `plate` varchar(255) DEFAULT NULL,
  `items` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`items`)),
  PRIMARY KEY (`id`),
  KEY `plate` (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.gloveboxitems: ~0 rows (approximately)
DELETE FROM `gloveboxitems`;

-- Dumping structure for table coozv.houselocations
CREATE TABLE IF NOT EXISTS `houselocations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `label` varchar(255) DEFAULT NULL,
  `coords` text DEFAULT NULL,
  `owned` tinyint(1) DEFAULT NULL,
  `price` int(11) DEFAULT NULL,
  `tier` tinyint(4) DEFAULT NULL,
  `garage` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.houselocations: ~0 rows (approximately)
DELETE FROM `houselocations`;

-- Dumping structure for table coozv.house_plants
CREATE TABLE IF NOT EXISTS `house_plants` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `building` varchar(50) DEFAULT NULL,
  `stage` varchar(50) DEFAULT 'stage-a',
  `sort` varchar(50) DEFAULT NULL,
  `gender` varchar(50) DEFAULT NULL,
  `food` int(11) DEFAULT 100,
  `health` int(11) DEFAULT 100,
  `progress` int(11) DEFAULT 0,
  `coords` text DEFAULT NULL,
  `plantid` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `building` (`building`),
  KEY `plantid` (`plantid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.house_plants: ~0 rows (approximately)
DELETE FROM `house_plants`;

-- Dumping structure for table coozv.inc_banking_ibans
CREATE TABLE IF NOT EXISTS `inc_banking_ibans` (
  `identifier` varchar(46) NOT NULL,
  `iban` varchar(255) DEFAULT '',
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.inc_banking_ibans: ~5 rows (approximately)
DELETE FROM `inc_banking_ibans`;
INSERT INTO `inc_banking_ibans` (`identifier`, `iban`) VALUES
	('APB01636', 'IC-5578540'),
	('MQZ35496', 'IC-9271662'),
	('TEM43359', 'IC-7886036'),
	('WKL81749', 'IC-6219498'),
	('ZDF30906', 'IC-4678791');

-- Dumping structure for table coozv.inc_banking_loans
CREATE TABLE IF NOT EXISTS `inc_banking_loans` (
  `identifier` varchar(46) NOT NULL,
  `amount` int(11) DEFAULT 0,
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.inc_banking_loans: ~0 rows (approximately)
DELETE FROM `inc_banking_loans`;

-- Dumping structure for table coozv.inc_banking_recent
CREATE TABLE IF NOT EXISTS `inc_banking_recent` (
  `identifier` varchar(46) DEFAULT NULL,
  `name` varchar(50) DEFAULT NULL,
  `information` varchar(255) DEFAULT NULL,
  `money` float DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.inc_banking_recent: ~0 rows (approximately)
DELETE FROM `inc_banking_recent`;

-- Dumping structure for table coozv.izzy_radio
CREATE TABLE IF NOT EXISTS `izzy_radio` (
  `id` int(255) NOT NULL AUTO_INCREMENT,
  `player` varchar(255) NOT NULL DEFAULT '0',
  `data` longtext NOT NULL DEFAULT '[]',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.izzy_radio: ~0 rows (approximately)
DELETE FROM `izzy_radio`;
INSERT INTO `izzy_radio` (`id`, `player`, `data`) VALUES
	(3, 'HFY79706', '[]'),
	(4, 'HZK30117', '[]');

-- Dumping structure for table coozv.lonebanking
CREATE TABLE IF NOT EXISTS `lonebanking` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `account_number` varchar(10) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.lonebanking: ~6 rows (approximately)
DELETE FROM `lonebanking`;
INSERT INTO `lonebanking` (`id`, `citizenid`, `account_number`) VALUES
	(1, 'FNU16178', '6828515770'),
	(2, 'FNU16178', '7533584188'),
	(3, 'TMV37328', '5307817231'),
	(4, 'HZK30117', '5214521861'),
	(5, 'QNB34275', '8094902475'),
	(6, 'QNB34275', '7837636320');

-- Dumping structure for table coozv.lonebanking_transactions
CREATE TABLE IF NOT EXISTS `lonebanking_transactions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `account_number` varchar(10) DEFAULT NULL,
  `type` varchar(50) DEFAULT NULL,
  `amount` int(11) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.lonebanking_transactions: ~8 rows (approximately)
DELETE FROM `lonebanking_transactions`;
INSERT INTO `lonebanking_transactions` (`id`, `account_number`, `type`, `amount`, `description`, `date`) VALUES
	(1, '5214521861', 'Para Çekme', -1000, 'Para Çekme', '2025-11-02 00:51:17'),
	(2, '6828515770', 'Para Çekme', -1000, 'Para Çekme', '2025-11-02 14:37:15'),
	(3, '6828515770', 'Para Yatırma', 1000, 'Para Yatırma', '2025-11-02 14:37:21'),
	(4, '8094902475', 'Para Yatırma', 100000, 'Para Yatırma', '2025-11-04 09:49:17'),
	(5, '8094902475', 'Para Yatırma', 100000, 'Para Yatırma', '2025-11-04 09:49:20'),
	(6, '8094902475', 'Para Yatırma', 100000, 'Para Yatırma', '2025-11-04 09:49:21'),
	(7, '8094902475', 'Para Yatırma', 47408, 'Para Yatırma', '2025-11-04 09:49:32'),
	(8, '5214521861', 'Para Yatırma', 1000, 'Para Yatırma', '2025-11-04 19:43:15'),
	(9, '5214521861', 'Para Çekme', -100000, 'Para Çekme', '2025-11-04 19:43:23');

-- Dumping structure for table coozv.management_funds
CREATE TABLE IF NOT EXISTS `management_funds` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `job_name` varchar(50) NOT NULL,
  `amount` int(100) NOT NULL,
  `type` enum('boss','gang') NOT NULL DEFAULT 'boss',
  `iban` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `job_name` (`job_name`),
  KEY `type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=1048680 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.management_funds: ~5 rows (approximately)
DELETE FROM `management_funds`;
INSERT INTO `management_funds` (`id`, `job_name`, `amount`, `type`, `iban`) VALUES
	(1048187, 'ambulance', 19500, 'boss', NULL),
	(1048188, 'lojistik', 10445000, 'boss', NULL),
	(1048191, 'mechanic', 430, 'boss', NULL),
	(1048208, 'cardealer', 912320653, 'boss', NULL),
	(1048661, 'galeri', 68000, 'boss', NULL),
	(1048666, 'realestate', 800, 'boss', NULL);

-- Dumping structure for table coozv.management_outfits
CREATE TABLE IF NOT EXISTS `management_outfits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `job_name` varchar(50) NOT NULL,
  `type` varchar(50) NOT NULL,
  `minrank` int(11) NOT NULL DEFAULT 0,
  `name` varchar(50) NOT NULL DEFAULT 'Cool Outfit',
  `gender` varchar(50) NOT NULL DEFAULT 'male',
  `model` varchar(50) DEFAULT NULL,
  `props` text DEFAULT NULL,
  `components` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.management_outfits: ~0 rows (approximately)
DELETE FROM `management_outfits`;

-- Dumping structure for table coozv.mdt_announcements
CREATE TABLE IF NOT EXISTS `mdt_announcements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `creator` varchar(50) NOT NULL,
  `contents` text NOT NULL,
  `createdAt` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `FK_mdt_announcements_players` (`creator`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_announcements: ~2 rows (approximately)
DELETE FROM `mdt_announcements`;
INSERT INTO `mdt_announcements` (`id`, `creator`, `contents`, `createdAt`) VALUES
	(1, 'VCW52710', '<p>SELAM</p>', '2025-03-17 01:04:19'),
	(2, 'VCW52710', '<p>OROSPU EVLADI JOYKA</p>', '2025-03-21 00:32:06');

-- Dumping structure for table coozv.mdt_bolos
CREATE TABLE IF NOT EXISTS `mdt_bolos` (
  `plate` varchar(50) NOT NULL,
  `reason` text NOT NULL,
  `expiresAt` datetime NOT NULL,
  UNIQUE KEY `plate` (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_bolos: ~0 rows (approximately)
DELETE FROM `mdt_bolos`;

-- Dumping structure for table coozv.mdt_incidents
CREATE TABLE IF NOT EXISTS `mdt_incidents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `author` varchar(50) DEFAULT NULL,
  `date` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_incidents: ~0 rows (approximately)
DELETE FROM `mdt_incidents`;

-- Dumping structure for table coozv.mdt_incidents_charges
CREATE TABLE IF NOT EXISTS `mdt_incidents_charges` (
  `incidentid` int(10) unsigned NOT NULL,
  `citizenid` varchar(50) NOT NULL,
  `charge` varchar(100) DEFAULT NULL,
  `type` enum('misdemeanor','felony','infraction') NOT NULL,
  `count` int(10) unsigned NOT NULL DEFAULT 1,
  `time` int(10) unsigned DEFAULT NULL,
  `fine` int(10) unsigned DEFAULT NULL,
  `points` int(10) unsigned DEFAULT NULL,
  KEY `FK_mdt_incidents_charges_mdt_incidents_criminals` (`incidentid`),
  KEY `FK_mdt_incidents_charges_mdt_incidents_criminals_2` (`citizenid`),
  KEY `FK_mdt_incidents_charges_mdt_offenses` (`charge`),
  CONSTRAINT `FK_mdt_incidents_charges_mdt_incidents_criminals_2` FOREIGN KEY (`citizenid`) REFERENCES `mdt_incidents_criminals` (`citizenid`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_mdt_incidents_charges_mdt_offenses` FOREIGN KEY (`charge`) REFERENCES `mdt_offenses` (`label`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_incidents_charges: ~0 rows (approximately)
DELETE FROM `mdt_incidents_charges`;

-- Dumping structure for table coozv.mdt_incidents_criminals
CREATE TABLE IF NOT EXISTS `mdt_incidents_criminals` (
  `incidentid` int(10) unsigned NOT NULL,
  `citizenid` varchar(50) NOT NULL,
  `reduction` tinyint(3) unsigned DEFAULT NULL,
  `warrantExpiry` date DEFAULT NULL,
  `processed` tinyint(4) DEFAULT NULL,
  `pleadedGuilty` tinyint(4) DEFAULT NULL,
  KEY `incidentid` (`incidentid`),
  KEY `FK_mdt_incidents_incidents_players` (`citizenid`),
  CONSTRAINT `mdt_incidents_criminals_ibfk_2` FOREIGN KEY (`incidentid`) REFERENCES `mdt_incidents` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_incidents_criminals: ~0 rows (approximately)
DELETE FROM `mdt_incidents_criminals`;

-- Dumping structure for table coozv.mdt_incidents_evidence
CREATE TABLE IF NOT EXISTS `mdt_incidents_evidence` (
  `incidentid` int(10) unsigned NOT NULL,
  `label` varchar(50) NOT NULL DEFAULT '',
  `image` varchar(90) NOT NULL DEFAULT '',
  KEY `incidentid` (`incidentid`),
  CONSTRAINT `FK_mdt_incidents_evidence_mdt_incidents` FOREIGN KEY (`incidentid`) REFERENCES `mdt_incidents` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_incidents_evidence: ~0 rows (approximately)
DELETE FROM `mdt_incidents_evidence`;

-- Dumping structure for table coozv.mdt_incidents_officers
CREATE TABLE IF NOT EXISTS `mdt_incidents_officers` (
  `incidentid` int(10) unsigned NOT NULL,
  `citizenid` varchar(50) NOT NULL,
  KEY `FK_mdt_incidents_officers_players` (`citizenid`),
  KEY `incidentid` (`incidentid`),
  CONSTRAINT `FK_mdt_incidents_officers_mdt_incidents` FOREIGN KEY (`incidentid`) REFERENCES `mdt_incidents` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_incidents_officers: ~0 rows (approximately)
DELETE FROM `mdt_incidents_officers`;

-- Dumping structure for table coozv.mdt_offenses
CREATE TABLE IF NOT EXISTS `mdt_offenses` (
  `label` varchar(100) NOT NULL,
  `type` enum('misdemeanor','felony','infraction') NOT NULL,
  `category` enum('OFFENSES AGAINST PERSONS','OFFENSES INVOLVING THEFT','OFFENSES INVOLVING FRAUD','OFFENSES INVOLVING DAMAGE TO PROPERTY','OFFENSES AGAINST PUBLIC ADMINISTRATION','OFFENSES AGAINST PUBLIC ORDER','OFFENSES AGAINST HEALTH AND MORALS','OFFENSES AGAINST PUBLIC SAFETY','OFFENSES INVOLVING THE OPERATION OF A VEHICLE','OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE') NOT NULL,
  `description` varchar(250) NOT NULL,
  `time` int(10) unsigned NOT NULL DEFAULT 0,
  `fine` int(10) unsigned NOT NULL DEFAULT 0,
  `points` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`label`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_offenses: ~104 rows (approximately)
DELETE FROM `mdt_offenses`;
INSERT INTO `mdt_offenses` (`label`, `type`, `category`, `description`, `time`, `fine`, `points`) VALUES
	('Animal Cruelty', 'misdemeanor', 'OFFENSES AGAINST HEALTH AND MORALS', 'Intentionally inflicting harm or failing to provide adequate care to animals.', 90, 5000, 0),
	('Armed Robbery', 'felony', 'OFFENSES INVOLVING THEFT', 'Robbery with the use of a weapon.', 360, 25000, 0),
	('Arson', 'felony', 'OFFENSES INVOLVING DAMAGE TO PROPERTY', 'The criminal act of deliberately setting fire to property.', 360, 20000, 0),
	('Assault', 'misdemeanor', 'OFFENSES AGAINST PERSONS', 'Unlawfully attacking another person.', 30, 1000, 0),
	('Battery', 'misdemeanor', 'OFFENSES AGAINST PERSONS', 'Applying force to another, resulting in harmful or offensive contact.', 60, 3000, 0),
	('Bribery', 'felony', 'OFFENSES AGAINST PUBLIC ADMINISTRATION', 'Offering, giving, receiving, or soliciting anything of value to influence the actions of an official or other person in charge of a public or legal duty.', 180, 15000, 0),
	('Building Code Violation', 'misdemeanor', 'OFFENSES AGAINST PUBLIC SAFETY', 'Violating local building regulations, potentially creating safety hazards.', 30, 2000, 0),
	('Burglary', 'felony', 'OFFENSES INVOLVING THEFT', 'Entering a building unlawfully with intent to commit a felony or a theft.', 90, 5000, 0),
	('Credit Card Fraud', 'felony', 'OFFENSES INVOLVING FRAUD', 'Unauthorized use of a credit card to obtain goods of value.', 90, 5000, 0),
	('Criminal Mischief', 'misdemeanor', 'OFFENSES INVOLVING DAMAGE TO PROPERTY', 'Intentional or knowing damage to anothers property.', 90, 3000, 0),
	('Criminal Possession of Weapon Class A', 'felony', 'OFFENSES AGAINST PUBLIC SAFETY', 'Possession of a Class A weapon, such as a machine gun, assault rifle, or destructive device.', 360, 20000, 0),
	('Criminal Possession of Weapon Class B', 'felony', 'OFFENSES AGAINST PUBLIC SAFETY', 'Possession of a Class B weapon, such as a sawed-off shotgun or handgun.', 180, 15000, 0),
	('Criminal Possession of Weapon Class C', 'misdemeanor', 'OFFENSES AGAINST PUBLIC SAFETY', 'Possession of a Class C weapon, such as a rifle or shotgun.', 90, 5000, 0),
	('Criminal Possession of Weapon Class D', 'misdemeanor', 'OFFENSES AGAINST PUBLIC SAFETY', 'Possession of a Class D weapon, such as a knife or club.', 30, 1000, 0),
	('Curfew Violation', 'infraction', 'OFFENSES AGAINST PUBLIC ORDER', 'Failing to adhere to government-imposed curfew regulations, typically enforced to maintain public order during emergencies.', 0, 300, 0),
	('Damaging Public Utilities', 'felony', 'OFFENSES INVOLVING DAMAGE TO PROPERTY', 'Intentionally damaging or interfering with services of public utility providers.', 180, 10000, 0),
	('Destroying Habitat', 'felony', 'OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE', 'Deliberate destruction of environments that support wildlife.', 180, 15000, 0),
	('Destruction of Signs', 'infraction', 'OFFENSES INVOLVING DAMAGE TO PROPERTY', 'The act of destroying or defacing road signs or other public signs.', 0, 500, 0),
	('Disorderly Conduct', 'misdemeanor', 'OFFENSES AGAINST PUBLIC ORDER', 'Engaging in behavior that disrupts public peace, including fighting, making excessive noise, or causing a public disturbance.', 30, 1000, 0),
	('Disrupting Wildlife with Noise Pollution', 'misdemeanor', 'OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE', 'Causing noise that can harm wildlife behavior and natural habitat.', 60, 3000, 0),
	('Driving Under the Influence (DUI)', 'felony', 'OFFENSES INVOLVING THE OPERATION OF A VEHICLE', 'Operating a vehicle while under the influence of alcohol or drugs.', 90, 7000, 3),
	('Driving with a Suspended License', 'misdemeanor', 'OFFENSES INVOLVING THE OPERATION OF A VEHICLE', 'Driving when your drivers license has been suspended or revoked.', 30, 2000, 2),
	('Driving with Obstructed View', 'infraction', 'OFFENSES INVOLVING THE OPERATION OF A VEHICLE', 'Driving a vehicle with objects blocking the drivers view or control.', 0, 300, 0),
	('Driving Without a License', 'misdemeanor', 'OFFENSES INVOLVING THE OPERATION OF A VEHICLE', 'Operating a vehicle without a valid driving license.', 0, 1000, 2),
	('Drug Possession', 'misdemeanor', 'OFFENSES AGAINST HEALTH AND MORALS', 'Possession of illegal drugs or controlled substances without a prescription.', 60, 2000, 0),
	('DUI with Bodily Injury', 'felony', 'OFFENSES AGAINST PUBLIC SAFETY', 'Driving under the influence of alcohol or drugs and causing bodily harm.', 180, 15000, 3),
	('Election Fraud', 'felony', 'OFFENSES AGAINST PUBLIC ADMINISTRATION', 'Illegal interference with the process of an election.', 240, 20000, 0),
	('Embezzlement', 'felony', 'OFFENSES INVOLVING THEFT', 'Theft or misappropriation of funds placed in ones trust or belonging to ones employer.', 180, 15000, 0),
	('Failure to Yield', 'infraction', 'OFFENSES INVOLVING THE OPERATION OF A VEHICLE', 'Failing to yield the right of way to other road users where required.', 0, 250, 1),
	('False Advertising', 'misdemeanor', 'OFFENSES INVOLVING FRAUD', 'Advertising products or services in a misleading or deceptive way.', 30, 2000, 0),
	('Falsifying Records', 'misdemeanor', 'OFFENSES AGAINST PUBLIC ADMINISTRATION', 'Altering, concealing, falsifying, or destroying a document to obstruct the investigation or other official matters.', 90, 5000, 0),
	('Feeding Wildlife Illegally', 'infraction', 'OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE', 'Feeding wildlife in areas where it is prohibited by law.', 0, 500, 0),
	('Firearm Possession without Permit', 'felony', 'OFFENSES AGAINST PUBLIC SAFETY', 'Owning or carrying a firearm without the necessary permits.', 180, 10000, 0),
	('Gambling Operation', 'felony', 'OFFENSES AGAINST HEALTH AND MORALS', 'Operating or participating in illegal gambling activities, including unlicensed casinos or sports betting.', 180, 15000, 0),
	('Graffiti', 'misdemeanor', 'OFFENSES INVOLVING DAMAGE TO PROPERTY', 'Writing or drawings scribbled, scratched, or sprayed illicitly on a wall or other surface in a public place.', 60, 2500, 0),
	('Grand Theft Auto', 'felony', 'OFFENSES INVOLVING THEFT', 'Theft of an automobile.', 180, 10000, 0),
	('Harassment', 'infraction', 'OFFENSES AGAINST PERSONS', 'Engaging in a pattern of unwanted conduct that alarms or seriously annoys another person, without claiming a legitimate purpose.', 0, 500, 0),
	('Hate Crime', 'felony', 'OFFENSES AGAINST PERSONS', 'A crime motivated by racial, sexual, or other prejudice.', 180, 10000, 0),
	('Hazardous Waste Dumping', 'felony', 'OFFENSES AGAINST PUBLIC SAFETY', 'Disposing of hazardous materials in a manner that endangers public health and the environment.', 180, 15000, 0),
	('Healthcare Fraud', 'felony', 'OFFENSES INVOLVING FRAUD', 'Filing dishonest healthcare claims to obtain a profit.', 180, 15000, 0),
	('Hit and Run', 'felony', 'OFFENSES INVOLVING THE OPERATION OF A VEHICLE', 'Leaving the scene of an accident without providing contact information or assisting the injured.', 180, 10000, 3),
	('Human Trafficking', 'felony', 'OFFENSES AGAINST PERSONS', 'Illegal trade of human beings for the purposes of forced labor or sexual exploitation.', 720, 50000, 0),
	('Identity Theft', 'felony', 'OFFENSES INVOLVING THEFT', 'The fraudulent acquisition and use of a persons private identifying information.', 180, 10000, 0),
	('Illegal Assembly', 'misdemeanor', 'OFFENSES AGAINST PUBLIC ORDER', 'Gathering of people with the intent of engaging in activities that breach public peace or order.', 60, 3000, 0),
	('Illegal Dumping', 'misdemeanor', 'OFFENSES INVOLVING DAMAGE TO PROPERTY', 'Disposing of waste illegally in non-designated areas.', 90, 5000, 0),
	('Illegal Fireworks', 'misdemeanor', 'OFFENSES AGAINST HEALTH AND MORALS', 'Possessing, using, or selling fireworks without appropriate authorization.', 30, 2000, 0),
	('Illegal Fishing', 'misdemeanor', 'OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE', 'Fishing without a license or in restricted areas.', 30, 2000, 0),
	('Illegal Gambling', 'misdemeanor', 'OFFENSES AGAINST PUBLIC ORDER', 'Organizing, participating in, or operating games of chance in public or private settings without legal authorization.', 90, 5000, 0),
	('Illegal Hunting', 'misdemeanor', 'OFFENSES AGAINST PUBLIC SAFETY', 'Hunting wildlife in restricted areas or during off-seasons without proper permits.', 60, 3000, 0),
	('Illegal Lobbying', 'misdemeanor', 'OFFENSES AGAINST PUBLIC ADMINISTRATION', 'Lobbying without proper registration or when specifically prohibited.', 120, 8000, 0),
	('Illegal Logging', 'felony', 'OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE', 'Unauthorized cutting down of trees in protected areas.', 180, 15000, 0),
	('Illegal Pet Trade', 'felony', 'OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE', 'Engaging in the sale or purchase of wild animals as pets illegally.', 360, 20000, 0),
	('Illegal Street Racing', 'misdemeanor', 'OFFENSES INVOLVING THE OPERATION OF A VEHICLE', 'Participating in unauthorized speed contests on public roads.', 90, 5000, 3),
	('Illegal Substance Sale', 'felony', 'OFFENSES AGAINST HEALTH AND MORALS', 'Selling or distributing illegal drugs or other prohibited substances.', 180, 10000, 0),
	('Illegal Tattooing', 'infraction', 'OFFENSES AGAINST HEALTH AND MORALS', 'Tattooing individuals without proper licensing or on minors without legal consent.', 0, 1000, 0),
	('Improper Transport of Hazardous Materials', 'felony', 'OFFENSES AGAINST PUBLIC SAFETY', 'Transporting hazardous materials without adhering to safety regulations and legal requirements.', 240, 15000, 0),
	('Inciting a Riot', 'felony', 'OFFENSES AGAINST PUBLIC ORDER', 'Encouraging, promoting, or participating in violent or disruptive behavior that turns into a mass disturbance.', 90, 7000, 0),
	('Insurance Fraud', 'felony', 'OFFENSES INVOLVING FRAUD', 'The act of falsifying or exaggerating the facts of an accident to an insurance company to obtain payment that would not otherwise be made.', 180, 10000, 0),
	('Kidnapping', 'felony', 'OFFENSES AGAINST PERSONS', 'Unlawfully seizing and carrying away a person by force.', 360, 20000, 0),
	('Larceny', 'misdemeanor', 'OFFENSES INVOLVING THEFT', 'Unlawful taking of personal property.', 60, 2000, 0),
	('Littering', 'infraction', 'OFFENSES INVOLVING DAMAGE TO PROPERTY', 'Carelessly discarding trash or other materials on public or private property.', 0, 250, 0),
	('Littering in Natural Reserves', 'misdemeanor', 'OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE', 'Disposing of waste in a natural reserve, negatively affecting wildlife.', 30, 2000, 0),
	('Loitering', 'infraction', 'OFFENSES AGAINST PUBLIC ORDER', 'Remaining idle in a public place for an extended period without a clear reason, often seen as a nuisance.', 0, 250, 0),
	('Mail Fraud', 'felony', 'OFFENSES INVOLVING FRAUD', 'The use of postal services to commit fraud.', 180, 10000, 0),
	('Manslaughter', 'felony', 'OFFENSES AGAINST PERSONS', 'Killing another person without intention during the commission of a non-felony.', 180, 15000, 0),
	('Misrepresentation', 'misdemeanor', 'OFFENSES INVOLVING FRAUD', 'Deliberately providing false information in a business transaction.', 90, 3000, 0),
	('Misuse of Public Funds', 'felony', 'OFFENSES AGAINST PUBLIC ADMINISTRATION', 'Using public money for unauthorized, illegal, or unethical purposes.', 180, 15000, 0),
	('Murder', 'felony', 'OFFENSES AGAINST PERSONS', 'Unlawful premeditated killing of one human being by another.', 999, 50000, 0),
	('Negligent Discharge of a Firearm', 'misdemeanor', 'OFFENSES AGAINST PUBLIC SAFETY', 'Accidentally discharging a firearm due to careless handling.', 60, 3000, 0),
	('Obstruction of Justice', 'felony', 'OFFENSES AGAINST PUBLIC ADMINISTRATION', 'The crime of obstructing prosecutors or other (usually government) officials.', 180, 10000, 0),
	('Perjury', 'felony', 'OFFENSES AGAINST PUBLIC ADMINISTRATION', 'The offense of willfully telling an untruth in a court after having taken an oath or affirmation.', 180, 10000, 0),
	('Petty Theft', 'misdemeanor', 'OFFENSES INVOLVING THEFT', 'The theft of relatively low value items.', 30, 500, 0),
	('Phishing', 'infraction', 'OFFENSES INVOLVING FRAUD', 'Attempting to acquire sensitive information such as usernames, passwords, and credit card details by masquerading as a trustworthy entity in an electronic communication.', 0, 500, 0),
	('Poaching', 'felony', 'OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE', 'Illegal hunting, killing, or capturing of wild animals.', 180, 10000, 0),
	('Possession of Explosives', 'felony', 'OFFENSES AGAINST PUBLIC SAFETY', 'Illegally possessing or improperly handling explosive materials.', 360, 20000, 0),
	('Prostitution', 'misdemeanor', 'OFFENSES AGAINST HEALTH AND MORALS', 'Engaging in, soliciting, or arranging sexual activities in exchange for payment.', 90, 3000, 0),
	('Public Corruption', 'felony', 'OFFENSES AGAINST PUBLIC ADMINISTRATION', 'The abuse of public office for private gain.', 360, 25000, 0),
	('Public Indecency', 'misdemeanor', 'OFFENSES AGAINST HEALTH AND MORALS', 'Performing acts of a sexual nature in public spaces or exposing oneself inappropriately.', 30, 1000, 0),
	('Public Intoxication', 'misdemeanor', 'OFFENSES AGAINST PUBLIC ORDER', 'Appearing in public places while significantly impaired by alcohol or drugs, posing a potential danger to self and others.', 0, 500, 0),
	('Public Nudity', 'misdemeanor', 'OFFENSES AGAINST PUBLIC ORDER', 'Intentionally exposing oneself in a public space, not complying with local decency laws.', 60, 2000, 0),
	('Receiving Stolen Property', 'misdemeanor', 'OFFENSES INVOLVING THEFT', 'Receiving, buying, or possessing property known to be stolen.', 90, 4000, 0),
	('Reckless Driving', 'misdemeanor', 'OFFENSES INVOLVING THE OPERATION OF A VEHICLE', 'Driving with a willful disregard for the safety of persons or property.', 60, 3000, 4),
	('Reckless Endangerment', 'felony', 'OFFENSES AGAINST PUBLIC SAFETY', 'Engaging in conduct that poses a significant risk of serious physical injury to others.', 90, 7000, 0),
	('Sabotage', 'felony', 'OFFENSES INVOLVING DAMAGE TO PROPERTY', 'Deliberately destroying, damaging, or obstructing something, especially for political or military advantage.', 360, 25000, 0),
	('Securities Fraud', 'felony', 'OFFENSES INVOLVING FRAUD', 'Fraudulent practices in the stock and commodities markets, including insider trading.', 360, 25000, 0),
	('Sexual Assault', 'felony', 'OFFENSES AGAINST PERSONS', 'An act in which a person sexually touches another person without their consent.', 360, 20000, 0),
	('Shoplifting', 'misdemeanor', 'OFFENSES INVOLVING THEFT', 'The act of stealing goods from a store.', 30, 1000, 0),
	('Smoking Ban Violation', 'infraction', 'OFFENSES AGAINST HEALTH AND MORALS', 'Smoking in non-smoking areas or violating local smoking regulations.', 0, 250, 0),
	('Stalking', 'misdemeanor', 'OFFENSES AGAINST PERSONS', 'Repeatedly following or harassing another person and making threats.', 90, 5000, 0),
	('Tax Evasion', 'felony', 'OFFENSES INVOLVING FRAUD', 'The illegal nonpayment or underpayment of tax.', 180, 10000, 0),
	('Ticket Scalping', 'infraction', 'OFFENSES INVOLVING THEFT', 'Selling tickets for an event without a proper license and often at a rate exceeding the face value.', 0, 200, 0),
	('Traffic Obstruction', 'infraction', 'OFFENSES INVOLVING THE OPERATION OF A VEHICLE', 'Obstructing traffic flow intentionally or unintentionally.', 0, 500, 0),
	('Traffic Violation', 'infraction', 'OFFENSES AGAINST PUBLIC SAFETY', 'Violating traffic laws such as speeding, running red lights, or illegal parking.', 0, 500, 1),
	('Trespassing with Damage', 'misdemeanor', 'OFFENSES INVOLVING DAMAGE TO PROPERTY', 'Entering anothers property without permission and causing damage.', 30, 2000, 0),
	('Unauthorized Disclosure of Confidential Information', 'infraction', 'OFFENSES AGAINST PUBLIC ADMINISTRATION', 'Improperly revealing confidential or classified information without authorization.', 0, 1000, 0),
	('Underage Drinking', 'infraction', 'OFFENSES AGAINST HEALTH AND MORALS', 'Consuming or possessing alcohol by individuals under the legal drinking age.', 0, 500, 0),
	('Unlawful Protest', 'misdemeanor', 'OFFENSES AGAINST PUBLIC ORDER', 'Protesting without required permissions or in violation of legal restrictions, potentially leading to public disorder.', 30, 2000, 0),
	('Use of Harmful Pesticides', 'misdemeanor', 'OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE', 'Using pesticides that are known to cause significant harm to wildlife.', 90, 5000, 0),
	('Vagrancy', 'misdemeanor', 'OFFENSES AGAINST PUBLIC ORDER', 'Living in public spaces without a permanent home or employment, often associated with public nuisance behaviors.', 30, 1000, 0),
	('Vandalism', 'misdemeanor', 'OFFENSES INVOLVING DAMAGE TO PROPERTY', 'Deliberately destroying or damaging property.', 30, 1000, 0),
	('Vehicle Manslaughter', 'felony', 'OFFENSES INVOLVING THE OPERATION OF A VEHICLE', 'Causing the death of another through negligent or reckless driving.', 360, 20000, 0),
	('Wildlife Smuggling', 'felony', 'OFFENSES INVOLVING THE WELL-BEING OF WILDLIFE', 'Illegally exporting or importing protected or endangered species.', 360, 25000, 0),
	('Wire Fraud', 'felony', 'OFFENSES INVOLVING FRAUD', 'Fraud involving the use of electronic communications.', 180, 15000, 0),
	('Witness Tampering', 'felony', 'OFFENSES AGAINST PUBLIC ADMINISTRATION', 'The attempt to alter or prevent the testimony of witnesses within criminal or civil proceedings.', 240, 15000, 0);

-- Dumping structure for table coozv.mdt_profiles
CREATE TABLE IF NOT EXISTS `mdt_profiles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) NOT NULL,
  `image` varchar(90) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `callsign` varchar(10) DEFAULT NULL,
  `apu` tinyint(4) DEFAULT NULL,
  `air` tinyint(4) DEFAULT NULL,
  `mc` tinyint(4) DEFAULT NULL,
  `k9` tinyint(4) DEFAULT NULL,
  `fto` tinyint(4) DEFAULT NULL,
  `fingerprint` varchar(90) DEFAULT NULL,
  `lastActive` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdt_profiles_pk2` (`citizenid`),
  UNIQUE KEY `mdt_profiles_pk` (`callsign`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_profiles: ~2 rows (approximately)
DELETE FROM `mdt_profiles`;
INSERT INTO `mdt_profiles` (`id`, `citizenid`, `image`, `notes`, `callsign`, `apu`, `air`, `mc`, `k9`, `fto`, `fingerprint`, `lastActive`) VALUES
	(1, 'VCW52710', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-03-21 00:08:13'),
	(3, 'HFY79706', NULL, '<p><strong>ORospu evladı</strong></p><p></p>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-03-21 07:04:32');

-- Dumping structure for table coozv.mdt_recent_activity
CREATE TABLE IF NOT EXISTS `mdt_recent_activity` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `type` enum('created','updated','deleted') NOT NULL,
  `date` datetime DEFAULT current_timestamp(),
  `activityid` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_recent_activity: ~2 rows (approximately)
DELETE FROM `mdt_recent_activity`;
INSERT INTO `mdt_recent_activity` (`id`, `citizenid`, `category`, `type`, `date`, `activityid`) VALUES
	(3, 'VCW52710', 'incidents', 'deleted', '2025-03-17 01:02:32', 1),
	(4, 'HFY79706', 'profiles', 'updated', '2025-03-17 01:03:18', NULL);

-- Dumping structure for table coozv.mdt_reports
CREATE TABLE IF NOT EXISTS `mdt_reports` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `author` varchar(50) DEFAULT NULL,
  `date` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_reports: ~0 rows (approximately)
DELETE FROM `mdt_reports`;
INSERT INTO `mdt_reports` (`id`, `title`, `description`, `author`, `date`) VALUES
	(1, 'selam', NULL, 'Dsadas Dsadas', '2025-03-17 01:02:04');

-- Dumping structure for table coozv.mdt_reports_citizens
CREATE TABLE IF NOT EXISTS `mdt_reports_citizens` (
  `reportid` int(10) unsigned NOT NULL,
  `citizenid` varchar(50) NOT NULL,
  KEY `FK_mdt_reports_players` (`citizenid`),
  KEY `reportid` (`reportid`),
  CONSTRAINT `FK_mdt_reports_players_mdt_reports` FOREIGN KEY (`reportid`) REFERENCES `mdt_reports` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_reports_citizens: ~0 rows (approximately)
DELETE FROM `mdt_reports_citizens`;

-- Dumping structure for table coozv.mdt_reports_evidence
CREATE TABLE IF NOT EXISTS `mdt_reports_evidence` (
  `reportid` int(10) unsigned NOT NULL,
  `label` varchar(50) NOT NULL DEFAULT '',
  `image` varchar(90) NOT NULL DEFAULT '',
  KEY `reportid` (`reportid`),
  CONSTRAINT `FK_mdt_reports_evidence_mdt_reports` FOREIGN KEY (`reportid`) REFERENCES `mdt_reports` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_reports_evidence: ~0 rows (approximately)
DELETE FROM `mdt_reports_evidence`;

-- Dumping structure for table coozv.mdt_reports_officers
CREATE TABLE IF NOT EXISTS `mdt_reports_officers` (
  `reportid` int(10) unsigned NOT NULL,
  `citizenid` varchar(50) NOT NULL,
  KEY `FK_mdt_reports_officers_players` (`citizenid`),
  KEY `reportid` (`reportid`),
  CONSTRAINT `FK_mdt_reports_officers_mdt_reports` FOREIGN KEY (`reportid`) REFERENCES `mdt_reports` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_reports_officers: ~0 rows (approximately)
DELETE FROM `mdt_reports_officers`;

-- Dumping structure for table coozv.mdt_vehicles
CREATE TABLE IF NOT EXISTS `mdt_vehicles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plate` varchar(50) NOT NULL,
  `image` varchar(90) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `known_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`known_information`)),
  PRIMARY KEY (`id`),
  UNIQUE KEY `plate` (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_vehicles: ~0 rows (approximately)
DELETE FROM `mdt_vehicles`;

-- Dumping structure for table coozv.mdt_warrants
CREATE TABLE IF NOT EXISTS `mdt_warrants` (
  `incidentid` int(10) unsigned NOT NULL,
  `citizenid` varchar(50) NOT NULL,
  `expiresAt` datetime NOT NULL,
  KEY `mdt_warrants_mdt_incidents_id_fk` (`incidentid`),
  CONSTRAINT `mdt_warrants_mdt_incidents_id_fk` FOREIGN KEY (`incidentid`) REFERENCES `mdt_incidents` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.mdt_warrants: ~0 rows (approximately)
DELETE FROM `mdt_warrants`;

-- Dumping structure for table coozv.m_hud_playlists
CREATE TABLE IF NOT EXISTS `m_hud_playlists` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` longtext DEFAULT NULL,
  `name` longtext NOT NULL,
  `cover` longtext DEFAULT NULL,
  `likes` longtext NOT NULL,
  `creatorname` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.m_hud_playlists: ~0 rows (approximately)
DELETE FROM `m_hud_playlists`;

-- Dumping structure for table coozv.m_hud_playlist_songs
CREATE TABLE IF NOT EXISTS `m_hud_playlist_songs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `playlist_id` int(11) DEFAULT NULL,
  `url` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `name` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `coverUrl` longtext DEFAULT NULL,
  KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.m_hud_playlist_songs: ~0 rows (approximately)
DELETE FROM `m_hud_playlist_songs`;

-- Dumping structure for table coozv.m_hud_stress
CREATE TABLE IF NOT EXISTS `m_hud_stress` (
  `identifier` varchar(46) DEFAULT NULL,
  `stress` int(11) DEFAULT NULL,
  UNIQUE KEY `identifier` (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.m_hud_stress: ~0 rows (approximately)
DELETE FROM `m_hud_stress`;

-- Dumping structure for table coozv.nc_playtimeshop
CREATE TABLE IF NOT EXISTS `nc_playtimeshop` (
  `#` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(255) NOT NULL DEFAULT '0',
  `coin` int(11) DEFAULT NULL,
  `firstName` varchar(255) DEFAULT NULL,
  `lastName` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`#`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.nc_playtimeshop: ~0 rows (approximately)
DELETE FROM `nc_playtimeshop`;

-- Dumping structure for table coozv.nc_playtimeshop_codes
CREATE TABLE IF NOT EXISTS `nc_playtimeshop_codes` (
  `#` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(50) DEFAULT NULL,
  `credit` int(11) DEFAULT NULL,
  PRIMARY KEY (`#`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.nc_playtimeshop_codes: ~0 rows (approximately)
DELETE FROM `nc_playtimeshop_codes`;

-- Dumping structure for table coozv.okokbanking_societies
CREATE TABLE IF NOT EXISTS `okokbanking_societies` (
  `society` varchar(255) DEFAULT NULL,
  `society_name` varchar(255) DEFAULT NULL,
  `value` int(50) DEFAULT NULL,
  `iban` varchar(255) NOT NULL,
  `is_withdrawing` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.okokbanking_societies: ~0 rows (approximately)
DELETE FROM `okokbanking_societies`;

-- Dumping structure for table coozv.okokbanking_transactions
CREATE TABLE IF NOT EXISTS `okokbanking_transactions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `receiver_identifier` varchar(255) NOT NULL,
  `receiver_name` varchar(255) NOT NULL,
  `sender_identifier` varchar(255) NOT NULL,
  `sender_name` varchar(255) NOT NULL,
  `date` varchar(255) NOT NULL,
  `value` int(50) NOT NULL,
  `type` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.okokbanking_transactions: ~1 rows (approximately)
DELETE FROM `okokbanking_transactions`;
INSERT INTO `okokbanking_transactions` (`id`, `receiver_identifier`, `receiver_name`, `sender_identifier`, `sender_name`, `date`, `value`, `type`) VALUES
	(1, 'bank', 'Bank (PIN)', 'EIH18257', 'Russell Crowe', '2025-11-15 17:37:41', 0, 'transfer');

-- Dumping structure for table coozv.ox_doorlock
CREATE TABLE IF NOT EXISTS `ox_doorlock` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `data` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ox_doorlock: ~0 rows (approximately)
DELETE FROM `ox_doorlock`;

-- Dumping structure for table coozv.ox_inventory
CREATE TABLE IF NOT EXISTS `ox_inventory` (
  `owner` varchar(60) DEFAULT NULL,
  `name` varchar(100) NOT NULL,
  `data` longtext DEFAULT NULL,
  `lastupdated` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  UNIQUE KEY `owner` (`owner`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ox_inventory: ~2 rows (approximately)
DELETE FROM `ox_inventory`;
INSERT INTO `ox_inventory` (`owner`, `name`, `data`, `lastupdated`) VALUES
	('DVD07998', 'Kişisel Depo - DVD07998', '[{"name":"ammo-heavysniper","count":958,"slot":1},{"name":"driver_license","count":1,"metadata":{"type":"Class C Driver License","firstname":"Efe","lastname":"Sarsılmaz","birthdate":"1999-10-12"},"slot":3},{"name":"phone","count":1,"slot":4},{"name":"money","count":25000,"slot":5},{"name":"id_card","count":1,"metadata":{"nationality":"Turkey","firstname":"Efe","birthdate":"1999-10-12","lastname":"Sarsılmaz","gender":0},"slot":6},{"name":"ammo-smg","count":983,"slot":7}]', '2025-11-04 20:25:31'),
	('WJC37394', 'Kişisel Depo - WJC37394', '[{"name":"WEAPON_TOLVECTOR","slot":1,"metadata":{"registered":"Zantree Can","components":[],"durability":100,"ammo":0,"serial":"995927XUS129717"},"count":1},{"name":"ammo-9","slot":2,"count":114},{"name":"heavyarmor","slot":3,"count":126},{"name":"WEAPON_TOLVECTOR","slot":4,"metadata":{"registered":"Zantree Can","components":[],"durability":100,"ammo":0,"serial":"679477RZH981144"},"count":1},{"name":"WEAPON_TOLVECTOR","slot":5,"metadata":{"registered":"Zantree Can","components":[],"durability":94.35999999999999,"ammo":232,"serial":"392333ILS740584"},"count":1},{"name":"aluminum","slot":6,"count":1},{"name":"phone","slot":7,"count":1},{"name":"WEAPON_TOLVECTOR","slot":8,"metadata":{"registered":"Zantree Can","components":[],"durability":100,"ammo":0,"serial":"920756XHF104567"},"count":1},{"name":"WEAPON_G19","slot":9,"metadata":{"registered":"Zantree Can","components":[],"durability":98.84999999999995,"ammo":137,"serial":"860789LGX754068"},"count":1}]', '2025-11-03 18:50:00'),
	('', 'personalstash_EIH18257', NULL, '2025-11-16 19:09:18');

-- Dumping structure for table coozv.oyuncu_guvenlik_kayit
CREATE TABLE IF NOT EXISTS `oyuncu_guvenlik_kayit` (
  `steam_hex_id` varchar(50) NOT NULL,
  `oyuncu_adi` varchar(255) DEFAULT 'Bilinmiyor',
  `son_giris_tarihi` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`steam_hex_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.oyuncu_guvenlik_kayit: ~0 rows (approximately)
DELETE FROM `oyuncu_guvenlik_kayit`;

-- Dumping structure for table coozv.pa_vehicleshop_showroom_vehicles
CREATE TABLE IF NOT EXISTS `pa_vehicleshop_showroom_vehicles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `dealershipId` int(11) DEFAULT NULL,
  `data` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.pa_vehicleshop_showroom_vehicles: ~0 rows (approximately)
DELETE FROM `pa_vehicleshop_showroom_vehicles`;

-- Dumping structure for table coozv.pa_vehicleshop_stocks
CREATE TABLE IF NOT EXISTS `pa_vehicleshop_stocks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `model` varchar(50) NOT NULL DEFAULT '0',
  `stock` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.pa_vehicleshop_stocks: ~0 rows (approximately)
DELETE FROM `pa_vehicleshop_stocks`;

-- Dumping structure for table coozv.phone_accounts
CREATE TABLE IF NOT EXISTS `phone_accounts` (
  `app` varchar(50) NOT NULL,
  `id` varchar(80) NOT NULL,
  `name` varchar(50) NOT NULL,
  `password` varchar(50) NOT NULL,
  `birthdate` varchar(50) NOT NULL,
  `gender` varchar(50) NOT NULL,
  `interested` text NOT NULL,
  `avatar` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.phone_accounts: ~0 rows (approximately)
DELETE FROM `phone_accounts`;

-- Dumping structure for table coozv.phone_alertjobs
CREATE TABLE IF NOT EXISTS `phone_alertjobs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `job` varchar(255) NOT NULL,
  `alerts` longtext DEFAULT NULL,
  `date` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `job` (`job`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.phone_alertjobs: ~0 rows (approximately)
DELETE FROM `phone_alertjobs`;

-- Dumping structure for table coozv.phone_backups
CREATE TABLE IF NOT EXISTS `phone_backups` (
  `id` varchar(100) NOT NULL,
  `phone_number` varchar(15) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_backups_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_backups: ~17 rows (approximately)
DELETE FROM `phone_backups`;
INSERT INTO `phone_backups` (`id`, `phone_number`) VALUES
	('BYW00072', '5200241781'),
	('EIH18257', '4800021485'),
	('FJY17019', '5201461820'),
	('FNU16178', '6027776998'),
	('GYY38354', '2059796133'),
	('HLY83785', '2059167594'),
	('HZK30117', '2051560108'),
	('JAX11032', '6021027870'),
	('KNK63128', '6025705628'),
	('QNB34275', '5205368163'),
	('QOU80537', '5209228674'),
	('RPB30164', '5208447399'),
	('RST11039', '5207625696'),
	('TMV37328', '2055336998'),
	('WJC37394', '4805337298'),
	('XDL74210', '2055766058'),
	('XRS51596', '6021865085');

-- Dumping structure for table coozv.phone_chats
CREATE TABLE IF NOT EXISTS `phone_chats` (
  `app` varchar(50) NOT NULL,
  `author` varchar(50) NOT NULL,
  `number` varchar(50) NOT NULL,
  `created` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.phone_chats: ~0 rows (approximately)
DELETE FROM `phone_chats`;

-- Dumping structure for table coozv.phone_clock_alarms
CREATE TABLE IF NOT EXISTS `phone_clock_alarms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `hours` int(2) NOT NULL DEFAULT 0,
  `minutes` int(2) NOT NULL DEFAULT 0,
  `label` varchar(50) DEFAULT NULL,
  `enabled` tinyint(1) DEFAULT 1,
  PRIMARY KEY (`id`,`phone_number`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_clock_alarms_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_clock_alarms: ~0 rows (approximately)
DELETE FROM `phone_clock_alarms`;

-- Dumping structure for table coozv.phone_crypto
CREATE TABLE IF NOT EXISTS `phone_crypto` (
  `id` varchar(100) NOT NULL,
  `coin` varchar(15) NOT NULL,
  `amount` double NOT NULL DEFAULT 0,
  `invested` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`,`coin`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_crypto: ~0 rows (approximately)
DELETE FROM `phone_crypto`;

-- Dumping structure for table coozv.phone_darkchat_accounts
CREATE TABLE IF NOT EXISTS `phone_darkchat_accounts` (
  `phone_number` varchar(15) NOT NULL,
  `username` varchar(20) NOT NULL,
  `password` varchar(100) NOT NULL,
  PRIMARY KEY (`username`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_darkchat_accounts_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_darkchat_accounts: ~0 rows (approximately)
DELETE FROM `phone_darkchat_accounts`;

-- Dumping structure for table coozv.phone_darkchat_channels
CREATE TABLE IF NOT EXISTS `phone_darkchat_channels` (
  `name` varchar(50) NOT NULL,
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_darkchat_channels: ~0 rows (approximately)
DELETE FROM `phone_darkchat_channels`;

-- Dumping structure for table coozv.phone_darkchat_members
CREATE TABLE IF NOT EXISTS `phone_darkchat_members` (
  `channel_name` varchar(50) NOT NULL,
  `username` varchar(20) NOT NULL,
  PRIMARY KEY (`channel_name`,`username`),
  KEY `username` (`username`),
  CONSTRAINT `phone_darkchat_members_ibfk_1` FOREIGN KEY (`channel_name`) REFERENCES `phone_darkchat_channels` (`name`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_darkchat_members_ibfk_2` FOREIGN KEY (`username`) REFERENCES `phone_darkchat_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_darkchat_members: ~0 rows (approximately)
DELETE FROM `phone_darkchat_members`;

-- Dumping structure for table coozv.phone_darkchat_messages
CREATE TABLE IF NOT EXISTS `phone_darkchat_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `channel` varchar(50) NOT NULL,
  `sender` varchar(20) NOT NULL,
  `content` varchar(1000) DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `channel` (`channel`),
  KEY `sender` (`sender`),
  CONSTRAINT `phone_darkchat_messages_ibfk_1` FOREIGN KEY (`channel`) REFERENCES `phone_darkchat_channels` (`name`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_darkchat_messages_ibfk_2` FOREIGN KEY (`sender`) REFERENCES `phone_darkchat_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_darkchat_messages: ~0 rows (approximately)
DELETE FROM `phone_darkchat_messages`;

-- Dumping structure for table coozv.phone_gallery
CREATE TABLE IF NOT EXISTS `phone_gallery` (
  `citizenid` varchar(255) NOT NULL,
  `image` varchar(255) NOT NULL,
  `date` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.phone_gallery: ~0 rows (approximately)
DELETE FROM `phone_gallery`;

-- Dumping structure for table coozv.phone_instagram_accounts
CREATE TABLE IF NOT EXISTS `phone_instagram_accounts` (
  `display_name` varchar(30) NOT NULL,
  `username` varchar(20) NOT NULL,
  `password` varchar(100) NOT NULL,
  `profile_image` varchar(500) DEFAULT NULL,
  `bio` varchar(100) DEFAULT NULL,
  `post_count` int(11) NOT NULL DEFAULT 0,
  `story_count` int(11) NOT NULL DEFAULT 0,
  `follower_count` int(11) NOT NULL DEFAULT 0,
  `following_count` int(11) NOT NULL DEFAULT 0,
  `phone_number` varchar(15) NOT NULL,
  `private` tinyint(1) DEFAULT 0,
  `verified` tinyint(1) DEFAULT 0,
  `date_joined` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`username`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_instagram_accounts_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_instagram_accounts: ~0 rows (approximately)
DELETE FROM `phone_instagram_accounts`;

-- Dumping structure for table coozv.phone_instagram_comments
CREATE TABLE IF NOT EXISTS `phone_instagram_comments` (
  `id` varchar(10) NOT NULL,
  `post_id` varchar(50) NOT NULL,
  `username` varchar(20) NOT NULL,
  `comment` varchar(500) NOT NULL DEFAULT '',
  `like_count` int(11) NOT NULL DEFAULT 0,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`),
  KEY `username` (`username`),
  CONSTRAINT `phone_instagram_comments_ibfk_1` FOREIGN KEY (`post_id`) REFERENCES `phone_instagram_posts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `phone_instagram_comments_ibfk_2` FOREIGN KEY (`username`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_instagram_comments: ~0 rows (approximately)
DELETE FROM `phone_instagram_comments`;

-- Dumping structure for table coozv.phone_instagram_follows
CREATE TABLE IF NOT EXISTS `phone_instagram_follows` (
  `followed` varchar(20) NOT NULL,
  `follower` varchar(20) NOT NULL,
  PRIMARY KEY (`followed`,`follower`),
  KEY `follower` (`follower`),
  CONSTRAINT `phone_instagram_follows_ibfk_1` FOREIGN KEY (`followed`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_instagram_follows_ibfk_2` FOREIGN KEY (`follower`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_instagram_follows: ~0 rows (approximately)
DELETE FROM `phone_instagram_follows`;

-- Dumping structure for table coozv.phone_instagram_follow_requests
CREATE TABLE IF NOT EXISTS `phone_instagram_follow_requests` (
  `requester` varchar(20) NOT NULL,
  `requestee` varchar(20) NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`requester`,`requestee`),
  KEY `requestee` (`requestee`),
  CONSTRAINT `phone_instagram_follow_requests_ibfk_1` FOREIGN KEY (`requester`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_instagram_follow_requests_ibfk_2` FOREIGN KEY (`requestee`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_instagram_follow_requests: ~0 rows (approximately)
DELETE FROM `phone_instagram_follow_requests`;

-- Dumping structure for table coozv.phone_instagram_likes
CREATE TABLE IF NOT EXISTS `phone_instagram_likes` (
  `id` varchar(10) NOT NULL,
  `username` varchar(20) NOT NULL,
  `is_comment` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`,`username`),
  KEY `username` (`username`),
  CONSTRAINT `phone_instagram_likes_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_instagram_likes: ~0 rows (approximately)
DELETE FROM `phone_instagram_likes`;

-- Dumping structure for table coozv.phone_instagram_messages
CREATE TABLE IF NOT EXISTS `phone_instagram_messages` (
  `id` varchar(10) NOT NULL,
  `sender` varchar(20) NOT NULL,
  `recipient` varchar(20) NOT NULL,
  `content` varchar(1000) DEFAULT NULL,
  `attachments` text DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `sender` (`sender`),
  KEY `recipient` (`recipient`),
  CONSTRAINT `phone_instagram_messages_ibfk_1` FOREIGN KEY (`sender`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_instagram_messages_ibfk_2` FOREIGN KEY (`recipient`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_instagram_messages: ~0 rows (approximately)
DELETE FROM `phone_instagram_messages`;

-- Dumping structure for table coozv.phone_instagram_notifications
CREATE TABLE IF NOT EXISTS `phone_instagram_notifications` (
  `id` varchar(10) NOT NULL,
  `username` varchar(20) NOT NULL,
  `from` varchar(20) NOT NULL,
  `type` varchar(20) NOT NULL,
  `post_id` varchar(50) DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `username` (`username`),
  KEY `from` (`from`),
  CONSTRAINT `phone_instagram_notifications_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_instagram_notifications_ibfk_2` FOREIGN KEY (`from`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_instagram_notifications: ~0 rows (approximately)
DELETE FROM `phone_instagram_notifications`;

-- Dumping structure for table coozv.phone_instagram_posts
CREATE TABLE IF NOT EXISTS `phone_instagram_posts` (
  `id` varchar(10) NOT NULL,
  `media` text DEFAULT NULL,
  `caption` varchar(500) NOT NULL DEFAULT '',
  `location` varchar(50) DEFAULT NULL,
  `like_count` int(11) NOT NULL DEFAULT 0,
  `comment_count` int(11) NOT NULL DEFAULT 0,
  `username` varchar(20) NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `username` (`username`),
  CONSTRAINT `phone_instagram_posts_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_instagram_posts: ~0 rows (approximately)
DELETE FROM `phone_instagram_posts`;

-- Dumping structure for table coozv.phone_instagram_stories
CREATE TABLE IF NOT EXISTS `phone_instagram_stories` (
  `id` varchar(10) NOT NULL,
  `username` varchar(20) NOT NULL,
  `image` varchar(500) NOT NULL,
  `metadata` longtext DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `username` (`username`),
  CONSTRAINT `phone_instagram_stories_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_instagram_stories: ~0 rows (approximately)
DELETE FROM `phone_instagram_stories`;

-- Dumping structure for table coozv.phone_instagram_stories_views
CREATE TABLE IF NOT EXISTS `phone_instagram_stories_views` (
  `story_id` varchar(50) NOT NULL,
  `viewer` varchar(20) NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`story_id`,`viewer`),
  KEY `viewer` (`viewer`),
  CONSTRAINT `phone_instagram_stories_views_ibfk_1` FOREIGN KEY (`story_id`) REFERENCES `phone_instagram_stories` (`id`) ON DELETE CASCADE,
  CONSTRAINT `phone_instagram_stories_views_ibfk_2` FOREIGN KEY (`viewer`) REFERENCES `phone_instagram_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_instagram_stories_views: ~0 rows (approximately)
DELETE FROM `phone_instagram_stories_views`;

-- Dumping structure for table coozv.phone_invoices
CREATE TABLE IF NOT EXISTS `phone_invoices` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `amount` int(11) NOT NULL DEFAULT 0,
  `society` tinytext DEFAULT NULL,
  `sender` varchar(50) DEFAULT NULL,
  `sendercitizenid` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.phone_invoices: ~0 rows (approximately)
DELETE FROM `phone_invoices`;

-- Dumping structure for table coozv.phone_last_phone
CREATE TABLE IF NOT EXISTS `phone_last_phone` (
  `id` varchar(100) NOT NULL,
  `phone_number` varchar(15) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_last_phone_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_last_phone: ~0 rows (approximately)
DELETE FROM `phone_last_phone`;

-- Dumping structure for table coozv.phone_logged_in_accounts
CREATE TABLE IF NOT EXISTS `phone_logged_in_accounts` (
  `phone_number` varchar(15) NOT NULL,
  `app` varchar(50) NOT NULL,
  `username` varchar(100) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`phone_number`,`app`,`username`),
  CONSTRAINT `phone_logged_in_accounts_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_logged_in_accounts: ~0 rows (approximately)
DELETE FROM `phone_logged_in_accounts`;

-- Dumping structure for table coozv.phone_mail_accounts
CREATE TABLE IF NOT EXISTS `phone_mail_accounts` (
  `address` varchar(100) NOT NULL,
  `password` varchar(100) NOT NULL,
  PRIMARY KEY (`address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_mail_accounts: ~0 rows (approximately)
DELETE FROM `phone_mail_accounts`;

-- Dumping structure for table coozv.phone_mail_deleted
CREATE TABLE IF NOT EXISTS `phone_mail_deleted` (
  `message_id` int(10) unsigned NOT NULL,
  `address` varchar(100) NOT NULL,
  PRIMARY KEY (`message_id`,`address`),
  KEY `address` (`address`),
  CONSTRAINT `phone_mail_deleted_ibfk_1` FOREIGN KEY (`message_id`) REFERENCES `phone_mail_messages` (`id`) ON DELETE CASCADE,
  CONSTRAINT `phone_mail_deleted_ibfk_2` FOREIGN KEY (`address`) REFERENCES `phone_mail_accounts` (`address`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_mail_deleted: ~0 rows (approximately)
DELETE FROM `phone_mail_deleted`;

-- Dumping structure for table coozv.phone_mail_messages
CREATE TABLE IF NOT EXISTS `phone_mail_messages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `recipient` varchar(100) NOT NULL,
  `sender` varchar(100) NOT NULL,
  `subject` varchar(100) NOT NULL,
  `content` text NOT NULL,
  `attachments` longtext DEFAULT NULL,
  `actions` longtext DEFAULT NULL,
  `read` tinyint(1) NOT NULL DEFAULT 0,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_recipient` (`recipient`),
  KEY `idx_sender` (`sender`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_mail_messages: ~0 rows (approximately)
DELETE FROM `phone_mail_messages`;

-- Dumping structure for table coozv.phone_maps_locations
CREATE TABLE IF NOT EXISTS `phone_maps_locations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `name` varchar(50) NOT NULL,
  `x_pos` float NOT NULL,
  `y_pos` float NOT NULL,
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_maps_locations_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_maps_locations: ~0 rows (approximately)
DELETE FROM `phone_maps_locations`;

-- Dumping structure for table coozv.phone_marketplace_posts
CREATE TABLE IF NOT EXISTS `phone_marketplace_posts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `title` varchar(50) NOT NULL,
  `description` varchar(1000) NOT NULL,
  `attachments` text DEFAULT NULL,
  `price` int(11) NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_marketplace_posts_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_marketplace_posts: ~0 rows (approximately)
DELETE FROM `phone_marketplace_posts`;

-- Dumping structure for table coozv.phone_messages
CREATE TABLE IF NOT EXISTS `phone_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(46) DEFAULT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `number` varchar(50) NOT NULL,
  `owner` varchar(50) DEFAULT NULL,
  `messages` text NOT NULL,
  `type` varchar(50) DEFAULT NULL,
  `read` int(11) DEFAULT NULL,
  `created` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.phone_messages: ~0 rows (approximately)
DELETE FROM `phone_messages`;

-- Dumping structure for table coozv.phone_message_channels
CREATE TABLE IF NOT EXISTS `phone_message_channels` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `is_group` tinyint(1) NOT NULL DEFAULT 0,
  `name` varchar(50) DEFAULT NULL,
  `last_message` varchar(50) NOT NULL DEFAULT '',
  `last_message_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_message_channels: ~0 rows (approximately)
DELETE FROM `phone_message_channels`;
INSERT INTO `phone_message_channels` (`id`, `is_group`, `name`, `last_message`, `last_message_timestamp`) VALUES
	(1, 0, NULL, '', '2025-11-02 15:38:01');

-- Dumping structure for table coozv.phone_message_members
CREATE TABLE IF NOT EXISTS `phone_message_members` (
  `channel_id` int(11) NOT NULL,
  `phone_number` varchar(15) NOT NULL,
  `is_owner` tinyint(1) NOT NULL DEFAULT 0,
  `deleted` tinyint(1) NOT NULL DEFAULT 0,
  `unread` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`channel_id`,`phone_number`),
  KEY `idx_members_phone_number` (`phone_number`),
  CONSTRAINT `phone_message_members_ibfk_1` FOREIGN KEY (`channel_id`) REFERENCES `phone_message_channels` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_message_members: ~0 rows (approximately)
DELETE FROM `phone_message_members`;

-- Dumping structure for table coozv.phone_message_messages
CREATE TABLE IF NOT EXISTS `phone_message_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `channel_id` int(11) NOT NULL,
  `sender` varchar(15) NOT NULL,
  `content` varchar(1000) DEFAULT NULL,
  `attachments` text DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `channel_id` (`channel_id`),
  CONSTRAINT `phone_message_messages_ibfk_1` FOREIGN KEY (`channel_id`) REFERENCES `phone_message_channels` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_message_messages: ~0 rows (approximately)
DELETE FROM `phone_message_messages`;

-- Dumping structure for table coozv.phone_music_playlists
CREATE TABLE IF NOT EXISTS `phone_music_playlists` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `name` varchar(50) NOT NULL,
  `cover` varchar(500) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_music_playlists_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_music_playlists: ~1 rows (approximately)
DELETE FROM `phone_music_playlists`;
INSERT INTO `phone_music_playlists` (`id`, `phone_number`, `name`, `cover`) VALUES
	(1, '2051560108', 'afs', NULL);

-- Dumping structure for table coozv.phone_music_saved_playlists
CREATE TABLE IF NOT EXISTS `phone_music_saved_playlists` (
  `playlist_id` int(10) unsigned NOT NULL,
  `phone_number` varchar(15) NOT NULL,
  PRIMARY KEY (`playlist_id`,`phone_number`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_music_saved_playlists_ibfk_1` FOREIGN KEY (`playlist_id`) REFERENCES `phone_music_playlists` (`id`) ON DELETE CASCADE,
  CONSTRAINT `phone_music_saved_playlists_ibfk_2` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_music_saved_playlists: ~1 rows (approximately)
DELETE FROM `phone_music_saved_playlists`;
INSERT INTO `phone_music_saved_playlists` (`playlist_id`, `phone_number`) VALUES
	(1, '2051560108');

-- Dumping structure for table coozv.phone_music_songs
CREATE TABLE IF NOT EXISTS `phone_music_songs` (
  `song_id` varchar(100) NOT NULL,
  `playlist_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`song_id`,`playlist_id`),
  KEY `playlist_id` (`playlist_id`),
  CONSTRAINT `phone_music_songs_ibfk_1` FOREIGN KEY (`playlist_id`) REFERENCES `phone_music_playlists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_music_songs: ~0 rows (approximately)
DELETE FROM `phone_music_songs`;

-- Dumping structure for table coozv.phone_news
CREATE TABLE IF NOT EXISTS `phone_news` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `owner` varchar(50) DEFAULT NULL,
  `title` varchar(50) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `image` text DEFAULT NULL,
  `created` varchar(50) DEFAULT '',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_news: ~0 rows (approximately)
DELETE FROM `phone_news`;

-- Dumping structure for table coozv.phone_notes
CREATE TABLE IF NOT EXISTS `phone_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `title` varchar(50) NOT NULL,
  `content` longtext DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_notes_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_notes: ~0 rows (approximately)
DELETE FROM `phone_notes`;

-- Dumping structure for table coozv.phone_notifications
CREATE TABLE IF NOT EXISTS `phone_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `app` varchar(50) NOT NULL,
  `title` varchar(50) DEFAULT NULL,
  `content` varchar(500) DEFAULT NULL,
  `thumbnail` varchar(500) DEFAULT NULL,
  `avatar` varchar(500) DEFAULT NULL,
  `show_avatar` tinyint(1) DEFAULT 0,
  `custom_data` text DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_notifications_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_notifications: ~2 rows (approximately)
DELETE FROM `phone_notifications`;
INSERT INTO `phone_notifications` (`id`, `phone_number`, `app`, `title`, `content`, `thumbnail`, `avatar`, `show_avatar`, `custom_data`, `timestamp`) VALUES
	(24, '2059796133', 'Phone', 'Zizi\'s Phone ', 'Missed call', NULL, NULL, 1, NULL, '2025-11-15 18:36:36'),
	(25, '2055336998', 'Phone', '2051560108', 'Missed call', NULL, NULL, 1, NULL, '2025-11-15 23:54:10');

-- Dumping structure for table coozv.phone_notifies
CREATE TABLE IF NOT EXISTS `phone_notifies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `phone` varchar(50) NOT NULL,
  `msg_content` text NOT NULL,
  `msg_head` varchar(50) NOT NULL DEFAULT '',
  `app_name` text NOT NULL,
  `msg_time` varchar(50) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=116 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.phone_notifies: ~0 rows (approximately)
DELETE FROM `phone_notifies`;

-- Dumping structure for table coozv.phone_phones
CREATE TABLE IF NOT EXISTS `phone_phones` (
  `id` varchar(100) NOT NULL,
  `owner_id` varchar(100) NOT NULL,
  `phone_number` varchar(15) NOT NULL,
  `name` varchar(50) DEFAULT NULL,
  `pin` varchar(4) DEFAULT NULL,
  `face_id` varchar(100) DEFAULT NULL,
  `settings` longtext DEFAULT NULL,
  `is_setup` tinyint(1) DEFAULT 0,
  `assigned` tinyint(1) DEFAULT 0,
  `battery` int(11) NOT NULL DEFAULT 100,
  `last_seen` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `phone_number` (`phone_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_phones: ~28 rows (approximately)
DELETE FROM `phone_phones`;
INSERT INTO `phone_phones` (`id`, `owner_id`, `phone_number`, `name`, `pin`, `face_id`, `settings`, `is_setup`, `assigned`, `battery`, `last_seen`) VALUES
	('ATL68952', 'ATL68952', '9077515158', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-04 15:13:23'),
	('BNN74169', 'BNN74169', '9077765004', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-03 18:01:16'),
	('BYW00072', 'BYW00072', '5200241781', 'Aced\'s Phone', NULL, NULL, '{"latestVersion":"2.3.7","display":{"size":0.7,"theme":"dark","automatic":false,"brightness":1},"version":"2.3.7","airplaneMode":false,"weather":{"celcius":false},"sound":{"ringtone":"default","silent":false,"callVolume":0.5,"volume":0.5,"texttone":"default"},"wallpaper":{"blur":false,"background":"cloud8"},"lockscreen":{"layout":1,"fontStyle":1,"color":"gradient"},"locale":"de","name":"Aced\'s Phone","phone":{"showCallerId":true},"storage":{"total":128000000,"used":8576331},"notifications":[],"doNotDisturb":false,"streamerMode":false,"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]],"time":{"twelveHourClock":false},"security":{"pinCode":false,"faceId":false}}', 1, 0, 100, '2025-11-16 20:19:00'),
	('DER51835', 'DER51835', '4801005376', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-03 19:48:48'),
	('DVD07998', 'DVD07998', '9074381292', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-17 12:49:36'),
	('EIH18257', 'EIH18257', '4800021485', 'Russell\'s Phone', NULL, NULL, '{"lockscreen":{"layout":1,"color":"gradient","fontStyle":1},"version":"2.3.7","notifications":[],"weather":{"celcius":false},"security":{"pinCode":false,"faceId":false},"storage":{"total":128000000,"used":8576331},"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]],"airplaneMode":false,"locale":"en","latestVersion":"2.3.7","name":"Russell\'s Phone","wallpaper":{"blur":false,"background":"cloud8"},"sound":{"callVolume":0.5,"texttone":"default","silent":false,"ringtone":"default","volume":0.5},"time":{"twelveHourClock":false},"phone":{"showCallerId":true},"doNotDisturb":false,"streamerMode":false,"display":{"automatic":false,"theme":"dark","brightness":1,"size":0.7}}', 1, 0, 100, '2025-11-17 02:25:25'),
	('FJY17019', 'FJY17019', '5201461820', 'Honty\'s Phone', NULL, NULL, '{"weather":{"celcius":false},"time":{"twelveHourClock":false},"version":"2.3.7","notifications":[],"sound":{"callVolume":0.5,"texttone":"default","silent":false,"volume":0.5,"ringtone":"default"},"phone":{"showCallerId":true},"wallpaper":{"blur":false,"background":"cloud8"},"storage":{"total":128000000,"used":8576331},"name":"Honty\'s Phone","display":{"automatic":false,"brightness":1,"theme":"dark","size":0.7},"doNotDisturb":false,"locale":"en","airplaneMode":false,"streamerMode":false,"latestVersion":"2.3.7","apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]],"lockscreen":{"fontStyle":1,"color":"gradient","layout":1},"security":{"faceId":false,"pinCode":false}}', 1, 0, 100, '2025-11-03 19:30:21'),
	('FNU16178', 'FNU16178', '6027776998', 'Boklu \'s Phone', NULL, NULL, '{"wallpaper":{"blur":false,"background":"cloud8"},"display":{"size":0.7,"automatic":false,"theme":"dark","brightness":1},"notifications":[],"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]],"latestVersion":"2.3.7","doNotDisturb":false,"streamerMode":false,"airplaneMode":false,"sound":{"volume":0.5,"callVolume":0.5,"texttone":"default","ringtone":"default","silent":false},"locale":"tr","security":{"faceId":false,"pinCode":false},"lockscreen":{"fontStyle":1,"color":"gradient","layout":1},"weather":{"celcius":false},"phone":{"showCallerId":true},"time":{"twelveHourClock":false},"version":"2.3.7","storage":{"used":8576331,"total":128000000},"name":"Boklu \'s Phone"}', 1, 0, 100, '2025-11-17 03:37:55'),
	('GYY38354', 'GYY38354', '2059796133', 'Zizi\'s Phone', NULL, NULL, '{"display":{"theme":"dark","size":0.7,"brightness":1,"automatic":false},"notifications":[],"storage":{"total":128000000,"used":8576331},"weather":{"celcius":false},"time":{"twelveHourClock":false},"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]],"streamerMode":false,"sound":{"silent":false,"ringtone":"default","volume":0.5,"callVolume":0.5,"texttone":"default"},"airplaneMode":false,"phone":{"showCallerId":true},"name":"Zizi\'s Phone","latestVersion":"2.3.7","lockscreen":{"color":"gradient","fontStyle":1,"layout":1},"locale":"tr","doNotDisturb":false,"version":"2.3.7","security":{"pinCode":false,"faceId":false},"wallpaper":{"blur":false,"background":"cloud8"}}', 1, 0, 100, '2025-11-03 21:02:06'),
	('HFZ11174', 'HFZ11174', '9079515661', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-03 17:05:35'),
	('HLY83785', 'HLY83785', '2059167594', 'Sefa\'s Phone', NULL, NULL, '{"locale":"tr","lockscreen":{"color":"gradient","fontStyle":1,"layout":1},"sound":{"silent":false,"texttone":"default","volume":0.5,"ringtone":"default","callVolume":0.5},"storage":{"used":8576331,"total":128000000},"display":{"automatic":false,"theme":"light","brightness":1,"size":0.7},"wallpaper":{"background":"cloud8","blur":false},"streamerMode":false,"airplaneMode":false,"latestVersion":"2.3.7","phone":{"showCallerId":true},"time":{"twelveHourClock":false},"version":"2.3.7","security":{"pinCode":false,"faceId":false},"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services","TikTok","YellowPages","MarketPlace","Crypto","DarkChat","Tinder"]],"doNotDisturb":false,"notifications":[],"weather":{"celcius":false},"name":"Sefa\'s Phone"}', 1, 0, 100, '2025-11-04 19:29:15'),
	('HZK30117', 'HZK30117', '2051560108', 'Asda\'s Phone', NULL, NULL, '{"phone":{"showCallerId":true},"name":"Asda\'s Phone","doNotDisturb":false,"streamerMode":false,"time":{"twelveHourClock":false},"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services","YellowPages"]],"locale":"tr","lockscreen":{"fontStyle":1,"layout":1,"color":"gradient"},"display":{"size":0.7,"brightness":1,"theme":"dark","automatic":false},"notifications":[],"sound":{"ringtone":"default","texttone":"default","silent":false,"callVolume":0.5,"volume":0.5},"latestVersion":"2.3.7","wallpaper":{"blur":false,"background":"cloud8"},"airplaneMode":false,"version":"2.3.7","storage":{"used":8576331,"total":128000000},"weather":{"celcius":false},"security":{"faceId":false,"pinCode":false}}', 1, 0, 100, '2025-11-17 01:43:40'),
	('JAX11032', 'JAX11032', '6021027870', 'Petro\'s Phone', NULL, NULL, '{"weather":{"celcius":false},"time":{"twelveHourClock":false},"version":"2.3.7","latestVersion":"2.3.7","sound":{"callVolume":0.5,"texttone":"default","silent":false,"ringtone":"default","volume":0.5},"lockscreen":{"fontStyle":1,"color":"gradient","layout":1},"wallpaper":{"blur":false,"background":"cloud8"},"storage":{"total":128000000,"used":8576331},"name":"Petro\'s Phone","display":{"size":0.7,"brightness":1,"automatic":false,"theme":"dark"},"doNotDisturb":false,"locale":"tr","airplaneMode":false,"streamerMode":false,"security":{"faceId":false,"pinCode":false},"notifications":[],"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]],"phone":{"showCallerId":true}}', 1, 0, 100, '2025-11-03 20:01:17'),
	('JYB49700', 'JYB49700', '4805542833', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-04 14:04:45'),
	('KNK63128', 'KNK63128', '6025705628', 'Atakürt\'s Phone', NULL, NULL, '{"sound":{"callVolume":0.5,"texttone":"default","volume":0.5,"ringtone":"default","silent":false},"name":"Atakürt\'s Phone","phone":{"showCallerId":true},"notifications":[],"airplaneMode":false,"security":{"faceId":false,"pinCode":false},"streamerMode":false,"locale":"tr","time":{"twelveHourClock":false},"weather":{"celcius":false},"storage":{"total":128000000,"used":8576331},"display":{"size":0.7,"theme":"dark","brightness":1,"automatic":false},"doNotDisturb":false,"latestVersion":"2.3.7","wallpaper":{"background":"cloud8","blur":false},"version":"2.3.7","lockscreen":{"color":"gradient","fontStyle":1,"layout":1},"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]]}', 1, 0, 100, '2025-11-17 00:36:22'),
	('QNB34275', 'QNB34275', '5205368163', 'Mustafa Ahmet\'s Phone', NULL, NULL, '{"time":{"twelveHourClock":false},"wallpaper":{"blur":false,"background":"cloud8"},"storage":{"used":8576331,"total":128000000},"sound":{"ringtone":"default","silent":false,"volume":0.5,"texttone":"default","callVolume":0.5},"lockscreen":{"layout":1,"color":"gradient","fontStyle":1},"version":"2.3.7","latestVersion":"2.3.7","streamerMode":false,"airplaneMode":false,"display":{"theme":"dark","size":0.7,"automatic":false,"brightness":1},"notifications":[],"name":"Mustafa Ahmet\'s Phone","locale":"tr","weather":{"celcius":false},"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]],"security":{"faceId":false,"pinCode":false},"phone":{"showCallerId":true},"doNotDisturb":false}', 1, 0, 100, '2025-11-04 08:39:55'),
	('QOU80537', 'QOU80537', '5209228674', 'Rıco\'s Phone', '2222', NULL, '{"doNotDisturb":false,"sound":{"ringtone":"default","volume":0.5,"silent":false,"callVolume":0.5,"texttone":"default"},"name":"Rıco\'s Phone","weather":{"celcius":false},"wallpaper":{"background":"cloud8","blur":false},"display":{"theme":"light","automatic":false,"brightness":1,"size":0.7},"notifications":[],"streamerMode":false,"locale":"de","phone":{"showCallerId":true},"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services","YellowPages"]],"security":{"pinCode":true,"faceId":false},"version":"2.3.7","storage":{"used":8576331,"total":128000000},"airplaneMode":false,"time":{"twelveHourClock":false},"latestVersion":"2.3.7","lockscreen":{"fontStyle":1,"layout":1,"color":"gradient"}}', 1, 0, 100, '2025-11-03 14:12:43'),
	('RBG67155', 'RBG67155', '5206408894', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-03 18:23:34'),
	('RPB30164', 'RPB30164', '5208447399', 'Fypenos\'s Phone', NULL, NULL, '{"doNotDisturb":false,"storage":{"total":128000000,"used":8576331},"wallpaper":{"background":"cloud8","blur":false},"notifications":[],"version":"2.3.7","locale":"tr","time":{"twelveHourClock":false},"streamerMode":false,"lockscreen":{"fontStyle":1,"color":"gradient","layout":1},"weather":{"celcius":false},"name":"Fypenos\'s Phone","sound":{"texttone":"default","callVolume":0.5,"volume":0.5,"silent":false,"ringtone":"default"},"display":{"brightness":1,"automatic":false,"size":0.7,"theme":"dark"},"latestVersion":"2.3.7","security":{"pinCode":false,"faceId":false},"airplaneMode":false,"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]],"phone":{"showCallerId":true}}', 1, 0, 100, '2025-11-04 13:14:48'),
	('RST11039', 'RST11039', '5207625696', 'Yigits\'s Phone', '1111', 'RST11039', '{"doNotDisturb":false,"storage":{"total":128000000,"used":8576331},"wallpaper":{"background":"cloud8","blur":false},"notifications":[],"version":"2.3.7","streamerMode":false,"time":{"twelveHourClock":false},"locale":"tr","lockscreen":{"fontStyle":1,"color":"gradient","layout":1},"weather":{"celcius":false},"name":"Yigits\'s Phone","latestVersion":"2.3.7","display":{"brightness":1,"automatic":false,"theme":"dark","size":0.7},"sound":{"volume":0.5,"callVolume":0.5,"texttone":"default","silent":false,"ringtone":"default"},"security":{"faceId":true,"pinCode":true},"airplaneMode":false,"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]],"phone":{"showCallerId":true}}', 1, 0, 100, '2025-11-03 18:15:59'),
	('TMV37328', 'TMV37328', '2055336998', 'Sada\'s Phone', '2323', NULL, '{"storage":{"used":8576331,"total":128000000},"sound":{"silent":false,"ringtone":"default","texttone":"default","callVolume":0.5,"volume":0.5},"streamerMode":false,"security":{"faceId":false,"pinCode":true},"latestVersion":"2.3.7","version":"2.3.7","locale":"tr","doNotDisturb":false,"name":"Sada\'s Phone","phone":{"showCallerId":true},"weather":{"celcius":false},"time":{"twelveHourClock":false},"airplaneMode":false,"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services","YellowPages"]],"display":{"brightness":1,"automatic":false,"size":0.7,"theme":"dark"},"notifications":[],"wallpaper":{"background":"cloud8","blur":false},"lockscreen":{"layout":1,"color":"gradient","fontStyle":1}}', 1, 0, 100, '2025-11-03 15:42:34'),
	('UON85276', 'UON85276', '6021425469', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-02 15:52:24'),
	('UYV17385', 'UYV17385', '5205633344', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-02 19:55:16'),
	('WGI37560', 'WGI37560', '5201257258', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-04 21:16:39'),
	('WJC37394', 'WJC37394', '4805337298', 'Zantree\'s Phone', NULL, NULL, '{"doNotDisturb":false,"sound":{"ringtone":"default","texttone":"default","callVolume":0.5,"silent":false,"volume":0.5},"name":"Zantree\'s Phone","time":{"twelveHourClock":false},"wallpaper":{"background":"cloud8","blur":false},"display":{"automatic":false,"theme":"dark","brightness":1,"size":0.7},"notifications":[],"streamerMode":false,"locale":"en","phone":{"showCallerId":true},"lockscreen":{"fontStyle":1,"layout":1,"color":"gradient"},"version":"2.3.7","airplaneMode":false,"storage":{"total":128000000,"used":8576331},"latestVersion":"2.3.7","weather":{"celcius":false},"security":{"faceId":false,"pinCode":false},"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]]}', 1, 0, 100, '2025-11-04 16:10:56'),
	('XDL74210', 'XDL74210', '2055766058', 'Eric\'s Phone', '1111', NULL, '{"weather":{"celcius":false},"time":{"twelveHourClock":false},"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services","DarkChat","TikTok","MarketPlace","Twitter","YellowPages"]],"latestVersion":"2.3.7","sound":{"callVolume":0.5,"silent":false,"volume":0.5,"texttone":"default","ringtone":"default"},"phone":{"showCallerId":true},"wallpaper":{"blur":false,"background":"cloud8"},"storage":{"total":128000000,"used":8576331},"name":"Eric\'s Phone","display":{"size":0.7,"brightness":1,"automatic":false,"theme":"dark"},"doNotDisturb":false,"locale":"tr","airplaneMode":false,"streamerMode":false,"version":"2.3.7","notifications":[],"security":{"faceId":false,"pinCode":true},"lockscreen":{"fontStyle":1,"layout":1,"color":"gradient"}}', 1, 0, 100, '2025-11-04 20:52:39'),
	('XRS51596', 'XRS51596', '6021865085', 'Sf\'s Phone', NULL, NULL, '{"doNotDisturb":false,"sound":{"ringtone":"default","volume":0.5,"callVolume":0.5,"silent":false,"texttone":"default"},"name":"Sf\'s Phone","weather":{"celcius":false},"wallpaper":{"background":"cloud8","blur":false},"display":{"automatic":false,"size":0.7,"brightness":1,"theme":"dark"},"notifications":[],"streamerMode":false,"locale":"tr","phone":{"showCallerId":true},"lockscreen":{"fontStyle":1,"layout":1,"color":"gradient"},"security":{"faceId":false,"pinCode":false},"apps":[["Phone","Messages","Camera","Photos"],["Settings","AppStore","Clock","Mail","Weather","Wallet","Garage","Home","Maps","Notes","Calculator","VoiceMemo","Music","Services"]],"storage":{"used":8576331,"total":128000000},"latestVersion":"2.3.7","time":{"twelveHourClock":false},"airplaneMode":false,"version":"2.3.7"}', 1, 0, 100, '2025-11-03 15:24:33'),
	('YQQ65276', 'YQQ65276', '2055035265', NULL, NULL, NULL, NULL, 0, 0, 100, '2025-11-04 14:55:25');

-- Dumping structure for table coozv.phone_phone_blocked_numbers
CREATE TABLE IF NOT EXISTS `phone_phone_blocked_numbers` (
  `phone_number` varchar(15) NOT NULL,
  `blocked_number` varchar(15) NOT NULL,
  PRIMARY KEY (`phone_number`,`blocked_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_phone_blocked_numbers: ~0 rows (approximately)
DELETE FROM `phone_phone_blocked_numbers`;

-- Dumping structure for table coozv.phone_phone_calls
CREATE TABLE IF NOT EXISTS `phone_phone_calls` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `caller` varchar(15) NOT NULL,
  `callee` varchar(15) NOT NULL,
  `duration` int(11) NOT NULL DEFAULT 0,
  `answered` tinyint(1) DEFAULT 0,
  `hide_caller_id` tinyint(1) DEFAULT 0,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_calls_missed` (`callee`,`answered`),
  KEY `idx_calls_callee_id` (`callee`),
  KEY `idx_calls_caller_id` (`caller`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_phone_calls: ~10 rows (approximately)
DELETE FROM `phone_phone_calls`;
INSERT INTO `phone_phone_calls` (`id`, `caller`, `callee`, `duration`, `answered`, `hide_caller_id`, `timestamp`) VALUES
	(1, '2051560108', '2059796133', 25, 1, 0, '2025-11-03 20:17:43'),
	(2, '2051560108', '2059796133', 19, 1, 0, '2025-11-03 20:18:06'),
	(3, '2051560108', '2059796133', 0, 0, 0, '2025-11-04 00:28:26'),
	(4, '2051560108', '2059796133', 0, 0, 0, '2025-11-04 00:29:02'),
	(5, '6027776998', '2051560108', 56, 1, 0, '2025-11-04 00:34:50'),
	(6, '6027776998', '2051560108', 17, 1, 0, '2025-11-04 00:35:16'),
	(7, '6027776998', '2051560108', 0, 0, 0, '2025-11-04 11:25:22'),
	(8, '2051560108', '2059796133', 0, 0, 0, '2025-11-04 20:23:13'),
	(9, '2051560108', '2055336998', 0, 0, 0, '2025-11-04 20:23:42'),
	(10, '2051560108', '2059796133', 0, 0, 0, '2025-11-15 18:36:36'),
	(11, '2051560108', '2055336998', 0, 0, 0, '2025-11-15 23:54:10');

-- Dumping structure for table coozv.phone_phone_contacts
CREATE TABLE IF NOT EXISTS `phone_phone_contacts` (
  `contact_phone_number` varchar(15) NOT NULL,
  `firstname` varchar(50) NOT NULL DEFAULT '',
  `lastname` varchar(50) NOT NULL DEFAULT '',
  `profile_image` varchar(500) DEFAULT NULL,
  `email` varchar(50) DEFAULT NULL,
  `address` varchar(50) DEFAULT NULL,
  `favourite` tinyint(1) DEFAULT 0,
  `phone_number` varchar(15) NOT NULL,
  PRIMARY KEY (`contact_phone_number`,`phone_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_phone_contacts: ~2 rows (approximately)
DELETE FROM `phone_phone_contacts`;
INSERT INTO `phone_phone_contacts` (`contact_phone_number`, `firstname`, `lastname`, `profile_image`, `email`, `address`, `favourite`, `phone_number`) VALUES
	('2051560108', 'Asda\'s Phone', '', NULL, NULL, NULL, 0, '6027776998'),
	('2059796133', 'Zizi\'s Phone', '', NULL, NULL, NULL, 0, '2051560108');

-- Dumping structure for table coozv.phone_phone_voicemail
CREATE TABLE IF NOT EXISTS `phone_phone_voicemail` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `caller` varchar(15) NOT NULL,
  `callee` varchar(15) NOT NULL,
  `url` varchar(500) NOT NULL,
  `duration` int(11) NOT NULL,
  `hide_caller_id` tinyint(1) DEFAULT 0,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_phone_voicemail: ~0 rows (approximately)
DELETE FROM `phone_phone_voicemail`;

-- Dumping structure for table coozv.phone_photos
CREATE TABLE IF NOT EXISTS `phone_photos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `link` varchar(500) NOT NULL,
  `is_video` tinyint(1) DEFAULT 0,
  `size` float NOT NULL DEFAULT 0,
  `metadata` varchar(20) DEFAULT NULL,
  `is_favourite` tinyint(1) DEFAULT 0,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_photos_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_photos: ~0 rows (approximately)
DELETE FROM `phone_photos`;

-- Dumping structure for table coozv.phone_photo_albums
CREATE TABLE IF NOT EXISTS `phone_photo_albums` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `title` varchar(100) NOT NULL,
  `shared` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_photo_albums_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_photo_albums: ~0 rows (approximately)
DELETE FROM `phone_photo_albums`;

-- Dumping structure for table coozv.phone_photo_album_members
CREATE TABLE IF NOT EXISTS `phone_photo_album_members` (
  `album_id` int(11) NOT NULL,
  `phone_number` varchar(15) NOT NULL,
  PRIMARY KEY (`album_id`,`phone_number`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_photo_album_members_ibfk_1` FOREIGN KEY (`album_id`) REFERENCES `phone_photo_albums` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_photo_album_members_ibfk_2` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_photo_album_members: ~0 rows (approximately)
DELETE FROM `phone_photo_album_members`;

-- Dumping structure for table coozv.phone_photo_album_photos
CREATE TABLE IF NOT EXISTS `phone_photo_album_photos` (
  `album_id` int(11) NOT NULL,
  `photo_id` int(11) NOT NULL,
  PRIMARY KEY (`album_id`,`photo_id`),
  KEY `photo_id` (`photo_id`),
  CONSTRAINT `phone_photo_album_photos_ibfk_1` FOREIGN KEY (`album_id`) REFERENCES `phone_photo_albums` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_photo_album_photos_ibfk_2` FOREIGN KEY (`photo_id`) REFERENCES `phone_photos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_photo_album_photos: ~0 rows (approximately)
DELETE FROM `phone_photo_album_photos`;

-- Dumping structure for table coozv.phone_services_channels
CREATE TABLE IF NOT EXISTS `phone_services_channels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `company` varchar(50) NOT NULL,
  `last_message` varchar(100) DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_services_channels: ~1 rows (approximately)
DELETE FROM `phone_services_channels`;
INSERT INTO `phone_services_channels` (`id`, `phone_number`, `company`, `last_message`, `timestamp`) VALUES
	(1, '2051560108', 'taxi', NULL, '2025-11-15 18:37:11');

-- Dumping structure for table coozv.phone_services_messages
CREATE TABLE IF NOT EXISTS `phone_services_messages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `channel_id` int(10) unsigned NOT NULL,
  `sender` varchar(15) NOT NULL,
  `message` varchar(1000) NOT NULL,
  `x_pos` int(11) DEFAULT NULL,
  `y_pos` int(11) DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `channel_id` (`channel_id`),
  CONSTRAINT `phone_services_messages_ibfk_1` FOREIGN KEY (`channel_id`) REFERENCES `phone_services_channels` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_services_messages: ~0 rows (approximately)
DELETE FROM `phone_services_messages`;

-- Dumping structure for table coozv.phone_tiktok_accounts
CREATE TABLE IF NOT EXISTS `phone_tiktok_accounts` (
  `name` varchar(30) NOT NULL,
  `bio` varchar(100) DEFAULT NULL,
  `avatar` varchar(500) DEFAULT NULL,
  `username` varchar(20) NOT NULL,
  `password` varchar(100) NOT NULL,
  `verified` tinyint(1) DEFAULT 0,
  `follower_count` int(11) NOT NULL DEFAULT 0,
  `following_count` int(11) NOT NULL DEFAULT 0,
  `like_count` int(11) NOT NULL DEFAULT 0,
  `video_count` int(11) NOT NULL DEFAULT 0,
  `twitter` varchar(20) DEFAULT NULL,
  `instagram` varchar(20) DEFAULT NULL,
  `show_likes` tinyint(1) DEFAULT 1,
  `phone_number` varchar(15) NOT NULL,
  `date_joined` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`username`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_tiktok_accounts_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_accounts: ~0 rows (approximately)
DELETE FROM `phone_tiktok_accounts`;

-- Dumping structure for table coozv.phone_tiktok_channels
CREATE TABLE IF NOT EXISTS `phone_tiktok_channels` (
  `id` varchar(10) NOT NULL,
  `last_message` varchar(50) NOT NULL,
  `member_1` varchar(20) NOT NULL,
  `member_2` varchar(20) NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `member_1` (`member_1`,`member_2`),
  KEY `member_2` (`member_2`),
  CONSTRAINT `phone_tiktok_channels_ibfk_1` FOREIGN KEY (`member_1`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_channels_ibfk_2` FOREIGN KEY (`member_2`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_channels: ~0 rows (approximately)
DELETE FROM `phone_tiktok_channels`;

-- Dumping structure for table coozv.phone_tiktok_comments
CREATE TABLE IF NOT EXISTS `phone_tiktok_comments` (
  `id` varchar(10) NOT NULL,
  `reply_to` varchar(10) DEFAULT NULL,
  `video_id` varchar(10) NOT NULL,
  `username` varchar(20) NOT NULL,
  `comment` varchar(550) NOT NULL,
  `likes` int(11) NOT NULL DEFAULT 0,
  `replies` int(11) NOT NULL DEFAULT 0,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `video_id` (`video_id`),
  KEY `username` (`username`),
  KEY `reply_to` (`reply_to`),
  CONSTRAINT `phone_tiktok_comments_ibfk_1` FOREIGN KEY (`video_id`) REFERENCES `phone_tiktok_videos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_comments_ibfk_2` FOREIGN KEY (`username`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_comments_ibfk_3` FOREIGN KEY (`reply_to`) REFERENCES `phone_tiktok_comments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_comments: ~0 rows (approximately)
DELETE FROM `phone_tiktok_comments`;

-- Dumping structure for table coozv.phone_tiktok_comments_likes
CREATE TABLE IF NOT EXISTS `phone_tiktok_comments_likes` (
  `username` varchar(20) NOT NULL,
  `comment_id` varchar(10) NOT NULL,
  PRIMARY KEY (`username`,`comment_id`),
  KEY `comment_id` (`comment_id`),
  CONSTRAINT `phone_tiktok_comments_likes_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_comments_likes_ibfk_2` FOREIGN KEY (`comment_id`) REFERENCES `phone_tiktok_comments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_comments_likes: ~0 rows (approximately)
DELETE FROM `phone_tiktok_comments_likes`;

-- Dumping structure for table coozv.phone_tiktok_follows
CREATE TABLE IF NOT EXISTS `phone_tiktok_follows` (
  `followed` varchar(20) NOT NULL,
  `follower` varchar(20) NOT NULL,
  PRIMARY KEY (`followed`,`follower`),
  KEY `follower` (`follower`),
  CONSTRAINT `phone_tiktok_follows_ibfk_1` FOREIGN KEY (`followed`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_follows_ibfk_2` FOREIGN KEY (`follower`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_follows: ~0 rows (approximately)
DELETE FROM `phone_tiktok_follows`;

-- Dumping structure for table coozv.phone_tiktok_likes
CREATE TABLE IF NOT EXISTS `phone_tiktok_likes` (
  `username` varchar(20) NOT NULL,
  `video_id` varchar(10) NOT NULL,
  PRIMARY KEY (`username`,`video_id`),
  KEY `video_id` (`video_id`),
  CONSTRAINT `phone_tiktok_likes_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_likes_ibfk_2` FOREIGN KEY (`video_id`) REFERENCES `phone_tiktok_videos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_likes: ~0 rows (approximately)
DELETE FROM `phone_tiktok_likes`;

-- Dumping structure for table coozv.phone_tiktok_messages
CREATE TABLE IF NOT EXISTS `phone_tiktok_messages` (
  `id` varchar(10) NOT NULL,
  `channel_id` varchar(10) NOT NULL,
  `sender` varchar(20) NOT NULL,
  `content` varchar(500) NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `channel_id` (`channel_id`),
  KEY `sender` (`sender`),
  CONSTRAINT `phone_tiktok_messages_ibfk_1` FOREIGN KEY (`channel_id`) REFERENCES `phone_tiktok_channels` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_messages_ibfk_2` FOREIGN KEY (`sender`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_messages: ~0 rows (approximately)
DELETE FROM `phone_tiktok_messages`;

-- Dumping structure for table coozv.phone_tiktok_notifications
CREATE TABLE IF NOT EXISTS `phone_tiktok_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `username` varchar(20) NOT NULL,
  `from` varchar(20) NOT NULL,
  `type` varchar(20) NOT NULL,
  `video_id` varchar(10) DEFAULT NULL,
  `comment_id` varchar(10) DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `username` (`username`),
  KEY `from` (`from`),
  KEY `video_id` (`video_id`),
  KEY `comment_id` (`comment_id`),
  CONSTRAINT `phone_tiktok_notifications_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_notifications_ibfk_2` FOREIGN KEY (`from`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_notifications_ibfk_3` FOREIGN KEY (`video_id`) REFERENCES `phone_tiktok_videos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_notifications_ibfk_4` FOREIGN KEY (`comment_id`) REFERENCES `phone_tiktok_comments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_notifications: ~0 rows (approximately)
DELETE FROM `phone_tiktok_notifications`;

-- Dumping structure for table coozv.phone_tiktok_pinned_videos
CREATE TABLE IF NOT EXISTS `phone_tiktok_pinned_videos` (
  `username` varchar(20) NOT NULL,
  `video_id` varchar(10) NOT NULL,
  PRIMARY KEY (`username`,`video_id`),
  KEY `video_id` (`video_id`),
  CONSTRAINT `phone_tiktok_pinned_videos_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_pinned_videos_ibfk_2` FOREIGN KEY (`video_id`) REFERENCES `phone_tiktok_videos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_pinned_videos: ~0 rows (approximately)
DELETE FROM `phone_tiktok_pinned_videos`;

-- Dumping structure for table coozv.phone_tiktok_saves
CREATE TABLE IF NOT EXISTS `phone_tiktok_saves` (
  `username` varchar(20) NOT NULL,
  `video_id` varchar(10) NOT NULL,
  PRIMARY KEY (`username`,`video_id`),
  KEY `video_id` (`video_id`),
  CONSTRAINT `phone_tiktok_saves_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_saves_ibfk_2` FOREIGN KEY (`video_id`) REFERENCES `phone_tiktok_videos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_saves: ~0 rows (approximately)
DELETE FROM `phone_tiktok_saves`;

-- Dumping structure for table coozv.phone_tiktok_unread_messages
CREATE TABLE IF NOT EXISTS `phone_tiktok_unread_messages` (
  `username` varchar(20) NOT NULL,
  `channel_id` varchar(10) NOT NULL,
  `amount` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`username`,`channel_id`),
  KEY `channel_id` (`channel_id`),
  CONSTRAINT `phone_tiktok_unread_messages_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_unread_messages_ibfk_2` FOREIGN KEY (`channel_id`) REFERENCES `phone_tiktok_channels` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_unread_messages: ~0 rows (approximately)
DELETE FROM `phone_tiktok_unread_messages`;

-- Dumping structure for table coozv.phone_tiktok_videos
CREATE TABLE IF NOT EXISTS `phone_tiktok_videos` (
  `id` varchar(10) NOT NULL,
  `username` varchar(20) NOT NULL,
  `src` varchar(500) NOT NULL,
  `caption` varchar(100) DEFAULT NULL,
  `metadata` longtext DEFAULT NULL,
  `music` text DEFAULT NULL,
  `likes` int(11) NOT NULL DEFAULT 0,
  `comments` int(11) NOT NULL DEFAULT 0,
  `views` int(11) NOT NULL DEFAULT 0,
  `saves` int(11) NOT NULL DEFAULT 0,
  `pinned_comment` varchar(10) DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `username` (`username`),
  CONSTRAINT `phone_tiktok_videos_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_videos: ~0 rows (approximately)
DELETE FROM `phone_tiktok_videos`;

-- Dumping structure for table coozv.phone_tiktok_views
CREATE TABLE IF NOT EXISTS `phone_tiktok_views` (
  `username` varchar(20) NOT NULL,
  `video_id` varchar(10) NOT NULL,
  PRIMARY KEY (`username`,`video_id`),
  KEY `video_id` (`video_id`),
  CONSTRAINT `phone_tiktok_views_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_tiktok_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tiktok_views_ibfk_2` FOREIGN KEY (`video_id`) REFERENCES `phone_tiktok_videos` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tiktok_views: ~0 rows (approximately)
DELETE FROM `phone_tiktok_views`;

-- Dumping structure for table coozv.phone_tinder_accounts
CREATE TABLE IF NOT EXISTS `phone_tinder_accounts` (
  `name` varchar(50) NOT NULL,
  `phone_number` varchar(15) NOT NULL,
  `photos` text DEFAULT NULL,
  `bio` varchar(500) DEFAULT NULL,
  `dob` date NOT NULL,
  `is_male` tinyint(1) NOT NULL,
  `interested_men` tinyint(1) NOT NULL,
  `interested_women` tinyint(1) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `last_seen` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`phone_number`),
  CONSTRAINT `phone_tinder_accounts_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tinder_accounts: ~0 rows (approximately)
DELETE FROM `phone_tinder_accounts`;

-- Dumping structure for table coozv.phone_tinder_matches
CREATE TABLE IF NOT EXISTS `phone_tinder_matches` (
  `phone_number_1` varchar(15) NOT NULL,
  `phone_number_2` varchar(15) NOT NULL,
  `latest_message` varchar(1000) DEFAULT NULL,
  `latest_message_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`phone_number_1`,`phone_number_2`),
  KEY `phone_number_2` (`phone_number_2`),
  CONSTRAINT `phone_tinder_matches_ibfk_1` FOREIGN KEY (`phone_number_1`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tinder_matches_ibfk_2` FOREIGN KEY (`phone_number_2`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tinder_matches: ~0 rows (approximately)
DELETE FROM `phone_tinder_matches`;

-- Dumping structure for table coozv.phone_tinder_messages
CREATE TABLE IF NOT EXISTS `phone_tinder_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sender` varchar(15) NOT NULL,
  `recipient` varchar(15) NOT NULL,
  `content` varchar(1000) DEFAULT NULL,
  `attachments` text DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `sender` (`sender`),
  KEY `recipient` (`recipient`),
  CONSTRAINT `phone_tinder_messages_ibfk_1` FOREIGN KEY (`sender`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tinder_messages_ibfk_2` FOREIGN KEY (`recipient`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tinder_messages: ~0 rows (approximately)
DELETE FROM `phone_tinder_messages`;

-- Dumping structure for table coozv.phone_tinder_swipes
CREATE TABLE IF NOT EXISTS `phone_tinder_swipes` (
  `swiper` varchar(15) NOT NULL,
  `swipee` varchar(15) NOT NULL,
  `liked` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`swiper`,`swipee`),
  KEY `swipee` (`swipee`),
  CONSTRAINT `phone_tinder_swipes_ibfk_1` FOREIGN KEY (`swiper`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_tinder_swipes_ibfk_2` FOREIGN KEY (`swipee`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_tinder_swipes: ~0 rows (approximately)
DELETE FROM `phone_tinder_swipes`;

-- Dumping structure for table coozv.phone_tweets
CREATE TABLE IF NOT EXISTS `phone_tweets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `firstName` varchar(25) DEFAULT NULL,
  `lastName` varchar(25) DEFAULT NULL,
  `message` text DEFAULT NULL,
  `date` datetime DEFAULT current_timestamp(),
  `url` text DEFAULT NULL,
  `picture` varchar(512) DEFAULT './img/default.png',
  `tweetId` varchar(25) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `citizenid` (`citizenid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.phone_tweets: ~0 rows (approximately)
DELETE FROM `phone_tweets`;

-- Dumping structure for table coozv.phone_twitter_accounts
CREATE TABLE IF NOT EXISTS `phone_twitter_accounts` (
  `display_name` varchar(30) NOT NULL,
  `username` varchar(20) NOT NULL,
  `password` varchar(100) NOT NULL,
  `phone_number` varchar(15) NOT NULL,
  `bio` varchar(100) DEFAULT NULL,
  `profile_image` varchar(500) DEFAULT NULL,
  `profile_header` varchar(500) DEFAULT NULL,
  `pinned_tweet` varchar(50) DEFAULT NULL,
  `verified` tinyint(1) DEFAULT 0,
  `follower_count` int(11) NOT NULL DEFAULT 0,
  `following_count` int(11) NOT NULL DEFAULT 0,
  `private` tinyint(1) DEFAULT 0,
  `date_joined` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`username`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_twitter_accounts_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_twitter_accounts: ~0 rows (approximately)
DELETE FROM `phone_twitter_accounts`;

-- Dumping structure for table coozv.phone_twitter_follows
CREATE TABLE IF NOT EXISTS `phone_twitter_follows` (
  `followed` varchar(20) NOT NULL,
  `follower` varchar(20) NOT NULL,
  `notifications` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`followed`,`follower`),
  KEY `follower` (`follower`),
  CONSTRAINT `phone_twitter_follows_ibfk_1` FOREIGN KEY (`followed`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_twitter_follows_ibfk_2` FOREIGN KEY (`follower`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_twitter_follows: ~0 rows (approximately)
DELETE FROM `phone_twitter_follows`;

-- Dumping structure for table coozv.phone_twitter_follow_requests
CREATE TABLE IF NOT EXISTS `phone_twitter_follow_requests` (
  `requester` varchar(20) NOT NULL,
  `requestee` varchar(20) NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`requester`,`requestee`),
  KEY `requestee` (`requestee`),
  CONSTRAINT `phone_twitter_follow_requests_ibfk_1` FOREIGN KEY (`requester`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_twitter_follow_requests_ibfk_2` FOREIGN KEY (`requestee`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_twitter_follow_requests: ~0 rows (approximately)
DELETE FROM `phone_twitter_follow_requests`;

-- Dumping structure for table coozv.phone_twitter_hashtags
CREATE TABLE IF NOT EXISTS `phone_twitter_hashtags` (
  `hashtag` varchar(50) NOT NULL,
  `amount` int(11) NOT NULL DEFAULT 0,
  `last_used` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`hashtag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_twitter_hashtags: ~0 rows (approximately)
DELETE FROM `phone_twitter_hashtags`;

-- Dumping structure for table coozv.phone_twitter_likes
CREATE TABLE IF NOT EXISTS `phone_twitter_likes` (
  `tweet_id` varchar(50) NOT NULL,
  `username` varchar(20) NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`tweet_id`,`username`),
  KEY `username` (`username`),
  CONSTRAINT `phone_twitter_likes_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_twitter_likes: ~0 rows (approximately)
DELETE FROM `phone_twitter_likes`;

-- Dumping structure for table coozv.phone_twitter_messages
CREATE TABLE IF NOT EXISTS `phone_twitter_messages` (
  `id` varchar(10) NOT NULL,
  `sender` varchar(20) NOT NULL,
  `recipient` varchar(20) NOT NULL,
  `content` varchar(1000) DEFAULT NULL,
  `attachments` text DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `sender` (`sender`),
  KEY `recipient` (`recipient`),
  CONSTRAINT `phone_twitter_messages_ibfk_1` FOREIGN KEY (`sender`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_twitter_messages_ibfk_2` FOREIGN KEY (`recipient`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_twitter_messages: ~0 rows (approximately)
DELETE FROM `phone_twitter_messages`;

-- Dumping structure for table coozv.phone_twitter_notifications
CREATE TABLE IF NOT EXISTS `phone_twitter_notifications` (
  `id` varchar(10) NOT NULL,
  `username` varchar(20) NOT NULL,
  `from` varchar(20) NOT NULL,
  `type` varchar(20) NOT NULL,
  `tweet_id` varchar(50) DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `username` (`username`),
  KEY `from` (`from`),
  CONSTRAINT `phone_twitter_notifications_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_twitter_notifications_ibfk_2` FOREIGN KEY (`from`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_twitter_notifications: ~0 rows (approximately)
DELETE FROM `phone_twitter_notifications`;

-- Dumping structure for table coozv.phone_twitter_promoted
CREATE TABLE IF NOT EXISTS `phone_twitter_promoted` (
  `tweet_id` varchar(50) NOT NULL,
  `promotions` int(11) NOT NULL DEFAULT 0,
  `views` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`tweet_id`),
  CONSTRAINT `phone_twitter_promoted_ibfk_1` FOREIGN KEY (`tweet_id`) REFERENCES `phone_twitter_tweets` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_twitter_promoted: ~0 rows (approximately)
DELETE FROM `phone_twitter_promoted`;

-- Dumping structure for table coozv.phone_twitter_retweets
CREATE TABLE IF NOT EXISTS `phone_twitter_retweets` (
  `tweet_id` varchar(50) NOT NULL,
  `username` varchar(20) NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`tweet_id`,`username`),
  KEY `username` (`username`),
  CONSTRAINT `phone_twitter_retweets_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_twitter_retweets: ~0 rows (approximately)
DELETE FROM `phone_twitter_retweets`;

-- Dumping structure for table coozv.phone_twitter_tweets
CREATE TABLE IF NOT EXISTS `phone_twitter_tweets` (
  `id` varchar(10) NOT NULL,
  `username` varchar(20) NOT NULL,
  `content` varchar(280) DEFAULT NULL,
  `attachments` text DEFAULT NULL,
  `reply_to` varchar(50) DEFAULT NULL,
  `like_count` int(11) DEFAULT 0,
  `reply_count` int(11) DEFAULT 0,
  `retweet_count` int(11) DEFAULT 0,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `username` (`username`),
  CONSTRAINT `phone_twitter_tweets_ibfk_1` FOREIGN KEY (`username`) REFERENCES `phone_twitter_accounts` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_twitter_tweets: ~0 rows (approximately)
DELETE FROM `phone_twitter_tweets`;

-- Dumping structure for table coozv.phone_voice_memos_recordings
CREATE TABLE IF NOT EXISTS `phone_voice_memos_recordings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `file_name` varchar(50) NOT NULL,
  `file_url` varchar(500) NOT NULL,
  `file_length` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_voice_memos_recordings_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_voice_memos_recordings: ~0 rows (approximately)
DELETE FROM `phone_voice_memos_recordings`;

-- Dumping structure for table coozv.phone_wallet_transactions
CREATE TABLE IF NOT EXISTS `phone_wallet_transactions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `amount` int(11) NOT NULL,
  `company` varchar(50) NOT NULL,
  `logo` varchar(200) DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `phone_number` (`phone_number`),
  CONSTRAINT `phone_wallet_transactions_ibfk_1` FOREIGN KEY (`phone_number`) REFERENCES `phone_phones` (`phone_number`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_wallet_transactions: ~0 rows (approximately)
DELETE FROM `phone_wallet_transactions`;

-- Dumping structure for table coozv.phone_yellow_pages_posts
CREATE TABLE IF NOT EXISTS `phone_yellow_pages_posts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `phone_number` varchar(15) NOT NULL,
  `title` varchar(50) NOT NULL,
  `description` varchar(1000) NOT NULL,
  `attachment` varchar(500) DEFAULT NULL,
  `price` int(11) DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table coozv.phone_yellow_pages_posts: ~2 rows (approximately)
DELETE FROM `phone_yellow_pages_posts`;
INSERT INTO `phone_yellow_pages_posts` (`id`, `phone_number`, `title`, `description`, `attachment`, `price`, `timestamp`) VALUES
	(1, '2055336998', 'EMİR KAZGAN ALLAHI BENİM', 'EMİR KAZGAN ALLAHI BENİM', NULL, 31, '2025-11-02 15:37:49'),
	(2, '5209228674', 'ACILISSSSSSSSSSSSSSSSSSSSSSSSSSSSSS', 'S', NULL, NULL, '2025-11-02 21:29:04');

-- Dumping structure for table coozv.pickle_prisons
CREATE TABLE IF NOT EXISTS `pickle_prisons` (
  `identifier` varchar(46) NOT NULL,
  `prison` varchar(50) DEFAULT 'default',
  `time` int(11) NOT NULL DEFAULT 0,
  `inventory` longtext NOT NULL,
  `sentence_date` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- Dumping data for table coozv.pickle_prisons: ~0 rows (approximately)
DELETE FROM `pickle_prisons`;

-- Dumping structure for table coozv.players
CREATE TABLE IF NOT EXISTS `players` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) NOT NULL,
  `cid` int(11) DEFAULT NULL,
  `license` varchar(255) NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_turkish_ci NOT NULL,
  `money` text NOT NULL,
  `charinfo` text DEFAULT NULL,
  `job` text NOT NULL,
  `gang` text DEFAULT NULL,
  `position` text NOT NULL,
  `metadata` text NOT NULL,
  `inventory` longtext DEFAULT NULL,
  `phone_number` varchar(20) DEFAULT NULL,
  `last_updated` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `craftxp` int(11) DEFAULT 0,
  `aranma` mediumtext DEFAULT '[]',
  `motel_type` longtext DEFAULT 'basic',
  `iban` char(50) DEFAULT NULL,
  `pedname` longtext DEFAULT NULL,
  `pedcount` int(11) DEFAULT 0,
  `addiction` text DEFAULT NULL,
  `ranks` longtext DEFAULT NULL,
  `evidences` longtext DEFAULT NULL,
  `mdt_ems_picture` longtext DEFAULT NULL,
  `mdt_ems_searched` int(11) DEFAULT 0,
  `apps` text DEFAULT NULL,
  `widget` text DEFAULT NULL,
  `bt` text DEFAULT NULL,
  `cryptocurrency` longtext DEFAULT NULL,
  `cryptocurrencytransfers` text DEFAULT NULL,
  `phonePos` text DEFAULT NULL,
  `spotify` text DEFAULT NULL,
  `ringtone` text DEFAULT NULL,
  `first_screen_showed` int(11) DEFAULT NULL,
  `socialSupport` varchar(255) NOT NULL DEFAULT '0',
  `warns` int(11) NOT NULL DEFAULT 0,
  `warzone` longtext NOT NULL DEFAULT '[]',
  `playtime` int(11) NOT NULL DEFAULT 0,
  `frkn_fuelstation_control` int(11) NOT NULL DEFAULT 0,
  `pincode` int(50) DEFAULT NULL,
  PRIMARY KEY (`citizenid`),
  KEY `id` (`id`),
  KEY `last_updated` (`last_updated`),
  KEY `license` (`license`)
) ENGINE=InnoDB AUTO_INCREMENT=3871 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.players: ~45 rows (approximately)
DELETE FROM `players`;
INSERT INTO `players` (`id`, `citizenid`, `cid`, `license`, `name`, `money`, `charinfo`, `job`, `gang`, `position`, `metadata`, `inventory`, `phone_number`, `last_updated`, `craftxp`, `aranma`, `motel_type`, `iban`, `pedname`, `pedcount`, `addiction`, `ranks`, `evidences`, `mdt_ems_picture`, `mdt_ems_searched`, `apps`, `widget`, `bt`, `cryptocurrency`, `cryptocurrencytransfers`, `phonePos`, `spotify`, `ringtone`, `first_screen_showed`, `socialSupport`, `warns`, `warzone`, `playtime`, `frkn_fuelstation_control`, `pincode`) VALUES
	(3806, 'KPU11623', 1, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'nolur gitme', '{"cash":24700,"crypto":0,"bank":150010}', '{"cid":1,"phone":"657397","firstname":"Russell","heigth":"185","iban":299018,"nationality":"Afghanistan","birthdate":"2000-02-22","account":"US01QBCore8319543239","gender":0,"backstory":"placeholder backstory","lastname":"Crowe"}', '{"payment":10,"grade":{"level":0,"name":"Freelancer"},"name":"unemployed","isboss":false,"onduty":true,"label":"Civilian","type":"none"}', '{"grade":{"level":0,"name":"none"},"isboss":false,"label":"No Gang Affiliaton","name":"none"}', '{"x":1999.84619140625,"y":3809.80224609375,"z":32.2791748046875}', '{"phone":[],"bloodtype":"A+","thirst":96,"attachmentcraftingrep":0,"FFAStats":{"deathcount":0,"matchwin":0,"legs":0,"headrate":0,"body":0,"head":0,"arms":0,"killcount":0},"inlaststand":false,"commandbinds":[],"hunger":94,"phonedata":{"InstalledApps":[],"SerialNumber":44170429},"armor":0,"injail":0,"licences":{"driver":true,"business":false,"weapon":false},"stress":0,"inside":{"apartment":[]},"criminalrecord":{"hasRecord":false},"ishandcuffed":false,"isdead":false,"jobrep":{"taxi":0,"trucker":0,"tow":0,"hotdog":0},"jailitems":[],"callsign":"NO CALLSIGN","fingerprint":"ii050j61OBE9463","fitbit":[],"status":[],"tracker":false,"dealerrep":0,"craftingrep":0,"walletid":"QB-68032500"}', '[{"name":"money","slot":1,"count":24700}]', NULL, '2025-11-17 23:05:39', 0, '[]', 'basic', NULL, NULL, 0, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 0, '[]', 0, 0, NULL),
	(3746, 'OVL98907', 1, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', '! 𝘓𝘦𝘸𝘯𝘪', '{"crypto":0,"bank":150610,"cash":25000}', '{"iban":548460,"cid":1,"account":"US05QBCore1276671550","lastname":"Sdggsgg","gender":0,"nationality":"Afghanistan","firstname":"Alfaasfaasf","birthdate":"1999-02-11","phone":"536596","heigth":"180","backstory":"placeholder backstory"}', '{"isboss":false,"label":"LSPD","payment":50,"onduty":true,"type":"leo","grade":{"level":1,"name":"Officer I"},"name":"police"}', '{"isboss":false,"grade":{"level":0,"name":"none"},"label":"No Gang Affiliaton","name":"none"}', '{"x":-18.14505386352539,"y":150.13186645507813,"z":90.832275390625}', '{"ishandcuffed":false,"jailitems":[],"bloodtype":"A+","thirst":62,"fingerprint":"sv947h24kes3197","licences":{"weapon":false,"business":false,"driver":true},"injail":0,"jobrep":{"trucker":0,"tow":0,"hotdog":0,"taxi":0},"walletid":"QB-77305116","FFAStats":{"legs":0,"arms":0,"body":0,"killcount":0,"deathcount":0,"matchwin":0,"headrate":0,"head":0},"status":[],"commandbinds":[],"inlaststand":false,"isdead":false,"phonedata":{"InstalledApps":[],"SerialNumber":37016017},"stress":0,"fitbit":[],"phone":[],"hunger":43,"callsign":"NO CALLSIGN","dealerrep":0,"tracker":false,"armor":0,"criminalrecord":{"hasRecord":false},"inside":{"apartment":[]},"attachmentcraftingrep":0,"craftingrep":0}', '[{"slot":1,"name":"money","count":25000}]', NULL, '2025-11-17 21:08:42', 0, '[]', 'basic', NULL, NULL, 0, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 0, '[]', 0, 0, NULL),
	(3775, 'PDH43092', 1, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'Herzlos', '{"crypto":0,"cash":25000,"bank":150110}', '{"iban":384394,"account":"US06QBCore2242297076","lastname":"Çocuklari","phone":"711187","cid":1,"heigth":"181","firstname":"Kahpe ","gender":0,"backstory":"placeholder backstory","nationality":"Albania","birthdate":"1989-02-08"}', '{"payment":10,"label":"Civilian","grade":{"name":"Freelancer","level":0},"type":"none","onduty":true,"isboss":false,"name":"unemployed"}', '{"grade":{"name":"none","level":0},"label":"No Gang Affiliaton","isboss":false,"name":"none"}', '{"x":-1175.050537109375,"y":-1354.5494384765626,"z":5.032958984375}', '{"callsign":"NO CALLSIGN","phonedata":{"InstalledApps":[],"SerialNumber":46009802},"isdead":false,"injail":0,"inside":{"apartment":[]},"attachmentcraftingrep":0,"criminalrecord":{"hasRecord":false},"walletid":"QB-91941239","fingerprint":"bW325z81eVz9128","thirst":94,"licences":{"business":false,"driver":true,"weapon":false},"craftingrep":0,"FFAStats":{"body":0,"headrate":0,"deathcount":0,"killcount":0,"head":0,"arms":0,"legs":0,"matchwin":0},"ishandcuffed":false,"status":[],"fitbit":[],"dealerrep":0,"stress":0,"commandbinds":[],"jailitems":[],"jobrep":{"taxi":0,"trucker":0,"tow":0,"hotdog":0},"hunger":91,"inlaststand":false,"tracker":false,"bloodtype":"B+","armor":0,"phone":[]}', '[{"slot":1,"name":"money","count":25000}]', NULL, '2025-11-18 01:30:22', 0, '[]', 'basic', NULL, NULL, 0, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 0, '[]', 0, 0, NULL),
	(3786, 'QLZ47727', 1, 'license:5d108d60a0a641aeb27d2ecfb5ed4c29de02f3c4', 'Caner', '{"crypto":0,"cash":24900,"bank":150030}', '{"iban":471422,"account":"US06QBCore1136344712","lastname":"Baba","phone":"855428","cid":1,"heigth":"200","firstname":"Caner","gender":0,"backstory":"placeholder backstory","birthdate":"2000-04-11","nationality":"Afghanistan"}', '{"payment":10,"label":"Civilian","grade":{"name":"Freelancer","level":0},"type":"none","onduty":true,"isboss":false,"name":"unemployed"}', '{"grade":{"name":"none","level":0},"label":"No Gang Affiliaton","isboss":false,"name":"none"}', '{"x":-210.989013671875,"y":-1004.6241455078125,"z":29.2630615234375}', '{"callsign":"NO CALLSIGN","phonedata":{"InstalledApps":[],"SerialNumber":34386025},"isdead":false,"injail":0,"inside":{"apartment":[]},"attachmentcraftingrep":0,"criminalrecord":{"hasRecord":false},"walletid":"QB-79331395","fingerprint":"Un052k25xQc1253","thirst":98,"licences":{"business":false,"driver":true,"weapon":false},"craftingrep":0,"FFAStats":{"body":0,"headrate":0,"deathcount":0,"killcount":0,"head":0,"arms":0,"legs":0,"matchwin":0},"ishandcuffed":false,"status":[],"fitbit":[],"dealerrep":0,"stress":0,"commandbinds":[],"jailitems":[],"jobrep":{"taxi":0,"trucker":0,"tow":0,"hotdog":0},"hunger":97,"inlaststand":false,"tracker":false,"bloodtype":"A+","armor":0,"phone":[]}', '[{"slot":1,"name":"money","count":24900}]', NULL, '2025-11-18 01:17:33', 0, '[]', 'basic', NULL, NULL, 0, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 0, '[]', 0, 0, NULL),
	(3773, 'TIV56684', 1, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'Yunusluxxe1', '{"crypto":0,"cash":24900,"bank":150090}', '{"iban":324079,"account":"US09QBCore1240885030","lastname":"Occaner","phone":"681533","cid":1,"heigth":"180","firstname":"Orospu evladı caner","gender":0,"backstory":"placeholder backstory","nationality":"Afghanistan","birthdate":"2000-05-02"}', '{"payment":30,"label":"LSPD","grade":{"name":"No Grades","level":0},"type":"leo","onduty":true,"isboss":false,"name":"police"}', '{"grade":{"name":"none","level":0},"isboss":false,"label":"No Gang Affiliaton","name":"none"}', '{"x":452.6373596191406,"y":-1418.21533203125,"z":29.3304443359375}', '{"callsign":"NO CALLSIGN","phonedata":{"InstalledApps":[],"SerialNumber":13562236},"isdead":false,"injail":0,"inside":{"apartment":[]},"attachmentcraftingrep":0,"criminalrecord":{"hasRecord":false},"walletid":"QB-24310948","fingerprint":"yF862l83bLZ3038","thirst":96,"licences":{"business":false,"driver":true,"weapon":false},"craftingrep":0,"FFAStats":{"killcount":0,"headrate":0,"body":0,"deathcount":0,"head":0,"arms":0,"legs":0,"matchwin":0},"ishandcuffed":false,"status":[],"fitbit":[],"dealerrep":0,"stress":0,"commandbinds":[],"jobrep":{"taxi":0,"trucker":0,"tow":0,"hotdog":0},"jailitems":[],"hunger":94,"inlaststand":true,"tracker":false,"bloodtype":"A+","armor":0,"phone":[]}', '[{"slot":1,"name":"money","count":24900}]', NULL, '2025-11-18 01:07:57', 0, '[]', 'basic', NULL, NULL, 0, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 0, '[]', 0, 0, NULL);

-- Dumping structure for table coozv.playerskins
CREATE TABLE IF NOT EXISTS `playerskins` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(255) NOT NULL,
  `model` varchar(255) NOT NULL,
  `skin` text NOT NULL,
  `active` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `citizenid` (`citizenid`),
  KEY `active` (`active`)
) ENGINE=InnoDB AUTO_INCREMENT=272348 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.playerskins: ~120 rows (approximately)
DELETE FROM `playerskins`;
INSERT INTO `playerskins` (`id`, `citizenid`, `model`, `skin`, `active`) VALUES
	(272144, 'HWH38496', 'mp_f_freemode_01', '{"hair":{"texture":0,"highlight":0,"style":0,"color":0},"faceFeatures":{"nosePeakHigh":0,"lipsThickness":0,"chinBoneLenght":0,"chinBoneSize":0,"chinHole":0,"nosePeakLowering":0,"cheeksBoneHigh":0,"cheeksWidth":0,"jawBoneBackSize":0,"eyeBrownHigh":0,"noseWidth":0,"noseBoneHigh":0,"neckThickness":0,"eyeBrownForward":0,"noseBoneTwist":0,"chinBoneLowering":0,"eyesOpening":0,"jawBoneWidth":0,"nosePeakSize":0,"cheeksBoneWidth":0},"tattoos":[],"headOverlays":{"moleAndFreckles":{"style":0,"color":0,"opacity":0},"blush":{"style":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0},"eyebrows":{"style":0,"color":0,"opacity":0},"ageing":{"style":0,"color":0,"opacity":0},"complexion":{"style":0,"color":0,"opacity":0},"blemishes":{"style":0,"color":0,"opacity":0},"beard":{"style":0,"color":0,"opacity":0},"makeUp":{"secondColor":0,"style":0,"opacity":0,"color":0},"lipstick":{"style":0,"color":0,"opacity":0},"chestHair":{"style":0,"color":0,"opacity":0},"sunDamage":{"style":0,"color":0,"opacity":0}},"model":"mp_f_freemode_01","props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"eyeColor":-1,"headBlend":{"skinSecond":0,"shapeMix":0,"shapeFirst":0,"skinFirst":0,"skinMix":0,"shapeSecond":0,"skinThird":0,"thirdMix":0,"shapeThird":0},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}]}', 0),
	(272145, 'HWA90637', 'a_f_m_fatbla_01', '{"faceFeatures":{"noseWidth":0,"cheeksWidth":0,"nosePeakHigh":0,"chinBoneLenght":0,"eyeBrownHigh":0,"lipsThickness":0,"jawBoneWidth":0,"jawBoneBackSize":0,"chinBoneSize":0,"chinHole":0,"noseBoneHigh":0,"eyesOpening":0,"cheeksBoneWidth":0,"chinBoneLowering":0,"nosePeakSize":0,"eyeBrownForward":0,"nosePeakLowering":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"neckThickness":0},"headBlend":{"shapeFirst":0,"skinThird":0,"shapeThird":0,"skinSecond":0,"skinFirst":0,"skinMix":0,"shapeSecond":0,"shapeMix":0,"thirdMix":0},"model":"a_f_m_fatbla_01","headOverlays":{"blemishes":{"style":0,"opacity":0,"color":0},"eyebrows":{"style":0,"opacity":0,"color":0},"lipstick":{"style":0,"opacity":0,"color":0},"blush":{"style":0,"opacity":0,"color":0},"chestHair":{"style":0,"opacity":0,"color":0},"complexion":{"style":0,"opacity":0,"color":0},"beard":{"style":0,"opacity":0,"color":0},"makeUp":{"secondColor":0,"style":0,"opacity":0,"color":0},"ageing":{"style":0,"opacity":0,"color":0},"moleAndFreckles":{"style":0,"opacity":0,"color":0},"bodyBlemishes":{"style":0,"opacity":0,"color":0},"sunDamage":{"style":0,"opacity":0,"color":0}},"hair":{"highlight":0,"style":0,"texture":0,"color":0},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"tattoos":[],"eyeColor":-1}', 1),
	(272146, 'HWH38496', 'mp_m_freemode_01', '{"headBlend":{"skinMix":0,"skinThird":0,"shapeThird":0,"shapeFirst":0,"skinSecond":0,"shapeMix":0,"skinFirst":0,"shapeSecond":0,"thirdMix":0},"tattoos":[],"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"hair":{"style":0,"texture":0,"highlight":0,"color":0},"eyeColor":-1,"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"headOverlays":{"eyebrows":{"opacity":0,"style":0,"color":0},"beard":{"opacity":0,"style":0,"color":0},"makeUp":{"opacity":0,"style":0,"color":0,"secondColor":0},"lipstick":{"opacity":0,"style":0,"color":0},"blemishes":{"opacity":0,"style":0,"color":0},"blush":{"opacity":0,"style":0,"color":0},"ageing":{"opacity":0,"style":0,"color":0},"chestHair":{"opacity":0,"style":0,"color":0},"sunDamage":{"opacity":0,"style":0,"color":0},"complexion":{"opacity":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"style":0,"color":0}},"faceFeatures":{"chinHole":0,"lipsThickness":0,"chinBoneLowering":0,"nosePeakHigh":0,"cheeksWidth":0,"jawBoneBackSize":0,"chinBoneSize":0,"nosePeakLowering":0,"chinBoneLenght":0,"noseBoneTwist":0,"cheeksBoneWidth":0,"nosePeakSize":0,"neckThickness":0,"noseBoneHigh":0,"eyeBrownHigh":0,"jawBoneWidth":0,"eyeBrownForward":0,"cheeksBoneHigh":0,"eyesOpening":0,"noseWidth":0},"model":"mp_m_freemode_01"}', 1),
	(272147, 'ORO13170', 'mp_f_freemode_01', '{"tattoos":[],"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"model":"mp_f_freemode_01","eyeColor":0,"hair":{"highlight":0,"style":0,"texture":0,"color":0},"faceFeatures":{"neckThickness":0,"cheeksWidth":0,"eyeBrownHigh":0,"noseBoneHigh":0,"nosePeakLowering":0,"eyesOpening":0,"eyeBrownForward":0,"lipsThickness":0,"noseBoneTwist":0,"noseWidth":0,"chinHole":0,"cheeksBoneWidth":0,"nosePeakSize":0,"chinBoneSize":0,"cheeksBoneHigh":0,"chinBoneLowering":0,"jawBoneBackSize":0,"nosePeakHigh":0,"chinBoneLenght":0,"jawBoneWidth":0},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"headBlend":{"shapeSecond":0,"skinSecond":0,"shapeThird":0,"skinThird":0,"skinMix":0,"skinFirst":0,"shapeMix":0,"thirdMix":0,"shapeFirst":0},"headOverlays":{"eyebrows":{"style":0,"opacity":0,"color":0},"blush":{"style":0,"opacity":0,"color":0},"ageing":{"style":0,"opacity":0,"color":0},"makeUp":{"style":0,"opacity":0,"secondColor":0,"color":0},"blemishes":{"style":0,"opacity":0,"color":0},"complexion":{"style":0,"opacity":0,"color":0},"lipstick":{"style":0,"opacity":0,"color":0},"sunDamage":{"style":0,"opacity":0,"color":0},"moleAndFreckles":{"style":0,"opacity":0,"color":0},"beard":{"style":0,"opacity":0,"color":0},"bodyBlemishes":{"style":0,"opacity":0,"color":0},"chestHair":{"style":0,"opacity":0,"color":0}}}', 1),
	(272149, 'QDS83432', 'a_m_m_beach_01', '{"tattoos":[],"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"headBlend":{"shapeFirst":0,"skinFirst":0,"skinMix":0,"shapeThird":0,"skinThird":0,"shapeSecond":0,"shapeMix":0,"thirdMix":0,"skinSecond":0},"faceFeatures":{"neckThickness":0,"eyesOpening":0,"chinBoneLenght":0,"cheeksWidth":0,"noseBoneTwist":0,"cheeksBoneHigh":0,"lipsThickness":0,"jawBoneWidth":0,"jawBoneBackSize":0,"noseWidth":0,"chinBoneSize":0,"nosePeakHigh":0,"nosePeakLowering":0,"eyeBrownHigh":0,"noseBoneHigh":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"nosePeakSize":0,"chinBoneLowering":0,"chinHole":0},"hair":{"highlight":0,"color":0,"texture":0,"style":0},"model":"a_m_m_beach_01","headOverlays":{"blemishes":{"style":0,"opacity":0,"color":0},"chestHair":{"style":0,"opacity":0,"color":0},"bodyBlemishes":{"style":0,"opacity":0,"color":0},"makeUp":{"style":0,"opacity":0,"color":0,"secondColor":0},"complexion":{"style":0,"opacity":0,"color":0},"ageing":{"style":0,"opacity":0,"color":0},"blush":{"style":0,"opacity":0,"color":0},"eyebrows":{"style":0,"opacity":0,"color":0},"lipstick":{"style":0,"opacity":0,"color":0},"moleAndFreckles":{"style":0,"opacity":0,"color":0},"sunDamage":{"style":0,"opacity":0,"color":0},"beard":{"style":0,"opacity":0,"color":0}},"eyeColor":0}', 1),
	(272150, 'VRQ42008', 'mp_m_freemode_01', '{"hair":{"color":0,"style":79,"highlight":0,"texture":0},"headOverlays":{"eyebrows":{"opacity":0.7,"style":0,"color":61},"moleAndFreckles":{"opacity":0,"style":0,"color":0},"ageing":{"opacity":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"style":0,"color":0},"makeUp":{"opacity":0,"style":0,"secondColor":0,"color":0},"complexion":{"opacity":0,"style":0,"color":0},"chestHair":{"opacity":0,"style":0,"color":0},"lipstick":{"opacity":0,"style":0,"color":0},"beard":{"opacity":0,"style":0,"color":0},"blemishes":{"opacity":0,"style":0,"color":0},"sunDamage":{"opacity":0,"style":0,"color":0},"blush":{"opacity":0,"style":0,"color":0}},"headBlend":{"shapeThird":8,"skinMix":0,"skinSecond":1,"shapeFirst":8,"skinFirst":0,"skinThird":16,"shapeMix":0.6,"thirdMix":0.5,"shapeSecond":34},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":56,"component_id":11,"texture":0}],"tattoos":{"ZONE_HAIR":[{"hashMale":"FM_M_Hair_005_d","label":"hair-0-159","hashFemale":"FM_F_Hair_005_d","zone":"ZONE_HAIR","name":"hair-0-159","collection":"multiplayer_overlays"}]},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"faceFeatures":{"cheeksBoneWidth":0.1,"chinBoneSize":-0.1,"noseBoneHigh":0.7,"nosePeakSize":-0.4,"jawBoneWidth":-1,"neckThickness":0.2,"noseBoneTwist":0,"noseWidth":-0.4,"cheeksBoneHigh":-0.3,"eyeBrownForward":0.3,"lipsThickness":0.2,"chinHole":-0.1,"nosePeakLowering":0,"chinBoneLowering":0,"nosePeakHigh":-0.4,"jawBoneBackSize":-0.4,"eyesOpening":0.2,"cheeksWidth":1,"chinBoneLenght":0.4,"eyeBrownHigh":0.6},"eyeColor":1,"model":"mp_m_freemode_01"}', 1),
	(272151, 'WHZ71107', 'mp_m_freemode_01', '{"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":15},{"component_id":11,"texture":0,"drawable":56},{"component_id":4,"texture":4,"drawable":76},{"component_id":6,"texture":0,"drawable":4}],"hair":{"texture":0,"style":11,"color":29,"highlight":62},"headOverlays":{"bodyBlemishes":{"style":0,"color":0,"opacity":0},"lipstick":{"style":0,"color":0,"opacity":0},"eyebrows":{"style":2,"color":0,"opacity":1},"sunDamage":{"style":0,"color":0,"opacity":0},"makeUp":{"secondColor":0,"style":0,"color":0,"opacity":0},"blush":{"style":0,"color":0,"opacity":0},"blemishes":{"style":0,"color":0,"opacity":0},"chestHair":{"style":0,"color":0,"opacity":0},"ageing":{"style":0,"color":0,"opacity":0},"beard":{"style":0,"color":0,"opacity":0},"complexion":{"style":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0}},"headBlend":{"skinFirst":0,"shapeMix":0,"skinThird":0,"shapeSecond":0,"thirdMix":0,"shapeThird":0,"skinMix":0,"shapeFirst":0,"skinSecond":0},"model":"mp_m_freemode_01","faceFeatures":{"eyeBrownHigh":0,"noseBoneHigh":0,"eyesOpening":0,"eyeBrownForward":0,"chinBoneSize":0,"cheeksBoneHigh":0,"lipsThickness":0,"jawBoneWidth":0,"neckThickness":0,"chinHole":0,"noseWidth":0,"nosePeakLowering":0,"nosePeakHigh":0,"noseBoneTwist":0,"cheeksWidth":0,"cheeksBoneWidth":0,"nosePeakSize":0,"chinBoneLenght":0,"jawBoneBackSize":0,"chinBoneLowering":0},"tattoos":{"ZONE_LEFT_ARM":[{"name":"TAT_H27_013","label":"Katana","hashMale":"MP_Christmas2017_Tattoo_013_M","zone":"ZONE_LEFT_ARM","hashFemale":"MP_Christmas2017_Tattoo_013_F","collection":"mpchristmas2017_overlays"}],"ZONE_HEAD":[{"name":"TAT_FM_008","label":"Skull","hashMale":"FM_Tat_Award_M_000","zone":"ZONE_HEAD","hashFemale":"FM_Tat_Award_F_000","collection":"multiplayer_overlays"}]},"props":[{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1},{"texture":1,"prop_id":0,"drawable":45},{"texture":1,"prop_id":1,"drawable":1}],"eyeColor":1}', 1),
	(272153, 'CFH18616', 'mp_m_freemode_01', '{"faceFeatures":{"nosePeakHigh":0,"chinHole":0,"cheeksWidth":0,"lipsThickness":0,"nosePeakLowering":0,"neckThickness":0,"nosePeakSize":0,"chinBoneLowering":0,"noseBoneHigh":0,"chinBoneSize":0,"cheeksBoneWidth":0,"jawBoneWidth":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"noseWidth":0,"eyeBrownHigh":0,"jawBoneBackSize":0,"eyesOpening":0,"noseBoneTwist":0,"eyeBrownForward":0},"hair":{"texture":0,"color":0,"style":0,"highlight":0},"eyeColor":-1,"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"model":"mp_m_freemode_01","headBlend":{"skinThird":0,"thirdMix":0,"shapeThird":0,"shapeMix":0,"shapeFirst":0,"skinFirst":0,"skinMix":0,"shapeSecond":0,"skinSecond":0},"headOverlays":{"ageing":{"color":0,"opacity":0,"style":0},"beard":{"color":0,"opacity":0,"style":0},"eyebrows":{"color":0,"opacity":0,"style":0},"chestHair":{"color":0,"opacity":0,"style":0},"blush":{"color":0,"opacity":0,"style":0},"sunDamage":{"color":0,"opacity":0,"style":0},"moleAndFreckles":{"color":0,"opacity":0,"style":0},"complexion":{"color":0,"opacity":0,"style":0},"makeUp":{"opacity":0,"color":0,"secondColor":0,"style":0},"blemishes":{"color":0,"opacity":0,"style":0},"lipstick":{"color":0,"opacity":0,"style":0},"bodyBlemishes":{"color":0,"opacity":0,"style":0}},"tattoos":[]}', 1),
	(272154, 'QHJ46697', 'a_f_y_bevhills_04', '{"faceFeatures":{"noseWidth":0,"cheeksWidth":0,"nosePeakHigh":0,"chinBoneLenght":0,"eyeBrownHigh":0,"lipsThickness":0,"jawBoneWidth":0,"jawBoneBackSize":0,"chinBoneSize":0,"chinBoneLowering":0,"noseBoneHigh":0,"cheeksBoneHigh":0,"chinHole":0,"nosePeakSize":0,"neckThickness":0,"eyeBrownForward":0,"nosePeakLowering":0,"eyesOpening":0,"noseBoneTwist":0,"cheeksBoneWidth":0},"headBlend":{"shapeFirst":45,"skinThird":0,"shapeThird":0,"thirdMix":0,"skinFirst":0,"skinMix":0,"shapeSecond":0,"shapeMix":0,"skinSecond":0},"model":"a_f_y_bevhills_04","components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"hair":{"highlight":0,"texture":0,"style":0,"color":0},"headOverlays":{"blemishes":{"style":0,"opacity":0,"color":0},"eyebrows":{"style":0,"opacity":0,"color":0},"lipstick":{"style":0,"opacity":0,"color":0},"blush":{"style":0,"opacity":0,"color":0},"chestHair":{"style":0,"opacity":0,"color":0},"complexion":{"style":0,"opacity":0,"color":0},"sunDamage":{"style":0,"opacity":0,"color":0},"bodyBlemishes":{"style":0,"opacity":0,"color":0},"ageing":{"style":0,"opacity":0,"color":0},"moleAndFreckles":{"style":0,"opacity":0,"color":0},"makeUp":{"secondColor":0,"style":0,"opacity":0,"color":0},"beard":{"style":0,"opacity":0,"color":0}},"eyeColor":-1,"tattoos":[],"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}]}', 1),
	(272155, 'CLE45988', 'mp_f_freemode_01', '{"faceFeatures":{"eyeBrownHigh":0,"chinHole":0,"cheeksWidth":0,"lipsThickness":0,"eyesOpening":0,"chinBoneLenght":0,"nosePeakHigh":0,"chinBoneLowering":0,"noseBoneHigh":0,"noseBoneTwist":0,"cheeksBoneWidth":0,"nosePeakLowering":0,"chinBoneSize":0,"cheeksBoneHigh":0,"neckThickness":0,"nosePeakSize":0,"jawBoneBackSize":0,"noseWidth":0,"jawBoneWidth":0,"eyeBrownForward":0},"hair":{"style":0,"color":0,"highlight":0,"texture":0},"eyeColor":-1,"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"model":"mp_f_freemode_01","headBlend":{"skinThird":0,"thirdMix":0,"shapeThird":0,"shapeMix":0,"shapeSecond":0,"skinFirst":0,"skinSecond":0,"skinMix":0,"shapeFirst":0},"headOverlays":{"ageing":{"color":0,"opacity":0,"style":0},"beard":{"color":0,"opacity":0,"style":0},"eyebrows":{"color":0,"opacity":0,"style":0},"blemishes":{"color":0,"opacity":0,"style":0},"blush":{"color":0,"opacity":0,"style":0},"sunDamage":{"color":0,"opacity":0,"style":0},"moleAndFreckles":{"color":0,"opacity":0,"style":0},"complexion":{"color":0,"opacity":0,"style":0},"makeUp":{"opacity":0,"color":0,"secondColor":0,"style":0},"bodyBlemishes":{"color":0,"opacity":0,"style":0},"lipstick":{"color":0,"opacity":0,"style":0},"chestHair":{"color":0,"opacity":0,"style":0}},"tattoos":[]}', 1),
	(272156, 'RMP06314', 'mp_m_freemode_01', '{"faceFeatures":{"nosePeakHigh":0,"chinHole":0,"cheeksWidth":0,"lipsThickness":0,"eyesOpening":0,"chinBoneSize":0,"nosePeakLowering":0,"chinBoneLowering":0,"noseBoneHigh":0,"neckThickness":0,"cheeksBoneWidth":0,"nosePeakSize":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"eyeBrownHigh":0,"jawBoneBackSize":0,"noseWidth":0,"jawBoneWidth":0,"eyeBrownForward":0},"hair":{"highlight":0,"color":0,"texture":0,"style":0},"eyeColor":-1,"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"model":"mp_m_freemode_01","headBlend":{"skinThird":0,"thirdMix":0,"shapeThird":0,"shapeSecond":0,"skinSecond":0,"skinFirst":0,"skinMix":0,"shapeFirst":0,"shapeMix":0},"headOverlays":{"ageing":{"color":0,"style":0,"opacity":0},"beard":{"color":0,"style":0,"opacity":0},"eyebrows":{"color":0,"style":0,"opacity":0},"lipstick":{"color":0,"style":0,"opacity":0},"blush":{"color":0,"style":0,"opacity":0},"sunDamage":{"color":0,"style":0,"opacity":0},"moleAndFreckles":{"color":0,"style":0,"opacity":0},"complexion":{"color":0,"style":0,"opacity":0},"blemishes":{"color":0,"style":0,"opacity":0},"makeUp":{"style":0,"color":0,"secondColor":0,"opacity":0},"bodyBlemishes":{"color":0,"style":0,"opacity":0},"chestHair":{"color":0,"style":0,"opacity":0}},"tattoos":[]}', 1),
	(272157, 'RFV35162', 'mp_m_freemode_01', '{"faceFeatures":{"neckThickness":0,"chinBoneSize":0,"nosePeakLowering":0,"noseBoneTwist":0,"jawBoneWidth":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"jawBoneBackSize":0,"nosePeakHigh":0,"eyesOpening":0,"chinHole":0,"cheeksWidth":0,"chinBoneLowering":0,"lipsThickness":0,"eyeBrownForward":0,"noseWidth":0,"eyeBrownHigh":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"nosePeakSize":0},"hair":{"highlight":0,"color":0,"style":79,"texture":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":15,"component_id":8,"texture":0},{"drawable":0,"component_id":11,"texture":2},{"drawable":0,"component_id":3,"texture":0},{"drawable":4,"component_id":4,"texture":0},{"drawable":1,"component_id":6,"texture":0}],"tattoos":[],"eyeColor":-1,"headOverlays":{"sunDamage":{"style":0,"opacity":0,"color":0},"makeUp":{"style":0,"secondColor":0,"opacity":0,"color":0},"bodyBlemishes":{"style":0,"opacity":1,"color":0},"blush":{"style":0,"opacity":0,"color":0},"moleAndFreckles":{"style":0,"opacity":0,"color":0},"lipstick":{"style":0,"opacity":0,"color":0},"ageing":{"style":0,"opacity":0,"color":0},"beard":{"style":0,"opacity":0,"color":0},"chestHair":{"style":0,"opacity":1,"color":0},"complexion":{"style":0,"opacity":0,"color":0},"eyebrows":{"style":0,"opacity":0,"color":0},"blemishes":{"style":0,"opacity":0,"color":0}},"model":"mp_m_freemode_01","headBlend":{"thirdMix":0,"skinThird":0,"skinMix":0,"skinFirst":0,"shapeSecond":12,"shapeFirst":12,"shapeMix":0,"shapeThird":0,"skinSecond":0}}', 1),
	(272158, 'WIJ29990', 'mp_m_freemode_01', '{"tattoos":[],"faceFeatures":{"noseWidth":-1,"chinBoneSize":0,"nosePeakSize":0,"chinBoneLowering":0,"chinHole":0,"neckThickness":1,"chinBoneLenght":0,"nosePeakHigh":0,"eyeBrownHigh":0,"lipsThickness":0,"nosePeakLowering":0,"jawBoneBackSize":0,"jawBoneWidth":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"noseBoneHigh":0,"eyeBrownForward":0,"cheeksWidth":0,"eyesOpening":0,"cheeksBoneWidth":0},"headBlend":{"shapeThird":0,"skinThird":0,"shapeFirst":0,"thirdMix":0,"shapeMix":0,"skinMix":0,"skinSecond":0,"skinFirst":0,"shapeSecond":0},"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"headOverlays":{"ageing":{"style":0,"color":0,"opacity":0},"complexion":{"style":0,"color":0,"opacity":0},"eyebrows":{"style":0,"color":0,"opacity":1},"bodyBlemishes":{"style":0,"color":0,"opacity":0},"sunDamage":{"style":0,"color":0,"opacity":0},"blush":{"style":0,"color":0,"opacity":0},"lipstick":{"style":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"color":0,"opacity":0},"beard":{"style":10,"color":61,"opacity":1},"moleAndFreckles":{"style":0,"color":0,"opacity":0},"chestHair":{"style":0,"color":0,"opacity":0}},"model":"mp_m_freemode_01","components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}],"eyeColor":-1,"hair":{"texture":4,"highlight":0,"color":0,"style":3}}', 1),
	(272159, 'LFE75676', 'mp_m_freemode_01', '{"tattoos":[],"faceFeatures":{"noseWidth":-1,"chinBoneSize":0,"nosePeakSize":-0.1,"chinBoneLowering":0,"chinHole":0,"neckThickness":-1,"chinBoneLenght":0,"nosePeakHigh":0,"eyeBrownHigh":0,"lipsThickness":0,"nosePeakLowering":0,"jawBoneBackSize":0.1,"noseBoneHigh":0,"cheeksBoneHigh":-0.6,"cheeksWidth":-1,"eyeBrownForward":0,"cheeksBoneWidth":1,"noseBoneTwist":0,"eyesOpening":0,"jawBoneWidth":0.1},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}],"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"headOverlays":{"ageing":{"style":0,"color":0,"opacity":0},"complexion":{"style":0,"color":0,"opacity":0},"eyebrows":{"style":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0},"sunDamage":{"style":0,"color":0,"opacity":0},"chestHair":{"style":0,"color":0,"opacity":0},"lipstick":{"style":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"color":0,"opacity":0},"beard":{"style":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0},"blush":{"style":0,"color":0,"opacity":0}},"hair":{"style":3,"highlight":0,"color":0,"texture":1},"headBlend":{"shapeThird":0,"skinThird":0,"shapeFirst":0,"thirdMix":0,"shapeMix":0,"skinFirst":2,"skinSecond":0,"shapeSecond":0,"skinMix":0.1},"eyeColor":3,"model":"mp_m_freemode_01"}', 1),
	(272160, 'NVN17629', 'mp_m_freemode_01', '{"tattoos":[],"faceFeatures":{"noseWidth":0,"cheeksBoneHigh":0,"nosePeakSize":0,"chinBoneLowering":0,"jawBoneWidth":0,"neckThickness":0,"chinBoneLenght":0,"nosePeakHigh":0,"eyeBrownHigh":0,"lipsThickness":0,"nosePeakLowering":0,"jawBoneBackSize":0,"noseBoneHigh":0,"cheeksWidth":0,"chinBoneSize":0,"noseBoneTwist":0,"cheeksBoneWidth":0,"eyeBrownForward":0,"eyesOpening":0,"chinHole":0},"headBlend":{"shapeThird":0,"skinThird":0,"shapeFirst":0,"shapeSecond":0,"shapeMix":0,"skinMix":0,"skinSecond":0,"skinFirst":0,"thirdMix":0},"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"headOverlays":{"ageing":{"style":0,"color":0,"opacity":0},"complexion":{"style":0,"color":0,"opacity":0},"eyebrows":{"style":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0},"sunDamage":{"style":0,"color":0,"opacity":0},"chestHair":{"style":0,"color":0,"opacity":0},"lipstick":{"style":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"color":0,"opacity":0},"beard":{"style":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0},"blush":{"style":0,"color":0,"opacity":0}},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":379}],"model":"mp_m_freemode_01","eyeColor":-1,"hair":{"texture":0,"highlight":0,"color":0,"style":0}}', 1),
	(272162, 'YAH62223', 'mp_f_freemode_01', '{"headOverlays":{"beard":{"color":0,"opacity":0,"style":0},"eyebrows":{"color":0,"opacity":0,"style":0},"blush":{"color":0,"opacity":0.5,"style":0},"ageing":{"color":0,"opacity":0,"style":0},"makeUp":{"opacity":0.2,"color":3,"secondColor":0,"style":0},"blemishes":{"color":0,"opacity":0,"style":0},"chestHair":{"color":0,"opacity":0,"style":0},"lipstick":{"color":0,"opacity":1,"style":0},"bodyBlemishes":{"color":0,"opacity":0,"style":0},"sunDamage":{"color":0,"opacity":0,"style":0},"complexion":{"color":0,"opacity":0,"style":0},"moleAndFreckles":{"color":0,"opacity":0,"style":0}},"headBlend":{"skinSecond":0,"shapeSecond":0,"shapeMix":0,"shapeThird":0,"shapeFirst":21,"skinFirst":0,"thirdMix":0,"skinMix":0,"skinThird":0},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":98,"component_id":11,"texture":1},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":30,"component_id":3,"texture":0},{"drawable":3,"component_id":4,"texture":0},{"drawable":2,"component_id":6,"texture":1}],"hair":{"style":2,"color":29,"texture":0,"highlight":61},"eyeColor":2,"model":"mp_f_freemode_01","faceFeatures":{"cheeksBoneWidth":0,"jawBoneWidth":0,"lipsThickness":0,"eyeBrownHigh":0,"eyeBrownForward":0,"chinHole":0,"chinBoneLenght":0,"nosePeakSize":0,"jawBoneBackSize":0,"eyesOpening":0,"noseBoneTwist":0,"neckThickness":0,"nosePeakHigh":0,"chinBoneLowering":0,"nosePeakLowering":0,"chinBoneSize":0,"cheeksWidth":0,"noseBoneHigh":0,"cheeksBoneHigh":0,"noseWidth":0},"tattoos":{"ZONE_HAIR":[{"hashFemale":"FM_F_Hair_005_d","hashMale":"FM_M_Hair_005_d","name":"hair-0-159","zone":"ZONE_HAIR","collection":"multiplayer_overlays","label":"hair-0-159"}]},"props":[{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1},{"prop_id":0,"drawable":2,"texture":0}]}', 1),
	(272163, 'BCT78863', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"cheeksBoneWidth":0,"chinBoneSize":0,"nosePeakHigh":0,"noseWidth":0,"noseBoneTwist":0,"nosePeakSize":0,"eyesOpening":0,"noseBoneHigh":0,"jawBoneWidth":0,"nosePeakLowering":0,"eyeBrownHigh":0,"neckThickness":0,"cheeksWidth":0,"chinBoneLowering":0,"jawBoneBackSize":0,"chinBoneLenght":0,"lipsThickness":0,"eyeBrownForward":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":15},{"component_id":11,"texture":0,"drawable":26}],"eyeColor":-1,"hair":{"style":14,"color":0,"highlight":0,"texture":0},"model":"mp_m_freemode_01","headOverlays":{"chestHair":{"opacity":0,"color":0,"style":0},"makeUp":{"opacity":0,"style":0,"color":0,"secondColor":0},"sunDamage":{"opacity":0,"color":0,"style":0},"lipstick":{"opacity":0,"color":0,"style":0},"complexion":{"opacity":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"color":0,"style":0},"blemishes":{"opacity":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0},"beard":{"opacity":0,"color":0,"style":0},"eyebrows":{"opacity":0,"color":0,"style":0},"blush":{"opacity":0,"color":0,"style":0},"ageing":{"opacity":0,"color":0,"style":0}},"headBlend":{"skinFirst":0,"shapeSecond":0,"skinSecond":0,"shapeFirst":0,"skinThird":0,"shapeMix":0,"skinMix":0,"shapeThird":0,"thirdMix":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"tattoos":[]}', 1),
	(272164, 'JWG24183', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"neckThickness":0,"chinBoneSize":0,"eyeBrownHigh":0,"noseWidth":0,"noseBoneTwist":0,"nosePeakSize":0,"eyesOpening":0,"noseBoneHigh":0,"jawBoneWidth":0,"cheeksWidth":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"nosePeakHigh":0,"jawBoneBackSize":0,"nosePeakLowering":0,"lipsThickness":0,"chinBoneLowering":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"eyeColor":-1,"hair":{"style":0,"texture":0,"highlight":0,"color":0},"model":"mp_m_freemode_01","headOverlays":{"chestHair":{"style":0,"color":0,"opacity":0},"makeUp":{"secondColor":0,"style":0,"color":0,"opacity":0},"sunDamage":{"style":0,"color":0,"opacity":0},"lipstick":{"style":0,"color":0,"opacity":0},"complexion":{"style":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0},"blemishes":{"style":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0},"eyebrows":{"style":0,"color":0,"opacity":0},"ageing":{"style":0,"color":0,"opacity":0},"beard":{"style":0,"color":0,"opacity":0},"blush":{"style":0,"color":0,"opacity":0}},"headBlend":{"skinFirst":0,"shapeSecond":0,"skinMix":0,"shapeFirst":0,"skinThird":0,"thirdMix":0,"skinSecond":0,"shapeThird":0,"shapeMix":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"tattoos":[]}', 1),
	(272165, 'USY54784', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"neckThickness":0,"chinBoneLowering":0,"eyeBrownHigh":0,"noseWidth":0,"noseBoneTwist":0,"nosePeakSize":0,"eyesOpening":0,"noseBoneHigh":0,"jawBoneWidth":0,"chinBoneSize":0,"chinBoneLenght":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"jawBoneBackSize":0,"nosePeakLowering":0,"lipsThickness":0,"cheeksWidth":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":6,"texture":2,"component_id":8},{"drawable":11,"texture":14,"component_id":11},{"drawable":20,"texture":4,"component_id":7},{"drawable":11,"texture":0,"component_id":3},{"drawable":10,"texture":0,"component_id":4},{"drawable":10,"texture":0,"component_id":6}],"eyeColor":-1,"hair":{"style":4,"highlight":0,"texture":0,"color":3},"model":"mp_m_freemode_01","headOverlays":{"chestHair":{"opacity":0,"color":0,"style":0},"makeUp":{"opacity":0,"secondColor":0,"color":0,"style":0},"sunDamage":{"opacity":0,"color":0,"style":0},"lipstick":{"opacity":0,"color":0,"style":0},"complexion":{"opacity":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"color":0,"style":0},"blemishes":{"opacity":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0},"eyebrows":{"opacity":1,"color":0,"style":30},"blush":{"opacity":0,"color":0,"style":0},"ageing":{"opacity":0,"color":0,"style":0},"beard":{"opacity":1,"color":0,"style":10}},"headBlend":{"skinFirst":0,"shapeMix":0,"skinMix":0,"shapeFirst":0,"skinThird":0,"skinSecond":0,"shapeSecond":0,"shapeThird":0,"thirdMix":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":7},{"drawable":51,"texture":1,"prop_id":1},{"drawable":16,"texture":0,"prop_id":6}],"tattoos":[]}', 1),
	(272166, 'MAN23839', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"cheeksBoneWidth":0,"chinBoneLowering":0,"eyeBrownHigh":0,"eyeBrownForward":0,"noseBoneTwist":0,"nosePeakSize":0,"eyesOpening":0,"noseBoneHigh":0,"jawBoneWidth":0,"cheeksWidth":0,"chinBoneSize":0,"chinBoneLenght":0,"noseWidth":0,"nosePeakHigh":0,"jawBoneBackSize":0,"nosePeakLowering":0,"lipsThickness":0,"neckThickness":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"eyeColor":-1,"headBlend":{"thirdMix":0,"shapeSecond":0,"skinMix":0,"shapeFirst":0,"skinThird":0,"skinSecond":0,"skinFirst":0,"shapeThird":0,"shapeMix":0},"model":"mp_m_freemode_01","headOverlays":{"chestHair":{"opacity":0,"color":0,"style":0},"makeUp":{"secondColor":0,"style":0,"color":0,"opacity":0},"blush":{"opacity":0,"color":0,"style":0},"lipstick":{"opacity":0,"color":0,"style":0},"complexion":{"opacity":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"color":0,"style":0},"blemishes":{"opacity":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0},"beard":{"opacity":0,"color":0,"style":0},"eyebrows":{"opacity":0,"color":0,"style":0},"ageing":{"opacity":0,"color":0,"style":0},"sunDamage":{"opacity":0,"color":0,"style":0}},"hair":{"style":0,"color":0,"texture":0,"highlight":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"tattoos":[]}', 1),
	(272167, 'SWM62619', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"neckThickness":0,"chinBoneSize":0,"eyeBrownHigh":1,"noseWidth":1,"noseBoneTwist":-1,"nosePeakSize":1,"eyesOpening":0,"noseBoneHigh":1,"jawBoneWidth":0,"nosePeakHigh":1,"eyeBrownForward":1,"cheeksBoneWidth":0,"cheeksWidth":0,"chinBoneLenght":0,"jawBoneBackSize":0,"nosePeakLowering":1,"lipsThickness":0,"chinBoneLowering":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":1},{"drawable":15,"texture":0,"component_id":8},{"drawable":372,"texture":0,"component_id":11},{"drawable":213,"texture":0,"component_id":3},{"drawable":136,"texture":0,"component_id":4},{"drawable":144,"texture":0,"component_id":6}],"eyeColor":-1,"hair":{"style":34,"color":54,"texture":0,"highlight":54},"model":"mp_m_freemode_01","headOverlays":{"chestHair":{"opacity":0,"color":0,"style":0},"makeUp":{"opacity":0,"style":0,"color":0,"secondColor":0},"blush":{"opacity":0,"color":0,"style":0},"lipstick":{"opacity":0,"color":0,"style":0},"complexion":{"opacity":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"color":0,"style":0},"blemishes":{"opacity":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0},"beard":{"opacity":0,"color":0,"style":0},"ageing":{"opacity":0,"color":0,"style":0},"eyebrows":{"opacity":1,"color":20,"style":0},"sunDamage":{"opacity":0,"color":0,"style":0}},"headBlend":{"thirdMix":0,"shapeSecond":0,"skinSecond":3,"shapeFirst":0,"skinThird":0,"skinFirst":0,"skinMix":1,"shapeThird":0,"shapeMix":0},"props":[{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7},{"drawable":0,"texture":0,"prop_id":0}],"tattoos":[]}', 1),
	(272168, 'UDZ51313', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"cheeksBoneWidth":0,"cheeksWidth":0,"eyeBrownHigh":0,"noseWidth":-0.1,"noseBoneTwist":0,"nosePeakSize":0,"eyesOpening":0,"noseBoneHigh":0,"jawBoneWidth":0,"nosePeakHigh":0,"chinBoneSize":0,"nosePeakLowering":0,"eyeBrownForward":0,"chinBoneLowering":0,"jawBoneBackSize":0,"chinBoneLenght":0,"lipsThickness":0,"neckThickness":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":1,"texture":13,"drawable":169},{"component_id":8,"texture":0,"drawable":15},{"component_id":11,"texture":0,"drawable":357},{"component_id":3,"texture":0,"drawable":2},{"component_id":4,"texture":0,"drawable":4},{"component_id":6,"texture":0,"drawable":63}],"eyeColor":-1,"headBlend":{"thirdMix":0,"shapeSecond":45,"skinSecond":0,"shapeFirst":45,"skinThird":0,"skinMix":0,"skinFirst":0,"shapeThird":0,"shapeMix":0},"model":"mp_m_freemode_01","headOverlays":{"chestHair":{"style":0,"color":0,"opacity":0},"makeUp":{"style":57,"opacity":1,"color":56,"secondColor":52},"sunDamage":{"style":0,"color":0,"opacity":0},"lipstick":{"style":0,"color":0,"opacity":0},"complexion":{"style":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0},"blemishes":{"style":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0},"eyebrows":{"style":0,"color":0,"opacity":0},"beard":{"style":0,"color":0,"opacity":0},"ageing":{"style":0,"color":0,"opacity":0},"blush":{"style":0,"color":0,"opacity":0}},"hair":{"style":80,"color":0,"texture":0,"highlight":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"tattoos":[]}', 1),
	(272169, 'KON61685', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"neckThickness":0,"chinBoneLowering":0,"nosePeakHigh":0,"eyeBrownForward":0,"noseBoneTwist":0,"nosePeakSize":0,"eyesOpening":0,"noseBoneHigh":0,"jawBoneWidth":0,"cheeksWidth":0,"eyeBrownHigh":0,"cheeksBoneWidth":0,"noseWidth":0,"chinBoneLenght":0,"jawBoneBackSize":0,"nosePeakLowering":0,"lipsThickness":0,"chinBoneSize":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":15},{"component_id":3,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":471},{"component_id":4,"texture":0,"drawable":54},{"component_id":6,"texture":0,"drawable":34}],"eyeColor":27,"hair":{"style":73,"texture":0,"color":61,"highlight":61},"model":"mp_m_freemode_01","headOverlays":{"ageing":{"style":0,"color":0,"opacity":0},"makeUp":{"style":32,"opacity":1,"color":56,"secondColor":56},"sunDamage":{"style":0,"color":0,"opacity":0},"lipstick":{"style":0,"color":0,"opacity":0},"complexion":{"style":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0},"blemishes":{"style":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0},"beard":{"style":0,"color":0,"opacity":0},"eyebrows":{"style":30,"color":0,"opacity":0},"chestHair":{"style":0,"color":0,"opacity":0},"blush":{"style":0,"color":0,"opacity":0}},"headBlend":{"thirdMix":0,"shapeMix":0,"skinMix":0,"shapeFirst":21,"skinThird":20,"skinSecond":0,"shapeSecond":5,"shapeThird":0,"skinFirst":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"tattoos":{"ZONE_HAIR":[{"hashFemale":"MP_Tuner_Hair_001_F","zone":"ZONE_HAIR","name":"hair-31-1","collection":"mpTuner_overlays","hashMale":"MP_Tuner_Hair_001_M","label":"hair-31-1"}]}}', 1),
	(272170, 'CFM02968', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"neckThickness":0,"chinBoneSize":0,"eyeBrownHigh":1,"eyeBrownForward":0,"noseBoneTwist":0,"nosePeakSize":1,"eyesOpening":0.4,"noseBoneHigh":1,"jawBoneWidth":0.5,"chinBoneLenght":0,"noseWidth":-0.4,"chinBoneLowering":0,"nosePeakHigh":-0.5,"cheeksBoneWidth":-0.6,"jawBoneBackSize":0,"nosePeakLowering":0,"lipsThickness":0,"cheeksWidth":0.4},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":58},{"component_id":11,"texture":0,"drawable":93},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":132},{"component_id":6,"texture":0,"drawable":5}],"eyeColor":2,"headBlend":{"thirdMix":0,"shapeSecond":2,"skinSecond":3,"shapeFirst":21,"skinThird":0,"skinFirst":0,"skinMix":0,"shapeThird":0,"shapeMix":0},"model":"mp_m_freemode_01","headOverlays":{"chestHair":{"style":0,"color":0,"opacity":0},"makeUp":{"secondColor":59,"opacity":1,"color":56,"style":57},"sunDamage":{"style":0,"color":0,"opacity":0},"lipstick":{"style":0,"color":0,"opacity":0},"complexion":{"style":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0},"blemishes":{"style":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0},"beard":{"style":0,"color":0,"opacity":0},"blush":{"style":0,"color":0,"opacity":0},"ageing":{"style":0,"color":0,"opacity":0},"eyebrows":{"style":33,"color":27,"opacity":1}},"hair":{"style":80,"highlight":8,"color":26,"texture":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"tattoos":{"ZONE_HAIR":[{"hashFemale":"FM_F_Hair_003_b","zone":"ZONE_HAIR","name":"hair-0-187","collection":"multiplayer_overlays","hashMale":"FM_M_Hair_003_b","label":"hair-0-187"}]}}', 1),
	(272171, 'NUM98527', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"cheeksBoneWidth":0,"cheeksWidth":0,"eyeBrownHigh":0,"noseWidth":0,"noseBoneTwist":0,"nosePeakSize":0,"eyesOpening":0,"noseBoneHigh":0,"jawBoneWidth":0,"neckThickness":0,"chinBoneLowering":0,"nosePeakHigh":0,"eyeBrownForward":0,"nosePeakLowering":0,"jawBoneBackSize":0,"chinBoneLenght":0,"lipsThickness":0,"chinBoneSize":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"eyeColor":-1,"hair":{"style":0,"highlight":0,"color":0,"texture":0},"model":"mp_m_freemode_01","headOverlays":{"ageing":{"opacity":0,"color":0,"style":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"opacity":0,"color":0,"style":0},"lipstick":{"opacity":0,"color":0,"style":0},"complexion":{"opacity":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"color":0,"style":0},"blemishes":{"opacity":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0},"eyebrows":{"opacity":0,"color":0,"style":0},"beard":{"opacity":0,"color":0,"style":0},"sunDamage":{"opacity":0,"color":0,"style":0},"chestHair":{"opacity":0,"color":0,"style":0}},"headBlend":{"thirdMix":0,"shapeSecond":0,"skinSecond":0,"shapeFirst":0,"skinThird":0,"skinMix":0,"shapeMix":0,"shapeThird":0,"skinFirst":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"tattoos":[]}', 1),
	(272172, 'HKW23968', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"neckThickness":0,"chinBoneLowering":0,"nosePeakHigh":0,"eyeBrownForward":0,"noseBoneTwist":0,"nosePeakSize":0,"eyesOpening":0,"noseBoneHigh":0,"jawBoneWidth":0,"eyeBrownHigh":0,"chinBoneSize":0,"noseWidth":0,"chinBoneLenght":0,"cheeksWidth":0,"jawBoneBackSize":0,"nosePeakLowering":0,"lipsThickness":0,"cheeksBoneWidth":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":521},{"component_id":4,"texture":0,"drawable":1}],"eyeColor":-1,"headBlend":{"thirdMix":0,"shapeSecond":0,"skinMix":0,"shapeFirst":0,"skinThird":0,"shapeMix":0,"skinSecond":0,"shapeThird":0,"skinFirst":10},"model":"mp_m_freemode_01","headOverlays":{"chestHair":{"style":0,"color":0,"opacity":0},"makeUp":{"secondColor":0,"style":0,"color":0,"opacity":0},"sunDamage":{"style":0,"color":0,"opacity":0},"lipstick":{"style":0,"color":0,"opacity":0},"complexion":{"style":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0},"blemishes":{"style":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0},"eyebrows":{"style":0,"color":0,"opacity":0},"beard":{"style":0,"color":0,"opacity":0},"blush":{"style":0,"color":0,"opacity":0},"ageing":{"style":0,"color":0,"opacity":0}},"hair":{"style":0,"texture":0,"color":0,"highlight":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"tattoos":[]}', 1),
	(272173, 'EPD54844', 'mp_m_freemode_01', '{"faceFeatures":{"cheeksBoneHigh":0,"chinHole":0,"cheeksBoneWidth":0,"cheeksWidth":0,"eyeBrownHigh":0,"noseWidth":0,"noseBoneTwist":0.5,"nosePeakSize":0.6,"eyesOpening":0,"noseBoneHigh":0.5,"jawBoneWidth":0,"nosePeakHigh":0,"chinBoneLenght":0,"chinBoneLowering":0,"neckThickness":0,"eyeBrownForward":0,"jawBoneBackSize":0,"nosePeakLowering":-0.3,"lipsThickness":0,"chinBoneSize":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":497},{"component_id":8,"texture":0,"drawable":199}],"eyeColor":3,"headBlend":{"skinFirst":0,"shapeMix":0,"skinMix":0,"shapeFirst":0,"skinThird":0,"shapeSecond":0,"skinSecond":0,"shapeThird":0,"thirdMix":0},"model":"mp_m_freemode_01","headOverlays":{"chestHair":{"opacity":0,"color":0,"style":0},"makeUp":{"opacity":0,"secondColor":0,"color":0,"style":0},"blush":{"opacity":0,"color":0,"style":0},"lipstick":{"opacity":0,"color":0,"style":0},"complexion":{"opacity":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"color":0,"style":0},"blemishes":{"opacity":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0},"beard":{"opacity":0.4,"color":0,"style":1},"sunDamage":{"opacity":0,"color":0,"style":0},"ageing":{"opacity":0,"color":0,"style":0},"eyebrows":{"opacity":0.9,"color":0,"style":12}},"hair":{"style":79,"highlight":0,"color":26,"texture":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"tattoos":{"ZONE_HAIR":[{"hashFemale":"FM_F_Hair_003_c","zone":"ZONE_HAIR","name":"hair-0-188","collection":"multiplayer_overlays","label":"hair-0-188","hashMale":"FM_M_Hair_003_c"}]}}', 1),
	(272174, 'CCT99472', 'mp_m_freemode_01', '{"faceFeatures":{"jawBoneBackSize":0,"nosePeakHigh":0,"lipsThickness":0,"cheeksWidth":0,"eyesOpening":0,"nosePeakSize":0,"neckThickness":0,"chinBoneSize":0,"jawBoneWidth":0,"eyeBrownHigh":0,"noseWidth":0,"eyeBrownForward":0,"nosePeakLowering":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"chinBoneLowering":0,"noseBoneTwist":0,"chinBoneLenght":0,"chinHole":0,"cheeksBoneWidth":0},"hair":{"highlight":0,"color":0,"texture":0,"style":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"tattoos":[],"eyeColor":0,"model":"mp_m_freemode_01","headOverlays":{"blemishes":{"color":0,"style":0,"opacity":0},"lipstick":{"color":0,"style":0,"opacity":0},"chestHair":{"color":0,"style":0,"opacity":0},"beard":{"color":0,"style":0,"opacity":0},"blush":{"color":0,"style":0,"opacity":0},"ageing":{"color":0,"style":0,"opacity":0},"complexion":{"color":0,"style":0,"opacity":0},"eyebrows":{"color":0,"style":0,"opacity":0},"bodyBlemishes":{"color":0,"style":0,"opacity":0},"moleAndFreckles":{"color":0,"style":0,"opacity":0},"sunDamage":{"color":0,"style":0,"opacity":0},"makeUp":{"color":0,"secondColor":0,"style":0,"opacity":0}},"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"headBlend":{"shapeSecond":0,"shapeThird":0,"skinMix":0,"skinThird":0,"shapeFirst":0,"thirdMix":0,"skinSecond":0,"shapeMix":0,"skinFirst":0}}', 1),
	(272175, 'XHZ81419', 'mp_m_freemode_01', '{"faceFeatures":{"jawBoneBackSize":0,"nosePeakHigh":0,"lipsThickness":0,"cheeksWidth":0,"eyesOpening":0,"nosePeakSize":0,"neckThickness":0,"chinBoneLenght":0,"jawBoneWidth":0,"chinBoneSize":0,"noseWidth":0,"eyeBrownForward":0,"nosePeakLowering":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"chinBoneLowering":0,"noseBoneTwist":0,"cheeksBoneWidth":0,"eyeBrownHigh":0,"chinHole":0},"hair":{"color":0,"highlight":0,"texture":0,"style":0},"headOverlays":{"blemishes":{"color":0,"style":0,"opacity":0},"lipstick":{"color":0,"style":0,"opacity":0},"chestHair":{"color":0,"style":0,"opacity":0},"beard":{"color":0,"style":0,"opacity":0},"blush":{"color":0,"style":0,"opacity":0},"ageing":{"color":0,"style":0,"opacity":0},"eyebrows":{"color":0,"style":0,"opacity":0},"bodyBlemishes":{"color":0,"style":0,"opacity":0},"makeUp":{"color":0,"secondColor":0,"style":0,"opacity":0},"sunDamage":{"color":0,"style":0,"opacity":0},"moleAndFreckles":{"color":0,"style":0,"opacity":0},"complexion":{"color":0,"style":0,"opacity":0}},"eyeColor":0,"model":"mp_m_freemode_01","props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"tattoos":[],"headBlend":{"shapeSecond":0,"shapeThird":0,"skinThird":0,"shapeFirst":0,"thirdMix":0,"skinSecond":0,"shapeMix":0,"skinMix":0,"skinFirst":0}}', 1),
	(272176, 'USQ49385', 'mp_m_freemode_01', '{"faceFeatures":{"jawBoneBackSize":0,"nosePeakHigh":0,"lipsThickness":0,"cheeksWidth":0,"eyesOpening":0,"nosePeakSize":0,"neckThickness":0,"chinBoneLenght":0,"jawBoneWidth":0,"cheeksBoneWidth":0,"noseWidth":0,"chinBoneSize":0,"eyeBrownForward":0,"cheeksBoneHigh":0,"chinHole":0,"eyeBrownHigh":0,"noseBoneTwist":0,"nosePeakLowering":0,"chinBoneLowering":0,"noseBoneHigh":0},"hair":{"color":0,"texture":0,"style":0,"highlight":0},"headOverlays":{"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":0,"style":0,"color":0},"chestHair":{"opacity":0,"style":0,"color":0},"beard":{"opacity":0,"style":0,"color":0},"blush":{"opacity":0,"style":0,"color":0},"ageing":{"opacity":0,"style":0,"color":0},"eyebrows":{"opacity":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"style":0,"color":0},"blemishes":{"opacity":0,"style":0,"color":0},"sunDamage":{"opacity":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"style":0,"color":0},"complexion":{"opacity":0,"style":0,"color":0}},"eyeColor":0,"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"tattoos":[],"model":"mp_m_freemode_01","headBlend":{"shapeSecond":0,"shapeThird":0,"skinMix":0,"shapeMix":0,"skinFirst":0,"skinThird":0,"skinSecond":0,"thirdMix":0,"shapeFirst":0}}', 1),
	(272177, 'LBZ29973', 'mp_f_freemode_01', '{"faceFeatures":{"jawBoneBackSize":0,"nosePeakHigh":0,"lipsThickness":0,"cheeksWidth":0,"eyesOpening":0,"nosePeakSize":0,"neckThickness":0,"chinBoneLenght":0,"jawBoneWidth":0,"nosePeakLowering":0,"noseWidth":0,"eyeBrownHigh":0,"eyeBrownForward":0,"cheeksBoneHigh":0,"cheeksBoneWidth":0,"chinBoneLowering":0,"noseBoneTwist":0,"noseBoneHigh":0,"chinHole":0,"chinBoneSize":0},"hair":{"color":0,"highlight":0,"style":0,"texture":0},"headOverlays":{"blemishes":{"color":0,"style":0,"opacity":0},"bodyBlemishes":{"color":0,"style":0,"opacity":0},"chestHair":{"color":0,"style":0,"opacity":0},"beard":{"color":0,"style":0,"opacity":0},"blush":{"color":0,"style":0,"opacity":0},"ageing":{"color":0,"style":0,"opacity":0},"complexion":{"color":0,"style":0,"opacity":0},"eyebrows":{"color":0,"style":0,"opacity":0},"makeUp":{"color":0,"secondColor":0,"style":0,"opacity":0},"moleAndFreckles":{"color":0,"style":0,"opacity":0},"sunDamage":{"color":0,"style":0,"opacity":0},"lipstick":{"color":0,"style":0,"opacity":0}},"eyeColor":0,"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"tattoos":[],"model":"mp_f_freemode_01","headBlend":{"shapeSecond":0,"shapeThird":0,"skinThird":0,"skinFirst":0,"thirdMix":0,"shapeMix":0,"skinSecond":0,"skinMix":0,"shapeFirst":0}}', 1),
	(272178, 'COP67516', 'mp_m_freemode_01', '{"faceFeatures":{"jawBoneBackSize":0,"nosePeakHigh":0,"lipsThickness":0,"cheeksWidth":0,"eyesOpening":0,"nosePeakSize":0,"neckThickness":0,"chinBoneLenght":0,"jawBoneWidth":0,"chinBoneLowering":0,"noseWidth":0,"nosePeakLowering":0,"eyeBrownForward":0,"cheeksBoneHigh":0,"cheeksBoneWidth":0,"eyeBrownHigh":0,"noseBoneTwist":0,"chinBoneSize":0,"chinHole":0,"noseBoneHigh":0},"hair":{"highlight":0,"texture":0,"style":0,"color":0},"headOverlays":{"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"style":0,"color":0},"chestHair":{"opacity":0,"style":0,"color":0},"beard":{"opacity":0,"style":0,"color":0},"blush":{"opacity":0,"style":0,"color":0},"ageing":{"opacity":0,"style":0,"color":0},"complexion":{"opacity":0,"style":0,"color":0},"sunDamage":{"opacity":0,"style":0,"color":0},"blemishes":{"opacity":0,"style":0,"color":0},"lipstick":{"opacity":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"style":0,"color":0},"eyebrows":{"opacity":0,"style":0,"color":0}},"eyeColor":0,"model":"mp_m_freemode_01","props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"tattoos":[],"headBlend":{"shapeSecond":0,"shapeThird":0,"skinThird":0,"skinMix":0,"shapeFirst":0,"shapeMix":0,"skinSecond":0,"thirdMix":0,"skinFirst":0}}', 1),
	(272180, 'DLA92312', 'mp_f_freemode_01', '{"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":53},{"component_id":3,"texture":0,"drawable":4},{"component_id":4,"texture":11,"drawable":16},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":3,"drawable":2},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":2},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":74}],"tattoos":[],"hair":{"highlight":35,"color":29,"texture":0,"style":53},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"faceFeatures":{"eyeBrownHigh":-0.3,"neckThickness":0,"chinBoneLowering":-0.3,"chinHole":0,"nosePeakSize":0.9,"nosePeakLowering":-0.1,"chinBoneSize":-0.4,"cheeksWidth":-1,"jawBoneWidth":1,"eyeBrownForward":0,"eyesOpening":1,"noseBoneTwist":0,"cheeksBoneHigh":-1,"lipsThickness":-1,"cheeksBoneWidth":0.3,"jawBoneBackSize":-1,"noseBoneHigh":1,"nosePeakHigh":0,"noseWidth":-0.5,"chinBoneLenght":0.2},"headOverlays":{"ageing":{"opacity":0,"color":0,"style":0},"lipstick":{"opacity":1,"color":20,"style":2},"makeUp":{"opacity":1,"secondColor":52,"color":20,"style":15},"sunDamage":{"opacity":0,"color":0,"style":0},"eyebrows":{"opacity":1,"color":26,"style":1},"blush":{"opacity":0.2,"color":15,"style":0},"beard":{"opacity":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0},"chestHair":{"opacity":0,"color":0,"style":0},"complexion":{"opacity":0,"color":0,"style":0},"blemishes":{"opacity":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"color":0,"style":0}},"headBlend":{"skinFirst":0,"shapeMix":0.3,"skinSecond":0,"skinMix":0,"shapeFirst":45,"shapeThird":0,"shapeSecond":21,"skinThird":0,"thirdMix":0},"model":"mp_f_freemode_01","eyeColor":3}', 1),
	(272181, 'OHX07476', 'mp_f_freemode_01', '{"headBlend":{"thirdMix":0,"shapeSecond":21,"skinMix":0.1,"skinFirst":20,"shapeThird":0,"shapeFirst":45,"skinSecond":15,"shapeMix":0.3,"skinThird":0},"model":"mp_f_freemode_01","eyeColor":0,"hair":{"texture":0,"highlight":0,"style":0,"color":0},"faceFeatures":{"noseBoneTwist":0,"chinBoneLenght":0,"jawBoneWidth":0,"noseWidth":0,"lipsThickness":0,"chinBoneLowering":0,"noseBoneHigh":0,"chinHole":0,"nosePeakSize":0,"nosePeakLowering":0,"cheeksBoneWidth":0,"cheeksBoneHigh":0,"eyesOpening":0,"nosePeakHigh":0,"jawBoneBackSize":0,"neckThickness":0,"eyeBrownForward":0,"chinBoneSize":0,"cheeksWidth":0,"eyeBrownHigh":0},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}],"tattoos":[],"headOverlays":{"complexion":{"secondColor":0,"opacity":0,"style":0,"color":0},"chestHair":{"secondColor":0,"opacity":0,"style":0,"color":0},"blemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"eyebrows":{"secondColor":0,"opacity":0,"style":0,"color":0},"blush":{"secondColor":0,"opacity":0,"style":0,"color":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"style":0,"color":0},"sunDamage":{"secondColor":0,"opacity":0,"style":0,"color":0},"ageing":{"secondColor":0,"opacity":0,"style":0,"color":0},"makeUp":{"secondColor":0,"opacity":0,"style":0,"color":0},"lipstick":{"secondColor":0,"opacity":0,"style":0,"color":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"beard":{"secondColor":0,"opacity":0,"style":0,"color":0}}}', 1),
	(272182, 'ARD80754', 'mp_m_freemode_01', '{"tattoos":{"ZONE_HAIR":[{"collection":"multiplayer_overlays","label":"hair-0-192","zone":"ZONE_HAIR","hashMale":"FM_M_Hair_006_b","name":"hair-0-192","hashFemale":"FM_F_Hair_006_b"}]},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"hair":{"style":44,"color":0,"texture":0,"highlight":0},"eyeColor":0,"model":"mp_m_freemode_01","headBlend":{"shapeFirst":6,"skinThird":0,"skinFirst":0,"shapeSecond":0,"shapeThird":0,"shapeMix":0,"thirdMix":0,"skinSecond":0,"skinMix":0},"faceFeatures":{"eyeBrownForward":0,"noseBoneHigh":0,"chinBoneSize":0,"jawBoneWidth":0,"eyesOpening":0,"noseBoneTwist":0,"noseWidth":0,"nosePeakSize":0,"cheeksBoneHigh":0,"neckThickness":0,"jawBoneBackSize":0,"lipsThickness":0,"cheeksWidth":0,"chinHole":0,"chinBoneLenght":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"nosePeakLowering":0,"eyeBrownHigh":0,"nosePeakHigh":0},"headOverlays":{"eyebrows":{"secondColor":0,"opacity":0,"color":0,"style":0},"lipstick":{"secondColor":0,"opacity":0,"color":0,"style":0},"complexion":{"secondColor":0,"opacity":0,"color":0,"style":0},"chestHair":{"secondColor":0,"opacity":0,"color":0,"style":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"color":0,"style":0},"blemishes":{"secondColor":0,"opacity":0,"color":0,"style":0},"makeUp":{"secondColor":0,"opacity":0,"color":0,"style":0},"blush":{"secondColor":0,"opacity":0,"color":0,"style":0},"beard":{"secondColor":0,"opacity":0,"color":0,"style":0},"sunDamage":{"secondColor":0,"opacity":0,"color":0,"style":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"color":0,"style":0},"ageing":{"secondColor":0,"opacity":0,"color":0,"style":0}},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}]}', 1),
	(272183, 'BFT15110', 'mp_m_freemode_01', '{"headBlend":{"skinThird":0,"thirdMix":0,"shapeFirst":0,"skinFirst":0,"skinSecond":0,"skinMix":0,"shapeMix":0,"shapeThird":0,"shapeSecond":0},"hair":{"texture":0,"highlight":0,"color":0,"style":0},"model":"mp_m_freemode_01","faceFeatures":{"chinBoneLowering":0,"nosePeakLowering":0,"nosePeakSize":0,"noseBoneTwist":0,"lipsThickness":0,"jawBoneBackSize":0,"eyesOpening":0,"chinBoneSize":0,"noseWidth":0,"noseBoneHigh":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"neckThickness":0,"eyeBrownHigh":0,"nosePeakHigh":0,"eyeBrownForward":0,"cheeksWidth":0,"jawBoneWidth":0,"cheeksBoneWidth":0,"chinHole":0},"tattoos":[],"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}],"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"headOverlays":{"blemishes":{"color":0,"secondColor":0,"opacity":0,"style":0},"moleAndFreckles":{"color":0,"secondColor":0,"opacity":0,"style":0},"ageing":{"color":0,"secondColor":0,"opacity":0,"style":0},"chestHair":{"color":0,"secondColor":0,"opacity":0,"style":0},"complexion":{"color":0,"secondColor":0,"opacity":0,"style":0},"eyebrows":{"color":0,"secondColor":0,"opacity":0,"style":0},"blush":{"color":0,"secondColor":0,"opacity":0,"style":0},"makeUp":{"color":0,"secondColor":0,"opacity":0,"style":0},"lipstick":{"color":0,"secondColor":0,"opacity":0,"style":0},"sunDamage":{"color":0,"secondColor":0,"opacity":0,"style":0},"beard":{"color":0,"secondColor":0,"opacity":0,"style":0},"bodyBlemishes":{"color":0,"secondColor":0,"opacity":0,"style":0}},"eyeColor":0}', 1),
	(272184, 'HJD86468', 'mp_m_freemode_01', '{"tattoos":[],"headBlend":{"shapeThird":0,"shapeFirst":0,"thirdMix":0,"shapeMix":0,"skinMix":0,"skinSecond":0,"skinFirst":0,"shapeSecond":0,"skinThird":0},"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"eyeColor":0,"hair":{"texture":0,"highlight":0,"style":0,"color":0},"faceFeatures":{"noseWidth":0,"nosePeakSize":0,"jawBoneBackSize":0,"nosePeakLowering":0,"noseBoneTwist":0,"eyesOpening":0,"nosePeakHigh":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"eyeBrownHigh":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"lipsThickness":0,"neckThickness":0,"eyeBrownForward":0,"chinBoneSize":0,"cheeksWidth":0,"jawBoneWidth":0,"chinHole":0},"headOverlays":{"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0},"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":0,"secondColor":0,"style":0,"color":0},"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0}},"model":"mp_m_freemode_01"}', 1),
	(272185, 'MKN11380', 'mp_m_freemode_01', '{"tattoos":[],"hair":{"texture":0,"highlight":0,"style":0,"color":0},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":1,"texture":0},{"component_id":8,"drawable":1,"texture":0},{"component_id":5,"drawable":1,"texture":0},{"component_id":4,"drawable":1,"texture":0},{"component_id":6,"drawable":1,"texture":0},{"component_id":3,"drawable":19,"texture":0}],"faceFeatures":{"noseWidth":0,"nosePeakSize":0,"jawBoneBackSize":0,"nosePeakLowering":0,"noseBoneTwist":0,"chinHole":0,"nosePeakHigh":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"eyeBrownHigh":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"lipsThickness":0,"neckThickness":0,"eyeBrownForward":0,"chinBoneSize":0,"eyesOpening":0,"jawBoneWidth":0,"cheeksWidth":0},"eyeColor":0,"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"headOverlays":{"bodyBlemishes":{"opacity":0,"color":0,"style":0,"secondColor":0},"lipstick":{"opacity":0,"color":0,"style":0,"secondColor":0},"complexion":{"opacity":0,"color":0,"style":0,"secondColor":0},"blush":{"opacity":0,"color":0,"style":0,"secondColor":0},"blemishes":{"opacity":0,"color":0,"style":0,"secondColor":0},"makeUp":{"opacity":0,"color":0,"style":0,"secondColor":0},"sunDamage":{"opacity":0,"color":0,"style":0,"secondColor":0},"ageing":{"opacity":0,"color":0,"style":0,"secondColor":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0,"secondColor":0},"eyebrows":{"opacity":0,"color":0,"style":0,"secondColor":0},"beard":{"opacity":0,"color":0,"style":0,"secondColor":0},"chestHair":{"opacity":0,"color":0,"style":0,"secondColor":0}},"headBlend":{"shapeThird":0,"shapeFirst":0,"thirdMix":0,"shapeMix":0,"skinMix":0,"skinSecond":0,"skinFirst":0,"shapeSecond":0,"skinThird":0},"model":"mp_m_freemode_01"}', 1),
	(272186, 'WKL81749', 'mp_m_freemode_01', '{"hair":{"color":0,"texture":0,"highlight":0,"style":0},"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"faceFeatures":{"chinBoneSize":0,"neckThickness":0,"noseWidth":0,"eyesOpening":0,"nosePeakSize":0,"noseBoneHigh":0,"chinBoneLenght":0,"cheeksBoneWidth":0,"lipsThickness":0,"jawBoneWidth":0,"cheeksWidth":0,"eyeBrownForward":0,"chinBoneLowering":0,"chinHole":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"nosePeakLowering":0,"noseBoneTwist":0,"eyeBrownHigh":0,"nosePeakHigh":0},"headOverlays":{"blemishes":{"color":0,"opacity":0,"style":0,"secondColor":0},"chestHair":{"color":0,"opacity":0,"style":0,"secondColor":0},"moleAndFreckles":{"color":0,"opacity":0,"style":0,"secondColor":0},"lipstick":{"color":0,"opacity":0,"style":0,"secondColor":0},"bodyBlemishes":{"color":0,"opacity":0,"style":0,"secondColor":0},"blush":{"color":0,"opacity":0,"style":0,"secondColor":0},"sunDamage":{"color":0,"opacity":0,"style":0,"secondColor":0},"complexion":{"color":0,"opacity":0,"style":0,"secondColor":0},"eyebrows":{"color":0,"opacity":0,"style":0,"secondColor":0},"makeUp":{"color":0,"opacity":0,"style":0,"secondColor":0},"beard":{"color":0,"opacity":0,"style":0,"secondColor":0},"ageing":{"color":0,"opacity":0,"style":0,"secondColor":0}},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"tattoos":[],"headBlend":{"skinMix":0,"shapeMix":0,"shapeSecond":0,"shapeThird":0,"skinThird":0,"thirdMix":0,"skinFirst":0,"skinSecond":0,"shapeFirst":0},"model":"mp_m_freemode_01","eyeColor":0}', 1),
	(272187, 'AUO56318', 'mp_m_freemode_01', '{"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"headOverlays":{"beard":{"secondColor":0,"style":0,"color":0,"opacity":0},"eyebrows":{"secondColor":0,"style":0,"color":0,"opacity":0},"chestHair":{"secondColor":0,"style":0,"color":0,"opacity":0},"ageing":{"secondColor":0,"style":0,"color":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"style":0,"color":0,"opacity":0},"complexion":{"secondColor":0,"style":0,"color":0,"opacity":0},"makeUp":{"secondColor":0,"style":0,"color":0,"opacity":0},"blush":{"secondColor":0,"style":0,"color":0,"opacity":0},"lipstick":{"secondColor":0,"style":0,"color":0,"opacity":0},"sunDamage":{"secondColor":0,"style":0,"color":0,"opacity":0},"blemishes":{"secondColor":0,"style":0,"color":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"style":0,"color":0,"opacity":0}},"eyeColor":0,"tattoos":[],"headBlend":{"skinFirst":0,"shapeFirst":0,"shapeMix":0,"thirdMix":0,"skinThird":0,"skinMix":0,"shapeThird":0,"shapeSecond":0,"skinSecond":0},"model":"mp_m_freemode_01","hair":{"texture":0,"highlight":0,"color":0,"style":0},"faceFeatures":{"nosePeakHigh":0,"eyeBrownForward":0,"lipsThickness":0,"cheeksWidth":0,"chinBoneLenght":0,"chinBoneSize":0,"jawBoneWidth":0,"jawBoneBackSize":0,"neckThickness":0,"cheeksBoneWidth":0,"eyesOpening":0,"chinBoneLowering":0,"eyeBrownHigh":0,"noseBoneHigh":0,"nosePeakSize":0,"nosePeakLowering":0,"noseWidth":0,"chinHole":0,"cheeksBoneHigh":0,"noseBoneTwist":0}}', 1),
	(272188, 'LOT03634', 'mp_f_freemode_01', '{"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"model":"mp_f_freemode_01","headOverlays":{"complexion":{"secondColor":0,"opacity":0,"color":0,"style":0},"sunDamage":{"secondColor":0,"opacity":0,"color":0,"style":0},"ageing":{"secondColor":0,"opacity":0,"color":0,"style":0},"eyebrows":{"secondColor":0,"opacity":0,"color":0,"style":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"color":0,"style":0},"makeUp":{"secondColor":0,"opacity":0,"color":0,"style":0},"beard":{"secondColor":0,"opacity":0,"color":0,"style":0},"blush":{"secondColor":0,"opacity":0,"color":0,"style":0},"lipstick":{"secondColor":0,"opacity":0,"color":0,"style":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"color":0,"style":0},"blemishes":{"secondColor":0,"opacity":0,"color":0,"style":0},"chestHair":{"secondColor":0,"opacity":0,"color":0,"style":0}},"eyeColor":0,"tattoos":[],"hair":{"texture":0,"highlight":0,"color":0,"style":0},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"headBlend":{"skinFirst":20,"shapeFirst":45,"shapeMix":0.3,"skinSecond":15,"skinThird":0,"skinMix":0.1,"shapeThird":0,"shapeSecond":21,"thirdMix":0},"faceFeatures":{"nosePeakHigh":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"cheeksWidth":0,"chinBoneLenght":0,"chinBoneSize":0,"jawBoneWidth":0,"jawBoneBackSize":0,"neckThickness":0,"chinHole":0,"eyesOpening":0,"noseBoneTwist":0,"eyeBrownHigh":0,"noseBoneHigh":0,"cheeksBoneHigh":0,"nosePeakLowering":0,"noseWidth":0,"nosePeakSize":0,"chinBoneLowering":0,"lipsThickness":0}}', 1),
	(272189, 'TEM43359', 'mp_m_freemode_01', '{"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"headBlend":{"thirdMix":0,"shapeFirst":0,"shapeMix":0,"skinFirst":0,"skinThird":0,"shapeSecond":0,"skinSecond":0,"skinMix":0,"shapeThird":0},"headOverlays":{"blemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"lipstick":{"secondColor":0,"opacity":0,"style":0,"color":0},"makeUp":{"secondColor":0,"opacity":0,"style":0,"color":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"style":0,"color":0},"sunDamage":{"secondColor":0,"opacity":0,"style":0,"color":0},"complexion":{"secondColor":0,"opacity":0,"style":0,"color":0},"beard":{"secondColor":0,"opacity":0,"style":0,"color":0},"eyebrows":{"secondColor":0,"opacity":0,"style":0,"color":0},"chestHair":{"secondColor":0,"opacity":0,"style":0,"color":0},"ageing":{"secondColor":0,"opacity":0,"style":0,"color":0},"blush":{"secondColor":0,"opacity":0,"style":0,"color":0}},"faceFeatures":{"noseBoneTwist":0,"nosePeakHigh":0,"noseWidth":0,"jawBoneBackSize":0,"eyeBrownForward":0,"eyeBrownHigh":0,"noseBoneHigh":0,"cheeksBoneWidth":0,"nosePeakLowering":0,"chinBoneLowering":0,"chinBoneSize":0,"chinBoneLenght":0,"nosePeakSize":0,"eyesOpening":0,"neckThickness":0,"cheeksWidth":0,"chinHole":0,"lipsThickness":0,"cheeksBoneHigh":0,"jawBoneWidth":0},"hair":{"style":0,"texture":0,"highlight":0,"color":0},"tattoos":[],"model":"mp_m_freemode_01","eyeColor":0}', 1),
	(272190, 'LVG01978', 'mp_m_freemode_01', '{"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"model":"mp_m_freemode_01","tattoos":[],"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"eyeColor":0,"faceFeatures":{"nosePeakHigh":0,"jawBoneBackSize":0,"eyesOpening":0,"nosePeakLowering":0,"cheeksWidth":0,"nosePeakSize":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"jawBoneWidth":0,"noseBoneHigh":0,"eyeBrownHigh":0,"chinBoneLowering":0,"noseWidth":0,"chinBoneSize":0,"neckThickness":0,"chinBoneLenght":0,"chinHole":0,"lipsThickness":0,"noseBoneTwist":0,"cheeksBoneHigh":0},"headOverlays":{"makeUp":{"opacity":0,"color":0,"style":0,"secondColor":0},"blemishes":{"opacity":0,"color":0,"style":0,"secondColor":0},"eyebrows":{"opacity":0,"color":0,"style":0,"secondColor":0},"blush":{"opacity":0,"color":0,"style":0,"secondColor":0},"chestHair":{"opacity":0,"color":0,"style":0,"secondColor":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0,"secondColor":0},"sunDamage":{"opacity":0,"color":0,"style":0,"secondColor":0},"bodyBlemishes":{"opacity":0,"color":0,"style":0,"secondColor":0},"lipstick":{"opacity":0,"color":0,"style":0,"secondColor":0},"beard":{"opacity":0,"color":0,"style":0,"secondColor":0},"ageing":{"opacity":0,"color":0,"style":0,"secondColor":0},"complexion":{"opacity":0,"color":0,"style":0,"secondColor":0}},"headBlend":{"shapeThird":0,"shapeFirst":0,"skinFirst":0,"shapeMix":0,"skinMix":0,"skinSecond":0,"shapeSecond":0,"skinThird":0,"thirdMix":0},"hair":{"color":0,"texture":0,"style":0,"highlight":0}}', 1),
	(272191, 'RIV10887', 'mp_m_freemode_01', '{"headBlend":{"skinSecond":0,"skinFirst":0,"thirdMix":0,"skinThird":0,"shapeFirst":44,"shapeMix":1,"skinMix":1,"shapeThird":0,"shapeSecond":0},"tattoos":[],"faceFeatures":{"nosePeakLowering":0,"chinBoneLowering":0,"lipsThickness":0,"noseBoneTwist":0,"cheeksBoneWidth":0,"nosePeakSize":0,"eyeBrownHigh":0,"chinBoneSize":0,"jawBoneWidth":0,"chinBoneLenght":0,"eyesOpening":0,"neckThickness":0,"eyeBrownForward":0,"noseBoneHigh":0,"chinHole":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"nosePeakHigh":0,"cheeksWidth":0,"noseWidth":0},"hair":{"texture":0,"color":0,"highlight":0,"style":0},"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"headOverlays":{"complexion":{"secondColor":0,"opacity":0,"color":0,"style":0},"sunDamage":{"secondColor":0,"opacity":0,"color":0,"style":0},"makeUp":{"secondColor":0,"opacity":0,"color":0,"style":0},"ageing":{"secondColor":0,"opacity":0,"color":0,"style":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"color":0,"style":0},"blush":{"secondColor":0,"opacity":0,"color":0,"style":0},"lipstick":{"secondColor":0,"opacity":0,"color":0,"style":0},"blemishes":{"secondColor":0,"opacity":0,"color":0,"style":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"color":0,"style":0},"eyebrows":{"secondColor":0,"opacity":0,"color":0,"style":0},"chestHair":{"secondColor":0,"opacity":0,"color":0,"style":0},"beard":{"secondColor":0,"opacity":0,"color":0,"style":0}},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"eyeColor":0,"model":"mp_m_freemode_01"}', 1),
	(272192, 'AVC93665', 'mp_m_freemode_01', '{"headBlend":{"thirdMix":0,"shapeFirst":0,"skinThird":0,"shapeMix":0,"shapeThird":0,"shapeSecond":0,"skinMix":0,"skinFirst":0,"skinSecond":0},"headOverlays":{"bodyBlemishes":{"color":0,"secondColor":0,"opacity":0,"style":0},"chestHair":{"color":0,"secondColor":0,"opacity":0,"style":0},"eyebrows":{"color":0,"secondColor":0,"opacity":0,"style":0},"blemishes":{"color":0,"secondColor":0,"opacity":0,"style":0},"sunDamage":{"color":0,"secondColor":0,"opacity":0,"style":0},"ageing":{"color":0,"secondColor":0,"opacity":0,"style":0},"moleAndFreckles":{"color":0,"secondColor":0,"opacity":0,"style":0},"complexion":{"color":0,"secondColor":0,"opacity":0,"style":0},"beard":{"color":0,"secondColor":0,"opacity":0,"style":0},"lipstick":{"color":0,"secondColor":0,"opacity":0,"style":0},"blush":{"color":0,"secondColor":0,"opacity":0,"style":0},"makeUp":{"color":0,"secondColor":0,"opacity":0,"style":0}},"faceFeatures":{"nosePeakHigh":0,"chinBoneLenght":0,"neckThickness":0,"nosePeakLowering":0,"cheeksBoneWidth":0,"cheeksWidth":0,"jawBoneWidth":0,"cheeksBoneHigh":0,"lipsThickness":0,"chinHole":0,"eyesOpening":0,"jawBoneBackSize":0,"eyeBrownHigh":0,"eyeBrownForward":0,"chinBoneSize":0,"noseBoneHigh":0,"noseWidth":0,"chinBoneLowering":0,"nosePeakSize":0,"noseBoneTwist":0},"eyeColor":-1,"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"hair":{"color":0,"texture":0,"style":0,"highlight":0},"model":"mp_m_freemode_01","components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"tattoos":[]}', 1),
	(272193, 'RCW84276', 'mp_m_freemode_01', '{"headBlend":{"shapeThird":0,"shapeMix":0,"skinMix":0,"skinSecond":0,"shapeSecond":0,"skinThird":0,"skinFirst":0,"thirdMix":0,"shapeFirst":0},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"model":"mp_m_freemode_01","hair":{"style":0,"texture":0,"color":0,"highlight":0},"headOverlays":{"lipstick":{"style":0,"color":0,"opacity":0,"secondColor":0},"sunDamage":{"style":0,"color":0,"opacity":0,"secondColor":0},"beard":{"style":0,"color":0,"opacity":0,"secondColor":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0,"secondColor":0},"blemishes":{"style":0,"color":0,"opacity":0,"secondColor":0},"eyebrows":{"style":0,"color":0,"opacity":0,"secondColor":0},"ageing":{"style":0,"color":0,"opacity":0,"secondColor":0},"blush":{"style":0,"color":0,"opacity":0,"secondColor":0},"makeUp":{"style":0,"color":0,"opacity":0,"secondColor":0},"chestHair":{"style":0,"color":0,"opacity":0,"secondColor":0},"complexion":{"style":0,"color":0,"opacity":0,"secondColor":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0,"secondColor":0}},"tattoos":[],"faceFeatures":{"chinBoneLenght":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"eyesOpening":0,"lipsThickness":0,"chinBoneLowering":0,"chinHole":0,"eyeBrownHigh":0,"jawBoneBackSize":0,"cheeksWidth":0,"nosePeakLowering":0,"nosePeakHigh":0,"noseBoneHigh":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"jawBoneWidth":0,"noseWidth":0,"neckThickness":0,"chinBoneSize":0,"nosePeakSize":0},"eyeColor":0,"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}]}', 1),
	(272194, 'VTB89229', 'mp_m_freemode_01', '{"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"headBlend":{"skinFirst":0,"skinSecond":0,"shapeFirst":0,"shapeSecond":0,"skinThird":0,"skinMix":0,"thirdMix":0,"shapeMix":0,"shapeThird":0},"eyeColor":0,"headOverlays":{"ageing":{"color":0,"secondColor":0,"style":0,"opacity":0},"bodyBlemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"chestHair":{"color":0,"secondColor":0,"style":0,"opacity":0},"blush":{"color":0,"secondColor":0,"style":0,"opacity":0},"blemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"sunDamage":{"color":0,"secondColor":0,"style":0,"opacity":0},"makeUp":{"color":0,"secondColor":0,"style":0,"opacity":0},"beard":{"color":0,"secondColor":0,"style":0,"opacity":0},"moleAndFreckles":{"color":0,"secondColor":0,"style":0,"opacity":0},"complexion":{"color":0,"secondColor":0,"style":0,"opacity":0},"eyebrows":{"color":0,"secondColor":0,"style":0,"opacity":0},"lipstick":{"color":0,"secondColor":0,"style":0,"opacity":0}},"hair":{"color":0,"highlight":0,"texture":0,"style":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"model":"mp_m_freemode_01","tattoos":[],"faceFeatures":{"noseBoneHigh":0,"eyeBrownHigh":0,"nosePeakHigh":0,"cheeksBoneHigh":0,"neckThickness":0,"jawBoneBackSize":0,"chinBoneSize":0,"noseBoneTwist":0,"lipsThickness":0,"eyesOpening":0,"noseWidth":0,"chinBoneLenght":0,"jawBoneWidth":0,"chinBoneLowering":0,"eyeBrownForward":0,"nosePeakLowering":0,"cheeksBoneWidth":0,"chinHole":0,"nosePeakSize":0,"cheeksWidth":0}}', 1),
	(272195, 'GOE83795', 'mp_m_freemode_01', '{"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"eyeColor":0,"headBlend":{"thirdMix":0,"skinFirst":0,"skinSecond":0,"skinThird":0,"shapeThird":0,"shapeFirst":0,"skinMix":0,"shapeMix":0,"shapeSecond":0},"headOverlays":{"blemishes":{"style":0,"secondColor":0,"opacity":0,"color":0},"beard":{"style":0,"secondColor":0,"opacity":0,"color":0},"eyebrows":{"style":0,"secondColor":0,"opacity":0,"color":0},"complexion":{"style":0,"secondColor":0,"opacity":0,"color":0},"blush":{"style":0,"secondColor":0,"opacity":0,"color":0},"ageing":{"style":0,"secondColor":0,"opacity":0,"color":0},"chestHair":{"style":0,"secondColor":0,"opacity":0,"color":0},"lipstick":{"style":0,"secondColor":0,"opacity":0,"color":0},"bodyBlemishes":{"style":0,"secondColor":0,"opacity":0,"color":0},"sunDamage":{"style":0,"secondColor":0,"opacity":0,"color":0},"moleAndFreckles":{"style":0,"secondColor":0,"opacity":0,"color":0},"makeUp":{"style":0,"secondColor":0,"opacity":0,"color":0}},"faceFeatures":{"jawBoneBackSize":0,"chinBoneLenght":0,"eyesOpening":0,"nosePeakHigh":0,"lipsThickness":0,"jawBoneWidth":0,"eyeBrownForward":0,"nosePeakSize":0,"cheeksBoneHigh":0,"nosePeakLowering":0,"noseBoneHigh":0,"noseWidth":0,"chinBoneSize":0,"chinHole":0,"neckThickness":0,"eyeBrownHigh":0,"cheeksBoneWidth":0,"noseBoneTwist":0,"cheeksWidth":0,"chinBoneLowering":0},"tattoos":[],"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"hair":{"color":0,"highlight":0,"style":0,"texture":0},"model":"mp_m_freemode_01"}', 1),
	(272196, 'BQR15906', 'mp_m_freemode_01', '{"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"model":"mp_m_freemode_01","faceFeatures":{"chinBoneSize":0,"jawBoneBackSize":0,"chinHole":0,"lipsThickness":0,"neckThickness":0,"nosePeakSize":0,"nosePeakHigh":0,"noseBoneHigh":0,"noseBoneTwist":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"nosePeakLowering":0,"eyesOpening":0,"jawBoneWidth":0,"cheeksBoneHigh":0,"eyeBrownForward":0,"cheeksWidth":0,"eyeBrownHigh":0,"noseWidth":0},"tattoos":[],"hair":{"color":0,"style":0,"highlight":0,"texture":0},"eyeColor":0,"headOverlays":{"chestHair":{"color":0,"style":0,"secondColor":0,"opacity":0},"sunDamage":{"color":0,"style":0,"secondColor":0,"opacity":0},"eyebrows":{"color":0,"style":0,"secondColor":0,"opacity":0},"blush":{"color":0,"style":0,"secondColor":0,"opacity":0},"blemishes":{"color":0,"style":0,"secondColor":0,"opacity":0},"beard":{"color":0,"style":0,"secondColor":0,"opacity":0},"ageing":{"color":0,"style":0,"secondColor":0,"opacity":0},"complexion":{"color":0,"style":0,"secondColor":0,"opacity":0},"moleAndFreckles":{"color":0,"style":0,"secondColor":0,"opacity":0},"bodyBlemishes":{"color":0,"style":0,"secondColor":0,"opacity":0},"lipstick":{"color":0,"style":0,"secondColor":0,"opacity":0},"makeUp":{"color":0,"style":0,"secondColor":0,"opacity":0}},"headBlend":{"shapeSecond":0,"shapeMix":0,"skinSecond":0,"thirdMix":0,"shapeFirst":0,"shapeThird":0,"skinMix":0,"skinThird":0,"skinFirst":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}]}', 1),
	(272197, 'LET77898', 'mp_m_freemode_01', '{"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"model":"mp_m_freemode_01","faceFeatures":{"chinBoneSize":0,"jawBoneBackSize":0,"chinHole":0,"jawBoneWidth":0,"neckThickness":0,"nosePeakSize":0,"nosePeakHigh":0,"noseBoneHigh":0,"noseBoneTwist":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"nosePeakLowering":0,"eyesOpening":0,"cheeksBoneHigh":0,"noseWidth":0,"eyeBrownForward":0,"cheeksWidth":0,"eyeBrownHigh":0,"lipsThickness":0},"tattoos":[],"hair":{"highlight":0,"color":0,"style":0,"texture":0},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"headOverlays":{"chestHair":{"opacity":0,"style":0,"secondColor":0,"color":0},"sunDamage":{"opacity":0,"style":0,"secondColor":0,"color":0},"eyebrows":{"opacity":0,"style":0,"secondColor":0,"color":0},"makeUp":{"opacity":0,"style":0,"secondColor":0,"color":0},"ageing":{"opacity":0,"style":0,"secondColor":0,"color":0},"bodyBlemishes":{"opacity":0,"style":0,"secondColor":0,"color":0},"beard":{"opacity":0,"style":0,"secondColor":0,"color":0},"complexion":{"opacity":0,"style":0,"secondColor":0,"color":0},"moleAndFreckles":{"opacity":0,"style":0,"secondColor":0,"color":0},"blush":{"opacity":0,"style":0,"secondColor":0,"color":0},"lipstick":{"opacity":0,"style":0,"secondColor":0,"color":0},"blemishes":{"opacity":0,"style":0,"secondColor":0,"color":0}},"headBlend":{"shapeSecond":0,"shapeMix":0,"skinFirst":0,"skinThird":0,"shapeFirst":0,"shapeThird":0,"skinMix":0,"thirdMix":0,"skinSecond":0},"eyeColor":0}', 1),
	(272198, 'CUW89856', 'mp_m_freemode_01', '{"headBlend":{"skinMix":0,"shapeFirst":40,"skinFirst":0,"shapeSecond":0,"skinThird":0,"shapeThird":0,"thirdMix":0,"skinSecond":0,"shapeMix":0},"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":3,"component_id":7},{"texture":0,"drawable":3,"component_id":1},{"texture":0,"drawable":5,"component_id":11},{"texture":0,"drawable":4,"component_id":9},{"texture":0,"drawable":4,"component_id":3},{"texture":0,"drawable":2,"component_id":4},{"texture":0,"drawable":3,"component_id":6},{"texture":0,"drawable":3,"component_id":10}],"hair":{"color":0,"texture":0,"style":80,"highlight":47},"eyeColor":4,"headOverlays":{"lipstick":{"color":0,"secondColor":0,"style":0,"opacity":0},"makeUp":{"color":0,"secondColor":0,"style":0,"opacity":0},"chestHair":{"color":0,"secondColor":0,"style":0,"opacity":0},"ageing":{"color":0,"secondColor":0,"style":0,"opacity":0},"blush":{"color":0,"secondColor":0,"style":0,"opacity":0},"eyebrows":{"color":0,"secondColor":0,"style":7,"opacity":0},"moleAndFreckles":{"color":0,"secondColor":0,"style":0,"opacity":0},"sunDamage":{"color":0,"secondColor":0,"style":0,"opacity":0},"complexion":{"color":0,"secondColor":0,"style":0,"opacity":0},"blemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"bodyBlemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"beard":{"color":0,"secondColor":0,"style":0,"opacity":0}},"model":"mp_m_freemode_01","faceFeatures":{"eyeBrownForward":0,"nosePeakLowering":0,"eyeBrownHigh":0,"jawBoneWidth":0,"chinBoneLowering":0,"noseWidth":0,"chinHole":0,"nosePeakHigh":0,"eyesOpening":0,"cheeksBoneHigh":0,"cheeksWidth":0,"cheeksBoneWidth":0,"nosePeakSize":0,"jawBoneBackSize":0,"chinBoneLenght":0,"neckThickness":0,"noseBoneTwist":0,"lipsThickness":0,"noseBoneHigh":0,"chinBoneSize":0},"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"tattoos":{"ZONE_HAIR":[{"name":"hair-29-0","collection":"mpVinewood_overlays","zone":"ZONE_HAIR","label":"hair-29-0","hashFemale":"MP_Vinewood_Hair_F_000_M","hashMale":"MP_Vinewood_Hair_M_000_M"}]}}', 1),
	(272199, 'NMU52707', 'mp_m_freemode_01', '{"headBlend":{"skinMix":0,"shapeFirst":0,"skinFirst":0,"shapeSecond":0,"skinThird":0,"shapeThird":0,"thirdMix":0,"skinSecond":0,"shapeMix":0},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}],"hair":{"texture":0,"color":0,"style":0,"highlight":0},"eyeColor":0,"headOverlays":{"lipstick":{"secondColor":0,"opacity":0,"style":0,"color":0},"makeUp":{"secondColor":0,"opacity":0,"style":0,"color":0},"chestHair":{"secondColor":0,"opacity":0,"style":0,"color":0},"blush":{"secondColor":0,"opacity":0,"style":0,"color":0},"ageing":{"secondColor":0,"opacity":0,"style":0,"color":0},"beard":{"secondColor":0,"opacity":0,"style":0,"color":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"style":0,"color":0},"sunDamage":{"secondColor":0,"opacity":0,"style":0,"color":0},"complexion":{"secondColor":0,"opacity":0,"style":0,"color":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"blemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"eyebrows":{"secondColor":0,"opacity":0,"style":0,"color":0}},"faceFeatures":{"jawBoneBackSize":0,"noseBoneHigh":0,"eyeBrownHigh":0,"jawBoneWidth":0,"chinBoneLowering":0,"noseWidth":0,"chinHole":0,"nosePeakHigh":0,"eyesOpening":0,"cheeksBoneHigh":0,"cheeksWidth":0,"cheeksBoneWidth":0,"neckThickness":0,"eyeBrownForward":0,"chinBoneLenght":0,"lipsThickness":0,"noseBoneTwist":0,"nosePeakLowering":0,"nosePeakSize":0,"chinBoneSize":0},"model":"mp_m_freemode_01","props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"tattoos":[]}', 1),
	(272200, 'JOJ60978', 'mp_m_freemode_01', '{"model":"mp_m_freemode_01","eyeColor":0,"props":[{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1},{"prop_id":0,"texture":0,"drawable":2}],"faceFeatures":{"noseBoneHigh":0,"chinBoneSize":0,"lipsThickness":0,"cheeksBoneHigh":0,"cheeksBoneWidth":0,"eyeBrownHigh":0,"cheeksWidth":0,"nosePeakSize":0,"noseBoneTwist":0,"nosePeakLowering":0,"neckThickness":0,"jawBoneBackSize":0,"noseWidth":0,"chinBoneLowering":0,"eyesOpening":0,"nosePeakHigh":0,"jawBoneWidth":0,"chinBoneLenght":0,"eyeBrownForward":0,"chinHole":0},"headOverlays":{"beard":{"color":0,"style":0,"opacity":0,"secondColor":0},"complexion":{"color":0,"style":0,"opacity":0,"secondColor":0},"ageing":{"color":0,"style":0,"opacity":0,"secondColor":0},"eyebrows":{"color":0,"style":0,"opacity":0,"secondColor":0},"makeUp":{"color":0,"style":0,"opacity":0,"secondColor":0},"sunDamage":{"color":0,"style":0,"opacity":0,"secondColor":0},"blemishes":{"color":0,"style":0,"opacity":0,"secondColor":0},"blush":{"color":0,"style":0,"opacity":0,"secondColor":0},"lipstick":{"color":0,"style":0,"opacity":0,"secondColor":0},"moleAndFreckles":{"color":0,"style":0,"opacity":0,"secondColor":0},"chestHair":{"color":0,"style":0,"opacity":0,"secondColor":0},"bodyBlemishes":{"color":0,"style":0,"opacity":0,"secondColor":0}},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}],"headBlend":{"skinThird":0,"skinMix":0,"shapeSecond":0,"shapeThird":0,"skinFirst":0,"thirdMix":0,"skinSecond":0,"shapeFirst":0,"shapeMix":0},"tattoos":[],"hair":{"highlight":0,"style":0,"texture":0,"color":0}}', 1),
	(272201, 'LXN39219', 'mp_m_freemode_01', '{"model":"mp_m_freemode_01","eyeColor":0,"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"faceFeatures":{"noseBoneHigh":0,"chinBoneSize":0,"lipsThickness":0,"cheeksBoneHigh":0,"cheeksBoneWidth":0,"eyeBrownHigh":0,"cheeksWidth":0,"nosePeakSize":0,"noseBoneTwist":0,"nosePeakLowering":0,"neckThickness":0,"jawBoneBackSize":0,"noseWidth":0,"chinBoneLowering":0,"eyesOpening":0,"nosePeakHigh":0,"jawBoneWidth":0,"chinBoneLenght":0,"eyeBrownForward":0,"chinHole":0},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}],"headOverlays":{"beard":{"color":0,"style":0,"opacity":0,"secondColor":0},"chestHair":{"color":0,"style":0,"opacity":0,"secondColor":0},"ageing":{"color":0,"style":0,"opacity":0,"secondColor":0},"eyebrows":{"color":0,"style":0,"opacity":0,"secondColor":0},"makeUp":{"color":0,"style":0,"opacity":0,"secondColor":0},"blush":{"color":0,"style":0,"opacity":0,"secondColor":0},"blemishes":{"color":0,"style":0,"opacity":0,"secondColor":0},"sunDamage":{"color":0,"style":0,"opacity":0,"secondColor":0},"lipstick":{"color":0,"style":0,"opacity":0,"secondColor":0},"moleAndFreckles":{"color":0,"style":0,"opacity":0,"secondColor":0},"complexion":{"color":0,"style":0,"opacity":0,"secondColor":0},"bodyBlemishes":{"color":0,"style":0,"opacity":0,"secondColor":0}},"tattoos":[],"headBlend":{"skinThird":0,"skinMix":0,"shapeSecond":0,"shapeThird":0,"shapeMix":0,"thirdMix":0,"skinSecond":0,"shapeFirst":0,"skinFirst":0},"hair":{"color":0,"style":0,"texture":0,"highlight":0}}', 1),
	(272202, 'DDK73929', 'mp_m_freemode_01', '{"tattoos":[],"model":"mp_m_freemode_01","hair":{"texture":0,"style":0,"highlight":0,"color":0},"eyeColor":0,"headBlend":{"skinMix":0,"shapeThird":0,"skinSecond":0,"shapeSecond":0,"skinThird":0,"shapeFirst":0,"skinFirst":0,"shapeMix":0,"thirdMix":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"headOverlays":{"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":0,"secondColor":0,"style":0,"color":0},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0}},"faceFeatures":{"noseBoneHigh":0,"chinBoneLenght":0,"cheeksBoneWidth":0,"chinBoneLowering":0,"nosePeakLowering":0,"chinBoneSize":0,"cheeksBoneHigh":0,"noseWidth":0,"eyesOpening":0,"eyeBrownForward":0,"lipsThickness":0,"cheeksWidth":0,"jawBoneBackSize":0,"nosePeakSize":0,"jawBoneWidth":0,"noseBoneTwist":0,"eyeBrownHigh":0,"neckThickness":0,"nosePeakHigh":0,"chinHole":0}}', 1),
	(272203, 'TTJ64953', 'mp_m_freemode_01', '{"model":"mp_m_freemode_01","headBlend":{"skinFirst":0,"skinSecond":0,"thirdMix":0,"shapeThird":0,"skinMix":0,"skinThird":0,"shapeMix":0,"shapeFirst":0,"shapeSecond":0},"headOverlays":{"complexion":{"secondColor":0,"color":0,"style":0,"opacity":0},"ageing":{"secondColor":0,"color":0,"style":0,"opacity":0},"beard":{"secondColor":0,"color":0,"style":0,"opacity":0},"eyebrows":{"secondColor":0,"color":0,"style":0,"opacity":0},"makeUp":{"secondColor":0,"color":0,"style":0,"opacity":0},"sunDamage":{"secondColor":0,"color":0,"style":0,"opacity":0},"lipstick":{"secondColor":0,"color":0,"style":0,"opacity":0},"blush":{"secondColor":0,"color":0,"style":0,"opacity":0},"blemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"chestHair":{"secondColor":0,"color":0,"style":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"color":0,"style":0,"opacity":0}},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"hair":{"highlight":0,"color":0,"style":0,"texture":0},"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"faceFeatures":{"nosePeakHigh":0,"chinBoneLowering":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"chinHole":0,"eyeBrownForward":0,"chinBoneSize":0,"cheeksBoneWidth":0,"nosePeakSize":0,"noseBoneHigh":0,"lipsThickness":0,"neckThickness":0,"nosePeakLowering":0,"cheeksWidth":0,"jawBoneWidth":0,"noseBoneTwist":0,"chinBoneLenght":0,"eyeBrownHigh":0,"noseWidth":0,"eyesOpening":0},"tattoos":[],"eyeColor":0}', 1),
	(272204, 'TYU58000', 'mp_f_freemode_01', '{"model":"mp_f_freemode_01","headBlend":{"skinFirst":20,"skinSecond":15,"thirdMix":0,"shapeThird":0,"skinMix":0.1,"shapeMix":0.3,"skinThird":0,"shapeFirst":45,"shapeSecond":21},"headOverlays":{"complexion":{"secondColor":0,"color":0,"style":0,"opacity":0},"ageing":{"secondColor":0,"color":0,"style":0,"opacity":0},"beard":{"secondColor":0,"color":0,"style":0,"opacity":0},"eyebrows":{"secondColor":0,"color":0,"style":0,"opacity":0},"makeUp":{"secondColor":0,"color":0,"style":0,"opacity":0},"sunDamage":{"secondColor":0,"color":0,"style":0,"opacity":0},"lipstick":{"secondColor":0,"color":0,"style":0,"opacity":0},"blush":{"secondColor":0,"color":0,"style":0,"opacity":0},"blemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"chestHair":{"secondColor":0,"color":0,"style":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"color":0,"style":0,"opacity":0}},"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"tattoos":[],"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"faceFeatures":{"nosePeakHigh":0,"chinBoneLowering":0,"cheeksBoneHigh":0,"cheeksWidth":0,"chinHole":0,"eyeBrownForward":0,"chinBoneSize":0,"cheeksBoneWidth":0,"nosePeakSize":0,"noseBoneHigh":0,"lipsThickness":0,"neckThickness":0,"nosePeakLowering":0,"chinBoneLenght":0,"jawBoneWidth":0,"noseBoneTwist":0,"noseWidth":0,"eyeBrownHigh":0,"jawBoneBackSize":0,"eyesOpening":0},"hair":{"highlight":0,"texture":0,"style":0,"color":0},"eyeColor":0}', 1),
	(272205, 'LSA69495', 'mp_m_freemode_01', '{"hair":{"color":0,"highlight":0,"style":0,"texture":0},"headBlend":{"shapeSecond":0,"skinFirst":0,"shapeThird":0,"skinSecond":0,"shapeFirst":0,"skinThird":0,"skinMix":0,"shapeMix":0,"thirdMix":0},"faceFeatures":{"chinHole":0,"chinBoneLowering":0,"cheeksBoneHigh":0,"eyesOpening":0,"nosePeakHigh":0,"lipsThickness":0,"jawBoneBackSize":0,"eyeBrownForward":0,"nosePeakLowering":0,"chinBoneSize":0,"neckThickness":0,"nosePeakSize":0,"cheeksWidth":0,"noseWidth":0,"cheeksBoneWidth":0,"eyeBrownHigh":0,"noseBoneTwist":0,"jawBoneWidth":0,"chinBoneLenght":0,"noseBoneHigh":0},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"tattoos":[],"model":"mp_m_freemode_01","eyeColor":0,"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"headOverlays":{"blush":{"color":0,"secondColor":0,"opacity":0,"style":0},"makeUp":{"color":0,"secondColor":0,"opacity":0,"style":0},"ageing":{"color":0,"secondColor":0,"opacity":0,"style":0},"beard":{"color":0,"secondColor":0,"opacity":0,"style":0},"sunDamage":{"color":0,"secondColor":0,"opacity":0,"style":0},"complexion":{"color":0,"secondColor":0,"opacity":0,"style":0},"moleAndFreckles":{"color":0,"secondColor":0,"opacity":0,"style":0},"eyebrows":{"color":0,"secondColor":0,"opacity":0,"style":0},"lipstick":{"color":0,"secondColor":0,"opacity":0,"style":0},"bodyBlemishes":{"color":0,"secondColor":0,"opacity":0,"style":0},"chestHair":{"color":0,"secondColor":0,"opacity":0,"style":0},"blemishes":{"color":0,"secondColor":0,"opacity":0,"style":0}}}', 1),
	(272206, 'KRD98892', 'mp_m_freemode_01', '{"tattoos":[],"model":"mp_m_freemode_01","hair":{"style":3,"texture":0,"highlight":45,"color":45},"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"headBlend":{"shapeThird":0,"thirdMix":0,"shapeMix":0,"skinFirst":0,"shapeSecond":0,"shapeFirst":31,"skinMix":0,"skinThird":0,"skinSecond":0},"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"faceFeatures":{"cheeksBoneWidth":0,"noseBoneTwist":0,"jawBoneWidth":0,"neckThickness":0,"noseWidth":0,"chinHole":0,"jawBoneBackSize":0,"eyeBrownForward":0,"nosePeakLowering":0,"chinBoneSize":0,"noseBoneHigh":0,"nosePeakSize":0,"eyeBrownHigh":0,"chinBoneLenght":0,"nosePeakHigh":0,"lipsThickness":0,"cheeksWidth":0,"chinBoneLowering":0,"cheeksBoneHigh":0,"eyesOpening":0},"headOverlays":{"blemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"color":0,"style":0,"opacity":0},"chestHair":{"secondColor":0,"color":0,"style":0,"opacity":0},"complexion":{"secondColor":0,"color":0,"style":0,"opacity":0},"makeUp":{"secondColor":0,"color":0,"style":0,"opacity":0},"lipstick":{"secondColor":0,"color":0,"style":0,"opacity":0},"blush":{"secondColor":0,"color":0,"style":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"sunDamage":{"secondColor":0,"color":0,"style":0,"opacity":0},"beard":{"secondColor":0,"color":0,"style":0,"opacity":0},"eyebrows":{"secondColor":0,"color":45,"style":0,"opacity":0},"ageing":{"secondColor":0,"color":0,"style":0,"opacity":0}},"eyeColor":0}', 1),
	(272207, 'QAC48150', 'mp_f_freemode_01', '{"headBlend":{"skinMix":0.1,"skinFirst":20,"shapeThird":0,"shapeSecond":21,"shapeFirst":45,"skinThird":0,"skinSecond":15,"thirdMix":0,"shapeMix":0.3},"tattoos":[],"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"eyeColor":0,"headOverlays":{"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0},"beard":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0},"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0}},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"faceFeatures":{"cheeksBoneHigh":0,"eyeBrownForward":0,"chinHole":0,"nosePeakHigh":0,"chinBoneSize":0,"nosePeakLowering":0,"cheeksWidth":0,"chinBoneLenght":0,"nosePeakSize":0,"noseBoneHigh":0,"chinBoneLowering":0,"eyeBrownHigh":0,"noseBoneTwist":0,"cheeksBoneWidth":0,"jawBoneBackSize":0,"neckThickness":0,"jawBoneWidth":0,"eyesOpening":0,"lipsThickness":0,"noseWidth":0},"hair":{"highlight":0,"style":0,"color":0,"texture":0},"model":"mp_f_freemode_01"}', 1),
	(272208, 'ZDF30906', 'mp_m_freemode_01', '{"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"tattoos":[],"faceFeatures":{"chinHole":0,"neckThickness":0,"nosePeakHigh":0,"jawBoneWidth":0,"chinBoneLowering":0,"eyeBrownHigh":0,"nosePeakLowering":0,"noseBoneTwist":0,"chinBoneSize":0,"cheeksWidth":0,"eyeBrownForward":0,"jawBoneBackSize":0,"nosePeakSize":0,"noseBoneHigh":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"eyesOpening":0,"cheeksBoneHigh":0,"noseWidth":0,"lipsThickness":0},"hair":{"color":0,"style":0,"highlight":0,"texture":0},"headOverlays":{"ageing":{"color":0,"style":0,"opacity":0,"secondColor":0},"blush":{"color":0,"style":0,"opacity":0,"secondColor":0},"moleAndFreckles":{"color":0,"style":0,"opacity":0,"secondColor":0},"blemishes":{"color":0,"style":0,"opacity":0,"secondColor":0},"sunDamage":{"color":0,"style":0,"opacity":0,"secondColor":0},"lipstick":{"color":0,"style":0,"opacity":0,"secondColor":0},"bodyBlemishes":{"color":0,"style":0,"opacity":0,"secondColor":0},"chestHair":{"color":0,"style":0,"opacity":0,"secondColor":0},"complexion":{"color":0,"style":0,"opacity":0,"secondColor":0},"beard":{"color":0,"style":0,"opacity":0,"secondColor":0},"eyebrows":{"color":0,"style":0,"opacity":0,"secondColor":0},"makeUp":{"color":0,"style":0,"opacity":0,"secondColor":0}},"eyeColor":0,"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"headBlend":{"shapeSecond":0,"thirdMix":0,"skinSecond":0,"skinFirst":0,"skinThird":0,"shapeThird":0,"skinMix":0,"shapeMix":0,"shapeFirst":0},"model":"mp_m_freemode_01"}', 1),
	(272209, 'NEJ17289', 'mp_m_freemode_01', '{"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"tattoos":[],"hair":{"color":0,"style":0,"highlight":0,"texture":0},"faceFeatures":{"chinHole":0,"neckThickness":0,"nosePeakHigh":0,"jawBoneWidth":0,"chinBoneLowering":0,"eyeBrownHigh":0,"chinBoneLenght":0,"noseBoneTwist":0,"noseBoneHigh":0,"cheeksWidth":0,"eyeBrownForward":0,"jawBoneBackSize":0,"nosePeakSize":0,"chinBoneSize":0,"cheeksBoneWidth":0,"lipsThickness":0,"eyesOpening":0,"cheeksBoneHigh":0,"noseWidth":0,"nosePeakLowering":0},"headOverlays":{"ageing":{"color":0,"style":0,"secondColor":0,"opacity":0},"blush":{"color":0,"style":0,"secondColor":0,"opacity":0},"moleAndFreckles":{"color":0,"style":0,"secondColor":0,"opacity":0},"lipstick":{"color":0,"style":0,"secondColor":0,"opacity":0},"sunDamage":{"color":0,"style":0,"secondColor":0,"opacity":0},"complexion":{"color":0,"style":0,"secondColor":0,"opacity":0},"eyebrows":{"color":0,"style":0,"secondColor":0,"opacity":0},"blemishes":{"color":0,"style":0,"secondColor":0,"opacity":0},"bodyBlemishes":{"color":0,"style":0,"secondColor":0,"opacity":0},"beard":{"color":0,"style":0,"secondColor":0,"opacity":0},"chestHair":{"color":0,"style":0,"secondColor":0,"opacity":0},"makeUp":{"color":0,"style":0,"secondColor":0,"opacity":0}},"eyeColor":0,"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"headBlend":{"shapeSecond":0,"thirdMix":0,"skinSecond":0,"skinFirst":0,"skinThird":0,"shapeMix":0,"skinMix":0,"shapeThird":0,"shapeFirst":0},"model":"mp_m_freemode_01"}', 1),
	(272212, 'HEQ78385', 'mp_m_freemode_01', '{"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"headBlend":{"shapeMix":0,"thirdMix":0,"shapeThird":0,"shapeSecond":45,"skinMix":0,"shapeFirst":45,"skinSecond":0,"skinFirst":0,"skinThird":0},"headOverlays":{"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0},"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0},"beard":{"style":0,"secondColor":0,"color":0,"opacity":0}},"model":"mp_m_freemode_01","faceFeatures":{"jawBoneWidth":0,"chinBoneSize":0,"nosePeakHigh":0,"jawBoneBackSize":0,"eyeBrownHigh":0,"noseWidth":0,"lipsThickness":0,"nosePeakLowering":0,"eyeBrownForward":0,"chinHole":0,"cheeksBoneWidth":0,"chinBoneLowering":0,"chinBoneLenght":0,"eyesOpening":0,"neckThickness":0,"nosePeakSize":0,"cheeksBoneHigh":0,"cheeksWidth":0,"noseBoneHigh":0,"noseBoneTwist":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":12},{"component_id":7,"texture":0,"drawable":31},{"component_id":11,"texture":0,"drawable":31},{"component_id":8,"texture":0,"drawable":19},{"component_id":5,"texture":0,"drawable":31},{"component_id":9,"texture":0,"drawable":31},{"component_id":3,"texture":0,"drawable":31},{"component_id":4,"texture":0,"drawable":31},{"component_id":6,"texture":0,"drawable":32}],"hair":{"style":55,"color":8,"texture":0,"highlight":0},"tattoos":[],"eyeColor":0}', 1),
	(272213, 'APB01636', 'mp_m_freemode_01', '{"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"headBlend":{"shapeMix":0,"thirdMix":0,"shapeThird":0,"shapeSecond":0,"skinMix":0,"shapeFirst":0,"skinSecond":0,"skinFirst":0,"skinThird":0},"headOverlays":{"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0},"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"beard":{"style":0,"secondColor":0,"color":0,"opacity":0}},"faceFeatures":{"eyesOpening":0,"chinBoneSize":0,"nosePeakHigh":0,"noseBoneHigh":0,"neckThickness":0,"cheeksBoneHigh":0,"lipsThickness":0,"nosePeakLowering":0,"eyeBrownForward":0,"chinHole":0,"cheeksBoneWidth":0,"chinBoneLowering":0,"noseBoneTwist":0,"noseWidth":0,"eyeBrownHigh":0,"nosePeakSize":0,"cheeksWidth":0,"jawBoneBackSize":0,"chinBoneLenght":0,"jawBoneWidth":0},"model":"mp_m_freemode_01","tattoos":[],"hair":{"style":0,"color":0,"texture":0,"highlight":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"eyeColor":0}', 1),
	(272214, 'HPQ03117', 'mp_m_freemode_01', '{"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"headBlend":{"shapeMix":0,"thirdMix":0,"skinSecond":0,"shapeFirst":0,"skinMix":0,"shapeSecond":0,"shapeThird":0,"skinFirst":0,"skinThird":0},"headOverlays":{"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0},"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0},"beard":{"style":0,"secondColor":0,"color":0,"opacity":0}},"faceFeatures":{"jawBoneWidth":0,"chinBoneLenght":0,"nosePeakHigh":0,"noseBoneHigh":0,"cheeksWidth":0,"cheeksBoneHigh":0,"lipsThickness":0,"nosePeakLowering":0,"eyeBrownForward":0,"chinHole":0,"cheeksBoneWidth":0,"chinBoneLowering":0,"eyeBrownHigh":0,"noseBoneTwist":0,"jawBoneBackSize":0,"nosePeakSize":0,"neckThickness":0,"noseWidth":0,"chinBoneSize":0,"eyesOpening":0},"hair":{"style":0,"color":0,"texture":0,"highlight":0},"tattoos":[],"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"model":"mp_m_freemode_01","eyeColor":0}', 1),
	(272218, 'SXF16791', 'mp_m_freemode_01', '{"headOverlays":{"sunDamage":{"secondColor":0,"opacity":0,"color":0,"style":0},"beard":{"secondColor":0,"opacity":0,"color":0,"style":0},"chestHair":{"secondColor":0,"opacity":0,"color":0,"style":0},"blemishes":{"secondColor":0,"opacity":0,"color":0,"style":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"color":0,"style":0},"eyebrows":{"secondColor":0,"opacity":0,"color":0,"style":0},"ageing":{"secondColor":0,"opacity":0,"color":0,"style":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"color":0,"style":0},"blush":{"secondColor":0,"opacity":0,"color":0,"style":0},"lipstick":{"secondColor":0,"opacity":0,"color":0,"style":0},"makeUp":{"secondColor":0,"opacity":0,"color":0,"style":0},"complexion":{"secondColor":0,"opacity":0,"color":0,"style":0}},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"headBlend":{"shapeSecond":0,"thirdMix":0,"skinFirst":0,"skinThird":0,"shapeMix":0,"shapeFirst":0,"shapeThird":0,"skinSecond":0,"skinMix":0},"faceFeatures":{"jawBoneBackSize":0,"cheeksBoneHigh":0,"chinBoneSize":0,"nosePeakLowering":0,"nosePeakSize":0,"noseBoneHigh":0,"nosePeakHigh":0,"jawBoneWidth":0,"neckThickness":0,"cheeksBoneWidth":0,"eyesOpening":0,"lipsThickness":0,"noseBoneTwist":0,"chinBoneLowering":0,"chinHole":0,"eyeBrownForward":0,"chinBoneLenght":0,"eyeBrownHigh":0,"noseWidth":0,"cheeksWidth":0},"model":"mp_m_freemode_01","hair":{"color":0,"texture":0,"highlight":0,"style":0},"tattoos":[],"eyeColor":0}', 1),
	(272219, 'HFY79706', 'mp_m_freemode_01', '{"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}],"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"faceFeatures":{"cheeksBoneWidth":0,"noseBoneTwist":0,"nosePeakLowering":0,"cheeksBoneHigh":0,"chinBoneSize":0,"eyeBrownHigh":0,"neckThickness":0,"noseWidth":0,"chinBoneLenght":0,"eyesOpening":0,"jawBoneWidth":0,"noseBoneHigh":0,"jawBoneBackSize":0,"nosePeakHigh":0,"chinHole":0,"lipsThickness":0,"cheeksWidth":0,"nosePeakSize":0,"chinBoneLowering":0,"eyeBrownForward":0},"headBlend":{"skinThird":0,"shapeMix":0,"shapeSecond":0,"skinMix":0,"shapeFirst":0,"skinSecond":0,"skinFirst":0,"thirdMix":0,"shapeThird":0},"eyeColor":0,"headOverlays":{"lipstick":{"opacity":0,"color":0,"style":0,"secondColor":0},"beard":{"opacity":0,"color":0,"style":0,"secondColor":0},"bodyBlemishes":{"opacity":0,"color":0,"style":0,"secondColor":0},"complexion":{"opacity":0,"color":0,"style":0,"secondColor":0},"sunDamage":{"opacity":0,"color":0,"style":0,"secondColor":0},"blush":{"opacity":0,"color":0,"style":0,"secondColor":0},"makeUp":{"opacity":0,"color":0,"style":0,"secondColor":0},"ageing":{"opacity":0,"color":0,"style":0,"secondColor":0},"chestHair":{"opacity":0,"color":0,"style":0,"secondColor":0},"eyebrows":{"opacity":0,"color":0,"style":0,"secondColor":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0,"secondColor":0},"blemishes":{"opacity":0,"color":0,"style":0,"secondColor":0}},"hair":{"texture":0,"highlight":0,"style":81,"color":0},"model":"mp_m_freemode_01","tattoos":[]}', 1),
	(272220, 'MZH23055', 'mp_m_freemode_01', '{"headBlend":{"skinThird":0,"shapeMix":0,"shapeFirst":0,"skinFirst":0,"skinMix":0,"skinSecond":0,"shapeSecond":0,"shapeThird":0,"thirdMix":0},"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"headOverlays":{"beard":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0},"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0}},"tattoos":[],"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"eyeColor":0,"model":"mp_m_freemode_01","hair":{"texture":0,"style":0,"color":0,"highlight":0},"faceFeatures":{"chinBoneLowering":0,"chinHole":0,"cheeksWidth":0,"lipsThickness":0,"nosePeakSize":0,"neckThickness":0,"chinBoneLenght":0,"eyeBrownHigh":0,"jawBoneBackSize":0,"cheeksBoneWidth":0,"eyeBrownForward":0,"nosePeakHigh":0,"noseWidth":0,"eyesOpening":0,"nosePeakLowering":0,"noseBoneHigh":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"jawBoneWidth":0,"chinBoneSize":0}}', 1),
	(272222, 'WZV30598', 'mp_m_freemode_01', '{"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"hair":{"style":40,"highlight":5,"texture":0,"color":0},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":8},{"drawable":0,"component_id":6,"texture":11},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":6,"component_id":11,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":8,"texture":15}],"headOverlays":{"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":0,"secondColor":0,"style":0,"color":1},"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0}},"tattoos":[],"model":"mp_m_freemode_01","eyeColor":0,"headBlend":{"shapeMix":0,"skinFirst":0,"skinThird":0,"shapeThird":0,"thirdMix":0,"shapeSecond":0,"skinSecond":0,"skinMix":0,"shapeFirst":0},"faceFeatures":{"chinBoneLowering":0,"eyeBrownHigh":0,"nosePeakLowering":0,"noseBoneHigh":0,"lipsThickness":0,"nosePeakHigh":0,"jawBoneWidth":0,"eyesOpening":0,"jawBoneBackSize":0,"chinHole":0,"neckThickness":0,"nosePeakSize":0,"noseWidth":0,"chinBoneSize":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"cheeksWidth":0,"cheeksBoneWidth":0,"eyeBrownForward":0}}', 1),
	(272223, 'BRJ18661', 'mp_m_freemode_01', '{"props":[{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7},{"texture":1,"drawable":45,"prop_id":0}],"hair":{"style":37,"texture":0,"highlight":0,"color":0},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":8,"drawable":58},{"texture":0,"component_id":11,"drawable":50},{"texture":0,"component_id":4,"drawable":7},{"texture":0,"component_id":6,"drawable":7}],"headOverlays":{"complexion":{"secondColor":0,"style":0,"opacity":0,"color":0},"ageing":{"secondColor":0,"style":0,"opacity":0,"color":0},"chestHair":{"secondColor":0,"style":0,"opacity":0,"color":0},"makeUp":{"secondColor":56,"style":57,"opacity":1,"color":56},"blemishes":{"secondColor":0,"style":0,"opacity":0,"color":0},"blush":{"secondColor":0,"style":0,"opacity":0,"color":0},"lipstick":{"secondColor":0,"style":0,"opacity":0,"color":0},"eyebrows":{"secondColor":0,"style":0,"opacity":0,"color":0},"moleAndFreckles":{"secondColor":0,"style":0,"opacity":0,"color":0},"bodyBlemishes":{"secondColor":0,"style":0,"opacity":0,"color":0},"beard":{"secondColor":0,"style":0,"opacity":0,"color":0},"sunDamage":{"secondColor":0,"style":0,"opacity":0,"color":0}},"tattoos":[],"model":"mp_m_freemode_01","eyeColor":0,"headBlend":{"shapeMix":0,"skinFirst":0,"skinThird":3,"shapeThird":0,"thirdMix":1,"shapeSecond":0,"skinSecond":0,"skinMix":0,"shapeFirst":0},"faceFeatures":{"chinBoneLowering":0,"eyeBrownHigh":0,"nosePeakLowering":0,"noseBoneHigh":0,"lipsThickness":0,"nosePeakHigh":0,"jawBoneWidth":0,"chinBoneLenght":0,"jawBoneBackSize":0,"chinHole":0,"neckThickness":0,"nosePeakSize":0,"cheeksBoneWidth":0,"chinBoneSize":0,"noseWidth":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"cheeksWidth":0,"eyesOpening":0,"eyeBrownForward":0}}', 1),
	(272224, 'UEG71426', 'mp_m_freemode_01', '{"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"hair":{"highlight":0,"texture":0,"style":0,"color":0},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"headOverlays":{"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0},"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"beard":{"style":0,"secondColor":0,"color":0,"opacity":0},"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0}},"tattoos":[],"model":"mp_m_freemode_01","eyeColor":0,"headBlend":{"shapeMix":0,"skinSecond":0,"skinThird":0,"shapeThird":0,"thirdMix":0,"shapeSecond":0,"skinFirst":0,"skinMix":0,"shapeFirst":0},"faceFeatures":{"chinBoneLowering":0,"eyeBrownHigh":0,"nosePeakLowering":0,"noseBoneHigh":0,"lipsThickness":0,"nosePeakHigh":0,"jawBoneWidth":0,"chinBoneLenght":0,"jawBoneBackSize":0,"chinHole":0,"neckThickness":0,"nosePeakSize":0,"cheeksBoneWidth":0,"chinBoneSize":0,"eyesOpening":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"cheeksWidth":0,"noseWidth":0,"eyeBrownForward":0}}', 1),
	(272225, 'CCR30530', 'mp_m_freemode_01', '{"hair":{"highlight":0,"color":0,"texture":0,"style":0},"model":"mp_m_freemode_01","tattoos":[],"headBlend":{"shapeFirst":0,"thirdMix":0,"shapeThird":0,"skinThird":0,"shapeMix":0,"skinFirst":0,"skinMix":0,"shapeSecond":0,"skinSecond":0},"headOverlays":{"makeUp":{"style":0,"color":0,"secondColor":0,"opacity":0},"complexion":{"style":0,"color":0,"secondColor":0,"opacity":0},"blush":{"style":0,"color":0,"secondColor":0,"opacity":0},"lipstick":{"style":0,"color":0,"secondColor":0,"opacity":0},"beard":{"style":0,"color":0,"secondColor":0,"opacity":0},"blemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"ageing":{"style":0,"color":0,"secondColor":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"secondColor":0,"opacity":0},"eyebrows":{"style":0,"color":0,"secondColor":0,"opacity":0},"sunDamage":{"style":0,"color":0,"secondColor":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"chestHair":{"style":0,"color":0,"secondColor":0,"opacity":0}},"eyeColor":0,"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"faceFeatures":{"eyesOpening":0,"jawBoneBackSize":0,"jawBoneWidth":0,"eyeBrownForward":0,"cheeksBoneHigh":0,"chinBoneLenght":0,"chinHole":0,"nosePeakLowering":0,"chinBoneSize":0,"nosePeakHigh":0,"cheeksWidth":0,"chinBoneLowering":0,"neckThickness":0,"cheeksBoneWidth":0,"lipsThickness":0,"nosePeakSize":0,"noseBoneHigh":0,"noseWidth":0,"noseBoneTwist":0,"eyeBrownHigh":0},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}]}', 1),
	(272226, 'RIM03351', 'mp_m_freemode_01', '{"hair":{"highlight":0,"color":0,"style":0,"texture":0},"model":"mp_m_freemode_01","tattoos":[],"headBlend":{"skinSecond":0,"thirdMix":0,"shapeThird":0,"shapeMix":0,"shapeFirst":0,"skinFirst":0,"skinMix":0,"shapeSecond":0,"skinThird":0},"headOverlays":{"makeUp":{"opacity":0,"color":0,"secondColor":0,"style":0},"complexion":{"opacity":0,"color":0,"secondColor":0,"style":0},"blush":{"opacity":0,"color":0,"secondColor":0,"style":0},"lipstick":{"opacity":0,"color":0,"secondColor":0,"style":0},"beard":{"opacity":0,"color":0,"secondColor":0,"style":0},"blemishes":{"opacity":0,"color":0,"secondColor":0,"style":0},"moleAndFreckles":{"opacity":0,"color":0,"secondColor":0,"style":0},"bodyBlemishes":{"opacity":0,"color":0,"secondColor":0,"style":0},"eyebrows":{"opacity":0,"color":0,"secondColor":0,"style":0},"sunDamage":{"opacity":0,"color":0,"secondColor":0,"style":0},"ageing":{"opacity":0,"color":0,"secondColor":0,"style":0},"chestHair":{"opacity":0,"color":0,"secondColor":0,"style":0}},"eyeColor":0,"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"faceFeatures":{"eyesOpening":0,"jawBoneBackSize":0,"jawBoneWidth":0,"eyeBrownForward":0,"cheeksBoneHigh":0,"chinBoneLenght":0,"chinHole":0,"nosePeakLowering":0,"chinBoneSize":0,"cheeksWidth":0,"lipsThickness":0,"chinBoneLowering":0,"nosePeakHigh":0,"noseBoneHigh":0,"neckThickness":0,"nosePeakSize":0,"cheeksBoneWidth":0,"noseWidth":0,"noseBoneTwist":0,"eyeBrownHigh":0},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}]}', 1),
	(272227, 'LZW30510', 'mp_m_freemode_01', '{"model":"mp_m_freemode_01","faceFeatures":{"eyeBrownHigh":0,"lipsThickness":0,"noseWidth":0,"neckThickness":0,"cheeksWidth":0,"chinHole":0,"eyeBrownForward":0,"jawBoneBackSize":0,"nosePeakLowering":0,"cheeksBoneHigh":0,"chinBoneLenght":0,"noseBoneHigh":0,"chinBoneLowering":0,"eyesOpening":0,"cheeksBoneWidth":0,"nosePeakSize":0,"noseBoneTwist":0,"jawBoneWidth":0,"chinBoneSize":0,"nosePeakHigh":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":77},{"component_id":8,"texture":0,"drawable":13},{"component_id":4,"texture":0,"drawable":5},{"component_id":6,"texture":0,"drawable":10}],"headBlend":{"skinSecond":0,"thirdMix":0,"shapeThird":0,"shapeSecond":0,"shapeFirst":0,"skinFirst":0,"skinThird":0,"skinMix":0,"shapeMix":0},"eyeColor":0,"headOverlays":{"chestHair":{"style":0,"color":0,"opacity":0,"secondColor":0},"sunDamage":{"style":0,"color":0,"opacity":0,"secondColor":0},"makeUp":{"style":0,"color":0,"opacity":0,"secondColor":0},"blush":{"style":0,"color":0,"opacity":0,"secondColor":0},"eyebrows":{"style":4,"color":0,"opacity":1,"secondColor":0},"ageing":{"style":0,"color":0,"opacity":0,"secondColor":0},"beard":{"style":0,"color":0,"opacity":0,"secondColor":0},"complexion":{"style":0,"color":0,"opacity":0,"secondColor":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0,"secondColor":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0,"secondColor":0},"blemishes":{"style":0,"color":0,"opacity":0,"secondColor":0},"lipstick":{"style":0,"color":0,"opacity":0,"secondColor":0}},"hair":{"texture":0,"highlight":0,"style":11,"color":0},"tattoos":[],"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7},{"texture":0,"drawable":15,"prop_id":1}]}', 1),
	(272228, 'HXJ50396', 'mp_m_freemode_01', '{"model":"mp_m_freemode_01","faceFeatures":{"eyeBrownHigh":0,"lipsThickness":0,"noseWidth":0,"neckThickness":0,"chinBoneSize":0,"noseBoneHigh":0,"cheeksBoneWidth":0,"jawBoneBackSize":0,"nosePeakLowering":0,"noseBoneTwist":0,"eyesOpening":0,"nosePeakSize":0,"chinBoneLenght":0,"chinBoneLowering":0,"cheeksBoneHigh":0,"chinHole":0,"cheeksWidth":0,"jawBoneWidth":0,"eyeBrownForward":0,"nosePeakHigh":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"headBlend":{"skinSecond":0,"shapeMix":0,"skinThird":0,"shapeSecond":0,"shapeFirst":0,"skinFirst":0,"thirdMix":0,"skinMix":0,"shapeThird":0},"hair":{"texture":0,"style":0,"highlight":0,"color":0},"headOverlays":{"chestHair":{"style":0,"secondColor":0,"opacity":0,"color":0},"sunDamage":{"style":0,"secondColor":0,"opacity":0,"color":0},"makeUp":{"style":0,"secondColor":0,"opacity":0,"color":0},"blush":{"style":0,"secondColor":0,"opacity":0,"color":0},"eyebrows":{"style":0,"secondColor":0,"opacity":0,"color":0},"ageing":{"style":0,"secondColor":0,"opacity":0,"color":0},"beard":{"style":0,"secondColor":0,"opacity":0,"color":0},"complexion":{"style":0,"secondColor":0,"opacity":0,"color":0},"lipstick":{"style":0,"secondColor":0,"opacity":0,"color":0},"moleAndFreckles":{"style":0,"secondColor":0,"opacity":0,"color":0},"blemishes":{"style":0,"secondColor":0,"opacity":0,"color":0},"bodyBlemishes":{"style":0,"secondColor":0,"opacity":0,"color":0}},"tattoos":[],"eyeColor":0,"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}]}', 1),
	(272229, 'NSV21630', 'mp_m_freemode_01', '{"model":"mp_m_freemode_01","faceFeatures":{"eyeBrownHigh":0,"lipsThickness":0,"noseWidth":0,"neckThickness":0,"cheeksWidth":0,"chinHole":0,"nosePeakSize":0,"jawBoneBackSize":0,"nosePeakLowering":0,"chinBoneLowering":0,"eyesOpening":0,"chinBoneLenght":0,"chinBoneSize":0,"cheeksBoneWidth":0,"noseBoneTwist":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"jawBoneWidth":0,"eyeBrownForward":0,"nosePeakHigh":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"headBlend":{"skinSecond":0,"thirdMix":0,"shapeThird":0,"shapeSecond":0,"shapeFirst":0,"skinFirst":0,"skinThird":0,"skinMix":0,"shapeMix":0},"eyeColor":0,"headOverlays":{"chestHair":{"style":0,"color":0,"opacity":0,"secondColor":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0,"secondColor":0},"makeUp":{"style":0,"color":0,"opacity":0,"secondColor":0},"lipstick":{"style":0,"color":0,"opacity":0,"secondColor":0},"eyebrows":{"style":0,"color":0,"opacity":0,"secondColor":0},"ageing":{"style":0,"color":0,"opacity":0,"secondColor":0},"beard":{"style":0,"color":0,"opacity":0,"secondColor":0},"complexion":{"style":0,"color":0,"opacity":0,"secondColor":0},"blush":{"style":0,"color":0,"opacity":0,"secondColor":0},"sunDamage":{"style":0,"color":0,"opacity":0,"secondColor":0},"blemishes":{"style":0,"color":0,"opacity":0,"secondColor":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0,"secondColor":0}},"hair":{"style":0,"texture":0,"highlight":0,"color":0},"tattoos":[],"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}]}', 1),
	(272230, 'GEE26175', 'mp_m_freemode_01', '{"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"headOverlays":{"blemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"ageing":{"color":0,"secondColor":0,"style":0,"opacity":0},"beard":{"color":0,"secondColor":0,"style":0,"opacity":0},"makeUp":{"color":0,"secondColor":0,"style":0,"opacity":0},"eyebrows":{"color":0,"secondColor":0,"style":0,"opacity":0},"chestHair":{"color":0,"secondColor":0,"style":0,"opacity":0},"moleAndFreckles":{"color":0,"secondColor":0,"style":0,"opacity":0},"bodyBlemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"sunDamage":{"color":0,"secondColor":0,"style":0,"opacity":0},"lipstick":{"color":0,"secondColor":0,"style":0,"opacity":0},"blush":{"color":0,"secondColor":0,"style":0,"opacity":0},"complexion":{"color":0,"secondColor":0,"style":0,"opacity":0}},"headBlend":{"skinFirst":0,"shapeThird":0,"skinMix":0,"skinSecond":0,"shapeMix":0,"shapeSecond":0,"shapeFirst":0,"skinThird":0,"thirdMix":0},"model":"mp_m_freemode_01","hair":{"color":0,"highlight":0,"style":0,"texture":0},"eyeColor":0,"tattoos":{"ZONE_HEAD":[{"hashMale":"FM_Tat_Award_M_000","name":"TAT_FM_008","label":"Skull","hashFemale":"FM_Tat_Award_F_000","opacity":1,"collection":"multiplayer_overlays","zone":"ZONE_HEAD"}]},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":15,"texture":0,"component_id":8},{"drawable":111,"texture":3,"component_id":11},{"drawable":17,"texture":0,"component_id":3},{"drawable":23,"texture":12,"component_id":4},{"drawable":21,"texture":0,"component_id":6},{"drawable":95,"texture":7,"component_id":1},{"drawable":34,"texture":0,"component_id":5}],"faceFeatures":{"chinBoneLowering":0,"chinHole":0,"cheeksBoneHigh":0,"chinBoneLenght":0,"cheeksWidth":0,"jawBoneBackSize":0,"nosePeakLowering":0,"neckThickness":0,"eyeBrownHigh":0,"nosePeakSize":0,"chinBoneSize":0,"nosePeakHigh":0,"jawBoneWidth":0,"noseWidth":0,"lipsThickness":0,"cheeksBoneWidth":0,"noseBoneHigh":0,"eyesOpening":0,"noseBoneTwist":0,"eyeBrownForward":0}}', 1),
	(272231, 'RVW04033', 'mp_m_freemode_01', '{"headOverlays":{"chestHair":{"color":0,"opacity":0,"secondColor":0,"style":0},"beard":{"color":0,"opacity":0,"secondColor":0,"style":0},"eyebrows":{"color":0,"opacity":0,"secondColor":0,"style":0},"complexion":{"color":0,"opacity":0,"secondColor":0,"style":0},"blush":{"color":0,"opacity":0,"secondColor":0,"style":0},"moleAndFreckles":{"color":0,"opacity":0,"secondColor":0,"style":0},"lipstick":{"color":0,"opacity":0,"secondColor":0,"style":0},"ageing":{"color":0,"opacity":0,"secondColor":0,"style":0},"makeUp":{"color":0,"opacity":0,"secondColor":0,"style":0},"sunDamage":{"color":0,"opacity":0,"secondColor":0,"style":0},"bodyBlemishes":{"color":0,"opacity":0,"secondColor":0,"style":0},"blemishes":{"color":0,"opacity":0,"secondColor":0,"style":0}},"eyeColor":0,"hair":{"highlight":0,"color":0,"style":0,"texture":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"tattoos":[],"model":"mp_m_freemode_01","headBlend":{"skinFirst":0,"thirdMix":0,"skinMix":0,"shapeFirst":0,"shapeThird":0,"shapeSecond":0,"skinSecond":0,"shapeMix":0,"skinThird":0},"faceFeatures":{"eyeBrownHigh":0,"jawBoneWidth":0,"eyeBrownForward":0,"nosePeakLowering":0,"neckThickness":0,"cheeksWidth":0,"jawBoneBackSize":0,"eyesOpening":0,"chinBoneSize":0,"nosePeakSize":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"lipsThickness":0,"cheeksBoneHigh":0,"noseWidth":0,"chinHole":0,"chinBoneLenght":0,"noseBoneTwist":0,"chinBoneLowering":0,"noseBoneHigh":0},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}]}', 1),
	(272232, 'VBP74885', 'mp_m_freemode_01', '{"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"tattoos":[],"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":5},{"drawable":2,"texture":0,"component_id":3},{"drawable":13,"texture":1,"component_id":4},{"drawable":22,"texture":0,"component_id":8}],"headOverlays":{"sunDamage":{"opacity":0,"secondColor":0,"color":0,"style":0},"chestHair":{"opacity":0,"secondColor":0,"color":0,"style":0},"makeUp":{"opacity":0,"secondColor":0,"color":0,"style":0},"blush":{"opacity":0,"secondColor":0,"color":0,"style":0},"blemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"ageing":{"opacity":0,"secondColor":0,"color":0,"style":0},"lipstick":{"opacity":0,"secondColor":0,"color":0,"style":0},"eyebrows":{"opacity":0,"secondColor":0,"color":0,"style":0},"beard":{"opacity":0,"secondColor":0,"color":0,"style":0},"complexion":{"opacity":0,"secondColor":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"color":0,"style":0}},"model":"mp_m_freemode_01","faceFeatures":{"chinHole":0,"neckThickness":0,"nosePeakSize":0,"jawBoneWidth":0,"eyesOpening":0,"lipsThickness":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"noseWidth":0,"nosePeakLowering":0,"jawBoneBackSize":0,"eyeBrownHigh":0,"cheeksWidth":0,"eyeBrownForward":0,"noseBoneHigh":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"chinBoneSize":0,"nosePeakHigh":0,"chinBoneLenght":0},"headBlend":{"skinFirst":0,"shapeFirst":0,"skinMix":0,"skinThird":0,"shapeSecond":0,"thirdMix":0,"shapeMix":0,"shapeThird":0,"skinSecond":0},"hair":{"style":0,"highlight":0,"color":0,"texture":0},"eyeColor":0}', 1),
	(272233, 'BIT19030', 'mp_m_freemode_01', '{"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"tattoos":[],"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"hair":{"style":0,"texture":0,"color":0,"highlight":0},"model":"mp_m_freemode_01","eyeColor":0,"headBlend":{"skinFirst":0,"shapeFirst":0,"skinMix":0,"skinThird":0,"shapeSecond":0,"thirdMix":0,"shapeMix":0,"shapeThird":0,"skinSecond":0},"headOverlays":{"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0},"beard":{"style":0,"secondColor":0,"color":0,"opacity":0},"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0}},"faceFeatures":{"chinHole":0,"neckThickness":0,"nosePeakSize":0,"eyeBrownForward":0,"eyesOpening":0,"lipsThickness":0,"chinBoneLowering":0,"jawBoneBackSize":0,"noseWidth":0,"cheeksWidth":0,"chinBoneLenght":0,"eyeBrownHigh":0,"nosePeakLowering":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"jawBoneWidth":0,"noseBoneTwist":0,"chinBoneSize":0,"nosePeakHigh":0,"cheeksBoneWidth":0}}', 1),
	(272234, 'IVE21097', 'mp_m_freemode_01', '{"headOverlays":{"blush":{"secondColor":0,"color":0,"style":0,"opacity":0},"makeUp":{"secondColor":0,"color":0,"style":0,"opacity":0},"beard":{"secondColor":0,"color":0,"style":0,"opacity":0},"chestHair":{"secondColor":0,"color":0,"style":0,"opacity":0},"ageing":{"secondColor":0,"color":0,"style":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"color":0,"style":0,"opacity":0},"blemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"eyebrows":{"secondColor":0,"color":0,"style":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"sunDamage":{"secondColor":0,"color":0,"style":0,"opacity":0},"lipstick":{"secondColor":0,"color":0,"style":0,"opacity":0},"complexion":{"secondColor":0,"color":0,"style":0,"opacity":0}},"headBlend":{"skinSecond":0,"shapeMix":0,"shapeSecond":0,"skinFirst":0,"thirdMix":0,"skinMix":0,"shapeFirst":0,"skinThird":0,"shapeThird":0},"faceFeatures":{"noseWidth":0,"nosePeakSize":0,"nosePeakHigh":0,"neckThickness":0,"eyeBrownForward":0,"cheeksWidth":0,"chinBoneLowering":0,"jawBoneWidth":0,"noseBoneTwist":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"lipsThickness":0,"noseBoneHigh":0,"chinHole":0,"chinBoneLenght":0,"nosePeakLowering":0,"eyeBrownHigh":0,"chinBoneSize":0,"cheeksBoneWidth":0,"eyesOpening":0},"eyeColor":0,"model":"mp_m_freemode_01","props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"hair":{"color":0,"style":0,"texture":0,"highlight":0},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"tattoos":[]}', 1),
	(272235, 'KEE73782', 'mp_m_freemode_01', '{"headOverlays":{"blush":{"secondColor":0,"color":0,"style":0,"opacity":0},"makeUp":{"secondColor":0,"color":0,"style":0,"opacity":0},"beard":{"secondColor":0,"color":0,"style":0,"opacity":0},"chestHair":{"secondColor":0,"color":0,"style":0,"opacity":0},"ageing":{"secondColor":0,"color":0,"style":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"color":0,"style":0,"opacity":0},"blemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"eyebrows":{"secondColor":0,"color":0,"style":0,"opacity":0},"lipstick":{"secondColor":0,"color":0,"style":0,"opacity":0},"sunDamage":{"secondColor":0,"color":0,"style":0,"opacity":0},"complexion":{"secondColor":0,"color":0,"style":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"color":0,"style":0,"opacity":0}},"headBlend":{"skinSecond":0,"shapeMix":0,"shapeSecond":0,"skinFirst":0,"thirdMix":0,"skinMix":0,"shapeFirst":0,"shapeThird":0,"skinThird":0},"faceFeatures":{"noseWidth":0,"nosePeakSize":0,"nosePeakHigh":0,"neckThickness":0,"eyeBrownForward":0,"cheeksWidth":0,"chinBoneLowering":0,"chinBoneSize":0,"noseBoneTwist":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"eyesOpening":0,"noseBoneHigh":0,"eyeBrownHigh":0,"chinBoneLenght":0,"nosePeakLowering":0,"lipsThickness":0,"jawBoneWidth":0,"chinHole":0,"cheeksBoneWidth":0},"model":"mp_m_freemode_01","tattoos":[],"hair":{"color":0,"texture":0,"highlight":0,"style":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"eyeColor":0}', 1),
	(272236, 'NQZ34705', 'mp_m_freemode_01', '{"headOverlays":{"complexion":{"color":0,"secondColor":0,"style":0,"opacity":0},"makeUp":{"color":0,"secondColor":0,"style":0,"opacity":0},"lipstick":{"color":0,"secondColor":0,"style":0,"opacity":0},"chestHair":{"color":0,"secondColor":0,"style":0,"opacity":0},"ageing":{"color":0,"secondColor":0,"style":0,"opacity":0},"moleAndFreckles":{"color":0,"secondColor":0,"style":0,"opacity":0},"bodyBlemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"eyebrows":{"color":0,"secondColor":0,"style":0,"opacity":0},"blemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"sunDamage":{"color":0,"secondColor":0,"style":0,"opacity":0},"beard":{"color":0,"secondColor":0,"style":0,"opacity":0},"blush":{"color":0,"secondColor":0,"style":0,"opacity":0}},"headBlend":{"skinSecond":0,"shapeMix":0,"shapeSecond":0,"skinFirst":0,"thirdMix":0,"skinMix":0,"shapeFirst":0,"shapeThird":0,"skinThird":0},"faceFeatures":{"noseWidth":0,"nosePeakSize":0,"nosePeakHigh":0,"neckThickness":0,"chinHole":0,"cheeksWidth":0,"chinBoneLowering":0,"chinBoneSize":0,"noseBoneTwist":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"eyeBrownHigh":0,"noseBoneHigh":0,"jawBoneWidth":0,"chinBoneLenght":0,"nosePeakLowering":0,"lipsThickness":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"eyesOpening":0},"eyeColor":0,"model":"mp_m_freemode_01","hair":{"color":0,"style":0,"texture":0,"highlight":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"tattoos":[]}', 1),
	(272237, 'AVJ04523', 'mp_m_freemode_01', '{"tattoos":[],"model":"mp_m_freemode_01","eyeColor":0,"faceFeatures":{"nosePeakLowering":0,"chinBoneSize":0,"nosePeakSize":0,"noseWidth":0,"eyeBrownForward":0,"eyeBrownHigh":0,"chinBoneLowering":0,"nosePeakHigh":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"neckThickness":0,"noseBoneHigh":0,"chinHole":0,"jawBoneWidth":0,"chinBoneLenght":0,"noseBoneTwist":0,"eyesOpening":0,"cheeksBoneWidth":0,"cheeksWidth":0,"lipsThickness":0},"headOverlays":{"blush":{"opacity":0,"style":0,"secondColor":0,"color":0},"eyebrows":{"opacity":0,"style":0,"secondColor":0,"color":0},"sunDamage":{"opacity":0,"style":0,"secondColor":0,"color":0},"complexion":{"opacity":0,"style":0,"secondColor":0,"color":0},"bodyBlemishes":{"opacity":0,"style":0,"secondColor":0,"color":0},"lipstick":{"opacity":0,"style":0,"secondColor":0,"color":0},"moleAndFreckles":{"opacity":0,"style":0,"secondColor":0,"color":0},"ageing":{"opacity":0,"style":0,"secondColor":0,"color":0},"blemishes":{"opacity":0,"style":0,"secondColor":0,"color":0},"chestHair":{"opacity":0,"style":0,"secondColor":0,"color":0},"beard":{"opacity":0,"style":0,"secondColor":0,"color":0},"makeUp":{"opacity":0,"style":0,"secondColor":0,"color":0}},"hair":{"highlight":0,"texture":0,"style":13,"color":23},"headBlend":{"shapeThird":0,"thirdMix":0,"skinSecond":0,"skinFirst":0,"shapeSecond":0,"shapeMix":0,"skinThird":0,"shapeFirst":0,"skinMix":0},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":7,"drawable":177,"texture":0},{"component_id":11,"drawable":7,"texture":2},{"component_id":8,"drawable":16,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":6,"drawable":4,"texture":0},{"component_id":4,"drawable":3,"texture":0}]}', 1),
	(272238, 'IPV68228', 'mp_m_freemode_01', '{"tattoos":[],"model":"mp_m_freemode_01","eyeColor":0,"faceFeatures":{"nosePeakLowering":0,"chinBoneSize":0,"nosePeakSize":0,"noseWidth":0,"lipsThickness":0,"eyeBrownHigh":0,"chinBoneLowering":0,"nosePeakHigh":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"neckThickness":0,"noseBoneHigh":0,"chinHole":0,"jawBoneWidth":0,"chinBoneLenght":0,"noseBoneTwist":0,"eyeBrownForward":0,"eyesOpening":0,"cheeksWidth":0,"cheeksBoneWidth":0},"hair":{"highlight":0,"texture":0,"style":10,"color":0},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"headBlend":{"shapeThird":0,"thirdMix":0,"skinSecond":0,"skinFirst":0,"shapeSecond":0,"shapeMix":0,"skinMix":0,"shapeFirst":0,"skinThird":0},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0}],"headOverlays":{"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":0,"secondColor":0,"style":0,"color":0},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0}}}', 1),
	(272239, 'VNU89082', 'mp_m_freemode_01', '{"tattoos":[],"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"eyeColor":0,"faceFeatures":{"nosePeakLowering":0,"chinBoneSize":0,"nosePeakSize":0,"noseWidth":0,"eyeBrownForward":0,"eyeBrownHigh":0,"chinBoneLowering":0,"nosePeakHigh":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"neckThickness":0,"noseBoneHigh":0,"chinHole":0,"jawBoneWidth":0,"chinBoneLenght":0,"noseBoneTwist":0,"lipsThickness":0,"cheeksBoneWidth":0,"cheeksWidth":0,"eyesOpening":0},"headOverlays":{"blush":{"opacity":0,"style":0,"secondColor":0,"color":0},"eyebrows":{"opacity":0,"style":0,"secondColor":0,"color":0},"sunDamage":{"opacity":0,"style":0,"secondColor":0,"color":0},"ageing":{"opacity":0,"style":0,"secondColor":0,"color":0},"chestHair":{"opacity":0,"style":0,"secondColor":0,"color":0},"lipstick":{"opacity":0,"style":0,"secondColor":0,"color":0},"moleAndFreckles":{"opacity":0,"style":0,"secondColor":0,"color":0},"complexion":{"opacity":0,"style":0,"secondColor":0,"color":0},"blemishes":{"opacity":0,"style":0,"secondColor":0,"color":0},"makeUp":{"opacity":0,"style":0,"secondColor":0,"color":0},"bodyBlemishes":{"opacity":0,"style":0,"secondColor":0,"color":0},"beard":{"opacity":0,"style":0,"secondColor":0,"color":0}},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"headBlend":{"shapeThird":0,"thirdMix":0,"skinSecond":0,"skinFirst":0,"shapeSecond":0,"shapeMix":0,"skinThird":0,"shapeFirst":0,"skinMix":0},"hair":{"highlight":0,"color":0,"style":0,"texture":0},"model":"mp_m_freemode_01"}', 1),
	(272240, 'UPJ00165', 'mp_m_freemode_01', '{"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"tattoos":[],"hair":{"style":0,"texture":0,"color":0,"highlight":0},"eyeColor":0,"model":"mp_m_freemode_01","faceFeatures":{"nosePeakLowering":0,"cheeksBoneWidth":0,"chinBoneSize":0,"jawBoneWidth":0,"chinHole":0,"eyeBrownHigh":0,"noseWidth":0,"cheeksBoneHigh":0,"eyeBrownForward":0,"chinBoneLowering":0,"neckThickness":0,"noseBoneHigh":0,"nosePeakSize":0,"eyesOpening":0,"jawBoneBackSize":0,"nosePeakHigh":0,"cheeksWidth":0,"noseBoneTwist":0,"lipsThickness":0,"chinBoneLenght":0},"headOverlays":{"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0},"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"beard":{"style":0,"secondColor":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0}},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"headBlend":{"skinThird":0,"thirdMix":0,"shapeThird":0,"shapeFirst":0,"shapeSecond":0,"skinFirst":0,"shapeMix":0,"skinSecond":0,"skinMix":0}}', 1),
	(272241, 'KSP57436', 'mp_m_freemode_01', '{"faceFeatures":{"chinBoneSize":0,"nosePeakHigh":-1,"jawBoneWidth":0,"eyeBrownHigh":0,"noseBoneHigh":0.4,"chinBoneLenght":0,"noseBoneTwist":0,"lipsThickness":0.4,"noseWidth":-1,"cheeksWidth":0,"eyesOpening":1,"nosePeakSize":1,"nosePeakLowering":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"neckThickness":0,"chinBoneLowering":0,"chinHole":0,"cheeksBoneWidth":0,"eyeBrownForward":0},"headOverlays":{"blush":{"color":0,"opacity":0,"style":0,"secondColor":0},"lipstick":{"color":0,"opacity":0,"style":0,"secondColor":0},"eyebrows":{"color":0,"opacity":0,"style":0,"secondColor":0},"chestHair":{"color":0,"opacity":0,"style":0,"secondColor":0},"ageing":{"color":0,"opacity":0,"style":0,"secondColor":0},"blemishes":{"color":0,"opacity":0,"style":0,"secondColor":0},"sunDamage":{"color":0,"opacity":0,"style":0,"secondColor":0},"makeUp":{"color":56,"opacity":1,"style":94,"secondColor":56},"beard":{"color":0,"opacity":0,"style":0,"secondColor":0},"moleAndFreckles":{"color":0,"opacity":0,"style":0,"secondColor":0},"complexion":{"color":0,"opacity":0,"style":0,"secondColor":0},"bodyBlemishes":{"color":0,"opacity":0,"style":0,"secondColor":0}},"headBlend":{"skinSecond":0,"shapeFirst":45,"skinThird":0,"skinMix":0,"thirdMix":0,"shapeThird":0,"skinFirst":0,"shapeSecond":45,"shapeMix":0},"eyeColor":2,"hair":{"color":29,"style":79,"highlight":29,"texture":0},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":8,"drawable":15,"texture":0},{"component_id":11,"drawable":385,"texture":0},{"component_id":4,"drawable":187,"texture":0},{"component_id":3,"drawable":20,"texture":0},{"component_id":6,"drawable":114,"texture":0}],"tattoos":[],"model":"mp_m_freemode_01","props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}]}', 1),
	(272242, 'FWI31344', 'mp_f_freemode_01', '{"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":48,"component_id":2,"texture":0},{"drawable":16,"component_id":3,"texture":1},{"drawable":112,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":107,"component_id":6,"texture":0},{"drawable":2,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":247,"component_id":11,"texture":4}],"headBlend":{"shapeSecond":21,"shapeFirst":45,"skinSecond":15,"shapeThird":0,"thirdMix":0,"skinMix":0,"skinFirst":21,"shapeMix":0.3,"skinThird":0},"eyeColor":0,"model":"mp_f_freemode_01","headOverlays":{"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":1,"secondColor":0,"style":2,"color":61},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":1,"secondColor":0,"style":3,"color":56},"makeUp":{"opacity":1,"secondColor":56,"style":7,"color":56},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0}},"tattoos":[],"faceFeatures":{"neckThickness":0,"eyeBrownHigh":-0.3,"eyeBrownForward":0,"lipsThickness":-1,"nosePeakLowering":-0.1,"noseWidth":-0.5,"cheeksWidth":-1,"noseBoneHigh":1,"nosePeakSize":0.9,"jawBoneBackSize":-0.6,"noseBoneTwist":0,"cheeksBoneHigh":-1,"chinBoneLenght":0.2,"chinBoneSize":-0.4,"chinHole":0,"cheeksBoneWidth":0.3,"jawBoneWidth":-0.7,"chinBoneLowering":-0.3,"eyesOpening":1,"nosePeakHigh":0},"hair":{"color":61,"highlight":61,"style":48,"texture":0},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}]}', 1),
	(272244, 'SSQ54649', 'mp_m_freemode_01', '{"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"eyeColor":0,"headBlend":{"shapeFirst":0,"shapeThird":0,"skinFirst":0,"shapeSecond":0,"skinMix":0,"skinSecond":0,"shapeMix":0,"thirdMix":0,"skinThird":0},"tattoos":[],"model":"mp_m_freemode_01","faceFeatures":{"cheeksBoneWidth":0,"chinBoneLenght":0,"noseBoneTwist":0,"cheeksWidth":0,"nosePeakSize":0,"eyeBrownHigh":0,"nosePeakHigh":0,"jawBoneBackSize":0,"chinHole":0,"eyeBrownForward":0,"noseBoneHigh":0,"lipsThickness":0,"eyesOpening":0,"nosePeakLowering":0,"noseWidth":0,"chinBoneSize":0,"cheeksBoneHigh":0,"neckThickness":0,"chinBoneLowering":0,"jawBoneWidth":0},"headOverlays":{"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"beard":{"style":0,"secondColor":0,"color":0,"opacity":0},"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0}},"hair":{"style":0,"color":0,"highlight":0,"texture":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}]}', 1),
	(272245, 'OWY18016', 'mp_m_freemode_01', '{"faceFeatures":{"eyeBrownForward":0,"chinBoneLowering":0,"noseWidth":0,"eyeBrownHigh":0,"nosePeakSize":0,"lipsThickness":0,"chinHole":0,"chinBoneSize":0,"chinBoneLenght":0,"neckThickness":0,"noseBoneHigh":0,"eyesOpening":0,"cheeksBoneWidth":0,"nosePeakLowering":0,"cheeksBoneHigh":0,"jawBoneWidth":0,"nosePeakHigh":0,"cheeksWidth":0,"jawBoneBackSize":0,"noseBoneTwist":0},"hair":{"highlight":0,"texture":0,"color":0,"style":0},"eyeColor":0,"tattoos":[],"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"headOverlays":{"complexion":{"opacity":0,"secondColor":0,"color":0,"style":0},"blemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"blush":{"opacity":0,"secondColor":0,"color":0,"style":0},"sunDamage":{"opacity":0,"secondColor":0,"color":0,"style":0},"ageing":{"opacity":0,"secondColor":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"color":0,"style":0},"eyebrows":{"opacity":0,"secondColor":0,"color":0,"style":0},"lipstick":{"opacity":0,"secondColor":0,"color":0,"style":0},"chestHair":{"opacity":0,"secondColor":0,"color":0,"style":0},"beard":{"opacity":0,"secondColor":0,"color":0,"style":0},"makeUp":{"opacity":0,"secondColor":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"color":0,"style":0}},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"headBlend":{"shapeFirst":0,"skinMix":0,"shapeSecond":0,"skinSecond":0,"shapeMix":0,"shapeThird":0,"skinFirst":0,"skinThird":0,"thirdMix":0},"model":"mp_m_freemode_01"}', 1),
	(272247, 'EFY95341', 'mp_m_freemode_01', '{"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"hair":{"color":0,"style":0,"highlight":0,"texture":0},"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"model":"mp_m_freemode_01","faceFeatures":{"chinHole":0,"nosePeakHigh":0,"neckThickness":0,"cheeksWidth":0,"noseBoneTwist":0,"chinBoneLenght":0,"jawBoneBackSize":0,"noseWidth":0,"chinBoneSize":0,"lipsThickness":0,"eyeBrownForward":0,"noseBoneHigh":0,"nosePeakLowering":0,"eyeBrownHigh":0,"nosePeakSize":0,"cheeksBoneWidth":0,"eyesOpening":0,"chinBoneLowering":0,"cheeksBoneHigh":0,"jawBoneWidth":0},"eyeColor":0,"headBlend":{"shapeSecond":0,"skinMix":0,"thirdMix":0,"skinSecond":0,"shapeMix":0,"shapeThird":0,"skinFirst":0,"skinThird":0,"shapeFirst":0},"headOverlays":{"makeUp":{"color":0,"style":0,"secondColor":0,"opacity":0},"sunDamage":{"color":0,"style":0,"secondColor":0,"opacity":0},"ageing":{"color":0,"style":0,"secondColor":0,"opacity":0},"eyebrows":{"color":0,"style":0,"secondColor":0,"opacity":0},"blush":{"color":0,"style":0,"secondColor":0,"opacity":0},"bodyBlemishes":{"color":0,"style":0,"secondColor":0,"opacity":0},"chestHair":{"color":0,"style":0,"secondColor":0,"opacity":0},"beard":{"color":0,"style":0,"secondColor":0,"opacity":0},"blemishes":{"color":0,"style":0,"secondColor":0,"opacity":0},"moleAndFreckles":{"color":0,"style":0,"secondColor":0,"opacity":0},"lipstick":{"color":0,"style":0,"secondColor":0,"opacity":0},"complexion":{"color":0,"style":0,"secondColor":0,"opacity":0}},"tattoos":[]}', 1),
	(272248, 'PDN28580', 'mp_m_freemode_01', '{"tattoos":[],"faceFeatures":{"lipsThickness":0,"chinBoneLowering":0,"jawBoneBackSize":0,"nosePeakLowering":0,"nosePeakHigh":0,"eyeBrownForward":0,"chinHole":0,"chinBoneLenght":0,"jawBoneWidth":0,"cheeksWidth":0,"eyeBrownHigh":0,"noseWidth":0,"eyesOpening":0,"cheeksBoneWidth":0,"neckThickness":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"noseBoneHigh":0,"nosePeakSize":0,"chinBoneSize":0},"headOverlays":{"eyebrows":{"color":0,"secondColor":0,"opacity":0,"style":0},"beard":{"color":0,"secondColor":0,"opacity":0,"style":0},"blemishes":{"color":0,"secondColor":0,"opacity":0,"style":0},"moleAndFreckles":{"color":0,"secondColor":0,"opacity":0,"style":0},"ageing":{"color":0,"secondColor":0,"opacity":0,"style":0},"complexion":{"color":0,"secondColor":0,"opacity":0,"style":0},"blush":{"color":0,"secondColor":0,"opacity":0,"style":0},"sunDamage":{"color":0,"secondColor":0,"opacity":0,"style":0},"bodyBlemishes":{"color":0,"secondColor":0,"opacity":0,"style":0},"makeUp":{"color":0,"secondColor":0,"opacity":0,"style":0},"lipstick":{"color":0,"secondColor":0,"opacity":0,"style":0},"chestHair":{"color":0,"secondColor":0,"opacity":0,"style":0}},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"model":"mp_m_freemode_01","eyeColor":0,"hair":{"color":0,"texture":0,"highlight":0,"style":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"headBlend":{"skinSecond":0,"skinFirst":0,"shapeSecond":0,"shapeMix":0,"thirdMix":0,"skinMix":0,"shapeThird":0,"shapeFirst":0,"skinThird":0}}', 1),
	(272249, 'DFS18015', 'mp_m_freemode_01', '{"hair":{"highlight":0,"style":0,"color":0,"texture":0},"tattoos":[],"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"headBlend":{"shapeSecond":0,"thirdMix":0,"skinFirst":0,"skinMix":0,"skinThird":0,"shapeFirst":0,"skinSecond":0,"shapeMix":0,"shapeThird":0},"faceFeatures":{"cheeksBoneHigh":0,"jawBoneBackSize":0,"noseBoneHigh":0,"nosePeakLowering":0,"nosePeakSize":0,"chinHole":0,"chinBoneSize":0,"eyesOpening":0,"neckThickness":0,"cheeksWidth":0,"chinBoneLowering":0,"noseBoneTwist":0,"nosePeakHigh":0,"eyeBrownForward":0,"lipsThickness":0,"eyeBrownHigh":0,"noseWidth":0,"chinBoneLenght":0,"jawBoneWidth":0,"cheeksBoneWidth":0},"eyeColor":0,"model":"mp_m_freemode_01","headOverlays":{"lipstick":{"opacity":0,"style":0,"color":0,"secondColor":0},"blush":{"opacity":0,"style":0,"color":0,"secondColor":0},"bodyBlemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"blemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"ageing":{"opacity":0,"style":0,"color":0,"secondColor":0},"chestHair":{"opacity":0,"style":0,"color":0,"secondColor":0},"beard":{"opacity":0,"style":0,"color":0,"secondColor":0},"sunDamage":{"opacity":0,"style":0,"color":0,"secondColor":0},"complexion":{"opacity":0,"style":0,"color":0,"secondColor":0},"eyebrows":{"opacity":0,"style":0,"color":0,"secondColor":0},"moleAndFreckles":{"opacity":0,"style":0,"color":0,"secondColor":0},"makeUp":{"opacity":0,"style":0,"color":0,"secondColor":0}}}', 1),
	(272253, 'DDI30587', 'mp_f_freemode_01', '{"eyeColor":16,"headBlend":{"shapeSecond":21,"thirdMix":0.3,"shapeFirst":45,"skinThird":33,"skinSecond":15,"skinMix":0.1,"skinFirst":34,"shapeMix":0.4,"shapeThird":40},"hair":{"highlight":61,"color":61,"texture":0,"style":85},"model":"mp_f_freemode_01","headOverlays":{"ageing":{"opacity":0,"secondColor":0,"color":0,"style":0},"chestHair":{"opacity":0,"secondColor":0,"color":0,"style":0},"sunDamage":{"opacity":0,"secondColor":0,"color":0,"style":0},"blush":{"opacity":0,"secondColor":0,"color":0,"style":0},"eyebrows":{"opacity":0,"secondColor":0,"color":0,"style":0},"lipstick":{"opacity":0.5,"secondColor":0,"color":1,"style":3},"beard":{"opacity":0,"secondColor":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"color":0,"style":0},"complexion":{"opacity":0,"secondColor":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"blemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"makeUp":{"opacity":0.4,"secondColor":0,"color":56,"style":0}},"tattoos":[],"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"faceFeatures":{"chinBoneSize":0,"noseBoneTwist":0,"nosePeakSize":1,"eyesOpening":1,"neckThickness":0,"chinBoneLenght":0,"eyeBrownHigh":0,"noseWidth":-1,"noseBoneHigh":1,"cheeksBoneHigh":-0.2,"jawBoneWidth":0,"nosePeakLowering":-1,"cheeksWidth":0,"eyeBrownForward":0,"cheeksBoneWidth":0.1,"jawBoneBackSize":0,"chinBoneLowering":0,"nosePeakHigh":-1,"lipsThickness":-1,"chinHole":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":85,"texture":0,"component_id":2},{"drawable":109,"texture":0,"component_id":3},{"drawable":60,"texture":11,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":7},{"drawable":3,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":131,"texture":0,"component_id":6},{"drawable":530,"texture":1,"component_id":11}]}', 1),
	(272254, 'NDF00315', 'mp_m_freemode_01', '{"hair":{"highlight":0,"color":0,"texture":0,"style":0},"headOverlays":{"moleAndFreckles":{"opacity":0,"secondColor":0,"color":0,"style":0},"eyebrows":{"opacity":0,"secondColor":0,"color":0,"style":0},"beard":{"opacity":0,"secondColor":0,"color":0,"style":0},"complexion":{"opacity":0,"secondColor":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"sunDamage":{"opacity":0,"secondColor":0,"color":0,"style":0},"makeUp":{"opacity":0,"secondColor":0,"color":0,"style":0},"lipstick":{"opacity":0,"secondColor":0,"color":0,"style":0},"blemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"chestHair":{"opacity":0,"secondColor":0,"color":0,"style":0},"ageing":{"opacity":0,"secondColor":0,"color":0,"style":0},"blush":{"opacity":0,"secondColor":0,"color":0,"style":0}},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"model":"mp_m_freemode_01","faceFeatures":{"jawBoneWidth":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"neckThickness":0,"noseWidth":0,"nosePeakHigh":0,"eyeBrownHigh":0,"chinBoneLenght":0,"chinBoneLowering":0,"jawBoneBackSize":0,"chinBoneSize":0,"noseBoneHigh":0,"eyesOpening":0,"chinHole":0,"cheeksBoneHigh":0,"nosePeakSize":0,"cheeksWidth":0,"lipsThickness":0,"noseBoneTwist":0,"nosePeakLowering":0},"headBlend":{"shapeThird":0,"skinMix":0,"shapeFirst":0,"thirdMix":0,"skinSecond":0,"skinThird":0,"shapeSecond":0,"shapeMix":0,"skinFirst":0},"eyeColor":0,"tattoos":[],"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}]}', 1),
	(272255, 'DHW44817', 'mp_m_freemode_01', '{"hair":{"highlight":0,"style":0,"texture":0,"color":0},"model":"mp_m_freemode_01","headOverlays":{"lipstick":{"secondColor":0,"style":0,"opacity":0,"color":0},"blemishes":{"secondColor":0,"style":0,"opacity":0,"color":0},"complexion":{"secondColor":0,"style":0,"opacity":0,"color":0},"sunDamage":{"secondColor":0,"style":0,"opacity":0,"color":0},"bodyBlemishes":{"secondColor":0,"style":0,"opacity":0,"color":0},"ageing":{"secondColor":0,"style":0,"opacity":0,"color":0},"eyebrows":{"secondColor":0,"style":0,"opacity":0,"color":0},"blush":{"secondColor":0,"style":0,"opacity":0,"color":0},"chestHair":{"secondColor":0,"style":0,"opacity":0,"color":0},"moleAndFreckles":{"secondColor":0,"style":0,"opacity":0,"color":0},"makeUp":{"secondColor":0,"style":0,"opacity":0,"color":0},"beard":{"secondColor":0,"style":0,"opacity":0,"color":0}},"eyeColor":0,"tattoos":[],"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}],"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"headBlend":{"thirdMix":0,"skinSecond":0,"skinFirst":0,"shapeThird":0,"shapeFirst":0,"shapeMix":0,"skinThird":0,"skinMix":0,"shapeSecond":0},"faceFeatures":{"chinBoneSize":0,"chinBoneLowering":0,"jawBoneBackSize":0,"cheeksBoneWidth":0,"neckThickness":0,"cheeksWidth":0,"chinHole":0,"nosePeakLowering":0,"noseBoneHigh":0,"eyesOpening":0,"lipsThickness":0,"jawBoneWidth":0,"nosePeakHigh":0,"noseBoneTwist":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"noseWidth":0,"eyeBrownForward":0,"nosePeakSize":0,"eyeBrownHigh":0}}', 1),
	(272258, 'CKY95174', 'mp_m_freemode_01', '{"hair":{"color":0,"style":0,"texture":0,"highlight":0},"model":"mp_m_freemode_01","tattoos":[],"eyeColor":0,"headOverlays":{"lipstick":{"secondColor":0,"opacity":0,"style":0,"color":0},"makeUp":{"secondColor":0,"opacity":0,"style":0,"color":0},"chestHair":{"secondColor":0,"opacity":0,"style":0,"color":0},"sunDamage":{"secondColor":0,"opacity":0,"style":0,"color":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"style":0,"color":0},"eyebrows":{"secondColor":0,"opacity":0,"style":0,"color":0},"ageing":{"secondColor":0,"opacity":0,"style":0,"color":0},"complexion":{"secondColor":0,"opacity":0,"style":0,"color":0},"beard":{"secondColor":0,"opacity":0,"style":0,"color":0},"blemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"blush":{"secondColor":0,"opacity":0,"style":0,"color":0}},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":1,"drawable":11},{"texture":0,"component_id":7,"drawable":3},{"texture":0,"component_id":11,"drawable":2},{"texture":0,"component_id":8,"drawable":191},{"texture":0,"component_id":9,"drawable":2},{"texture":0,"component_id":5,"drawable":1},{"texture":0,"component_id":3,"drawable":2},{"texture":0,"component_id":4,"drawable":2}],"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"headBlend":{"thirdMix":0,"skinSecond":0,"skinMix":0,"shapeThird":0,"shapeFirst":0,"shapeMix":0,"skinThird":0,"skinFirst":0,"shapeSecond":0},"faceFeatures":{"eyeBrownHigh":0,"chinBoneLowering":0,"jawBoneBackSize":0,"cheeksBoneWidth":0,"neckThickness":0,"cheeksWidth":0,"chinHole":0,"nosePeakLowering":0,"noseBoneHigh":0,"eyesOpening":0,"chinBoneLenght":0,"jawBoneWidth":0,"nosePeakHigh":0,"lipsThickness":0,"noseBoneTwist":0,"cheeksBoneHigh":0,"noseWidth":0,"eyeBrownForward":0,"nosePeakSize":0,"chinBoneSize":0}}', 1),
	(272259, 'UZF83326', 'mp_m_freemode_01', '{"tattoos":[],"model":"mp_m_freemode_01","components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":1,"component_id":1,"drawable":5},{"texture":12,"component_id":11,"drawable":3},{"texture":12,"component_id":4,"drawable":5},{"texture":0,"component_id":10,"drawable":5},{"texture":0,"component_id":6,"drawable":5}],"eyeColor":0,"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"hair":{"highlight":0,"style":0,"texture":0,"color":0},"headOverlays":{"lipstick":{"opacity":0,"style":0,"secondColor":0,"color":0},"blemishes":{"opacity":0,"style":0,"secondColor":0,"color":0},"complexion":{"opacity":0,"style":0,"secondColor":0,"color":0},"sunDamage":{"opacity":0,"style":0,"secondColor":0,"color":0},"bodyBlemishes":{"opacity":0,"style":0,"secondColor":0,"color":0},"ageing":{"opacity":0,"style":0,"secondColor":0,"color":0},"eyebrows":{"opacity":0,"style":0,"secondColor":0,"color":0},"blush":{"opacity":0,"style":0,"secondColor":0,"color":0},"makeUp":{"opacity":0,"style":0,"secondColor":0,"color":0},"moleAndFreckles":{"opacity":0,"style":0,"secondColor":0,"color":0},"chestHair":{"opacity":0,"style":0,"secondColor":0,"color":0},"beard":{"opacity":0,"style":0,"secondColor":0,"color":0}},"headBlend":{"thirdMix":0,"skinSecond":0,"skinMix":0,"shapeThird":0,"shapeFirst":0,"shapeMix":0,"skinThird":0,"skinFirst":0,"shapeSecond":0},"faceFeatures":{"chinBoneSize":0,"chinBoneLowering":0,"jawBoneBackSize":0,"cheeksBoneWidth":0,"neckThickness":0,"cheeksWidth":0,"chinHole":0,"nosePeakLowering":0,"noseBoneHigh":0,"eyesOpening":0,"nosePeakSize":0,"jawBoneWidth":0,"nosePeakHigh":0,"lipsThickness":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"eyeBrownHigh":0,"eyeBrownForward":0,"noseBoneTwist":0,"noseWidth":0}}', 1),
	(272260, 'CEE84594', 'mp_m_freemode_01', '{"tattoos":[],"faceFeatures":{"nosePeakLowering":0,"nosePeakHigh":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"eyesOpening":0,"chinBoneLenght":0,"nosePeakSize":0,"noseBoneHigh":0,"noseBoneTwist":0,"lipsThickness":0,"chinBoneLowering":0,"jawBoneBackSize":0,"cheeksWidth":0,"cheeksBoneHigh":0,"jawBoneWidth":0,"neckThickness":0,"chinHole":0,"chinBoneSize":0,"noseWidth":0,"eyeBrownHigh":0},"eyeColor":0,"headBlend":{"shapeMix":0,"skinThird":0,"thirdMix":0,"skinMix":0,"shapeThird":0,"shapeFirst":0,"skinSecond":0,"shapeSecond":0,"skinFirst":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"headOverlays":{"eyebrows":{"color":0,"secondColor":0,"opacity":0,"style":0},"lipstick":{"color":0,"secondColor":0,"opacity":0,"style":0},"ageing":{"color":0,"secondColor":0,"opacity":0,"style":0},"makeUp":{"color":0,"secondColor":0,"opacity":0,"style":0},"blemishes":{"color":0,"secondColor":0,"opacity":0,"style":0},"complexion":{"color":0,"secondColor":0,"opacity":0,"style":0},"beard":{"color":0,"secondColor":0,"opacity":0,"style":0},"blush":{"color":0,"secondColor":0,"opacity":0,"style":0},"chestHair":{"color":0,"secondColor":0,"opacity":0,"style":0},"bodyBlemishes":{"color":0,"secondColor":0,"opacity":0,"style":0},"moleAndFreckles":{"color":0,"secondColor":0,"opacity":0,"style":0},"sunDamage":{"color":0,"secondColor":0,"opacity":0,"style":0}},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"model":"mp_m_freemode_01","hair":{"color":0,"texture":0,"style":0,"highlight":0}}', 1),
	(272261, 'WIE15154', 'mp_m_freemode_01', '{"tattoos":[],"headBlend":{"skinFirst":0,"skinSecond":0,"skinThird":0,"skinMix":0,"shapeMix":0,"thirdMix":0,"shapeSecond":0,"shapeThird":0,"shapeFirst":0},"eyeColor":0,"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"hair":{"highlight":0,"texture":0,"style":0,"color":0},"model":"mp_m_freemode_01","headOverlays":{"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0},"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":0,"secondColor":0,"style":0,"color":0},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0}},"faceFeatures":{"noseWidth":0,"jawBoneBackSize":0,"chinHole":0,"lipsThickness":0,"chinBoneLowering":0,"chinBoneLenght":0,"nosePeakSize":0,"cheeksBoneHigh":0,"chinBoneSize":0,"noseBoneHigh":0,"nosePeakLowering":0,"nosePeakHigh":0,"eyeBrownHigh":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"noseBoneTwist":0,"neckThickness":0,"cheeksWidth":0,"eyesOpening":0,"jawBoneWidth":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}]}', 1),
	(272262, 'UAW69493', 'mp_m_freemode_01', '{"hair":{"color":0,"highlight":0,"style":0,"texture":0},"eyeColor":0,"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"headOverlays":{"lipstick":{"color":0,"secondColor":0,"style":0,"opacity":0},"makeUp":{"color":0,"secondColor":0,"style":0,"opacity":0},"blemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"beard":{"color":0,"secondColor":0,"style":0,"opacity":0},"blush":{"color":0,"secondColor":0,"style":0,"opacity":0},"complexion":{"color":0,"secondColor":0,"style":0,"opacity":0},"moleAndFreckles":{"color":0,"secondColor":0,"style":0,"opacity":0},"chestHair":{"color":0,"secondColor":0,"style":0,"opacity":0},"sunDamage":{"color":0,"secondColor":0,"style":0,"opacity":0},"ageing":{"color":0,"secondColor":0,"style":0,"opacity":0},"bodyBlemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"eyebrows":{"color":0,"secondColor":0,"style":0,"opacity":0}},"tattoos":[],"faceFeatures":{"eyeBrownHigh":0,"lipsThickness":0,"noseBoneHigh":0,"jawBoneWidth":0,"chinBoneLenght":0,"nosePeakSize":1,"cheeksWidth":0,"nosePeakLowering":0,"jawBoneBackSize":0,"chinBoneSize":0,"cheeksBoneHigh":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"eyeBrownForward":0,"noseBoneTwist":0,"eyesOpening":0,"nosePeakHigh":0.1,"chinHole":0,"neckThickness":0,"noseWidth":-1},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":10},{"drawable":28,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":3},{"drawable":1,"texture":0,"component_id":6},{"drawable":3,"texture":0,"component_id":8},{"drawable":6,"texture":0,"component_id":11},{"drawable":5,"texture":0,"component_id":4}],"headBlend":{"thirdMix":0,"skinSecond":1,"shapeSecond":2,"shapeThird":0,"shapeMix":0,"skinFirst":0,"shapeFirst":0,"skinMix":0,"skinThird":0},"model":"mp_m_freemode_01"}', 1),
	(272264, 'MQZ35496', 'mp_m_freemode_01', '{"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":471,"texture":0,"component_id":11}],"model":"mp_m_freemode_01","tattoos":[],"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"hair":{"color":0,"texture":0,"style":0,"highlight":0},"headBlend":{"shapeFirst":0,"shapeThird":0,"skinSecond":0,"shapeMix":0,"skinMix":0,"thirdMix":0,"shapeSecond":0,"skinFirst":0,"skinThird":0},"headOverlays":{"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0}},"eyeColor":0,"faceFeatures":{"cheeksBoneHigh":0,"nosePeakHigh":0,"noseWidth":0,"jawBoneBackSize":0,"noseBoneHigh":0,"noseBoneTwist":0,"jawBoneWidth":0,"eyesOpening":0,"cheeksWidth":0,"nosePeakSize":0,"eyeBrownForward":0,"nosePeakLowering":0,"neckThickness":0,"lipsThickness":0,"chinHole":0,"chinBoneLowering":0,"chinBoneSize":0,"chinBoneLenght":0,"cheeksBoneWidth":0,"eyeBrownHigh":0}}', 1),
	(272265, 'VCW52710', 'mp_m_freemode_01', '{"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":518,"texture":0,"component_id":11}],"model":"mp_m_freemode_01","headBlend":{"shapeThird":0,"shapeSecond":0,"skinSecond":0,"shapeMix":0,"skinMix":0,"shapeFirst":0,"skinThird":0,"thirdMix":0,"skinFirst":0},"hair":{"style":0,"texture":0,"color":0,"highlight":0},"headOverlays":{"blush":{"style":0,"opacity":0,"color":0,"secondColor":0},"ageing":{"style":0,"opacity":0,"color":0,"secondColor":0},"beard":{"style":0,"opacity":0,"color":0,"secondColor":0},"chestHair":{"style":0,"opacity":0,"color":0,"secondColor":0},"bodyBlemishes":{"style":0,"opacity":0,"color":0,"secondColor":0},"complexion":{"style":0,"opacity":0,"color":0,"secondColor":0},"blemishes":{"style":0,"opacity":0,"color":0,"secondColor":0},"lipstick":{"style":0,"opacity":0,"color":0,"secondColor":0},"eyebrows":{"style":0,"opacity":0,"color":0,"secondColor":0},"makeUp":{"style":0,"opacity":0,"color":0,"secondColor":0},"sunDamage":{"style":0,"opacity":0,"color":0,"secondColor":0},"moleAndFreckles":{"style":0,"opacity":0,"color":0,"secondColor":0}},"tattoos":[],"eyeColor":0,"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"faceFeatures":{"eyeBrownHigh":0,"cheeksWidth":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"eyeBrownForward":0,"jawBoneWidth":0,"noseBoneHigh":0,"nosePeakSize":0,"noseWidth":0,"chinBoneSize":0,"nosePeakHigh":0,"noseBoneTwist":0,"nosePeakLowering":0,"chinHole":0,"lipsThickness":0,"eyesOpening":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"neckThickness":0,"jawBoneBackSize":0}}', 1),
	(272267, 'JYS78192', 'mp_m_freemode_01', '{"eyeColor":0,"model":"mp_m_freemode_01","hair":{"texture":0,"style":0,"highlight":0,"color":0},"headOverlays":{"blemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"blush":{"secondColor":0,"opacity":0,"style":0,"color":0},"complexion":{"secondColor":0,"opacity":0,"style":0,"color":0},"ageing":{"secondColor":0,"opacity":0,"style":0,"color":0},"sunDamage":{"secondColor":0,"opacity":0,"style":0,"color":0},"chestHair":{"secondColor":0,"opacity":0,"style":0,"color":0},"makeUp":{"secondColor":0,"opacity":0,"style":0,"color":0},"lipstick":{"secondColor":0,"opacity":0,"style":0,"color":0},"eyebrows":{"secondColor":0,"opacity":0,"style":0,"color":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"style":0,"color":0},"beard":{"secondColor":0,"opacity":0,"style":0,"color":0}},"headBlend":{"skinThird":0,"shapeMix":0,"skinFirst":0,"skinMix":0,"skinSecond":0,"shapeFirst":0,"thirdMix":0,"shapeSecond":0,"shapeThird":0},"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"tattoos":[],"faceFeatures":{"chinBoneLenght":0,"cheeksBoneHigh":0,"chinBoneLowering":0,"chinBoneSize":0,"nosePeakSize":0,"cheeksBoneWidth":0,"chinHole":0,"noseWidth":0,"jawBoneBackSize":0,"nosePeakLowering":0,"nosePeakHigh":0,"noseBoneHigh":0,"eyeBrownHigh":0,"neckThickness":0,"noseBoneTwist":0,"eyesOpening":0,"lipsThickness":0,"eyeBrownForward":0,"jawBoneWidth":0,"cheeksWidth":0}}', 1),
	(272268, 'AEY78871', 'mp_m_freemode_01', '{"eyeColor":0,"headBlend":{"skinThird":0,"shapeMix":0,"skinFirst":0,"shapeThird":0,"skinSecond":0,"shapeFirst":0,"thirdMix":0,"shapeSecond":0,"skinMix":0},"hair":{"texture":0,"style":0,"highlight":0,"color":0},"faceFeatures":{"chinBoneLenght":0,"eyeBrownForward":0,"chinBoneLowering":0,"chinBoneSize":0,"nosePeakSize":0,"cheeksBoneWidth":0,"chinHole":0,"noseWidth":0,"jawBoneBackSize":0,"nosePeakLowering":0,"nosePeakHigh":0,"eyesOpening":0,"eyeBrownHigh":0,"neckThickness":0,"cheeksWidth":0,"jawBoneWidth":0,"noseBoneTwist":0,"noseBoneHigh":0,"lipsThickness":0,"cheeksBoneHigh":0},"model":"mp_m_freemode_01","props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"headOverlays":{"chestHair":{"secondColor":0,"opacity":0,"style":0,"color":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"blush":{"secondColor":0,"opacity":0,"style":0,"color":0},"complexion":{"secondColor":0,"opacity":0,"style":0,"color":0},"ageing":{"secondColor":0,"opacity":0,"style":0,"color":0},"blemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"style":0,"color":0},"makeUp":{"secondColor":0,"opacity":0,"style":0,"color":0},"lipstick":{"secondColor":0,"opacity":0,"style":0,"color":0},"eyebrows":{"secondColor":0,"opacity":0,"style":0,"color":0},"sunDamage":{"secondColor":0,"opacity":0,"style":0,"color":0},"beard":{"secondColor":0,"opacity":0,"style":0,"color":0}},"tattoos":{"ZONE_LEFT_LEG":[{"opacity":0.1,"name":"TAT_BB_027","zone":"ZONE_LEFT_LEG","label":"Tribal Star","collection":"mpbeach_overlays","hashFemale":"","hashMale":"MP_Bea_M_Lleg_000"}]},"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}]}', 1),
	(272269, 'NPF75386', 'mp_m_freemode_01', '{"eyeColor":0,"headBlend":{"skinThird":0,"shapeSecond":0,"skinFirst":0,"shapeThird":0,"skinSecond":0,"shapeFirst":0,"thirdMix":0,"skinMix":0,"shapeMix":0},"hair":{"highlight":0,"style":0,"texture":0,"color":0},"headOverlays":{"chestHair":{"secondColor":0,"style":0,"opacity":0,"color":0},"bodyBlemishes":{"secondColor":0,"style":0,"opacity":0,"color":0},"blemishes":{"secondColor":0,"style":0,"opacity":0,"color":0},"complexion":{"secondColor":0,"style":0,"opacity":0,"color":0},"ageing":{"secondColor":0,"style":0,"opacity":0,"color":0},"eyebrows":{"secondColor":0,"style":0,"opacity":0,"color":0},"moleAndFreckles":{"secondColor":0,"style":0,"opacity":0,"color":0},"makeUp":{"secondColor":0,"style":0,"opacity":0,"color":0},"lipstick":{"secondColor":0,"style":0,"opacity":0,"color":0},"blush":{"secondColor":0,"style":0,"opacity":0,"color":0},"sunDamage":{"secondColor":0,"style":0,"opacity":0,"color":0},"beard":{"secondColor":0,"style":0,"opacity":0,"color":0}},"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"model":"mp_m_freemode_01","tattoos":[],"faceFeatures":{"chinBoneLenght":0,"cheeksBoneHigh":0,"chinBoneLowering":0,"chinBoneSize":0,"nosePeakSize":0,"noseBoneHigh":0,"eyesOpening":0,"noseWidth":0,"jawBoneBackSize":0,"nosePeakLowering":0,"nosePeakHigh":0,"lipsThickness":0,"eyeBrownHigh":0,"neckThickness":0,"cheeksBoneWidth":0,"cheeksWidth":0,"noseBoneTwist":0,"eyeBrownForward":0,"jawBoneWidth":0,"chinHole":0}}', 1),
	(272270, 'OKT69470', 'mp_m_freemode_01', '{"headOverlays":{"lipstick":{"style":0,"opacity":0,"color":0,"secondColor":0},"blemishes":{"style":0,"opacity":0,"color":0,"secondColor":0},"complexion":{"style":0,"opacity":0,"color":0,"secondColor":0},"sunDamage":{"style":0,"opacity":0,"color":0,"secondColor":0},"bodyBlemishes":{"style":0,"opacity":0,"color":0,"secondColor":0},"chestHair":{"style":0,"opacity":0,"color":0,"secondColor":0},"makeUp":{"style":0,"opacity":0,"color":0,"secondColor":0},"ageing":{"style":0,"opacity":0,"color":0,"secondColor":0},"eyebrows":{"style":0,"opacity":0,"color":0,"secondColor":0},"moleAndFreckles":{"style":0,"opacity":0,"color":0,"secondColor":0},"blush":{"style":0,"opacity":0,"color":0,"secondColor":0},"beard":{"style":0,"opacity":0,"color":0,"secondColor":0}},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":1},{"drawable":15,"texture":0,"component_id":8},{"drawable":5,"texture":0,"component_id":11},{"drawable":5,"texture":0,"component_id":3},{"drawable":5,"texture":2,"component_id":4},{"drawable":6,"texture":0,"component_id":6},{"drawable":17,"texture":0,"component_id":7}],"hair":{"texture":0,"color":0,"highlight":0,"style":1},"eyeColor":0,"faceFeatures":{"jawBoneBackSize":0,"chinBoneSize":0,"jawBoneWidth":0,"chinHole":0,"noseBoneHigh":0,"nosePeakSize":0,"chinBoneLowering":0,"neckThickness":0,"cheeksWidth":0,"noseWidth":0,"nosePeakLowering":0,"lipsThickness":0,"eyeBrownHigh":0,"eyeBrownForward":0,"eyesOpening":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"nosePeakHigh":0},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"headBlend":{"shapeFirst":0,"shapeSecond":0,"skinFirst":0,"shapeMix":0,"skinSecond":0,"shapeThird":0,"skinMix":0,"skinThird":0,"thirdMix":0},"model":"mp_m_freemode_01","tattoos":[]}', 1),
	(272271, 'VQO03826', 'mp_m_freemode_01', '{"tattoos":[],"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":427,"texture":0,"component_id":11},{"drawable":185,"texture":0,"component_id":1},{"drawable":143,"texture":0,"component_id":6},{"drawable":5,"texture":0,"component_id":3},{"drawable":170,"texture":3,"component_id":4}],"hair":{"texture":0,"color":0,"highlight":0,"style":0},"eyeColor":0,"faceFeatures":{"jawBoneBackSize":0,"chinBoneSize":0,"jawBoneWidth":0,"chinHole":0,"chinBoneLenght":0,"nosePeakSize":0,"chinBoneLowering":0,"neckThickness":0,"cheeksWidth":0,"noseWidth":0,"nosePeakLowering":0,"nosePeakHigh":0,"eyeBrownHigh":0,"eyeBrownForward":0,"eyesOpening":0,"cheeksBoneWidth":0,"noseBoneHigh":0,"noseBoneTwist":0,"lipsThickness":0,"cheeksBoneHigh":0},"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"model":"mp_m_freemode_01","headBlend":{"shapeFirst":0,"shapeSecond":0,"skinFirst":0,"shapeMix":0,"skinSecond":0,"shapeThird":0,"skinMix":0,"skinThird":0,"thirdMix":0},"headOverlays":{"lipstick":{"style":0,"opacity":0,"color":0,"secondColor":0},"blemishes":{"style":0,"opacity":0,"color":0,"secondColor":0},"beard":{"style":0,"opacity":0,"color":0,"secondColor":0},"sunDamage":{"style":0,"opacity":0,"color":0,"secondColor":0},"ageing":{"style":0,"opacity":0,"color":0,"secondColor":0},"chestHair":{"style":0,"opacity":0,"color":0,"secondColor":0},"makeUp":{"style":0,"opacity":0,"color":0,"secondColor":0},"eyebrows":{"style":0,"opacity":0,"color":0,"secondColor":0},"moleAndFreckles":{"style":0,"opacity":0,"color":0,"secondColor":0},"complexion":{"style":0,"opacity":0,"color":0,"secondColor":0},"blush":{"style":0,"opacity":0,"color":0,"secondColor":0},"bodyBlemishes":{"style":0,"opacity":0,"color":0,"secondColor":0}}}', 1),
	(272272, 'OAR69061', 'mp_m_freemode_01', '{"headBlend":{"thirdMix":0,"shapeFirst":45,"shapeThird":0,"skinSecond":0,"shapeSecond":45,"skinMix":0,"shapeMix":0,"skinThird":0,"skinFirst":0},"tattoos":[],"headOverlays":{"lipstick":{"secondColor":0,"opacity":0,"style":0,"color":0},"eyebrows":{"secondColor":0,"opacity":0,"style":0,"color":0},"moleAndFreckles":{"secondColor":0,"opacity":0,"style":0,"color":0},"makeUp":{"secondColor":0,"opacity":0,"style":0,"color":0},"blush":{"secondColor":0,"opacity":0,"style":0,"color":0},"complexion":{"secondColor":0,"opacity":0,"style":0,"color":0},"ageing":{"secondColor":0,"opacity":0,"style":0,"color":0},"chestHair":{"secondColor":0,"opacity":0,"style":0,"color":0},"beard":{"secondColor":0,"opacity":0,"style":0,"color":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"blemishes":{"secondColor":0,"opacity":0,"style":0,"color":0},"sunDamage":{"secondColor":0,"opacity":0,"style":0,"color":0}},"model":"mp_m_freemode_01","faceFeatures":{"cheeksBoneWidth":0,"noseWidth":0,"chinBoneSize":0,"lipsThickness":0,"chinBoneLowering":0,"eyeBrownForward":0,"neckThickness":0,"chinHole":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"noseBoneTwist":0,"nosePeakSize":0,"eyesOpening":0,"noseBoneHigh":0,"nosePeakHigh":0,"cheeksWidth":0,"chinBoneLenght":0,"eyeBrownHigh":0,"jawBoneWidth":0,"nosePeakLowering":0},"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"eyeColor":0,"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":498,"component_id":11},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":10,"component_id":4},{"texture":0,"drawable":25,"component_id":6}],"hair":{"texture":0,"highlight":0,"style":73,"color":61}}', 1),
	(272273, 'XRF14123', 'mp_m_freemode_01', '{"headBlend":{"shapeThird":0,"thirdMix":0,"skinMix":0,"skinFirst":0,"skinSecond":0,"shapeMix":0,"shapeSecond":0,"skinThird":0,"shapeFirst":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":1},{"drawable":2,"texture":0,"component_id":3},{"drawable":190,"texture":0,"component_id":4}],"faceFeatures":{"lipsThickness":0,"eyeBrownForward":0.1,"chinBoneSize":-0.4,"nosePeakHigh":0,"jawBoneWidth":-1,"nosePeakLowering":0,"chinHole":0,"cheeksBoneWidth":-1,"cheeksBoneHigh":-1,"cheeksWidth":-1,"eyesOpening":-1,"nosePeakSize":0.2,"neckThickness":-1,"jawBoneBackSize":-0.2,"noseWidth":0,"chinBoneLenght":-1,"noseBoneHigh":1,"eyeBrownHigh":-0.4,"chinBoneLowering":1,"noseBoneTwist":0},"model":"mp_m_freemode_01","props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"hair":{"texture":0,"color":39,"highlight":0,"style":1},"headOverlays":{"ageing":{"color":0,"opacity":0,"style":0,"secondColor":0},"bodyBlemishes":{"color":0,"opacity":0,"style":0,"secondColor":0},"eyebrows":{"color":0,"opacity":0.3,"style":0,"secondColor":0},"blemishes":{"color":0,"opacity":0,"style":0,"secondColor":0},"beard":{"color":0,"opacity":0,"style":0,"secondColor":0},"complexion":{"color":0,"opacity":0,"style":0,"secondColor":0},"makeUp":{"color":0,"opacity":0,"style":0,"secondColor":0},"chestHair":{"color":0,"opacity":0,"style":0,"secondColor":0},"moleAndFreckles":{"color":0,"opacity":0,"style":0,"secondColor":0},"lipstick":{"color":0,"opacity":0,"style":0,"secondColor":0},"blush":{"color":0,"opacity":0,"style":0,"secondColor":0},"sunDamage":{"color":0,"opacity":0,"style":0,"secondColor":0}},"eyeColor":0,"tattoos":[]}', 1),
	(272277, 'WLF54664', 'mp_f_freemode_01', '{"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":15,"component_id":3},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":7,"component_id":11},{"texture":0,"drawable":16,"component_id":8},{"texture":0,"drawable":18,"component_id":4},{"texture":0,"drawable":36,"component_id":6}],"headOverlays":{"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"beard":{"style":0,"secondColor":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0},"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0}},"hair":{"style":0,"color":0,"texture":0,"highlight":0},"tattoos":[],"eyeColor":0,"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"headBlend":{"shapeFirst":45,"shapeMix":0.3,"skinSecond":15,"skinFirst":20,"skinMix":0.1,"shapeThird":0,"shapeSecond":21,"skinThird":0,"thirdMix":0},"model":"mp_f_freemode_01","faceFeatures":{"chinBoneLowering":0,"noseBoneHigh":0,"noseBoneTwist":0,"eyesOpening":0,"cheeksWidth":0,"chinBoneSize":0,"cheeksBoneWidth":0,"chinHole":0,"nosePeakLowering":0,"noseWidth":0,"lipsThickness":0,"chinBoneLenght":0,"nosePeakHigh":0,"jawBoneBackSize":0,"eyeBrownForward":0,"eyeBrownHigh":0,"jawBoneWidth":0,"cheeksBoneHigh":0,"neckThickness":0,"nosePeakSize":0}}', 0),
	(272279, 'WLF54664', 'mp_m_freemode_01', '{"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":15,"component_id":3},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":16,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":35,"component_id":11},{"texture":0,"drawable":24,"component_id":4},{"texture":0,"drawable":77,"component_id":6}],"headOverlays":{"complexion":{"style":0,"secondColor":0,"color":0,"opacity":0},"blush":{"style":0,"secondColor":0,"color":0,"opacity":0},"bodyBlemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"chestHair":{"style":0,"secondColor":0,"color":0,"opacity":0},"blemishes":{"style":0,"secondColor":0,"color":0,"opacity":0},"eyebrows":{"style":0,"secondColor":0,"color":0,"opacity":0},"lipstick":{"style":0,"secondColor":0,"color":0,"opacity":0},"beard":{"style":0,"secondColor":0,"color":0,"opacity":0},"moleAndFreckles":{"style":0,"secondColor":0,"color":0,"opacity":0},"makeUp":{"style":0,"secondColor":0,"color":0,"opacity":0},"sunDamage":{"style":0,"secondColor":0,"color":0,"opacity":0},"ageing":{"style":0,"secondColor":0,"color":0,"opacity":0}},"hair":{"style":0,"color":0,"texture":0,"highlight":0},"tattoos":[],"eyeColor":0,"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"headBlend":{"shapeFirst":0,"shapeMix":0,"skinSecond":0,"skinFirst":0,"skinMix":0,"shapeThird":0,"shapeSecond":0,"skinThird":0,"thirdMix":0},"model":"mp_m_freemode_01","faceFeatures":{"chinBoneLowering":0,"noseBoneHigh":0,"noseBoneTwist":0,"eyesOpening":0,"cheeksWidth":0,"chinBoneSize":0,"cheeksBoneWidth":0,"chinHole":0,"nosePeakLowering":0,"noseWidth":0,"lipsThickness":0,"chinBoneLenght":0,"nosePeakHigh":0,"jawBoneBackSize":0,"eyeBrownForward":0,"eyeBrownHigh":0,"jawBoneWidth":0,"cheeksBoneHigh":0,"neckThickness":0,"nosePeakSize":0}}', 1),
	(272280, 'BEL96112', 'mp_m_freemode_01', '{"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"tattoos":[],"headBlend":{"skinMix":0,"thirdMix":0,"shapeThird":0,"shapeSecond":0,"shapeFirst":0,"skinSecond":0,"shapeMix":0,"skinFirst":0,"skinThird":0},"headOverlays":{"lipstick":{"color":0,"style":0,"opacity":0,"secondColor":0},"blush":{"color":0,"style":0,"opacity":0,"secondColor":0},"chestHair":{"color":0,"style":0,"opacity":0,"secondColor":0},"makeUp":{"color":0,"style":0,"opacity":0,"secondColor":0},"bodyBlemishes":{"color":0,"style":0,"opacity":0,"secondColor":0},"blemishes":{"color":0,"style":0,"opacity":0,"secondColor":0},"ageing":{"color":0,"style":0,"opacity":0,"secondColor":0},"complexion":{"color":0,"style":0,"opacity":0,"secondColor":0},"eyebrows":{"color":0,"style":0,"opacity":0,"secondColor":0},"moleAndFreckles":{"color":0,"style":0,"opacity":0,"secondColor":0},"beard":{"color":0,"style":0,"opacity":0,"secondColor":0},"sunDamage":{"color":0,"style":0,"opacity":0,"secondColor":0}},"eyeColor":0,"faceFeatures":{"cheeksWidth":0,"eyesOpening":0,"neckThickness":0,"cheeksBoneHigh":0,"nosePeakSize":0,"eyeBrownHigh":0,"jawBoneBackSize":0,"noseBoneTwist":0,"lipsThickness":0,"cheeksBoneWidth":0,"nosePeakLowering":0,"noseBoneHigh":0,"chinHole":0,"eyeBrownForward":0,"chinBoneLowering":0,"noseWidth":0,"jawBoneWidth":0,"nosePeakHigh":0,"chinBoneSize":0,"chinBoneLenght":0},"hair":{"color":0,"style":0,"highlight":0,"texture":0},"model":"mp_m_freemode_01"}', 1),
	(272281, 'BTO14085', 'mp_m_freemode_01', '{"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":10,"texture":0,"component_id":6},{"drawable":10,"texture":0,"component_id":4},{"drawable":4,"texture":0,"component_id":3},{"drawable":142,"texture":0,"component_id":11},{"drawable":4,"texture":0,"component_id":8}],"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1},{"texture":0,"prop_id":1,"drawable":5}],"tattoos":{"ZONE_HAIR":[{"hashMale":"FM_M_Hair_003_a","name":"hair-0-186","hashFemale":"FM_F_Hair_003_a","collection":"multiplayer_overlays","zone":"ZONE_HAIR","label":"hair-0-186"}]},"headBlend":{"skinMix":0,"thirdMix":0,"shapeThird":0,"shapeSecond":0,"shapeFirst":0,"skinSecond":0,"shapeMix":0,"skinFirst":0,"skinThird":0},"headOverlays":{"lipstick":{"style":0,"opacity":0,"color":0,"secondColor":0},"complexion":{"style":0,"opacity":0,"color":0,"secondColor":0},"chestHair":{"style":0,"opacity":0,"color":0,"secondColor":0},"blush":{"style":0,"opacity":0,"color":0,"secondColor":0},"bodyBlemishes":{"style":0,"opacity":0,"color":0,"secondColor":0},"blemishes":{"style":0,"opacity":0,"color":0,"secondColor":0},"ageing":{"style":3,"opacity":1,"color":0,"secondColor":0},"makeUp":{"style":0,"opacity":0,"color":0,"secondColor":0},"eyebrows":{"style":0,"opacity":1,"color":0,"secondColor":0},"moleAndFreckles":{"style":0,"opacity":0,"color":0,"secondColor":0},"beard":{"style":10,"opacity":1,"color":0,"secondColor":0},"sunDamage":{"style":0,"opacity":0,"color":0,"secondColor":0}},"model":"mp_m_freemode_01","faceFeatures":{"noseWidth":0,"eyesOpening":0,"neckThickness":0.2,"cheeksBoneHigh":0,"nosePeakSize":0,"eyeBrownHigh":0,"jawBoneWidth":0,"noseBoneTwist":-1,"lipsThickness":0,"cheeksBoneWidth":0,"nosePeakLowering":0,"noseBoneHigh":1,"chinHole":0,"jawBoneBackSize":0,"chinBoneLowering":0,"chinBoneLenght":0,"eyeBrownForward":0,"nosePeakHigh":0,"cheeksWidth":0,"chinBoneSize":0},"hair":{"highlight":0,"style":48,"color":0,"texture":0},"eyeColor":2}', 1),
	(272282, 'AHY06468', 'mp_m_freemode_01', '{"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":7},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11}],"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"tattoos":[],"headBlend":{"skinMix":0,"thirdMix":0,"shapeThird":0,"shapeSecond":0,"shapeFirst":0,"skinSecond":0,"shapeMix":0,"skinFirst":0,"skinThird":0},"headOverlays":{"lipstick":{"secondColor":0,"color":0,"style":0,"opacity":0},"complexion":{"secondColor":0,"color":0,"style":0,"opacity":0},"chestHair":{"secondColor":0,"color":0,"style":0,"opacity":0},"eyebrows":{"secondColor":0,"color":0,"style":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"blemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"ageing":{"secondColor":0,"color":0,"style":0,"opacity":0},"blush":{"secondColor":0,"color":0,"style":0,"opacity":0},"makeUp":{"secondColor":0,"color":0,"style":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"color":0,"style":0,"opacity":0},"beard":{"secondColor":0,"color":0,"style":0,"opacity":0},"sunDamage":{"secondColor":0,"color":0,"style":0,"opacity":0}},"model":"mp_m_freemode_01","faceFeatures":{"cheeksWidth":0,"eyesOpening":0,"neckThickness":0,"cheeksBoneHigh":0,"nosePeakSize":0,"eyeBrownHigh":0,"jawBoneBackSize":0,"noseBoneTwist":0,"lipsThickness":0,"cheeksBoneWidth":0,"nosePeakLowering":0,"noseBoneHigh":0,"chinHole":0,"chinBoneLenght":0,"chinBoneLowering":0,"jawBoneWidth":0,"noseWidth":0,"nosePeakHigh":0,"chinBoneSize":0,"eyeBrownForward":0},"hair":{"color":0,"style":0,"texture":0,"highlight":0},"eyeColor":0}', 1),
	(272283, 'CCT80766', 'mp_m_freemode_01', '{"hair":{"highlight":0,"texture":0,"color":0,"style":0},"faceFeatures":{"cheeksWidth":0,"chinBoneSize":0,"jawBoneBackSize":0,"nosePeakLowering":0,"noseBoneTwist":0,"nosePeakSize":0,"cheeksBoneHigh":0,"eyesOpening":0,"jawBoneWidth":0,"neckThickness":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"lipsThickness":0,"noseWidth":0,"eyeBrownHigh":0,"chinHole":0,"nosePeakHigh":0,"eyeBrownForward":0,"noseBoneHigh":0,"chinBoneLenght":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"headOverlays":{"sunDamage":{"opacity":0,"secondColor":0,"color":0,"style":0},"beard":{"opacity":0,"secondColor":0,"color":0,"style":0},"blush":{"opacity":0,"secondColor":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"color":0,"style":0},"blemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"ageing":{"opacity":0,"secondColor":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"eyebrows":{"opacity":0,"secondColor":0,"color":0,"style":0},"chestHair":{"opacity":0,"secondColor":0,"color":0,"style":0},"lipstick":{"opacity":0,"secondColor":0,"color":0,"style":0},"makeUp":{"opacity":0,"secondColor":0,"color":0,"style":0},"complexion":{"opacity":0,"secondColor":0,"color":0,"style":0}},"eyeColor":0,"model":"mp_m_freemode_01","tattoos":[],"headBlend":{"shapeSecond":0,"thirdMix":0,"skinThird":0,"skinFirst":0,"shapeThird":0,"skinSecond":0,"skinMix":0,"shapeMix":0,"shapeFirst":0},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}]}', 1),
	(272284, 'TMV37328', 'mp_m_freemode_01', '{"eyeColor":-1,"model":"mp_m_freemode_01","headBlend":{"skinSecond":0,"thirdMix":0,"shapeThird":0,"skinThird":0,"shapeMix":0,"shapeFirst":0,"shapeSecond":0,"skinMix":0,"skinFirst":0},"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"headOverlays":{"sunDamage":{"color":0,"opacity":0,"style":0,"secondColor":0},"blemishes":{"color":0,"opacity":0,"style":0,"secondColor":0},"bodyBlemishes":{"color":0,"opacity":0,"style":0,"secondColor":0},"eyebrows":{"color":0,"opacity":0,"style":0,"secondColor":0},"beard":{"color":0,"opacity":0,"style":0,"secondColor":0},"blush":{"color":0,"opacity":0,"style":0,"secondColor":0},"moleAndFreckles":{"color":0,"opacity":0,"style":0,"secondColor":0},"lipstick":{"color":0,"opacity":0,"style":0,"secondColor":0},"ageing":{"color":0,"opacity":0,"style":0,"secondColor":0},"complexion":{"color":0,"opacity":0,"style":0,"secondColor":0},"chestHair":{"color":0,"opacity":0,"style":0,"secondColor":0},"makeUp":{"color":0,"opacity":0,"style":0,"secondColor":0}},"tattoos":[],"hair":{"color":0,"texture":0,"style":0,"highlight":0},"faceFeatures":{"chinBoneSize":0,"nosePeakSize":0,"noseWidth":0,"eyeBrownHigh":0,"chinBoneLowering":0,"nosePeakLowering":0,"eyesOpening":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"chinHole":0,"lipsThickness":0,"eyeBrownForward":0,"jawBoneWidth":0,"cheeksWidth":0,"noseBoneTwist":0,"nosePeakHigh":0,"chinBoneLenght":0,"cheeksBoneWidth":0,"neckThickness":0,"noseBoneHigh":0},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}]}', 1),
	(272289, 'HZK30117', 'mp_m_freemode_01', '{"eyeColor":-1,"model":"mp_m_freemode_01","headBlend":{"skinSecond":0,"thirdMix":0,"shapeThird":0,"skinThird":0,"shapeMix":0,"shapeFirst":0,"skinMix":0,"shapeSecond":0,"skinFirst":0},"faceFeatures":{"chinBoneSize":0,"nosePeakSize":0,"noseWidth":0,"eyeBrownHigh":0,"chinBoneLowering":0,"nosePeakLowering":0,"eyesOpening":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"chinHole":0,"lipsThickness":0,"eyeBrownForward":0,"jawBoneWidth":0,"neckThickness":0,"chinBoneLenght":0,"nosePeakHigh":0,"cheeksBoneWidth":0,"cheeksWidth":0,"noseBoneTwist":0,"noseBoneHigh":0},"headOverlays":{"sunDamage":{"secondColor":0,"color":0,"style":0,"opacity":0},"blemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"chestHair":{"secondColor":0,"color":0,"style":0,"opacity":0},"eyebrows":{"secondColor":0,"color":0,"style":2,"opacity":1},"beard":{"secondColor":0,"color":0,"style":0,"opacity":0},"makeUp":{"secondColor":0,"color":0,"style":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"color":0,"style":0,"opacity":0},"lipstick":{"secondColor":0,"color":0,"style":0,"opacity":0},"ageing":{"secondColor":0,"color":0,"style":0,"opacity":0},"complexion":{"secondColor":0,"color":0,"style":0,"opacity":0},"blush":{"secondColor":0,"color":0,"style":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"color":0,"style":0,"opacity":0}},"tattoos":[],"hair":{"highlight":0,"texture":0,"style":79,"color":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":8,"drawable":15},{"texture":13,"component_id":1,"drawable":169},{"texture":0,"component_id":11,"drawable":5},{"texture":0,"component_id":3,"drawable":5},{"texture":4,"component_id":4,"drawable":26},{"texture":10,"component_id":6,"drawable":12}]}', 1),
	(272290, 'RPB30164', 'mp_m_freemode_01', '{"eyeColor":-1,"model":"mp_m_freemode_01","headBlend":{"skinSecond":0,"thirdMix":0,"shapeThird":0,"skinThird":0,"shapeMix":0,"shapeFirst":0,"skinMix":0,"shapeSecond":0,"skinFirst":0},"faceFeatures":{"chinBoneSize":0,"nosePeakSize":0,"noseWidth":0,"noseBoneHigh":0,"chinBoneLowering":0,"nosePeakLowering":0,"eyesOpening":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"chinHole":0,"lipsThickness":0,"eyeBrownForward":0,"jawBoneWidth":0,"eyeBrownHigh":0,"neckThickness":0,"nosePeakHigh":0,"chinBoneLenght":0,"cheeksBoneWidth":0,"noseBoneTwist":0,"cheeksWidth":0},"headOverlays":{"sunDamage":{"color":0,"secondColor":0,"style":0,"opacity":0},"blemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"bodyBlemishes":{"color":0,"secondColor":0,"style":0,"opacity":0},"eyebrows":{"color":0,"secondColor":0,"style":0,"opacity":0},"beard":{"color":0,"secondColor":0,"style":0,"opacity":0},"blush":{"color":0,"secondColor":0,"style":0,"opacity":0},"moleAndFreckles":{"color":0,"secondColor":0,"style":0,"opacity":0},"makeUp":{"color":0,"secondColor":0,"style":0,"opacity":0},"ageing":{"color":0,"secondColor":0,"style":0,"opacity":0},"lipstick":{"color":0,"secondColor":0,"style":0,"opacity":0},"complexion":{"color":0,"secondColor":0,"style":0,"opacity":0},"chestHair":{"color":0,"secondColor":0,"style":0,"opacity":0}},"tattoos":[],"hair":{"color":0,"texture":0,"style":0,"highlight":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}]}', 1),
	(272294, 'UYV17385', 'mp_m_freemode_01', '{"eyeColor":-1,"model":"mp_m_freemode_01","headBlend":{"skinSecond":0,"thirdMix":0,"shapeThird":0,"skinThird":0,"shapeMix":0,"shapeFirst":0,"shapeSecond":0,"skinMix":0,"skinFirst":0},"faceFeatures":{"chinBoneSize":0,"nosePeakSize":0,"noseWidth":0,"noseBoneHigh":0,"chinBoneLowering":0,"nosePeakLowering":0,"eyesOpening":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"chinHole":0,"lipsThickness":0,"eyeBrownForward":0,"jawBoneWidth":0,"noseBoneTwist":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"chinBoneLenght":0,"eyeBrownHigh":0,"neckThickness":0,"cheeksWidth":0},"headOverlays":{"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0},"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":0,"secondColor":0,"style":0,"color":0},"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0}},"tattoos":[],"hair":{"highlight":62,"texture":0,"style":80,"color":29},"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}],"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":169},{"texture":0,"component_id":2,"drawable":80},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":321},{"texture":0,"component_id":4,"drawable":24},{"texture":0,"component_id":6,"drawable":7},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":8,"drawable":130},{"texture":0,"component_id":3,"drawable":25}]}', 1),
	(272295, 'YQQ65276', 'mp_m_freemode_01', '{"tattoos":[],"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"eyeColor":-1,"headOverlays":{"moleAndFreckles":{"color":0,"opacity":0,"style":0,"secondColor":0},"eyebrows":{"color":0,"opacity":0,"style":0,"secondColor":0},"beard":{"color":0,"opacity":0,"style":0,"secondColor":0},"ageing":{"color":0,"opacity":0,"style":0,"secondColor":0},"chestHair":{"color":0,"opacity":0,"style":0,"secondColor":0},"sunDamage":{"color":0,"opacity":0,"style":0,"secondColor":0},"bodyBlemishes":{"color":0,"opacity":0,"style":0,"secondColor":0},"blemishes":{"color":0,"opacity":0,"style":0,"secondColor":0},"blush":{"color":0,"opacity":0,"style":0,"secondColor":0},"makeUp":{"color":0,"opacity":0,"style":0,"secondColor":0},"complexion":{"color":0,"opacity":0,"style":0,"secondColor":0},"lipstick":{"color":0,"opacity":0,"style":0,"secondColor":0}},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"model":"mp_m_freemode_01","faceFeatures":{"nosePeakHigh":0,"cheeksBoneWidth":0,"cheeksBoneHigh":0,"chinBoneLowering":0,"cheeksWidth":0,"chinBoneSize":0,"eyeBrownForward":0,"noseWidth":0,"noseBoneHigh":0,"chinBoneLenght":0,"jawBoneWidth":0,"nosePeakLowering":0,"nosePeakSize":0,"chinHole":0,"jawBoneBackSize":0,"eyesOpening":0,"lipsThickness":0,"eyeBrownHigh":0,"noseBoneTwist":0,"neckThickness":0},"hair":{"color":0,"texture":0,"style":0,"highlight":0},"headBlend":{"shapeFirst":0,"shapeSecond":0,"skinMix":0,"skinSecond":0,"shapeMix":0,"skinFirst":0,"thirdMix":0,"skinThird":0,"shapeThird":0}}', 1),
	(272296, 'UON85276', 'mp_m_freemode_01', '{"hair":{"color":0,"highlight":0,"texture":0,"style":0},"eyeColor":-1,"tattoos":[],"model":"mp_m_freemode_01","faceFeatures":{"jawBoneBackSize":0,"chinBoneSize":0,"noseBoneTwist":0,"eyesOpening":0,"nosePeakSize":0,"nosePeakLowering":0,"eyeBrownHigh":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"jawBoneWidth":0,"lipsThickness":0,"chinHole":0,"nosePeakHigh":0,"chinBoneLenght":0,"noseBoneHigh":0,"cheeksWidth":0,"eyeBrownForward":0,"noseWidth":0,"cheeksBoneHigh":0,"neckThickness":0},"headBlend":{"skinSecond":0,"thirdMix":0,"skinThird":0,"shapeMix":0,"shapeSecond":0,"skinMix":0,"skinFirst":0,"shapeThird":0,"shapeFirst":0},"headOverlays":{"sunDamage":{"style":0,"color":0,"opacity":0,"secondColor":0},"ageing":{"style":0,"color":0,"opacity":0,"secondColor":0},"complexion":{"style":0,"color":0,"opacity":0,"secondColor":0},"lipstick":{"style":0,"color":0,"opacity":0,"secondColor":0},"eyebrows":{"style":0,"color":0,"opacity":0,"secondColor":0},"bodyBlemishes":{"style":0,"color":0,"opacity":0,"secondColor":0},"moleAndFreckles":{"style":0,"color":0,"opacity":0,"secondColor":0},"beard":{"style":0,"color":0,"opacity":0,"secondColor":0},"blush":{"style":0,"color":0,"opacity":0,"secondColor":0},"makeUp":{"style":0,"color":0,"opacity":0,"secondColor":0},"chestHair":{"style":0,"color":0,"opacity":0,"secondColor":0},"blemishes":{"style":0,"color":0,"opacity":0,"secondColor":0}},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}]}', 1),
	(272299, 'BNN74169', 'mp_m_freemode_01', '{"eyeColor":-1,"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"headOverlays":{"makeUp":{"opacity":0,"style":0,"color":0,"secondColor":0},"eyebrows":{"opacity":0,"style":0,"color":0,"secondColor":0},"blemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"sunDamage":{"opacity":0,"style":0,"color":0,"secondColor":0},"ageing":{"opacity":0,"style":0,"color":0,"secondColor":0},"bodyBlemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"blush":{"opacity":0,"style":0,"color":0,"secondColor":0},"complexion":{"opacity":0,"style":0,"color":0,"secondColor":0},"lipstick":{"opacity":0,"style":0,"color":0,"secondColor":0},"beard":{"opacity":0,"style":0,"color":0,"secondColor":0},"chestHair":{"opacity":0,"style":0,"color":0,"secondColor":0},"moleAndFreckles":{"opacity":0,"style":0,"color":0,"secondColor":0}},"hair":{"texture":0,"style":14,"highlight":0,"color":0},"model":"mp_m_freemode_01","tattoos":[],"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":115},{"component_id":8,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":7},{"component_id":3,"texture":0,"drawable":19},{"component_id":4,"texture":0,"drawable":20},{"component_id":6,"texture":0,"drawable":7}],"faceFeatures":{"noseBoneTwist":0,"noseWidth":-0.3,"cheeksBoneWidth":0,"nosePeakHigh":0,"neckThickness":0,"jawBoneBackSize":0,"eyeBrownHigh":0,"cheeksBoneHigh":0,"nosePeakLowering":0,"jawBoneWidth":0,"chinBoneLenght":0,"chinBoneLowering":0,"eyeBrownForward":0,"chinBoneSize":0,"nosePeakSize":0,"lipsThickness":0,"noseBoneHigh":0,"cheeksWidth":0,"eyesOpening":0,"chinHole":0},"headBlend":{"shapeMix":0,"skinThird":0,"shapeThird":0,"shapeSecond":0,"skinSecond":0,"skinMix":0,"skinFirst":3,"shapeFirst":0,"thirdMix":0}}', 1),
	(272300, 'QOU80537', 'mp_f_freemode_01', '{"eyeColor":-1,"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"headOverlays":{"makeUp":{"opacity":0,"style":0,"color":0,"secondColor":0},"blush":{"opacity":0,"style":0,"color":0,"secondColor":0},"blemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"lipstick":{"opacity":0,"style":0,"color":0,"secondColor":0},"ageing":{"opacity":0,"style":0,"color":0,"secondColor":0},"bodyBlemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"beard":{"opacity":0,"style":0,"color":0,"secondColor":0},"complexion":{"opacity":0,"style":0,"color":0,"secondColor":0},"sunDamage":{"opacity":0,"style":0,"color":0,"secondColor":0},"chestHair":{"opacity":0,"style":0,"color":0,"secondColor":0},"eyebrows":{"opacity":0,"style":0,"color":0,"secondColor":0},"moleAndFreckles":{"opacity":0,"style":0,"color":0,"secondColor":0}},"hair":{"highlight":0,"style":21,"texture":0,"color":0},"model":"mp_f_freemode_01","tattoos":[],"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":0},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":0}],"faceFeatures":{"noseBoneTwist":0,"noseWidth":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"neckThickness":0,"jawBoneBackSize":0,"eyeBrownHigh":0,"chinBoneSize":0,"nosePeakLowering":0,"cheeksWidth":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"jawBoneWidth":0,"eyeBrownForward":0,"nosePeakSize":0,"lipsThickness":0,"noseBoneHigh":0,"chinBoneLowering":0,"eyesOpening":0,"chinHole":0},"headBlend":{"shapeMix":0.3,"skinThird":0,"shapeThird":0,"shapeSecond":21,"skinSecond":15,"skinMix":0.1,"skinFirst":20,"shapeFirst":45,"thirdMix":0}}', 0),
	(272306, 'QOU80537', 'mp_m_freemode_01', '{"eyeColor":-1,"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"headOverlays":{"makeUp":{"opacity":0,"style":0,"color":0,"secondColor":0},"blush":{"opacity":0,"style":0,"color":0,"secondColor":0},"blemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"lipstick":{"opacity":0,"style":0,"color":0,"secondColor":0},"ageing":{"opacity":0,"style":0,"color":0,"secondColor":0},"bodyBlemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"beard":{"opacity":0,"style":0,"color":0,"secondColor":0},"complexion":{"opacity":0,"style":0,"color":0,"secondColor":0},"sunDamage":{"opacity":0,"style":0,"color":0,"secondColor":0},"chestHair":{"opacity":0,"style":0,"color":0,"secondColor":0},"eyebrows":{"opacity":0,"style":0,"color":0,"secondColor":0},"moleAndFreckles":{"opacity":0,"style":0,"color":0,"secondColor":0}},"hair":{"highlight":0,"style":0,"texture":0,"color":0},"model":"mp_m_freemode_01","tattoos":[],"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":3},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":3,"drawable":0},{"texture":0,"component_id":4,"drawable":145},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":1},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":8,"drawable":15},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":397}],"faceFeatures":{"noseBoneTwist":0,"noseWidth":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"neckThickness":0,"jawBoneBackSize":0,"eyeBrownHigh":0,"chinBoneSize":0,"nosePeakLowering":0,"cheeksWidth":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"jawBoneWidth":0,"eyeBrownForward":0,"nosePeakSize":0,"lipsThickness":0,"noseBoneHigh":0,"chinBoneLowering":0,"eyesOpening":0,"chinHole":0},"headBlend":{"shapeMix":0,"skinThird":0,"shapeThird":0,"shapeSecond":0,"skinSecond":0,"skinMix":0,"skinFirst":0,"shapeFirst":0,"thirdMix":0}}', 1),
	(272307, 'XRS51596', 'mp_m_freemode_01', '{"eyeColor":-1,"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"headOverlays":{"makeUp":{"opacity":0,"style":0,"color":0,"secondColor":0},"eyebrows":{"opacity":0,"style":0,"color":0,"secondColor":0},"beard":{"opacity":0,"style":0,"color":0,"secondColor":0},"chestHair":{"opacity":0,"style":0,"color":0,"secondColor":0},"ageing":{"opacity":0,"style":0,"color":0,"secondColor":0},"bodyBlemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"blemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"complexion":{"opacity":0,"style":0,"color":0,"secondColor":0},"lipstick":{"opacity":0,"style":0,"color":0,"secondColor":0},"blush":{"opacity":0,"style":0,"color":0,"secondColor":0},"sunDamage":{"opacity":0,"style":0,"color":0,"secondColor":0},"moleAndFreckles":{"opacity":0,"style":0,"color":0,"secondColor":0}},"hair":{"highlight":0,"style":0,"color":0,"texture":0},"model":"mp_m_freemode_01","tattoos":[],"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"faceFeatures":{"noseBoneTwist":0,"noseWidth":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"neckThickness":0,"jawBoneBackSize":0,"eyeBrownHigh":0,"cheeksBoneHigh":0,"jawBoneWidth":0,"chinBoneLowering":0,"chinBoneLenght":0,"eyeBrownForward":0,"eyesOpening":0,"nosePeakLowering":0,"nosePeakSize":0,"lipsThickness":0,"noseBoneHigh":0,"cheeksWidth":0,"chinBoneSize":0,"chinHole":0},"headBlend":{"shapeMix":0,"skinThird":0,"shapeThird":0,"shapeSecond":0,"skinSecond":0,"skinMix":0,"skinFirst":0,"shapeFirst":0,"thirdMix":0}}', 1),
	(272309, 'RST11039', 'mp_m_freemode_01', '{"headOverlays":{"chestHair":{"style":0,"color":0,"secondColor":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"secondColor":0,"opacity":0},"blemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"sunDamage":{"style":0,"color":0,"secondColor":0,"opacity":0},"complexion":{"style":0,"color":0,"secondColor":0,"opacity":0},"eyebrows":{"style":0,"color":0,"secondColor":0,"opacity":0},"beard":{"style":0,"color":0,"secondColor":0,"opacity":0},"makeUp":{"style":0,"color":0,"secondColor":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"lipstick":{"style":0,"color":0,"secondColor":0,"opacity":0},"blush":{"style":0,"color":0,"secondColor":0,"opacity":0},"ageing":{"style":0,"color":0,"secondColor":0,"opacity":0}},"hair":{"color":0,"texture":0,"highlight":0,"style":0},"model":"mp_m_freemode_01","headBlend":{"skinMix":0,"shapeThird":0,"thirdMix":0,"shapeMix":0,"skinSecond":0,"skinThird":0,"shapeSecond":0,"skinFirst":0,"shapeFirst":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"eyeColor":-1,"faceFeatures":{"eyesOpening":0,"chinBoneLenght":0,"noseBoneHigh":0,"eyeBrownForward":0,"cheeksWidth":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"noseWidth":0,"nosePeakHigh":0,"neckThickness":0,"chinHole":0,"lipsThickness":0,"chinBoneLowering":0,"nosePeakLowering":0,"noseBoneTwist":0,"jawBoneWidth":0,"chinBoneSize":0,"cheeksBoneWidth":0,"nosePeakSize":0,"eyeBrownHigh":0},"components":[{"drawable":0,"texture":0,"component_id":0},{"drawable":0,"texture":0,"component_id":2},{"drawable":0,"texture":0,"component_id":3},{"drawable":0,"texture":0,"component_id":4},{"drawable":0,"texture":0,"component_id":5},{"drawable":0,"texture":0,"component_id":6},{"drawable":0,"texture":0,"component_id":8},{"drawable":0,"texture":0,"component_id":9},{"drawable":0,"texture":0,"component_id":10},{"drawable":0,"texture":0,"component_id":11},{"drawable":0,"texture":0,"component_id":1},{"drawable":0,"texture":0,"component_id":7}],"tattoos":[]}', 1),
	(272310, 'DVD07998', 'mp_m_freemode_01', '{"headOverlays":{"chestHair":{"style":11,"color":61,"secondColor":0,"opacity":1},"moleAndFreckles":{"style":0,"color":0,"secondColor":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"sunDamage":{"style":0,"color":0,"secondColor":0,"opacity":0},"blemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"eyebrows":{"style":5,"color":61,"secondColor":0,"opacity":1},"beard":{"style":3,"color":61,"secondColor":0,"opacity":0.6},"makeUp":{"style":0,"color":0,"secondColor":0,"opacity":0},"complexion":{"style":0,"color":0,"secondColor":0,"opacity":0},"lipstick":{"style":0,"color":0,"secondColor":0,"opacity":0},"blush":{"style":0,"color":0,"secondColor":0,"opacity":0},"ageing":{"style":0,"color":0,"secondColor":0,"opacity":0}},"hair":{"color":61,"texture":0,"highlight":0,"style":57},"model":"mp_m_freemode_01","faceFeatures":{"eyesOpening":0.1,"chinBoneLenght":-1,"noseBoneHigh":1,"eyeBrownForward":-1,"cheeksWidth":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"noseWidth":-1,"nosePeakHigh":0,"chinBoneLowering":1,"lipsThickness":1,"chinHole":0.3,"cheeksBoneWidth":0,"nosePeakLowering":0,"noseBoneTwist":0,"jawBoneWidth":-1,"chinBoneSize":1,"eyeBrownHigh":0.4,"nosePeakSize":0,"neckThickness":0},"props":[{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":7},{"drawable":52,"texture":0,"prop_id":0},{"drawable":-1,"texture":0,"prop_id":6}],"eyeColor":2,"headBlend":{"skinMix":0,"skinFirst":0,"thirdMix":0,"shapeMix":0,"skinSecond":0,"skinThird":0,"shapeFirst":0,"shapeSecond":0,"shapeThird":0},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":49,"component_id":2,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":4,"component_id":7,"texture":0},{"drawable":89,"component_id":11,"texture":0},{"drawable":17,"component_id":3,"texture":0},{"drawable":10,"component_id":4,"texture":0},{"drawable":35,"component_id":1,"texture":0},{"drawable":127,"component_id":6,"texture":0},{"drawable":15,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":81,"component_id":5,"texture":0}],"tattoos":[]}', 1),
	(272311, 'HFZ11174', 'mp_m_freemode_01', '{"headOverlays":{"chestHair":{"style":0,"color":0,"secondColor":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"secondColor":0,"opacity":0},"blemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"complexion":{"style":0,"color":0,"secondColor":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"eyebrows":{"style":0,"color":0,"secondColor":0,"opacity":0},"beard":{"style":0,"color":0,"secondColor":0,"opacity":0},"makeUp":{"style":0,"color":0,"secondColor":0,"opacity":0},"sunDamage":{"style":0,"color":0,"secondColor":0,"opacity":0},"lipstick":{"style":0,"color":0,"secondColor":0,"opacity":0},"blush":{"style":0,"color":0,"secondColor":0,"opacity":0},"ageing":{"style":0,"color":0,"secondColor":0,"opacity":0}},"hair":{"texture":0,"color":0,"highlight":0,"style":0},"model":"mp_m_freemode_01","headBlend":{"skinMix":0,"shapeFirst":0,"thirdMix":0,"shapeMix":0,"skinSecond":0,"skinThird":0,"shapeThird":0,"shapeSecond":0,"skinFirst":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"eyeColor":-1,"faceFeatures":{"eyesOpening":0,"chinHole":0,"noseBoneHigh":0,"eyeBrownForward":0,"cheeksWidth":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"noseWidth":0,"nosePeakHigh":0,"neckThickness":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"chinBoneSize":0,"nosePeakLowering":0,"noseBoneTwist":0,"jawBoneWidth":0,"eyeBrownHigh":0,"lipsThickness":0,"nosePeakSize":0,"chinBoneLenght":0},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"tattoos":[]}', 1),
	(272312, 'WGI37560', 'mp_m_freemode_01', '{"headOverlays":{"chestHair":{"opacity":0,"color":0,"secondColor":0,"style":0},"moleAndFreckles":{"opacity":0,"color":0,"secondColor":0,"style":0},"bodyBlemishes":{"opacity":0,"color":0,"secondColor":0,"style":0},"sunDamage":{"opacity":0,"color":0,"secondColor":0,"style":0},"complexion":{"opacity":0,"color":0,"secondColor":0,"style":0},"blemishes":{"opacity":0,"color":0,"secondColor":0,"style":0},"beard":{"opacity":0,"color":0,"secondColor":0,"style":0},"makeUp":{"opacity":0,"color":0,"secondColor":0,"style":0},"eyebrows":{"opacity":0,"color":0,"secondColor":0,"style":0},"lipstick":{"opacity":0,"color":0,"secondColor":0,"style":0},"blush":{"opacity":0,"color":0,"secondColor":0,"style":0},"ageing":{"opacity":0,"color":0,"secondColor":0,"style":0}},"hair":{"color":0,"texture":0,"highlight":0,"style":0},"model":"mp_m_freemode_01","faceFeatures":{"eyesOpening":0,"chinBoneLenght":0,"noseBoneHigh":0,"eyeBrownForward":0,"cheeksWidth":0,"jawBoneBackSize":0,"cheeksBoneHigh":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"chinBoneLowering":0,"chinHole":0,"chinBoneSize":0,"lipsThickness":0,"nosePeakLowering":0,"noseBoneTwist":0,"jawBoneWidth":0,"eyeBrownHigh":0,"neckThickness":0,"nosePeakSize":0,"noseWidth":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"eyeColor":-1,"headBlend":{"skinMix":0,"skinFirst":0,"thirdMix":0,"shapeMix":0,"skinSecond":0,"skinThird":0,"shapeSecond":0,"shapeThird":0,"shapeFirst":0},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":177,"component_id":7,"texture":0},{"drawable":523,"component_id":11,"texture":0},{"drawable":206,"component_id":8,"texture":0},{"drawable":192,"component_id":4,"texture":0},{"drawable":144,"component_id":6,"texture":0},{"drawable":192,"component_id":10,"texture":0},{"drawable":213,"component_id":3,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":9,"texture":0}],"tattoos":[]}', 1),
	(272313, 'JYB49700', 'mp_m_freemode_01', '{"headOverlays":{"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"beard":{"opacity":1,"secondColor":0,"style":7,"color":61},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":1,"secondColor":0,"style":12,"color":3}},"faceFeatures":{"chinHole":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"cheeksBoneHigh":0,"eyeBrownForward":0,"noseWidth":0,"chinBoneSize":0,"jawBoneWidth":0,"noseBoneTwist":0,"neckThickness":0,"nosePeakLowering":0,"eyesOpening":0,"lipsThickness":0,"noseBoneHigh":0,"jawBoneBackSize":0,"chinBoneLowering":0,"chinBoneLenght":0,"cheeksWidth":0,"eyeBrownHigh":0,"nosePeakSize":0},"tattoos":[],"hair":{"texture":0,"highlight":3,"style":8,"color":3},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":8,"drawable":15,"texture":0},{"component_id":11,"drawable":480,"texture":0},{"component_id":4,"drawable":177,"texture":0},{"component_id":6,"drawable":131,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0}],"headBlend":{"skinThird":0,"thirdMix":0,"shapeFirst":45,"shapeSecond":45,"skinFirst":0,"skinSecond":37,"shapeMix":1,"shapeThird":0,"skinMix":1},"model":"mp_m_freemode_01","eyeColor":-1,"props":[{"texture":-1,"drawable":-1,"prop_id":7},{"texture":-1,"drawable":211,"prop_id":0},{"texture":2,"drawable":18,"prop_id":1},{"texture":0,"drawable":32,"prop_id":2},{"texture":0,"drawable":-1,"prop_id":6}]}', 1),
	(272314, 'XDL74210', 'mp_m_freemode_01', '{"headOverlays":{"blemishes":{"style":0,"secondColor":0,"opacity":0,"color":0},"ageing":{"style":0,"secondColor":0,"opacity":0,"color":0},"beard":{"style":0,"secondColor":0,"opacity":0,"color":0},"blush":{"style":0,"secondColor":0,"opacity":0,"color":0},"bodyBlemishes":{"style":0,"secondColor":0,"opacity":0,"color":0},"sunDamage":{"style":0,"secondColor":0,"opacity":0,"color":0},"moleAndFreckles":{"style":0,"secondColor":0,"opacity":0,"color":0},"chestHair":{"style":0,"secondColor":0,"opacity":0,"color":0},"complexion":{"style":0,"secondColor":0,"opacity":0,"color":0},"lipstick":{"style":0,"secondColor":0,"opacity":0,"color":0},"makeUp":{"style":0,"secondColor":0,"opacity":0,"color":0},"eyebrows":{"style":0,"secondColor":0,"opacity":0,"color":0}},"faceFeatures":{"chinHole":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"cheeksBoneHigh":0,"eyeBrownForward":0,"noseWidth":0,"chinBoneSize":0,"eyeBrownHigh":0,"noseBoneTwist":0,"neckThickness":0,"nosePeakLowering":0,"eyesOpening":0,"jawBoneBackSize":0,"noseBoneHigh":0,"jawBoneWidth":0,"chinBoneLenght":0,"chinBoneLowering":0,"cheeksWidth":0,"lipsThickness":0,"nosePeakSize":0},"tattoos":[],"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"eyeColor":-1,"headBlend":{"skinThird":0,"thirdMix":0,"shapeFirst":0,"shapeSecond":0,"skinFirst":0,"skinSecond":0,"shapeMix":0,"shapeThird":0,"skinMix":0},"model":"mp_m_freemode_01","hair":{"highlight":0,"texture":0,"style":0,"color":0},"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}]}', 1),
	(272315, 'WJC37394', 'mp_m_freemode_01', '{"headOverlays":{"blemishes":{"style":0,"secondColor":0,"opacity":0,"color":0},"ageing":{"style":0,"secondColor":0,"opacity":0,"color":0},"beard":{"style":0,"secondColor":0,"opacity":0,"color":0},"blush":{"style":0,"secondColor":0,"opacity":0,"color":0},"chestHair":{"style":0,"secondColor":0,"opacity":0,"color":0},"sunDamage":{"style":0,"secondColor":0,"opacity":0,"color":0},"moleAndFreckles":{"style":0,"secondColor":0,"opacity":0,"color":0},"complexion":{"style":0,"secondColor":0,"opacity":0,"color":0},"bodyBlemishes":{"style":0,"secondColor":0,"opacity":0,"color":0},"lipstick":{"style":0,"secondColor":0,"opacity":0,"color":0},"makeUp":{"style":0,"secondColor":0,"opacity":0,"color":0},"eyebrows":{"style":0,"secondColor":0,"opacity":0,"color":0}},"faceFeatures":{"chinHole":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"cheeksBoneHigh":0,"eyeBrownForward":0,"noseWidth":0,"chinBoneSize":0,"lipsThickness":0,"noseBoneTwist":0,"nosePeakLowering":0,"jawBoneWidth":0,"eyesOpening":0,"eyeBrownHigh":0,"jawBoneBackSize":0,"chinBoneLowering":0,"neckThickness":0,"chinBoneLenght":0,"cheeksWidth":0,"noseBoneHigh":0,"nosePeakSize":0},"tattoos":[],"hair":{"style":0,"highlight":0,"texture":0,"color":0},"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":6,"component_id":11},{"texture":15,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":3,"component_id":5},{"texture":0,"drawable":2,"component_id":4},{"texture":0,"drawable":3,"component_id":6}],"headBlend":{"skinThird":0,"thirdMix":0,"shapeFirst":0,"shapeSecond":0,"skinFirst":0,"skinSecond":0,"shapeMix":0,"shapeThird":0,"skinMix":0},"model":"mp_m_freemode_01","eyeColor":-1,"props":[{"texture":-1,"prop_id":0,"drawable":-1},{"texture":-1,"prop_id":1,"drawable":-1},{"texture":-1,"prop_id":2,"drawable":-1},{"texture":-1,"prop_id":6,"drawable":-1},{"texture":-1,"prop_id":7,"drawable":-1}]}', 1),
	(272317, 'FJY17019', 'mp_m_freemode_01', '{"headOverlays":{"blemishes":{"style":0,"secondColor":0,"opacity":0,"color":0},"ageing":{"style":0,"secondColor":0,"opacity":0,"color":0},"beard":{"style":0,"secondColor":0,"opacity":0,"color":0},"blush":{"style":0,"secondColor":0,"opacity":0,"color":0},"bodyBlemishes":{"style":0,"secondColor":0,"opacity":0,"color":0},"sunDamage":{"style":0,"secondColor":0,"opacity":0,"color":0},"moleAndFreckles":{"style":0,"secondColor":0,"opacity":0,"color":0},"chestHair":{"style":0,"secondColor":0,"opacity":0,"color":0},"complexion":{"style":0,"secondColor":0,"opacity":0,"color":0},"lipstick":{"style":0,"secondColor":0,"opacity":0,"color":0},"makeUp":{"style":0,"secondColor":0,"opacity":0,"color":0},"eyebrows":{"style":30,"secondColor":0,"opacity":1,"color":61}},"faceFeatures":{"chinHole":0,"cheeksBoneWidth":0,"nosePeakHigh":0,"cheeksBoneHigh":0,"eyeBrownForward":0,"nosePeakLowering":0,"chinBoneSize":0,"jawBoneBackSize":0,"noseBoneTwist":0,"chinBoneLowering":0,"noseBoneHigh":0,"eyesOpening":0,"jawBoneWidth":0,"eyeBrownHigh":0,"noseWidth":0,"cheeksWidth":0,"chinBoneLenght":0,"neckThickness":0,"lipsThickness":0,"nosePeakSize":0},"tattoos":[],"hair":{"texture":0,"highlight":0,"style":1,"color":0},"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":1,"component_id":2},{"texture":10,"drawable":6,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":134,"component_id":6},{"texture":1,"drawable":54,"component_id":7},{"texture":0,"drawable":15,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":2,"drawable":5,"component_id":11},{"texture":0,"drawable":5,"component_id":3}],"headBlend":{"skinThird":0,"thirdMix":0,"shapeFirst":0,"shapeSecond":0,"skinFirst":0,"skinSecond":3,"shapeMix":0,"shapeThird":0,"skinMix":1},"model":"mp_m_freemode_01","eyeColor":0,"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}]}', 1),
	(272318, 'JAX11032', 'mp_m_freemode_01', '{"headOverlays":{"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":1,"secondColor":0,"style":12,"color":0}},"faceFeatures":{"chinHole":0,"cheeksBoneWidth":1,"nosePeakHigh":0,"cheeksBoneHigh":-0.7,"eyeBrownForward":0,"nosePeakLowering":0,"chinBoneSize":0,"noseBoneHigh":0.2,"noseBoneTwist":1,"neckThickness":0,"noseWidth":-1,"eyesOpening":0,"jawBoneBackSize":-1,"eyeBrownHigh":0,"lipsThickness":0,"chinBoneLowering":0,"chinBoneLenght":0,"cheeksWidth":1,"jawBoneWidth":-1,"nosePeakSize":0},"tattoos":[],"eyeColor":-1,"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"headBlend":{"skinThird":0,"thirdMix":0,"shapeFirst":25,"shapeSecond":0,"skinFirst":0,"skinSecond":0,"shapeMix":0,"shapeThird":0,"skinMix":0},"model":"mp_m_freemode_01","hair":{"highlight":56,"style":79,"texture":0,"color":56},"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}]}', 1),
	(272320, 'GYY38354', 'mp_m_freemode_01', '{"model":"mp_m_freemode_01","components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":15,"component_id":8},{"texture":0,"drawable":1192,"component_id":11}],"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"headOverlays":{"eyebrows":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0},"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0}},"eyeColor":-1,"tattoos":[],"hair":{"texture":0,"style":567,"color":0,"highlight":0},"faceFeatures":{"jawBoneWidth":0,"eyeBrownHigh":0,"nosePeakHigh":0,"noseBoneTwist":0,"chinHole":0,"noseWidth":0,"nosePeakSize":0,"eyesOpening":0,"chinBoneLowering":0,"noseBoneHigh":0,"nosePeakLowering":0,"eyeBrownForward":0,"neckThickness":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"cheeksWidth":0,"cheeksBoneHigh":0,"lipsThickness":0,"chinBoneSize":0,"jawBoneBackSize":0},"headBlend":{"skinSecond":0,"thirdMix":0,"skinMix":0,"shapeMix":0,"shapeThird":0,"skinFirst":0,"shapeFirst":0,"skinThird":0,"shapeSecond":0}}', 1),
	(272321, 'FNU16178', 'mp_m_freemode_01', '{"model":"mp_m_freemode_01","components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":21,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":11}],"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"headOverlays":{"blush":{"color":0,"secondColor":0,"opacity":0,"style":0},"ageing":{"color":0,"secondColor":0,"opacity":0,"style":0},"bodyBlemishes":{"color":0,"secondColor":0,"opacity":0,"style":0},"makeUp":{"color":0,"secondColor":0,"opacity":0,"style":0},"chestHair":{"color":0,"secondColor":0,"opacity":0,"style":0},"eyebrows":{"color":0,"secondColor":0,"opacity":0,"style":0},"complexion":{"color":0,"secondColor":0,"opacity":0,"style":0},"moleAndFreckles":{"color":0,"secondColor":0,"opacity":0,"style":0},"sunDamage":{"color":0,"secondColor":0,"opacity":0,"style":0},"lipstick":{"color":0,"secondColor":0,"opacity":0,"style":0},"blemishes":{"color":0,"secondColor":0,"opacity":0,"style":0},"beard":{"color":0,"secondColor":0,"opacity":0,"style":0}},"eyeColor":-1,"tattoos":[],"hair":{"texture":0,"style":0,"highlight":0,"color":0},"faceFeatures":{"jawBoneWidth":0,"eyeBrownHigh":0,"nosePeakHigh":0,"chinBoneLenght":0,"chinHole":0,"noseWidth":0,"nosePeakSize":0,"eyesOpening":0,"chinBoneLowering":0,"noseBoneHigh":0,"nosePeakLowering":0,"lipsThickness":0,"neckThickness":0,"cheeksBoneWidth":0,"cheeksWidth":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"noseBoneTwist":0,"chinBoneSize":0,"eyeBrownForward":0},"headBlend":{"skinSecond":0,"skinThird":0,"skinMix":0,"shapeMix":0,"shapeThird":0,"skinFirst":0,"shapeFirst":0,"shapeSecond":0,"thirdMix":0}}', 1),
	(272322, 'QNB34275', 'mp_m_freemode_01', '{"model":"mp_m_freemode_01","components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":10},{"texture":2,"drawable":4,"component_id":8},{"texture":2,"drawable":20,"component_id":11},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":50,"component_id":3},{"texture":0,"drawable":24,"component_id":4},{"texture":0,"drawable":10,"component_id":6}],"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"headOverlays":{"eyebrows":{"opacity":1,"secondColor":0,"color":0,"style":33},"ageing":{"opacity":0,"secondColor":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"makeUp":{"opacity":0,"secondColor":0,"color":0,"style":0},"chestHair":{"opacity":0,"secondColor":0,"color":0,"style":0},"beard":{"opacity":1,"secondColor":0,"color":0,"style":3},"complexion":{"opacity":0,"secondColor":0,"color":0,"style":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"color":0,"style":0},"sunDamage":{"opacity":0,"secondColor":0,"color":0,"style":0},"blush":{"opacity":0,"secondColor":0,"color":0,"style":0},"lipstick":{"opacity":0,"secondColor":0,"color":0,"style":0},"blemishes":{"opacity":0,"secondColor":0,"color":0,"style":0}},"eyeColor":-1,"tattoos":[],"headBlend":{"skinSecond":0,"skinThird":0,"skinMix":0,"shapeMix":0,"shapeThird":0,"skinFirst":0,"shapeFirst":2,"shapeSecond":0,"thirdMix":0},"faceFeatures":{"jawBoneWidth":0,"cheeksBoneHigh":0,"nosePeakHigh":0,"chinBoneLenght":0,"chinHole":0,"noseWidth":0,"nosePeakSize":0,"eyesOpening":0,"chinBoneLowering":0,"noseBoneHigh":0,"nosePeakLowering":0,"eyeBrownForward":0,"neckThickness":0,"cheeksBoneWidth":0,"chinBoneSize":0,"jawBoneBackSize":0,"noseBoneTwist":0,"lipsThickness":0,"cheeksWidth":0,"eyeBrownHigh":0},"hair":{"texture":0,"style":1,"color":0,"highlight":0}}', 1),
	(272323, 'ATL68952', 'mp_m_freemode_01', '{"faceFeatures":{"chinBoneLenght":0,"nosePeakLowering":0,"noseWidth":0,"neckThickness":0,"chinBoneSize":0,"eyeBrownHigh":0,"eyeBrownForward":0,"eyesOpening":0,"nosePeakSize":0,"noseBoneTwist":0,"cheeksBoneHigh":0,"cheeksWidth":0,"chinHole":0,"noseBoneHigh":0,"lipsThickness":0,"jawBoneWidth":0,"jawBoneBackSize":0,"chinBoneLowering":0,"nosePeakHigh":0,"cheeksBoneWidth":0},"hair":{"texture":0,"highlight":0,"color":0,"style":34},"headOverlays":{"moleAndFreckles":{"opacity":0,"secondColor":0,"color":0,"style":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"blush":{"opacity":0,"secondColor":0,"color":0,"style":0},"complexion":{"opacity":0,"secondColor":0,"color":0,"style":0},"lipstick":{"opacity":0,"secondColor":0,"color":0,"style":0},"makeUp":{"opacity":0,"secondColor":0,"color":0,"style":0},"blemishes":{"opacity":0,"secondColor":0,"color":0,"style":0},"chestHair":{"opacity":0,"secondColor":0,"color":0,"style":0},"beard":{"opacity":0,"secondColor":0,"color":0,"style":0},"sunDamage":{"opacity":0,"secondColor":0,"color":0,"style":0},"eyebrows":{"opacity":0,"secondColor":0,"color":0,"style":0},"ageing":{"opacity":0,"secondColor":0,"color":0,"style":0}},"headBlend":{"thirdMix":0,"skinMix":0,"shapeThird":0,"skinSecond":0,"skinFirst":2,"shapeSecond":6,"shapeMix":0,"skinThird":0,"shapeFirst":21},"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"eyeColor":-1,"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}],"model":"mp_m_freemode_01","tattoos":[]}', 1),
	(272324, 'HLY83785', 'mp_m_freemode_01', '{"faceFeatures":{"chinBoneLenght":0,"chinHole":0,"noseWidth":0,"neckThickness":0,"chinBoneSize":0,"eyeBrownHigh":0,"eyeBrownForward":0,"cheeksBoneWidth":0,"nosePeakSize":0,"noseBoneTwist":0,"jawBoneWidth":0,"cheeksWidth":0,"jawBoneBackSize":0,"noseBoneHigh":0,"lipsThickness":0,"nosePeakLowering":0,"eyesOpening":0,"chinBoneLowering":0,"nosePeakHigh":0,"cheeksBoneHigh":0},"hair":{"style":0,"highlight":0,"color":0,"texture":0},"headOverlays":{"moleAndFreckles":{"secondColor":0,"opacity":0,"color":0,"style":0},"bodyBlemishes":{"secondColor":0,"opacity":0,"color":0,"style":0},"blush":{"secondColor":0,"opacity":0,"color":0,"style":0},"complexion":{"secondColor":0,"opacity":0,"color":0,"style":0},"lipstick":{"secondColor":0,"opacity":0,"color":0,"style":0},"beard":{"secondColor":0,"opacity":0,"color":0,"style":0},"blemishes":{"secondColor":0,"opacity":0,"color":0,"style":0},"chestHair":{"secondColor":0,"opacity":0,"color":0,"style":0},"makeUp":{"secondColor":0,"opacity":0,"color":0,"style":0},"sunDamage":{"secondColor":0,"opacity":0,"color":0,"style":0},"eyebrows":{"secondColor":0,"opacity":0,"color":0,"style":0},"ageing":{"secondColor":0,"opacity":0,"color":0,"style":0}},"tattoos":[],"props":[{"prop_id":0,"drawable":-1,"texture":-1},{"prop_id":1,"drawable":-1,"texture":-1},{"prop_id":2,"drawable":-1,"texture":-1},{"prop_id":6,"drawable":-1,"texture":-1},{"prop_id":7,"drawable":-1,"texture":-1}],"eyeColor":-1,"headBlend":{"skinFirst":0,"shapeSecond":0,"skinMix":0,"skinSecond":0,"shapeThird":0,"shapeMix":0,"thirdMix":0,"skinThird":0,"shapeFirst":0},"model":"mp_m_freemode_01","components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}]}', 1),
	(272328, 'JND68700', 'mp_f_freemode_01', '{"tattoos":[],"props":[{"drawable":6,"prop_id":0,"texture":2},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1},{"drawable":4,"prop_id":1,"texture":0}],"headBlend":{"skinMix":0.1,"shapeThird":0,"shapeMix":0.3,"thirdMix":0,"skinThird":0,"shapeSecond":21,"skinSecond":15,"shapeFirst":45,"skinFirst":20},"hair":{"style":59,"texture":0,"highlight":0,"color":46},"model":"mp_f_freemode_01","headOverlays":{"eyebrows":{"secondColor":0,"style":1,"color":0,"opacity":1},"sunDamage":{"secondColor":0,"style":0,"color":0,"opacity":0},"ageing":{"secondColor":0,"style":0,"color":0,"opacity":0},"chestHair":{"secondColor":0,"style":0,"color":0,"opacity":0},"blush":{"secondColor":0,"style":3,"color":0,"opacity":1},"beard":{"secondColor":0,"style":0,"color":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"style":0,"color":0,"opacity":0},"blemishes":{"secondColor":0,"style":0,"color":0,"opacity":0},"makeUp":{"secondColor":0,"style":0,"color":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"style":0,"color":0,"opacity":0},"lipstick":{"secondColor":0,"style":0,"color":24,"opacity":1},"complexion":{"secondColor":0,"style":0,"color":0,"opacity":0}},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":2,"drawable":59},{"texture":0,"component_id":3,"drawable":15},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":6,"drawable":0},{"texture":0,"component_id":7,"drawable":1},{"texture":0,"component_id":8,"drawable":15},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":11,"drawable":26},{"texture":0,"component_id":4,"drawable":23}],"eyeColor":2,"faceFeatures":{"cheeksBoneWidth":0,"cheeksBoneHigh":0,"nosePeakLowering":0,"nosePeakSize":0,"cheeksWidth":0,"noseBoneHigh":0,"jawBoneBackSize":0,"chinBoneSize":0,"noseBoneTwist":0,"chinHole":0,"eyesOpening":0,"neckThickness":0,"noseWidth":0,"lipsThickness":0,"nosePeakHigh":0,"eyeBrownHigh":0,"chinBoneLenght":0,"jawBoneWidth":0,"chinBoneLowering":0,"eyeBrownForward":0}}', 1),
	(272329, 'KNK63128', 'mp_m_freemode_01', '{"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}],"faceFeatures":{"cheeksWidth":0,"lipsThickness":0,"neckThickness":0,"chinBoneSize":0,"jawBoneBackSize":0,"cheeksBoneWidth":0,"eyeBrownForward":0,"nosePeakSize":0,"noseBoneHigh":0,"chinBoneLowering":0,"nosePeakHigh":0,"chinBoneLenght":0,"nosePeakLowering":0,"chinHole":0,"noseWidth":0,"eyeBrownHigh":0,"eyesOpening":0,"noseBoneTwist":0,"jawBoneWidth":0,"cheeksBoneHigh":0},"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"headBlend":{"thirdMix":0,"skinSecond":0,"skinThird":0,"shapeThird":0,"shapeSecond":0,"skinFirst":0,"shapeMix":0,"shapeFirst":0,"skinMix":0},"eyeColor":-1,"headOverlays":{"beard":{"style":0,"opacity":0,"secondColor":0,"color":0},"blush":{"style":0,"opacity":0,"secondColor":0,"color":0},"moleAndFreckles":{"style":0,"opacity":0,"secondColor":0,"color":0},"bodyBlemishes":{"style":0,"opacity":0,"secondColor":0,"color":0},"makeUp":{"style":0,"opacity":0,"secondColor":0,"color":0},"chestHair":{"style":0,"opacity":0,"secondColor":0,"color":0},"lipstick":{"style":0,"opacity":0,"secondColor":0,"color":0},"ageing":{"style":0,"opacity":0,"secondColor":0,"color":0},"eyebrows":{"style":0,"opacity":0,"secondColor":0,"color":0},"blemishes":{"style":0,"opacity":0,"secondColor":0,"color":0},"complexion":{"style":0,"opacity":0,"secondColor":0,"color":0},"sunDamage":{"style":0,"opacity":0,"secondColor":0,"color":0}},"tattoos":[],"hair":{"highlight":0,"style":0,"texture":0,"color":0},"model":"mp_m_freemode_01"}', 1),
	(272330, 'KWO81231', 'mp_m_freemode_01', '{"model":"mp_m_freemode_01","hair":{"texture":0,"highlight":0,"style":0,"color":0},"props":[{"texture":-1,"drawable":-1,"prop_id":0},{"texture":-1,"drawable":-1,"prop_id":1},{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":6},{"texture":-1,"drawable":-1,"prop_id":7}],"eyeColor":-1,"headBlend":{"skinSecond":0,"thirdMix":0,"shapeMix":0,"shapeFirst":0,"skinMix":0,"shapeThird":0,"shapeSecond":0,"skinThird":0,"skinFirst":0},"headOverlays":{"sunDamage":{"secondColor":0,"color":0,"style":0,"opacity":0},"ageing":{"secondColor":0,"color":0,"style":0,"opacity":0},"chestHair":{"secondColor":0,"color":0,"style":0,"opacity":0},"blush":{"secondColor":0,"color":0,"style":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"color":0,"style":0,"opacity":0},"makeUp":{"secondColor":0,"color":0,"style":0,"opacity":0},"lipstick":{"secondColor":0,"color":0,"style":0,"opacity":0},"blemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"complexion":{"secondColor":0,"color":0,"style":0,"opacity":0},"eyebrows":{"secondColor":0,"color":0,"style":0,"opacity":0},"beard":{"secondColor":0,"color":0,"style":0,"opacity":0}},"faceFeatures":{"cheeksWidth":0,"nosePeakHigh":0,"neckThickness":0,"noseWidth":0,"chinBoneLenght":0,"eyeBrownForward":0,"noseBoneHigh":0,"eyesOpening":0,"chinHole":0,"cheeksBoneHigh":0,"jawBoneBackSize":0,"jawBoneWidth":0,"chinBoneSize":0,"nosePeakSize":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"nosePeakLowering":0,"noseBoneTwist":0,"lipsThickness":0,"eyeBrownHigh":0},"tattoos":[],"components":[{"texture":0,"drawable":0,"component_id":0},{"texture":0,"drawable":0,"component_id":1},{"texture":0,"drawable":0,"component_id":2},{"texture":0,"drawable":0,"component_id":3},{"texture":0,"drawable":0,"component_id":4},{"texture":0,"drawable":0,"component_id":5},{"texture":0,"drawable":0,"component_id":6},{"texture":0,"drawable":0,"component_id":7},{"texture":0,"drawable":0,"component_id":8},{"texture":0,"drawable":0,"component_id":9},{"texture":0,"drawable":0,"component_id":10},{"texture":0,"drawable":0,"component_id":11}]}', 1),
	(272334, 'WNE62099', 'mp_m_freemode_01', '{"faceFeatures":{"nosePeakHigh":0,"chinHole":0,"noseWidth":0,"eyeBrownHigh":0,"jawBoneWidth":0,"nosePeakLowering":0,"cheeksBoneHigh":0,"noseBoneHigh":0,"cheeksBoneWidth":0,"neckThickness":0,"noseBoneTwist":0,"eyeBrownForward":0,"chinBoneLowering":0,"eyesOpening":0,"nosePeakSize":0,"chinBoneLenght":0,"lipsThickness":0,"jawBoneBackSize":0,"chinBoneSize":0,"cheeksWidth":0},"props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}],"eyeColor":-1,"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}],"tattoos":[],"model":"mp_m_freemode_01","headBlend":{"skinFirst":0,"shapeThird":0,"skinMix":0,"shapeSecond":0,"skinSecond":0,"skinThird":0,"thirdMix":0,"shapeFirst":0,"shapeMix":0},"headOverlays":{"ageing":{"opacity":0,"style":0,"color":0,"secondColor":0},"blush":{"opacity":0,"style":0,"color":0,"secondColor":0},"complexion":{"opacity":0,"style":0,"color":0,"secondColor":0},"makeUp":{"opacity":0,"style":0,"color":0,"secondColor":0},"moleAndFreckles":{"opacity":0,"style":0,"color":0,"secondColor":0},"sunDamage":{"opacity":0,"style":0,"color":0,"secondColor":0},"beard":{"opacity":0,"style":0,"color":0,"secondColor":0},"chestHair":{"opacity":0,"style":0,"color":0,"secondColor":0},"bodyBlemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"blemishes":{"opacity":0,"style":0,"color":0,"secondColor":0},"eyebrows":{"opacity":0,"style":0,"color":0,"secondColor":0},"lipstick":{"opacity":0,"style":0,"color":0,"secondColor":0}},"hair":{"texture":0,"style":0,"color":0,"highlight":0}}', 1),
	(272336, 'EIH18257', 'mp_m_freemode_01', '{"faceFeatures":{"nosePeakHigh":-1,"chinHole":0,"noseWidth":1,"eyeBrownHigh":1,"chinBoneSize":-1,"nosePeakLowering":1,"cheeksBoneHigh":-1,"noseBoneHigh":-1,"cheeksBoneWidth":-1,"neckThickness":1,"noseBoneTwist":0,"eyeBrownForward":-1,"chinBoneLowering":1,"eyesOpening":1,"nosePeakSize":1,"chinBoneLenght":-1,"lipsThickness":1,"jawBoneBackSize":-1,"cheeksWidth":1,"jawBoneWidth":-1},"props":[{"prop_id":0,"texture":0,"drawable":2},{"prop_id":1,"texture":1,"drawable":1},{"prop_id":2,"texture":0,"drawable":0},{"prop_id":6,"texture":0,"drawable":0},{"prop_id":7,"texture":0,"drawable":6}],"eyeColor":0,"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":17},{"component_id":3,"texture":0,"drawable":15},{"component_id":4,"texture":1,"drawable":43},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":10},{"component_id":7,"texture":0,"drawable":7},{"component_id":8,"texture":0,"drawable":15},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":1,"drawable":11}],"hair":{"color":61,"texture":0,"style":17,"highlight":0},"headBlend":{"skinFirst":0,"shapeThird":0,"skinMix":0,"thirdMix":0,"skinSecond":0,"skinThird":0,"shapeSecond":6,"shapeMix":0.88,"shapeFirst":4},"tattoos":{"ZONE_RIGHT_ARM":[{"hashFemale":"MP_Christmas2017_Tattoo_006_F","collection":"mpchristmas2017_overlays","name":"TAT_H27_006","opacity":1,"hashMale":"MP_Christmas2017_Tattoo_006_M","label":"Medusa","zone":"ZONE_RIGHT_ARM"}],"ZONE_HEAD":[{"hashFemale":"MP_MP_Biker_Tat_038_F","collection":"mpbiker_overlays","name":"TAT_BI_038","opacity":1,"hashMale":"MP_MP_Biker_Tat_038_M","label":"FTW","zone":"ZONE_HEAD"},{"hashFemale":"mpHeist3_Tat_000_F","collection":"mpheist3_overlays","name":"TAT_H3_000","opacity":0.1,"hashMale":"mpHeist3_Tat_000_M","label":"Five Stars","zone":"ZONE_HEAD"},{"hashFemale":"mpHeist3_Tat_014_F","collection":"mpheist3_overlays","name":"TAT_H3_014","opacity":0.1,"hashMale":"mpHeist3_Tat_014_M","label":"LS Wings","zone":"ZONE_HEAD"},{"hashFemale":"MP_MP_Stunt_tat_004_F","collection":"mpstunt_overlays","name":"TAT_ST_004","opacity":0.1,"hashMale":"MP_MP_Stunt_tat_004_M","label":"Scorpion","zone":"ZONE_HEAD"},{"hashFemale":"MP_Christmas3_Tat_012_F","collection":"mpchristmas3_overlays","name":"TAT_X6_012","opacity":0.1,"hashMale":"MP_Christmas3_Tat_012_M","label":"Skull Jester","zone":"ZONE_HEAD"},{"hashFemale":"MP_Christmas3_Tat_013_F","collection":"mpchristmas3_overlays","name":"TAT_X6_013","opacity":1,"hashMale":"MP_Christmas3_Tat_013_M","label":"Budonk-adonk!","zone":"ZONE_HEAD"}],"ZONE_LEFT_ARM":[{"hashFemale":"MP_Airraces_Tattoo_003_F","collection":"mpairraces_overlays","name":"TAT_AR_003","opacity":1,"hashMale":"MP_Airraces_Tattoo_003_M","label":"Toxic Trails","zone":"ZONE_LEFT_ARM"}],"ZONE_TORSO":[{"hashFemale":"MP_MP_Biker_Tat_000_F","collection":"mpbiker_overlays","name":"TAT_BI_000","opacity":1,"hashMale":"MP_MP_Biker_Tat_000_M","label":"Demon Rider","zone":"ZONE_TORSO"},{"hashFemale":"","collection":"mpbeach_overlays","name":"TAT_BB_020","opacity":0.1,"hashMale":"MP_Bea_M_Chest_001","label":"Tribal Shark","zone":"ZONE_TORSO"},{"hashFemale":"MP_MP_Biker_Tat_001_F","collection":"mpbiker_overlays","name":"TAT_BI_001","opacity":0.1,"hashMale":"MP_MP_Biker_Tat_001_M","label":"Both Barrels","zone":"ZONE_TORSO"}]},"headOverlays":{"eyebrows":{"opacity":1,"color":0,"style":20,"secondColor":0},"blush":{"opacity":0,"color":0,"style":0,"secondColor":0},"complexion":{"opacity":1,"color":0,"style":0,"secondColor":0},"makeUp":{"opacity":0,"color":0,"style":0,"secondColor":0},"moleAndFreckles":{"opacity":0,"color":0,"style":0,"secondColor":0},"sunDamage":{"opacity":0,"color":0,"style":0,"secondColor":0},"beard":{"opacity":1,"color":0,"style":18,"secondColor":0},"chestHair":{"opacity":1,"color":61,"style":5,"secondColor":0},"bodyBlemishes":{"opacity":0,"color":0,"style":0,"secondColor":0},"blemishes":{"opacity":0,"color":0,"style":0,"secondColor":0},"ageing":{"opacity":0,"color":0,"style":0,"secondColor":0},"lipstick":{"opacity":0,"color":0,"style":0,"secondColor":0}},"model":"mp_m_freemode_01"}', 1),
	(272337, 'ILW07586', 'mp_m_freemode_01', '{"eyeColor":-1,"faceFeatures":{"nosePeakLowering":0,"eyesOpening":0,"chinHole":0,"eyeBrownForward":0,"lipsThickness":0,"nosePeakHigh":0,"neckThickness":0,"jawBoneWidth":0,"chinBoneLowering":0,"noseBoneTwist":0,"chinBoneSize":0,"chinBoneLenght":0,"cheeksWidth":0,"noseBoneHigh":0,"cheeksBoneHigh":0,"cheeksBoneWidth":0,"eyeBrownHigh":0,"jawBoneBackSize":0,"noseWidth":0,"nosePeakSize":0},"tattoos":{"ZONE_RIGHT_ARM":[{"hashMale":"MP_Vinewood_Tat_018_M","zone":"ZONE_RIGHT_ARM","hashFemale":"MP_Vinewood_Tat_018_F","opacity":0.1,"collection":"mpvinewood_overlays","name":"TAT_VW_018","label":"The Gambler\'s Life"}],"ZONE_HAIR":[{"hashMale":"FM_M_Hair_013_b","zone":"ZONE_HAIR","hashFemale":"FM_F_Hair_013_b","collection":"multiplayer_overlays","name":"hair-0-167","label":"hair-0-167"}]},"headBlend":{"skinMix":0,"skinFirst":0,"thirdMix":0,"shapeThird":0,"shapeSecond":0,"skinThird":0,"shapeMix":0,"skinSecond":0,"shapeFirst":12},"headOverlays":{"chestHair":{"secondColor":0,"style":0,"opacity":0,"color":0},"eyebrows":{"secondColor":0,"style":30,"opacity":0.9,"color":0},"sunDamage":{"secondColor":0,"style":0,"opacity":0,"color":0},"ageing":{"secondColor":0,"style":0,"opacity":0,"color":0},"bodyBlemishes":{"secondColor":0,"style":0,"opacity":0,"color":0},"complexion":{"secondColor":0,"style":0,"opacity":0,"color":0},"moleAndFreckles":{"secondColor":0,"style":0,"opacity":0,"color":0},"blush":{"secondColor":0,"style":0,"opacity":0,"color":0},"lipstick":{"secondColor":0,"style":0,"opacity":0,"color":0},"blemishes":{"secondColor":0,"style":0,"opacity":0,"color":0},"makeUp":{"secondColor":0,"style":0,"opacity":0,"color":0},"beard":{"secondColor":0,"style":0,"opacity":0,"color":0}},"model":"mp_m_freemode_01","props":[{"texture":-1,"drawable":-1,"prop_id":2},{"texture":-1,"drawable":-1,"prop_id":7},{"texture":0,"drawable":-1,"prop_id":0},{"texture":5,"drawable":3,"prop_id":1},{"texture":0,"drawable":8,"prop_id":6}],"hair":{"highlight":0,"style":72,"color":0,"texture":0},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":4,"drawable":3,"texture":0},{"component_id":6,"drawable":1,"texture":0},{"component_id":10,"drawable":0,"texture":0}]}', 1),
	(272338, 'NTJ05393', 'mp_m_freemode_01', '{"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}],"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":8,"drawable":15,"texture":0},{"component_id":3,"drawable":15,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":11,"drawable":78,"texture":0},{"component_id":4,"drawable":5,"texture":0},{"component_id":6,"drawable":2,"texture":0}],"faceFeatures":{"cheeksWidth":0,"eyeBrownForward":0,"cheeksBoneHigh":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"noseBoneTwist":0,"chinHole":0,"nosePeakHigh":0,"noseWidth":0,"eyesOpening":0,"chinBoneSize":0,"neckThickness":0,"eyeBrownHigh":0,"nosePeakLowering":0,"jawBoneWidth":0,"chinBoneLenght":0,"jawBoneBackSize":0,"nosePeakSize":0,"lipsThickness":0,"noseBoneHigh":0},"headOverlays":{"chestHair":{"secondColor":0,"style":0,"opacity":0,"color":0},"bodyBlemishes":{"secondColor":0,"style":0,"opacity":0,"color":0},"blemishes":{"secondColor":0,"style":0,"opacity":0,"color":0},"blush":{"secondColor":0,"style":0,"opacity":0,"color":0},"beard":{"secondColor":0,"style":0,"opacity":0,"color":0},"ageing":{"secondColor":0,"style":0,"opacity":0,"color":0},"sunDamage":{"secondColor":0,"style":0,"opacity":0,"color":0},"lipstick":{"secondColor":0,"style":0,"opacity":0,"color":0},"moleAndFreckles":{"secondColor":0,"style":0,"opacity":1,"color":0},"eyebrows":{"secondColor":0,"style":0,"opacity":1,"color":0},"makeUp":{"secondColor":0,"style":0,"opacity":0,"color":0},"complexion":{"secondColor":0,"style":0,"opacity":0,"color":0}},"eyeColor":2,"model":"mp_m_freemode_01","hair":{"color":29,"style":69,"highlight":0,"texture":0},"tattoos":{"ZONE_HAIR":[{"hashMale":"FM_M_Hair_006_e","hashFemale":"FM_F_Hair_006_e","name":"hair-0-195","zone":"ZONE_HAIR","label":"hair-0-195","collection":"multiplayer_overlays"}]},"headBlend":{"skinSecond":0,"shapeSecond":0,"skinThird":0,"shapeFirst":0,"shapeMix":0,"skinMix":0,"thirdMix":0,"skinFirst":0,"shapeThird":0}}', 1),
	(272339, 'BMH54317', 'mp_m_freemode_01', '{"tattoos":[],"eyeColor":-1,"headOverlays":{"blemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"bodyBlemishes":{"opacity":0,"secondColor":0,"style":0,"color":0},"ageing":{"opacity":0,"secondColor":0,"style":0,"color":0},"blush":{"opacity":0,"secondColor":0,"style":0,"color":0},"moleAndFreckles":{"opacity":0,"secondColor":0,"style":0,"color":0},"makeUp":{"opacity":0,"secondColor":0,"style":0,"color":0},"beard":{"opacity":0,"secondColor":0,"style":0,"color":0},"eyebrows":{"opacity":0,"secondColor":0,"style":0,"color":0},"lipstick":{"opacity":0,"secondColor":0,"style":0,"color":0},"chestHair":{"opacity":0,"secondColor":0,"style":0,"color":0},"sunDamage":{"opacity":0,"secondColor":0,"style":0,"color":0},"complexion":{"opacity":0,"secondColor":0,"style":0,"color":0}},"headBlend":{"skinFirst":0,"shapeThird":0,"shapeMix":0,"skinMix":0,"shapeSecond":0,"thirdMix":0,"skinSecond":0,"shapeFirst":0,"skinThird":0},"faceFeatures":{"jawBoneWidth":0,"nosePeakHigh":0,"nosePeakLowering":0,"neckThickness":0,"nosePeakSize":0,"chinBoneLenght":0,"noseBoneHigh":0,"cheeksBoneHigh":0,"lipsThickness":0,"eyeBrownForward":0,"noseBoneTwist":0,"eyeBrownHigh":0,"cheeksWidth":0,"chinBoneSize":0,"noseWidth":0,"cheeksBoneWidth":0,"chinBoneLowering":0,"chinHole":0,"eyesOpening":0,"jawBoneBackSize":0},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"model":"mp_m_freemode_01","hair":{"color":0,"highlight":0,"style":0,"texture":0},"props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}]}', 1),
	(272340, 'XAP13242', 'mp_m_freemode_01', '{"hair":{"highlight":0,"color":0,"texture":0,"style":0},"eyeColor":-1,"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"model":"mp_m_freemode_01","headBlend":{"shapeMix":0,"skinMix":0,"skinThird":0,"skinFirst":0,"shapeSecond":0,"shapeThird":0,"thirdMix":0,"shapeFirst":0,"skinSecond":0},"headOverlays":{"complexion":{"secondColor":0,"color":0,"style":0,"opacity":0},"blemishes":{"secondColor":0,"color":0,"style":0,"opacity":0},"makeUp":{"secondColor":0,"color":0,"style":0,"opacity":0},"beard":{"secondColor":0,"color":0,"style":0,"opacity":0},"chestHair":{"secondColor":0,"color":0,"style":0,"opacity":0},"moleAndFreckles":{"secondColor":0,"color":0,"style":0,"opacity":0},"sunDamage":{"secondColor":0,"color":0,"style":0,"opacity":0},"eyebrows":{"secondColor":0,"color":0,"style":0,"opacity":0},"blush":{"secondColor":0,"color":0,"style":0,"opacity":0},"lipstick":{"secondColor":0,"color":0,"style":0,"opacity":0},"ageing":{"secondColor":0,"color":0,"style":0,"opacity":0},"bodyBlemishes":{"secondColor":0,"color":0,"style":0,"opacity":0}},"tattoos":[],"faceFeatures":{"cheeksBoneHigh":0,"cheeksWidth":0,"jawBoneBackSize":0,"chinBoneLenght":0,"eyeBrownForward":0,"chinHole":0,"lipsThickness":0,"eyeBrownHigh":0,"chinBoneLowering":0,"noseWidth":0,"neckThickness":0,"eyesOpening":0,"noseBoneHigh":0,"noseBoneTwist":0,"chinBoneSize":0,"jawBoneWidth":0,"nosePeakHigh":0,"cheeksBoneWidth":0,"nosePeakSize":0,"nosePeakLowering":0},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}]}', 1),
	(272341, 'OVL98907', 'mp_m_freemode_01', '{"hair":{"highlight":0,"color":0,"texture":0,"style":0},"eyeColor":-1,"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"headOverlays":{"complexion":{"style":0,"color":0,"secondColor":0,"opacity":0},"blemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"makeUp":{"style":0,"color":0,"secondColor":0,"opacity":0},"chestHair":{"style":0,"color":0,"secondColor":0,"opacity":0},"eyebrows":{"style":0,"color":0,"secondColor":0,"opacity":0},"beard":{"style":0,"color":0,"secondColor":0,"opacity":0},"sunDamage":{"style":0,"color":0,"secondColor":0,"opacity":0},"ageing":{"style":0,"color":0,"secondColor":0,"opacity":0},"blush":{"style":0,"color":0,"secondColor":0,"opacity":0},"lipstick":{"style":0,"color":0,"secondColor":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"secondColor":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"secondColor":0,"opacity":0}},"headBlend":{"shapeMix":0,"skinMix":0,"skinThird":0,"skinFirst":0,"shapeSecond":0,"shapeThird":0,"shapeFirst":0,"thirdMix":0,"skinSecond":0},"model":"mp_m_freemode_01","tattoos":[],"faceFeatures":{"cheeksBoneHigh":0,"cheeksWidth":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"eyeBrownForward":0,"chinHole":0,"nosePeakHigh":0,"eyeBrownHigh":0,"chinBoneLowering":0,"nosePeakSize":0,"neckThickness":0,"eyesOpening":0,"noseBoneHigh":0,"noseBoneTwist":0,"jawBoneBackSize":0,"chinBoneSize":0,"jawBoneWidth":0,"lipsThickness":0,"nosePeakLowering":0,"noseWidth":0},"components":[{"drawable":0,"component_id":0,"texture":0},{"drawable":0,"component_id":1,"texture":0},{"drawable":0,"component_id":2,"texture":0},{"drawable":0,"component_id":3,"texture":0},{"drawable":0,"component_id":4,"texture":0},{"drawable":0,"component_id":5,"texture":0},{"drawable":0,"component_id":6,"texture":0},{"drawable":0,"component_id":7,"texture":0},{"drawable":0,"component_id":8,"texture":0},{"drawable":0,"component_id":9,"texture":0},{"drawable":0,"component_id":10,"texture":0},{"drawable":0,"component_id":11,"texture":0}]}', 1),
	(272342, 'PDH43092', 'mp_m_freemode_01', '{"hair":{"color":0,"highlight":0,"texture":0,"style":0},"faceFeatures":{"nosePeakSize":0,"noseWidth":0,"nosePeakHigh":0,"cheeksBoneHigh":0,"cheeksWidth":0,"lipsThickness":0,"noseBoneTwist":0,"chinBoneSize":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"eyeBrownForward":0,"neckThickness":0,"jawBoneBackSize":0,"chinHole":0,"eyeBrownHigh":0,"nosePeakLowering":0,"eyesOpening":0,"noseBoneHigh":0,"jawBoneWidth":0},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":1,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":4,"drawable":0,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":6,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":11,"drawable":0,"texture":0}],"headOverlays":{"beard":{"opacity":0,"color":0,"secondColor":0,"style":0},"sunDamage":{"opacity":0,"color":0,"secondColor":0,"style":0},"complexion":{"opacity":0,"color":0,"secondColor":0,"style":0},"blush":{"opacity":0,"color":0,"secondColor":0,"style":0},"ageing":{"opacity":0,"color":0,"secondColor":0,"style":0},"makeUp":{"opacity":0,"color":0,"secondColor":0,"style":0},"eyebrows":{"opacity":0,"color":0,"secondColor":0,"style":0},"bodyBlemishes":{"opacity":0,"color":0,"secondColor":0,"style":0},"blemishes":{"opacity":0,"color":0,"secondColor":0,"style":0},"chestHair":{"opacity":0,"color":0,"secondColor":0,"style":0},"lipstick":{"opacity":0,"color":0,"secondColor":0,"style":0},"moleAndFreckles":{"opacity":0,"color":0,"secondColor":0,"style":0}},"tattoos":[],"eyeColor":-1,"headBlend":{"skinMix":0,"shapeFirst":0,"shapeSecond":0,"skinThird":0,"shapeMix":0,"skinSecond":0,"shapeThird":0,"skinFirst":0,"thirdMix":0},"model":"mp_m_freemode_01","props":[{"drawable":-1,"prop_id":0,"texture":-1},{"drawable":-1,"prop_id":1,"texture":-1},{"drawable":-1,"prop_id":2,"texture":-1},{"drawable":-1,"prop_id":6,"texture":-1},{"drawable":-1,"prop_id":7,"texture":-1}]}', 1),
	(272345, 'QLZ47727', 'mp_m_freemode_01', '{"hair":{"style":0,"color":0,"highlight":0,"texture":0},"faceFeatures":{"nosePeakSize":0,"noseWidth":0,"nosePeakHigh":0,"cheeksBoneHigh":0,"cheeksWidth":0,"chinHole":0,"noseBoneTwist":0,"eyesOpening":0,"chinBoneLowering":0,"cheeksBoneWidth":0,"chinBoneLenght":0,"eyeBrownForward":0,"jawBoneWidth":0,"jawBoneBackSize":0,"noseBoneHigh":0,"eyeBrownHigh":0,"nosePeakLowering":0,"chinBoneSize":0,"neckThickness":0,"lipsThickness":0},"components":[{"component_id":0,"drawable":0,"texture":0},{"component_id":2,"drawable":0,"texture":0},{"component_id":3,"drawable":0,"texture":0},{"component_id":7,"drawable":0,"texture":0},{"component_id":10,"drawable":0,"texture":0},{"component_id":1,"drawable":3,"texture":0},{"component_id":11,"drawable":517,"texture":0},{"component_id":5,"drawable":0,"texture":0},{"component_id":9,"drawable":0,"texture":0},{"component_id":8,"drawable":0,"texture":0},{"component_id":4,"drawable":188,"texture":0},{"component_id":6,"drawable":130,"texture":0}],"headOverlays":{"beard":{"color":0,"opacity":0,"secondColor":0,"style":0},"sunDamage":{"color":0,"opacity":0,"secondColor":0,"style":0},"bodyBlemishes":{"color":0,"opacity":0,"secondColor":0,"style":0},"blush":{"color":0,"opacity":0,"secondColor":0,"style":0},"ageing":{"color":0,"opacity":0,"secondColor":0,"style":0},"makeUp":{"color":0,"opacity":0,"secondColor":0,"style":0},"eyebrows":{"color":0,"opacity":0,"secondColor":0,"style":0},"lipstick":{"color":0,"opacity":0,"secondColor":0,"style":0},"blemishes":{"color":0,"opacity":0,"secondColor":0,"style":0},"chestHair":{"color":0,"opacity":0,"secondColor":0,"style":0},"moleAndFreckles":{"color":0,"opacity":0,"secondColor":0,"style":0},"complexion":{"color":0,"opacity":0,"secondColor":0,"style":0}},"tattoos":[],"eyeColor":-1,"headBlend":{"skinMix":0,"skinSecond":0,"shapeSecond":0,"skinThird":0,"shapeMix":0,"shapeFirst":0,"shapeThird":0,"skinFirst":0,"thirdMix":0},"model":"mp_m_freemode_01","props":[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}]}', 1),
	(272346, 'TIV56684', 'mp_m_freemode_01', '{"props":[{"drawable":-1,"texture":-1,"prop_id":0},{"drawable":-1,"texture":-1,"prop_id":1},{"drawable":-1,"texture":-1,"prop_id":2},{"drawable":-1,"texture":-1,"prop_id":6},{"drawable":-1,"texture":-1,"prop_id":7}],"faceFeatures":{"nosePeakSize":1,"noseWidth":0.5,"nosePeakHigh":1,"cheeksBoneHigh":0,"cheeksWidth":0,"chinHole":0.7,"noseBoneTwist":1,"eyesOpening":1,"chinBoneLowering":1,"cheeksBoneWidth":0,"chinBoneLenght":1,"eyeBrownForward":1,"chinBoneSize":0.5,"jawBoneBackSize":0.9,"noseBoneHigh":1,"eyeBrownHigh":1,"nosePeakLowering":1,"lipsThickness":1,"neckThickness":1,"jawBoneWidth":1},"components":[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":4},{"component_id":3,"texture":0,"drawable":1},{"component_id":4,"texture":0,"drawable":19},{"component_id":6,"texture":0,"drawable":4},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":6},{"component_id":11,"texture":0,"drawable":465}],"headOverlays":{"beard":{"color":0,"opacity":1,"secondColor":0,"style":4},"sunDamage":{"color":0,"opacity":0,"secondColor":0,"style":0},"complexion":{"color":0,"opacity":0,"secondColor":0,"style":0},"blush":{"color":0,"opacity":0,"secondColor":0,"style":0},"ageing":{"color":0,"opacity":1,"secondColor":0,"style":8},"makeUp":{"color":0,"opacity":0,"secondColor":0,"style":0},"eyebrows":{"color":0,"opacity":1,"secondColor":0,"style":0},"bodyBlemishes":{"color":0,"opacity":0,"secondColor":0,"style":0},"blemishes":{"color":0,"opacity":0,"secondColor":0,"style":0},"chestHair":{"color":0,"opacity":0.7,"secondColor":0,"style":0},"moleAndFreckles":{"color":0,"opacity":0,"secondColor":0,"style":0},"lipstick":{"color":0,"opacity":0,"secondColor":0,"style":0}},"tattoos":[],"eyeColor":1,"headBlend":{"skinMix":0,"shapeFirst":3,"shapeSecond":2,"skinThird":0,"shapeMix":0,"skinSecond":1,"shapeThird":3,"skinFirst":45,"thirdMix":0},"model":"mp_m_freemode_01","hair":{"highlight":0,"color":0,"texture":0,"style":4}}', 1),
	(272347, 'KPU11623', 'mp_m_freemode_01', '{"headBlend":{"skinMix":0,"shapeSecond":31,"skinThird":0,"shapeThird":4,"skinFirst":11,"thirdMix":0,"skinSecond":0,"shapeFirst":0,"shapeMix":0.5},"components":[{"texture":0,"component_id":0,"drawable":0},{"texture":0,"component_id":2,"drawable":0},{"texture":0,"component_id":5,"drawable":0},{"texture":0,"component_id":7,"drawable":0},{"texture":0,"component_id":10,"drawable":0},{"texture":0,"component_id":1,"drawable":0},{"texture":0,"component_id":11,"drawable":7},{"texture":0,"component_id":8,"drawable":1},{"texture":0,"component_id":9,"drawable":0},{"texture":0,"component_id":3,"drawable":1},{"texture":0,"component_id":4,"drawable":4},{"texture":2,"component_id":6,"drawable":4}],"headOverlays":{"complexion":{"style":0,"color":0,"secondColor":0,"opacity":0},"ageing":{"style":0,"color":0,"secondColor":0,"opacity":0},"blemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"blush":{"style":0,"color":0,"secondColor":0,"opacity":0},"bodyBlemishes":{"style":0,"color":0,"secondColor":0,"opacity":0},"makeUp":{"style":0,"color":0,"secondColor":0,"opacity":0},"moleAndFreckles":{"style":0,"color":0,"secondColor":0,"opacity":0},"chestHair":{"style":0,"color":0,"secondColor":0,"opacity":0},"eyebrows":{"style":4,"color":0,"secondColor":0,"opacity":1},"lipstick":{"style":0,"color":0,"secondColor":0,"opacity":0},"sunDamage":{"style":0,"color":0,"secondColor":0,"opacity":0},"beard":{"style":0,"color":0,"secondColor":0,"opacity":0}},"hair":{"texture":0,"style":51,"color":0,"highlight":62},"props":[{"prop_id":1,"drawable":0,"texture":0},{"prop_id":0,"drawable":4,"texture":0},{"prop_id":2,"drawable":4,"texture":0},{"prop_id":6,"drawable":1,"texture":0},{"prop_id":7,"drawable":0,"texture":0}],"eyeColor":1,"tattoos":{"ZONE_HEAD":[{"label":"Morbid Arachnid","zone":"ZONE_HEAD","name":"TAT_BI_009","hashMale":"MP_MP_Biker_Tat_009_M","collection":"mpbiker_overlays","hashFemale":"MP_MP_Biker_Tat_009_F","opacity":0.1},{"label":"Snake Head Outline","zone":"ZONE_HEAD","name":"TAT_X2_024","hashMale":"MP_Xmas2_M_Tat_024","collection":"mpchristmas2_overlays","hashFemale":"MP_Xmas2_F_Tat_024","opacity":0.8}],"ZONE_LEFT_ARM":[{"label":"Time\'s Up Outline","zone":"ZONE_LEFT_ARM","name":"TAT_X2_020","hashMale":"MP_Xmas2_M_Tat_020","collection":"mpchristmas2_overlays","hashFemale":"MP_Xmas2_F_Tat_020","opacity":1}]},"faceFeatures":{"nosePeakHigh":0,"eyesOpening":0,"chinBoneLenght":0,"cheeksBoneHigh":0,"eyeBrownForward":0,"lipsThickness":0,"nosePeakLowering":0,"jawBoneBackSize":0,"noseBoneTwist":0,"cheeksBoneWidth":0,"eyeBrownHigh":0,"jawBoneWidth":0,"noseBoneHigh":0,"chinBoneSize":0,"neckThickness":0,"cheeksWidth":0,"chinHole":0,"chinBoneLowering":0,"nosePeakSize":0,"noseWidth":-0.6},"model":"mp_m_freemode_01"}', 1);

-- Dumping structure for table coozv.player_contacts
CREATE TABLE IF NOT EXISTS `player_contacts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(50) DEFAULT NULL,
  `citizenid` varchar(50) DEFAULT NULL,
  `name` varchar(50) DEFAULT NULL,
  `number` varchar(50) DEFAULT NULL,
  `iban` varchar(50) NOT NULL DEFAULT '0',
  `display` varchar(50) DEFAULT NULL,
  `note` text NOT NULL,
  `pp` text NOT NULL,
  `isBlocked` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  KEY `identifier` (`identifier`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.player_contacts: ~0 rows (approximately)
DELETE FROM `player_contacts`;

-- Dumping structure for table coozv.player_gallery
CREATE TABLE IF NOT EXISTS `player_gallery` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` text NOT NULL,
  `resim` text NOT NULL,
  `data` text NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.player_gallery: ~0 rows (approximately)
DELETE FROM `player_gallery`;

-- Dumping structure for table coozv.player_houses
CREATE TABLE IF NOT EXISTS `player_houses` (
  `id` int(255) NOT NULL AUTO_INCREMENT,
  `house` varchar(50) NOT NULL,
  `identifier` varchar(50) DEFAULT NULL,
  `citizenid` varchar(50) DEFAULT NULL,
  `keyholders` text DEFAULT NULL,
  `decorations` text DEFAULT NULL,
  `stash` text DEFAULT NULL,
  `outfit` text DEFAULT NULL,
  `logout` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `house` (`house`),
  KEY `citizenid` (`citizenid`),
  KEY `identifier` (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.player_houses: ~0 rows (approximately)
DELETE FROM `player_houses`;

-- Dumping structure for table coozv.player_mails
CREATE TABLE IF NOT EXISTS `player_mails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(50) DEFAULT NULL,
  `citizenid` varchar(50) DEFAULT NULL,
  `sender` varchar(50) DEFAULT NULL,
  `subject` varchar(50) DEFAULT NULL,
  `message` text DEFAULT NULL,
  `read` tinyint(4) DEFAULT NULL,
  `mailid` int(11) DEFAULT NULL,
  `date` timestamp NULL DEFAULT current_timestamp(),
  `button` text DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE,
  KEY `identifier` (`identifier`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.player_mails: ~0 rows (approximately)
DELETE FROM `player_mails`;

-- Dumping structure for table coozv.player_notes
CREATE TABLE IF NOT EXISTS `player_notes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` text NOT NULL,
  `baslik` text NOT NULL,
  `aciklama` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.player_notes: ~0 rows (approximately)
DELETE FROM `player_notes`;

-- Dumping structure for table coozv.player_outfits
CREATE TABLE IF NOT EXISTS `player_outfits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `outfitname` varchar(50) NOT NULL DEFAULT '0',
  `model` varchar(50) DEFAULT NULL,
  `props` text DEFAULT NULL,
  `components` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `citizenid_outfitname_model` (`citizenid`,`outfitname`,`model`),
  KEY `citizenid` (`citizenid`)
) ENGINE=InnoDB AUTO_INCREMENT=28329 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.player_outfits: ~3 rows (approximately)
DELETE FROM `player_outfits`;
INSERT INTO `player_outfits` (`id`, `citizenid`, `outfitname`, `model`, `props`, `components`) VALUES
	(28326, 'HWH38496', 'Kralinyo', 'mp_m_freemode_01', '[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}]', '[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}]'),
	(28327, 'DLA92312', 'İthal Edilen Kıyafet', 'mp_m_freemode_01', '[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}]', '[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":0},{"component_id":3,"texture":0,"drawable":0},{"component_id":4,"texture":0,"drawable":0},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":0,"drawable":0},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":0},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":0}]'),
	(28328, 'DLA92312', '22', 'mp_f_freemode_01', '[{"prop_id":0,"texture":-1,"drawable":-1},{"prop_id":1,"texture":-1,"drawable":-1},{"prop_id":2,"texture":-1,"drawable":-1},{"prop_id":6,"texture":-1,"drawable":-1},{"prop_id":7,"texture":-1,"drawable":-1}]', '[{"component_id":0,"texture":0,"drawable":0},{"component_id":1,"texture":0,"drawable":0},{"component_id":2,"texture":0,"drawable":53},{"component_id":3,"texture":0,"drawable":4},{"component_id":4,"texture":11,"drawable":16},{"component_id":5,"texture":0,"drawable":0},{"component_id":6,"texture":3,"drawable":2},{"component_id":7,"texture":0,"drawable":0},{"component_id":8,"texture":0,"drawable":2},{"component_id":9,"texture":0,"drawable":0},{"component_id":10,"texture":0,"drawable":0},{"component_id":11,"texture":0,"drawable":74}]');

-- Dumping structure for table coozv.player_outfit_codes
CREATE TABLE IF NOT EXISTS `player_outfit_codes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `outfitid` int(11) NOT NULL,
  `code` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `FK_player_outfit_codes_player_outfits` (`outfitid`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.player_outfit_codes: ~0 rows (approximately)
DELETE FROM `player_outfit_codes`;
INSERT INTO `player_outfit_codes` (`id`, `outfitid`, `code`) VALUES
	(1, 28326, 'IIqHcKgEh4');

-- Dumping structure for table coozv.player_transactions
CREATE TABLE IF NOT EXISTS `player_transactions` (
  `id` varchar(50) NOT NULL,
  `isFrozen` int(11) DEFAULT 0,
  `transactions` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.player_transactions: ~0 rows (approximately)
DELETE FROM `player_transactions`;

-- Dumping structure for table coozv.player_vehicles
CREATE TABLE IF NOT EXISTS `player_vehicles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `license` varchar(50) DEFAULT NULL,
  `citizenid` varchar(50) DEFAULT NULL,
  `vehicle` varchar(50) DEFAULT NULL,
  `hash` varchar(50) DEFAULT NULL,
  `mods` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `plate` varchar(50) NOT NULL,
  `fakeplate` varchar(50) DEFAULT NULL,
  `garage` varchar(50) DEFAULT NULL,
  `parkingspot` varchar(200) DEFAULT NULL,
  `fuel` int(11) DEFAULT 100,
  `engine` float DEFAULT 1000,
  `body` float DEFAULT 1000,
  `state` int(11) DEFAULT 1,
  `depotprice` int(11) NOT NULL DEFAULT 0,
  `drivingdistance` int(50) DEFAULT NULL,
  `status` text DEFAULT NULL,
  `stored` tinytext DEFAULT NULL,
  `balance` int(11) NOT NULL DEFAULT 0,
  `paymentamount` int(11) NOT NULL DEFAULT 0,
  `paymentsleft` int(11) NOT NULL DEFAULT 0,
  `financetime` int(11) NOT NULL DEFAULT 0,
  `glovebox` longtext DEFAULT NULL,
  `trunk` longtext DEFAULT NULL,
  `carseller` int(11) DEFAULT 0,
  `tuning` longtext DEFAULT NULL,
  `fitment` varchar(500) DEFAULT NULL,
  `image` longtext DEFAULT NULL,
  `giver_admin` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plate` (`plate`),
  KEY `citizenid` (`citizenid`),
  KEY `license` (`license`)
) ENGINE=InnoDB AUTO_INCREMENT=52088 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.player_vehicles: ~212 rows (approximately)
DELETE FROM `player_vehicles`;
INSERT INTO `player_vehicles` (`id`, `license`, `citizenid`, `vehicle`, `hash`, `mods`, `plate`, `fakeplate`, `garage`, `parkingspot`, `fuel`, `engine`, `body`, `state`, `depotprice`, `drivingdistance`, `status`, `stored`, `balance`, `paymentamount`, `paymentsleft`, `financetime`, `glovebox`, `trunk`, `carseller`, `tuning`, `fitment`, `image`, `giver_admin`) VALUES
	(51654, 'license:a07a03edc553303ad526ba757ba24eeb397e6f93', 'QDS83432', 'ardent', '159274291', '{"modHydrolic":-1,"modOrnaments":-1,"modDial":-1,"modTrimA":-1,"modDoorSpeaker":-1,"interiorColor":93,"modAerials":-1,"color1":88,"bodyHealth":997.6762628136975,"modVanityPlate":-1,"modTransmission":-1,"modKit47":-1,"model":159274291,"modAPlate":-1,"modStruts":-1,"plateIndex":0,"modPlateHolder":-1,"pearlescentColor":87,"modFrame":-1,"modSuspension":-1,"dashboardColor":93,"wheels":1,"modRightFender":-1,"modBrakes":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpeakers":-1,"modLivery":-1,"modShifterLeavers":-1,"modArmor":-1,"modSeats":-1,"modXenon":false,"modCustomTiresR":false,"extras":[],"wheelSize":1.0,"modSteeringWheel":-1,"tyreSmokeColor":[255,255,255],"modHorns":-1,"modExhaust":-1,"neonColor":[255,0,255],"liveryRoof":-1,"modSideSkirt":-1,"wheelWidth":1.0,"color2":0,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modKit49":-1,"windowTint":-1,"headlightColor":255,"modTurbo":false,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modTrunk":-1,"modSmokeEnabled":false,"neonEnabled":[false,false,false,false],"modKit19":-1,"modArchCover":-1,"modFrontBumper":-1,"modTank":-1,"plate":"2FG600EA","modHood":-1,"modRoof":-1,"modCustomTiresF":false,"fuelLevel":0.79432823472428,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modBackWheels":-1,"modAirFilter":-1,"modKit17":-1,"modWindows":-1,"dirtLevel":0.79432823472428,"wheelColor":112,"modGrille":-1,"xenonColor":255,"modTrimB":-1,"tankHealth":3999.442661836757,"modFrontWheels":-1,"modKit21":-1,"modFender":-1,"modDashboard":-1,"modEngineBlock":-1,"engineHealth":1000.0592475178704,"modSpoilers":-1,"oilLevel":6.35462587779425,"modEngine":-1}', '2FG600EA', NULL, 'legionsquare', NULL, 1, 1000, 998, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51655, 'license:8e75ce201a26248589207f283cebbf7c2e8b6175', 'HWH38496', 'oxygenrx7', '716882560', '{"modRightFender":-1,"modDoorSpeaker":-1,"modPlateHolder":-1,"tyreSmokeColor":[255,255,255],"modSuspension":-1,"modAPlate":-1,"modFender":-1,"modSpoilers":-1,"modExhaust":-1,"modTurbo":false,"xenonColor":255,"modArmor":-1,"engineHealth":1000.0592475178704,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":true},"color2":0,"dashboardColor":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tankHealth":1000.0592475178704,"modHood":-1,"wheelColor":0,"fuelLevel":50.04267878762973,"extras":[],"plate":"0GK591HB","modHydrolic":-1,"modEngineBlock":-1,"modFrontWheels":-1,"modCustomTiresF":false,"modSideSkirt":-1,"neonColor":[255,0,255],"modTrunk":-1,"modShifterLeavers":-1,"modOrnaments":-1,"modStruts":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelWidth":1.0,"modSeats":-1,"modSmokeEnabled":false,"modLivery":-1,"modKit19":-1,"modKit49":-1,"modVanityPlate":-1,"modKit17":-1,"modDashboard":-1,"neonEnabled":[false,false,false,false],"modSteeringWheel":-1,"liveryRoof":-1,"modKit47":-1,"modCustomTiresR":false,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"windowTint":-1,"modRoof":-1,"modTrimB":-1,"modAirFilter":-1,"modBackWheels":-1,"modTank":-1,"bodyHealth":1000.0592475178704,"modTransmission":-1,"headlightColor":255,"wheels":7,"pearlescentColor":0,"modRearBumper":-1,"modXenon":false,"modEngine":-1,"modGrille":-1,"color1":138,"modArchCover":-1,"modKit21":-1,"dirtLevel":6.35462587779425,"model":716882560,"interiorColor":0,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpeakers":-1,"modFrame":-1,"modBrakes":-1,"modHorns":-1,"plateIndex":0,"modAerials":-1,"oilLevel":4.76596940834568,"modTrimA":-1,"modDial":-1,"modFrontBumper":-1,"wheelSize":1.0,"modWindows":-1}', '0GK591HB', NULL, 'nobleparking', NULL, 50, 1001, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51656, 'license:a07a03edc553303ad526ba757ba24eeb397e6f93', 'QDS83432', 'oxygenrx7', '716882560', '{"modKit49":-1,"modSpoilers":-1,"modKit17":-1,"modFrontBumper":-1,"modBrakes":-1,"neonEnabled":[false,false,false,false],"bodyHealth":1000.0592475178704,"modFender":-1,"modPlateHolder":-1,"plateIndex":1,"modRearBumper":-1,"modTransmission":-1,"dashboardColor":0,"neonColor":[255,0,255],"xenonColor":255,"tyreSmokeColor":[255,255,255],"modDial":-1,"modSideSkirt":-1,"oilLevel":4.76596940834568,"plate":"8UV861JQ","tankHealth":1000.0592475178704,"pearlescentColor":0,"modOrnaments":-1,"modDoorSpeaker":-1,"dirtLevel":3.17731293889712,"modSteeringWheel":-1,"modFrontWheels":-1,"modSmokeEnabled":false,"windowTint":-1,"modTrunk":-1,"modHorns":-1,"modFrame":-1,"modAerials":-1,"modExhaust":-1,"modHood":-1,"modStruts":-1,"modKit21":-1,"modGrille":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSuspension":-1,"modRightFender":-1,"modEngine":-1,"modLivery":-1,"modTurbo":false,"interiorColor":0,"modDashboard":-1,"modRoof":-1,"modKit19":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modAPlate":-1,"modXenon":false,"wheelColor":0,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"headlightColor":255,"modKit47":-1,"wheelSize":0.0,"modArmor":-1,"modTank":-1,"modBackWheels":-1,"modSpeakers":-1,"modSeats":-1,"modHydrolic":-1,"liveryRoof":-1,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":true},"modCustomTiresR":false,"color1":138,"wheels":7,"modCustomTiresF":false,"modAirFilter":-1,"wheelWidth":0.0,"modArchCover":-1,"modVanityPlate":-1,"engineHealth":1000.0592475178704,"model":716882560,"modTrimB":-1,"color2":0,"modEngineBlock":-1,"extras":[],"modShifterLeavers":-1,"modTrimA":-1,"modWindows":-1,"fuelLevel":100.08535757525947}', '8UV861JQ', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51657, 'license:249e92d7130698c7a6c567fdeb77cf59c956370f', 'WHZ71107', 'entity2', '-2120700196', '{}', '2PB586UC', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51658, 'license:a07a03edc553303ad526ba757ba24eeb397e6f93', 'QDS83432', 'jetmax', '861409633', '{"modTransmission":-1,"color2":4,"modFrontBumper":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modHorns":-1,"plateIndex":4,"modAPlate":-1,"extras":[],"modGrille":-1,"modFender":-1,"modSuspension":-1,"modEngineBlock":-1,"dashboardColor":0,"modVanityPlate":-1,"neonEnabled":[false,false,false,false],"modAerials":-1,"modFrontWheels":-1,"wheelSize":0.0,"modRoof":-1,"modTurbo":false,"modPlateHolder":-1,"headlightColor":255,"modDoorSpeaker":-1,"tyreSmokeColor":[255,255,255],"modBackWheels":-1,"modExhaust":-1,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":true},"modRightFender":-1,"wheelWidth":0.0,"modBrakes":-1,"modDial":-1,"modTrunk":-1,"fuelLevel":34.95044232786839,"modStruts":-1,"modAirFilter":-1,"modHood":-1,"modFrame":-1,"modCustomTiresR":false,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTank":-1,"modHydrolic":-1,"plate":"23KRF103","modXenon":false,"modSmokeEnabled":false,"oilLevel":3.17731293889712,"modSteeringWheel":-1,"wheelColor":156,"modRearBumper":-1,"modDashboard":-1,"color1":0,"modEngine":-1,"modWindows":-1,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit17":-1,"modCustomTiresF":false,"modKit21":-1,"modTrimB":-1,"modOrnaments":-1,"wheels":0,"tankHealth":1000.0592475178704,"pearlescentColor":3,"model":861409633,"tireHealth":{"1":0.0,"2":0.0,"3":0.0,"0":0.0},"modLivery":-1,"modSideSkirt":-1,"liveryRoof":-1,"modKit19":-1,"interiorColor":0,"xenonColor":255,"engineHealth":1000.0592475178704,"modShifterLeavers":-1,"dirtLevel":0.0,"modKit49":-1,"bodyHealth":1000.0592475178704,"modSpeakers":-1,"modArmor":-1,"modKit47":-1,"modSeats":-1,"neonColor":[255,0,255],"windowTint":-1,"modTrimA":-1,"modArchCover":-1}', '23KRF103', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, '1', 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51659, 'license:8e75ce201a26248589207f283cebbf7c2e8b6175', 'HWH38496', 'oxygenm3', '255055458', '{"modRightFender":-1,"modDoorSpeaker":-1,"modPlateHolder":-1,"tyreSmokeColor":[255,255,255],"modSuspension":-1,"modAPlate":-1,"modFender":-1,"modSpoilers":-1,"modExhaust":-1,"modTurbo":false,"xenonColor":255,"modArmor":-1,"engineHealth":1000.0592475178704,"windowStatus":{"1":false,"2":true,"3":true,"4":true,"5":true,"6":false,"7":true,"0":true},"color2":224,"dashboardColor":200,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tankHealth":998.4705910484217,"modHood":-1,"wheelColor":16,"fuelLevel":50.04267878762973,"extras":{"6":false},"plate":"2AQ088EL","modHydrolic":-1,"modEngineBlock":-1,"modFrontWheels":-1,"modCustomTiresF":false,"modSideSkirt":-1,"neonColor":[255,0,255],"modTrunk":-1,"modShifterLeavers":-1,"modOrnaments":-1,"modStruts":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelWidth":0.0,"modSeats":-1,"modSmokeEnabled":false,"modLivery":-1,"modKit19":-1,"modKit49":-1,"modVanityPlate":-1,"modKit17":-1,"modDashboard":-1,"neonEnabled":[false,false,false,false],"modSteeringWheel":-1,"liveryRoof":-1,"modKit47":-1,"modCustomTiresR":false,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"windowTint":-1,"modRoof":-1,"modTrimB":-1,"modAirFilter":-1,"modBackWheels":-1,"modTank":-1,"bodyHealth":987.3499957622819,"modTransmission":-1,"headlightColor":255,"wheels":7,"pearlescentColor":0,"modRearBumper":-1,"modXenon":false,"modEngine":-1,"modGrille":-1,"color1":160,"modArchCover":-1,"modKit21":-1,"dirtLevel":3.17731293889712,"model":255055458,"interiorColor":164,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpeakers":-1,"modFrame":-1,"modBrakes":-1,"modHorns":-1,"plateIndex":4,"modAerials":-1,"oilLevel":8.73761058196709,"modTrimA":-1,"modDial":-1,"modFrontBumper":-1,"wheelSize":0.0,"modWindows":-1}', '2AQ088EL', NULL, 'nobleparking', NULL, 50, 1001, 988, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51660, 'license:8e75ce201a26248589207f283cebbf7c2e8b6175', 'HWH38496', 't20', '1663218586', '{"modKit47":-1,"modVanityPlate":-1,"modTrunk":-1,"modKit21":-1,"modCustomTiresR":false,"modTransmission":-1,"color2":7,"modEngine":-1,"modTurbo":false,"modFrame":-1,"modArmor":-1,"modDial":-1,"modCustomTiresF":false,"modSpeakers":-1,"wheelWidth":1.0,"modBackWheels":-1,"plateIndex":0,"modEngineBlock":-1,"modAirFilter":-1,"modSeats":-1,"engineHealth":1000.0592475178704,"modTank":-1,"wheelColor":0,"dirtLevel":0.0,"modSpoilers":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"windowTint":-1,"modHood":-1,"modSuspension":-1,"color1":7,"modDashboard":-1,"oilLevel":4.76596940834568,"modRightFender":-1,"modLivery":-1,"dashboardColor":0,"modTrimB":-1,"modStruts":-1,"tankHealth":4000.2369900714818,"modAPlate":-1,"extras":[],"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit49":-1,"headlightColor":255,"modFrontBumper":-1,"modAerials":-1,"modKit17":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modGrille":-1,"xenonColor":255,"modHorns":-1,"modFender":-1,"modRearBumper":-1,"modXenon":false,"modExhaust":-1,"liveryRoof":-1,"bodyHealth":1000.0592475178704,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit19":-1,"neonEnabled":[false,false,false,false],"modPlateHolder":-1,"modRoof":-1,"modWindows":-1,"pearlescentColor":3,"neonColor":[255,0,255],"modArchCover":-1,"modFrontWheels":-1,"fuelLevel":46.07103761400832,"tyreSmokeColor":[255,255,255],"wheels":7,"modSideSkirt":-1,"plate":"7QN029QX","modBrakes":-1,"modSmokeEnabled":false,"modShifterLeavers":-1,"modOrnaments":-1,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":true,"0":true},"wheelSize":1.0,"modDoorSpeaker":-1,"modHydrolic":-1,"model":1663218586,"modSteeringWheel":-1,"interiorColor":0,"modTrimA":-1}', '7QN029QX', NULL, 'motelyanimekanik', NULL, 35, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51661, 'license:8e75ce201a26248589207f283cebbf7c2e8b6175', 'HWH38496', '404_br900off', '-1375751870', '{"modEngineBlock":-1,"modTurbo":false,"modGrille":-1,"extras":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"8":true,"9":false},"liveryRoof":-1,"modTransmission":-1,"modXenon":false,"modFender":-1,"modRearBumper":-1,"modExhaust":-1,"interiorColor":0,"modSpeakers":-1,"modStruts":-1,"modArmor":-1,"modKit47":-1,"modShifterLeavers":-1,"modLivery":2,"neonColor":[255,0,255],"modSideSkirt":-1,"modTank":-1,"plateIndex":0,"modRightFender":-1,"wheelSize":0.0,"dashboardColor":0,"modSeats":-1,"modFrame":-1,"modTrimA":-1,"fuelLevel":100.08535757525947,"modKit21":-1,"modTrimB":-1,"modSuspension":-1,"engineHealth":1000.0592475178704,"wheels":0,"modWindows":-1,"modKit19":-1,"windowTint":-1,"modDashboard":-1,"neonEnabled":[false,false,false,false],"modKit49":-1,"modHood":-1,"modAerials":-1,"modFrontWheels":-1,"pearlescentColor":0,"modKit17":-1,"bodyHealth":1000.0592475178704,"modEngine":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"dirtLevel":3.17731293889712,"modPlateHolder":-1,"modCustomTiresR":false,"modHydrolic":-1,"wheelWidth":0.0,"headlightColor":255,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSteeringWheel":-1,"color2":0,"modBackWheels":-1,"color1":0,"modSmokeEnabled":false,"modBrakes":-1,"oilLevel":4.76596940834568,"modTrunk":-1,"modOrnaments":-1,"xenonColor":255,"wheelColor":0,"modAPlate":-1,"model":-1375751870,"modAirFilter":-1,"modHorns":-1,"tankHealth":1000.0592475178704,"tyreSmokeColor":[255,255,255],"plate":"1YJ407AI","modVanityPlate":-1,"modArchCover":-1,"modCustomTiresF":false,"modFrontBumper":-1,"modDoorSpeaker":-1,"modDial":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpoilers":-1,"modRoof":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false}}', '1YJ407AI', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51662, 'license:8e75ce201a26248589207f283cebbf7c2e8b6175', 'HWH38496', 'oxyr8raid', '1897450223', '{"modRightFender":-1,"modDoorSpeaker":-1,"modPlateHolder":-1,"tyreSmokeColor":[255,255,255],"modSuspension":-1,"modAPlate":-1,"modFender":-1,"modSpoilers":-1,"modExhaust":-1,"modTurbo":false,"xenonColor":255,"modArmor":-1,"engineHealth":1000.0592475178704,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"color2":63,"dashboardColor":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tankHealth":1000.0592475178704,"modHood":-1,"wheelColor":63,"fuelLevel":50.04267878762973,"extras":[],"plate":"8QG838RE","modHydrolic":-1,"modEngineBlock":-1,"modFrontWheels":-1,"modCustomTiresF":false,"modSideSkirt":-1,"neonColor":[255,0,255],"modTrunk":-1,"modShifterLeavers":-1,"modOrnaments":-1,"modStruts":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelWidth":1.0,"modSeats":-1,"modSmokeEnabled":false,"modLivery":-1,"modKit19":-1,"modKit49":-1,"modVanityPlate":-1,"modKit17":-1,"modDashboard":-1,"neonEnabled":[false,false,false,false],"modSteeringWheel":-1,"liveryRoof":-1,"modKit47":-1,"modCustomTiresR":false,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"windowTint":-1,"modRoof":-1,"modTrimB":-1,"modAirFilter":-1,"modBackWheels":-1,"modTank":-1,"bodyHealth":1000.0592475178704,"modTransmission":-1,"headlightColor":255,"wheels":7,"pearlescentColor":120,"modRearBumper":-1,"modXenon":false,"modEngine":-1,"modGrille":-1,"color1":63,"modArchCover":-1,"modKit21":-1,"dirtLevel":0.79432823472428,"model":1897450223,"interiorColor":0,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpeakers":-1,"modFrame":-1,"modBrakes":-1,"modHorns":-1,"plateIndex":0,"modAerials":-1,"oilLevel":6.35462587779425,"modTrimA":-1,"modDial":-1,"modFrontBumper":-1,"wheelSize":1.0,"modWindows":-1}', '8QG838RE', NULL, 'nobleparking', NULL, 50, 1001, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51663, 'license:7461f5f118e01e2ac115a0a79cd72f403502c6da', 'HWA90637', 't20', '1663218586', '{"modAirFilter":-1,"modTrimA":-1,"color2":73,"pearlescentColor":3,"xenonColor":255,"modTurbo":false,"extras":[],"modRightFender":-1,"modHydrolic":-1,"modTrunk":-1,"modWindows":-1,"modFrontBumper":-1,"modVanityPlate":-1,"modXenon":false,"modKit47":-1,"modOrnaments":-1,"wheels":7,"interiorColor":0,"modTank":-1,"modTransmission":-1,"oilLevel":4.76596940834568,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":true,"0":true},"modSeats":-1,"modKit19":-1,"modEngineBlock":-1,"modArmor":-1,"plate":"9BT026PU","dashboardColor":0,"modSmokeEnabled":false,"liveryRoof":-1,"plateIndex":0,"modAPlate":-1,"modDashboard":-1,"modStruts":-1,"modFrontWheels":-1,"modKit17":-1,"wheelWidth":0.0,"model":1663218586,"modGrille":-1,"modKit49":-1,"modBackWheels":-1,"dirtLevel":6.35462587779425,"modHorns":-1,"modShifterLeavers":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSpeakers":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpoilers":-1,"modDial":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"modSuspension":-1,"modDoorSpeaker":-1,"modSteeringWheel":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modBrakes":-1,"modHood":-1,"modExhaust":-1,"modAerials":-1,"modRoof":-1,"tankHealth":1000.0592475178704,"neonColor":[0,0,0],"fuelLevel":100.08535757525947,"bodyHealth":1000.0592475178704,"modPlateHolder":-1,"modLivery":-1,"wheelColor":0,"headlightColor":255,"modCustomTiresF":false,"modKit21":-1,"modSideSkirt":-1,"modEngine":-1,"modRearBumper":-1,"modTrimB":-1,"windowTint":-1,"color1":73,"engineHealth":1000.0592475178704,"wheelSize":0.0,"modCustomTiresR":false,"modFrame":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tyreSmokeColor":[255,255,255],"modArchCover":-1}', '9BT026PU', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51664, 'license:d5738b3b95612602dc4cd3cdb809d21d291abf20', 'CFH18616', 't20', '1663218586', '{"modAirFilter":-1,"modTrimA":-1,"color2":73,"pearlescentColor":3,"xenonColor":255,"modTurbo":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRightFender":-1,"modHydrolic":-1,"modTrunk":-1,"modWindows":-1,"modFrontBumper":-1,"modVanityPlate":-1,"modXenon":false,"modKit47":-1,"modShifterLeavers":-1,"wheels":7,"interiorColor":0,"modTank":-1,"modTransmission":-1,"oilLevel":4.76596940834568,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":true,"0":true},"modSeats":-1,"modSpeakers":-1,"headlightColor":255,"modArmor":-1,"plate":"0PV481UF","dashboardColor":0,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSideSkirt":-1,"plateIndex":0,"modAPlate":-1,"modDashboard":-1,"modStruts":-1,"modFrontWheels":-1,"modKit17":-1,"wheelWidth":0.0,"model":1663218586,"modGrille":-1,"modKit49":-1,"modBackWheels":-1,"dirtLevel":6.35462587779425,"modHorns":-1,"modDoorSpeaker":-1,"wheelColor":0,"modBrakes":-1,"modDial":-1,"modKit19":-1,"modOrnaments":-1,"wheelSize":0.0,"modEngineBlock":-1,"fuelLevel":100.08535757525947,"modFrame":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"tyreSmokeColor":[255,255,255],"modHood":-1,"modExhaust":-1,"modRoof":-1,"modSteeringWheel":-1,"tankHealth":1000.0592475178704,"neonColor":[0,0,0],"modCustomTiresR":false,"bodyHealth":1000.0592475178704,"engineHealth":1000.0592475178704,"modSpoilers":-1,"modKit21":-1,"liveryRoof":-1,"modCustomTiresF":false,"modLivery":-1,"modSuspension":-1,"modEngine":-1,"modSmokeEnabled":false,"modTrimB":-1,"windowTint":-1,"color1":73,"modRearBumper":-1,"modAerials":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modPlateHolder":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"extras":[],"modArchCover":-1}', '0PV481UF', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51665, 'license:7461f5f118e01e2ac115a0a79cd72f403502c6da', 'HWA90637', 't20', '1663218586', '{"modAirFilter":-1,"modTrimA":-1,"color2":7,"pearlescentColor":3,"xenonColor":255,"modTurbo":false,"extras":[],"modRightFender":-1,"modHydrolic":-1,"modTrunk":-1,"modWindows":-1,"modFrontBumper":-1,"modVanityPlate":-1,"modXenon":false,"modKit47":-1,"modOrnaments":-1,"wheels":7,"interiorColor":0,"modTank":-1,"modTransmission":-1,"oilLevel":4.76596940834568,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":true,"0":true},"modSeats":-1,"modKit19":-1,"modEngineBlock":-1,"modArmor":-1,"plate":"6KG884ZB","dashboardColor":0,"modSmokeEnabled":false,"liveryRoof":-1,"plateIndex":0,"modAPlate":-1,"modDashboard":-1,"modStruts":-1,"modFrontWheels":-1,"modKit17":-1,"wheelWidth":0.0,"model":1663218586,"modGrille":-1,"modKit49":-1,"modBackWheels":-1,"dirtLevel":3.9716411736214,"modHorns":-1,"modShifterLeavers":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSpeakers":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpoilers":-1,"modDial":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"modSuspension":-1,"modDoorSpeaker":-1,"modSteeringWheel":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modBrakes":-1,"modHood":-1,"modExhaust":-1,"modAerials":-1,"modRoof":-1,"tankHealth":1000.0592475178704,"neonColor":[0,0,0],"fuelLevel":100.08535757525947,"bodyHealth":1000.0592475178704,"modPlateHolder":-1,"modLivery":-1,"wheelColor":0,"headlightColor":255,"modCustomTiresF":false,"modKit21":-1,"modSideSkirt":-1,"modEngine":-1,"modRearBumper":-1,"modTrimB":-1,"windowTint":-1,"color1":7,"engineHealth":1000.0592475178704,"wheelSize":0.0,"modCustomTiresR":false,"modFrame":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tyreSmokeColor":[255,255,255],"modArchCover":-1}', '6KG884ZB', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51666, 'license:d5738b3b95612602dc4cd3cdb809d21d291abf20', 'CFH18616', 'm8demon', '1351783632', '{"modAirFilter":-1,"modTrimA":-1,"color2":0,"pearlescentColor":0,"xenonColor":255,"modTurbo":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRightFender":-1,"modHydrolic":-1,"modTrunk":-1,"modWindows":-1,"modFrontBumper":-1,"modVanityPlate":-1,"modXenon":false,"modKit47":-1,"modShifterLeavers":-1,"wheels":7,"interiorColor":0,"modTank":-1,"modTransmission":-1,"oilLevel":10.32626705141565,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modSeats":-1,"modSpeakers":-1,"headlightColor":255,"modArmor":-1,"plate":"4UV182AC","dashboardColor":0,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSideSkirt":-1,"plateIndex":0,"modAPlate":-1,"modDashboard":-1,"modStruts":-1,"modFrontWheels":-1,"modKit17":-1,"wheelWidth":0.0,"model":1351783632,"modGrille":-1,"modKit49":-1,"modBackWheels":-1,"dirtLevel":4.76596940834568,"modHorns":-1,"modDoorSpeaker":-1,"wheelColor":0,"modBrakes":-1,"modDial":-1,"modKit19":-1,"modOrnaments":-1,"wheelSize":0.0,"modEngineBlock":-1,"fuelLevel":100.08535757525947,"modFrame":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"tyreSmokeColor":[255,255,255],"modHood":-1,"modExhaust":-1,"modRoof":-1,"modSteeringWheel":-1,"tankHealth":1000.0592475178704,"neonColor":[0,0,0],"modCustomTiresR":false,"bodyHealth":1000.0592475178704,"engineHealth":1000.0592475178704,"modSpoilers":-1,"modKit21":-1,"liveryRoof":-1,"modCustomTiresF":false,"modLivery":-1,"modSuspension":-1,"modEngine":-1,"modSmokeEnabled":false,"modTrimB":-1,"windowTint":-1,"color1":0,"modRearBumper":-1,"modAerials":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modPlateHolder":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"extras":[],"modArchCover":-1}', '4UV182AC', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51667, 'license:7461f5f118e01e2ac115a0a79cd72f403502c6da', 'HWA90637', 'yaromcaramgone', '1094458480', '{"modAirFilter":-1,"modTrimA":-1,"color2":2,"pearlescentColor":134,"xenonColor":255,"modTurbo":false,"extras":{"2":true},"modRightFender":-1,"modHydrolic":-1,"modTrunk":-1,"modWindows":-1,"modFrontBumper":-1,"modVanityPlate":-1,"modXenon":false,"modKit47":-1,"modOrnaments":-1,"wheels":0,"interiorColor":0,"modTank":-1,"modTransmission":-1,"oilLevel":4.76596940834568,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":true},"modSeats":-1,"modKit19":-1,"modEngineBlock":-1,"modArmor":-1,"plate":"4EO921YK","dashboardColor":0,"modSmokeEnabled":false,"liveryRoof":-1,"plateIndex":3,"modAPlate":-1,"modDashboard":-1,"modStruts":-1,"modFrontWheels":-1,"modKit17":-1,"wheelWidth":0.0,"model":1094458480,"modGrille":-1,"modKit49":-1,"modBackWheels":-1,"dirtLevel":10.32626705141565,"modHorns":-1,"modShifterLeavers":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSpeakers":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpoilers":-1,"modDial":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"modSuspension":-1,"modDoorSpeaker":-1,"modSteeringWheel":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modBrakes":-1,"modHood":-1,"modExhaust":-1,"modAerials":-1,"modRoof":-1,"tankHealth":1000.0592475178704,"neonColor":[0,0,0],"fuelLevel":100.08535757525947,"bodyHealth":1000.0592475178704,"modPlateHolder":-1,"modLivery":1,"wheelColor":127,"headlightColor":255,"modCustomTiresF":false,"modKit21":-1,"modSideSkirt":-1,"modEngine":-1,"modRearBumper":-1,"modTrimB":-1,"windowTint":-1,"color1":67,"engineHealth":1000.0592475178704,"wheelSize":0.0,"modCustomTiresR":false,"modFrame":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tyreSmokeColor":[255,255,255],"modArchCover":-1}', '4EO921YK', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51668, 'license:7461f5f118e01e2ac115a0a79cd72f403502c6da', 'HWA90637', 'npolstang', '1928718710', '{"xenonColor":255,"modGrille":-1,"color1":141,"modStruts":-1,"modDial":-1,"modFrame":-1,"tyreSmokeColor":[255,255,255],"model":-1336796853,"modExhaust":-1,"extras":{"4":false,"3":false,"6":true,"5":false,"2":false,"1":false},"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modSpoilers":2,"modKit21":-1,"modFrontWheels":-1,"wheels":7,"modSuspension":3,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[0,0,0],"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrontBumper":4,"dirtLevel":0.0,"wheelSize":1.0,"modEngine":4,"modHydrolic":-1,"modVanityPlate":-1,"modTrimA":-1,"interiorColor":111,"modKit17":-1,"modTrunk":-1,"modCustomTiresR":false,"modDashboard":-1,"modTransmission":3,"tankHealth":1000.0592475178704,"modCustomTiresF":false,"modPlateHolder":-1,"windowTint":-1,"modTank":-1,"modAPlate":-1,"modHorns":-1,"modHood":-1,"modXenon":false,"dashboardColor":111,"modRoof":-1,"modTurbo":false,"plate":"PD1543","modAerials":-1,"engineHealth":1000.0592475178704,"bodyHealth":1000.0592475178704,"oilLevel":8.73761058196709,"modShifterLeavers":-1,"modSeats":-1,"wheelWidth":1.0,"modSmokeEnabled":false,"plateIndex":4,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modArchCover":-1,"modWindows":-1,"modKit19":-1,"modTrimB":-1,"color2":141,"modSpeakers":-1,"fuelLevel":84.99312111549811,"modSteeringWheel":-1,"modBrakes":-1,"liveryRoof":-1,"modOrnaments":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modEngineBlock":-1,"pearlescentColor":66,"modRightFender":-1,"modDoorSpeaker":-1,"wheelColor":0,"neonEnabled":[false,false,false,false],"modKit49":-1,"modKit47":-1,"modAirFilter":-1,"headlightColor":255,"modRearBumper":2,"modArmor":-1,"modFender":-1,"modBackWheels":-1,"modLivery":-1,"modSideSkirt":2}', 'PD1543', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51669, 'license:7461f5f118e01e2ac115a0a79cd72f403502c6da', 'HWA90637', 'npolstang', '2129596398', '{"modAerials":-1,"liveryRoof":-1,"modDial":-1,"model":-1336796853,"xenonColor":255,"neonColor":[0,0,0],"modHood":-1,"modSpoilers":-1,"plate":"87EFA333","tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpeakers":-1,"fuelLevel":100.08535757525947,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modShifterLeavers":-1,"modArmor":-1,"interiorColor":111,"modFrame":-1,"modKit21":-1,"engineHealth":1000.0592475178704,"modKit19":-1,"wheels":7,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRightFender":-1,"tankHealth":1000.0592475178704,"extras":{"6":true,"4":false,"5":false,"2":false,"3":false,"1":false},"modDoorSpeaker":-1,"modGrille":-1,"modSmokeEnabled":false,"modTrimA":-1,"tyreSmokeColor":[255,255,255],"modCustomTiresF":false,"modSteeringWheel":-1,"modStruts":-1,"modRoof":-1,"modVanityPlate":-1,"modFender":-1,"modTrunk":-1,"modPlateHolder":-1,"dirtLevel":7.14895411251853,"modFrontBumper":-1,"modCustomTiresR":false,"modAirFilter":-1,"modSideSkirt":-1,"pearlescentColor":66,"modTrimB":-1,"wheelSize":0.0,"modSeats":-1,"windowTint":-1,"modHydrolic":-1,"modRearBumper":-1,"modXenon":false,"modAPlate":-1,"modBrakes":-1,"modEngine":-1,"modKit17":-1,"color2":141,"modLivery":-1,"modArchCover":-1,"color1":141,"modKit49":-1,"bodyHealth":1000.0592475178704,"oilLevel":8.73761058196709,"modFrontWheels":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"wheelColor":0,"modExhaust":-1,"modHorns":-1,"modEngineBlock":-1,"modTank":-1,"modOrnaments":-1,"headlightColor":255,"plateIndex":4,"dashboardColor":111,"modTransmission":-1,"modWindows":-1,"modKit47":-1,"modSuspension":-1,"modDashboard":-1,"modTurbo":false,"wheelWidth":0.0,"neonEnabled":[false,false,false,false],"modBackWheels":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true}}', 'PD3322', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51670, 'license:8ab9a4b61c9a52d0a38d8e093a0058635ec6f1f8', 'USY54784', 'double', '-1670998136', '{"extras":[],"fuelLevel":50.04267878762973,"modKit47":-1,"modDashboard":-1,"wheels":6,"color2":1,"xenonColor":255,"modEngineBlock":-1,"modAirFilter":-1,"modWindows":-1,"modShifterLeavers":-1,"plateIndex":0,"liveryRoof":-1,"dirtLevel":6.35462587779425,"modTrimA":-1,"modHood":-1,"modRightFender":-1,"modFrame":-1,"modTank":-1,"modTrunk":-1,"bodyHealth":915.0661264023722,"modEngine":-1,"modSeats":-1,"model":-1670998136,"modSideSkirt":-1,"modRoof":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modBrakes":-1,"modCustomTiresF":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTrimB":-1,"modDial":-1,"engineHealth":1000.0592475178704,"neonColor":[255,0,255],"pearlescentColor":111,"modLivery":-1,"modSuspension":-1,"modAPlate":-1,"oilLevel":4.76596940834568,"interiorColor":0,"modExhaust":-1,"modArmor":-1,"wheelColor":27,"modTransmission":-1,"plate":"1UZ397XQ","modRearBumper":-1,"modStruts":-1,"tyreSmokeColor":[255,255,255],"modKit21":-1,"wheelSize":1.0,"modCustomTiresR":false,"wheelWidth":1.0,"modFender":-1,"modFrontWheels":-1,"tankHealth":958.7541793122077,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit49":-1,"modAerials":-1,"modHorns":-1,"modOrnaments":-1,"modVanityPlate":-1,"modHydrolic":-1,"dashboardColor":0,"modSteeringWheel":-1,"modTurbo":false,"modSmokeEnabled":false,"modKit19":-1,"modBackWheels":-1,"modSpeakers":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"modPlateHolder":-1,"windowTint":-1,"headlightColor":255,"modSpoilers":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"color1":6,"modKit17":-1,"modArchCover":-1,"modXenon":false,"modFrontBumper":-1,"modDoorSpeaker":-1,"neonEnabled":[false,false,false,false],"modGrille":-1}', '1UZ397XQ', NULL, 'iskele', NULL, 50, 1001, 915, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51671, 'license:0df6e24976ab163347437d70d01f58dfb8327c78', 'SWM62619', 'blazer3', '-1269889662', '{}', '6BA527GW', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51672, 'license:9e1949cded30c07ee3a389b25eb6736b701a2353', 'CFM02968', 'asbo', '1118611807', '{}', '6VR534FM', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51673, 'license:df19ff98d18624f24b4d813d26889d97ad176084', 'UDZ51313', 'double', '-1670998136', '{}', '5YR190GN', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51674, 'license:60150285bca782f287f6ffd1e2ba10150c9a96d9', 'KON61685', 'cyclone', '1392481335', '{"extras":[],"fuelLevel":50.04267878762973,"modKit47":-1,"modDashboard":-1,"tyreSmokeColor":[255,255,255],"modSpeakers":-1,"wheelSize":1.0,"modEngineBlock":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modWindows":-1,"modShifterLeavers":-1,"plateIndex":0,"liveryRoof":-1,"dirtLevel":4.76596940834568,"modTrimA":-1,"modHood":-1,"modRightFender":-1,"modStruts":-1,"modTank":-1,"modTrunk":-1,"bodyHealth":898.3852334731623,"modEngine":-1,"modSeats":-1,"model":1392481335,"modSideSkirt":-1,"modRoof":-1,"tireBurstCompletely":{"1":1,"2":false,"3":false,"4":1,"5":1,"0":1},"plate":"2EL131JI","modCustomTiresF":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTrimB":-1,"modDial":-1,"engineHealth":980.2010416497633,"neonColor":[0,0,0],"pearlescentColor":134,"modLivery":-1,"modSuspension":-1,"modAPlate":-1,"oilLevel":4.76596940834568,"interiorColor":111,"modExhaust":-1,"modDoorSpeaker":-1,"wheelColor":0,"modTransmission":-1,"modHorns":-1,"tankHealth":991.3216369359033,"modBrakes":-1,"color1":38,"modKit21":-1,"wheels":7,"modCustomTiresR":false,"modArchCover":-1,"windowTint":-1,"modFrontWheels":-1,"modHydrolic":-1,"modKit17":-1,"modVanityPlate":-1,"modAerials":-1,"neonEnabled":[false,false,false,false],"modArmor":-1,"modOrnaments":-1,"color2":38,"tireBurstState":{"1":1,"2":false,"3":false,"4":1,"5":1,"0":1},"modSteeringWheel":-1,"modTurbo":false,"modSmokeEnabled":false,"modFrame":-1,"modBackWheels":-1,"xenonColor":255,"modPlateHolder":-1,"dashboardColor":111,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modKit49":-1,"modSpoilers":-1,"wheelWidth":1.0,"modKit19":-1,"modRearBumper":-1,"headlightColor":255,"modXenon":false,"modFrontBumper":-1,"modAirFilter":-1,"modFender":-1,"modGrille":-1}', '2EL131JI', NULL, 'nobleparking', NULL, 50, 981, 898, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51675, 'license:0df6e24976ab163347437d70d01f58dfb8327c78', 'SWM62619', 'entity2', '-2120700196', '{}', '8RI844NO', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51676, 'license:35ec09b4aee106ed296777846e56f803f26a6bc3', 'XHZ81419', 'krieger', '-664141241', '{"dashboardColor":65,"extras":{"1":true},"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"liveryRoof":-1,"wheelWidth":0.0,"modTransmission":-1,"modTrimB":-1,"modKit19":-1,"modArmor":-1,"modTurbo":false,"modAPlate":-1,"neonColor":[255,0,255],"oilLevel":4.76596940834568,"color2":70,"modHydrolic":-1,"modKit21":-1,"modPlateHolder":-1,"modEngineBlock":-1,"modTrunk":-1,"wheelSize":0.0,"modSmokeEnabled":false,"modAirFilter":-1,"dirtLevel":4.76596940834568,"modBrakes":-1,"modShifterLeavers":-1,"modSeats":-1,"modSideSkirt":-1,"modSuspension":-1,"tankHealth":998.4705910484217,"headlightColor":255,"modKit47":-1,"xenonColor":255,"plateIndex":0,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRightFender":-1,"tyreSmokeColor":[255,255,255],"modSteeringWheel":-1,"modAerials":-1,"modFrame":-1,"modSpeakers":-1,"bodyHealth":984.967011058109,"modOrnaments":-1,"modWindows":-1,"interiorColor":93,"modArchCover":-1,"modHorns":-1,"modRearBumper":-1,"plate":"8KQ236BP","modXenon":false,"pearlescentColor":18,"modLivery":-1,"modFender":-1,"modGrille":-1,"windowStatus":{"1":true,"2":false,"3":false,"4":true,"5":true,"6":true,"7":false,"0":true},"modFrontWheels":-1,"tireHealth":{"1":999.8409423828125,"2":1000.0,"3":1000.0,"0":996.2994995117188},"fuelLevel":96.11371640163806,"modCustomTiresR":false,"modHood":-1,"modKit49":-1,"windowTint":-1,"neonEnabled":[false,false,false,false],"engineHealth":1000.0592475178704,"modDial":-1,"wheelColor":112,"modDashboard":-1,"model":-664141241,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modBackWheels":-1,"modDoorSpeaker":-1,"modKit17":-1,"modFrontBumper":-1,"modExhaust":-1,"modStruts":-1,"modVanityPlate":-1,"modEngine":-1,"modRoof":-1,"color1":112,"modCustomTiresF":false,"wheels":7,"modTrimA":-1,"modSpoilers":-1,"modTank":-1}', '8KQ236BP', NULL, 'nobleparking', NULL, 96, 1000, 985, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51677, 'license:f38dcde800b1b796b3e1f22959cc89f0afaef635', 'BCT78863', 'npolstang', '1457071969', '{"modShifterLeavers":-1,"modRoof":-1,"modWindows":-1,"modOrnaments":-1,"bodyHealth":1000.0592475178704,"oilLevel":8.73761058196709,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpoilers":-1,"modExhaust":-1,"modAerials":-1,"modXenon":false,"modSteeringWheel":-1,"modTrimB":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modCustomTiresR":false,"modSeats":-1,"modEngine":-1,"modFrontWheels":-1,"modSuspension":-1,"xenonColor":255,"wheels":7,"modSpeakers":-1,"modAirFilter":-1,"windowTint":-1,"plate":"23MGC046","modDial":-1,"modFrame":-1,"extras":{"2":false,"3":false,"4":false,"5":false,"6":false,"1":false},"tankHealth":1000.0592475178704,"plateIndex":4,"modKit47":-1,"model":-1336796853,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTransmission":-1,"modHorns":-1,"fuelLevel":100.08535757525947,"color2":141,"wheelColor":0,"modFender":-1,"dashboardColor":111,"dirtLevel":7.14895411251853,"modKit19":-1,"modArchCover":-1,"liveryRoof":-1,"modStruts":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modLivery":-1,"modFrontBumper":-1,"modRearBumper":-1,"wheelWidth":0.0,"color1":141,"neonEnabled":[false,false,false,false],"modAPlate":-1,"engineHealth":1000.0592475178704,"modEngineBlock":-1,"modTank":-1,"modKit17":-1,"modBackWheels":-1,"modArmor":-1,"tyreSmokeColor":[255,255,255],"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"modPlateHolder":-1,"neonColor":[0,0,0],"modKit49":-1,"interiorColor":111,"modSideSkirt":-1,"modRightFender":-1,"modKit21":-1,"headlightColor":255,"modGrille":-1,"modVanityPlate":-1,"modSmokeEnabled":false,"modTurbo":false,"modHood":-1,"modDoorSpeaker":-1,"modCustomTiresF":false,"modTrunk":-1,"pearlescentColor":66,"modHydrolic":-1,"modDashboard":-1,"modBrakes":-1,"modTrimA":-1}', 'PD7588', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51678, 'license:f38dcde800b1b796b3e1f22959cc89f0afaef635', 'BCT78863', 'npolstang', '268775868', '{"modShifterLeavers":-1,"modRoof":-1,"modWindows":-1,"modOrnaments":-1,"bodyHealth":1000.0592475178704,"oilLevel":8.73761058196709,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpoilers":-1,"modExhaust":-1,"modAerials":-1,"modXenon":false,"modSteeringWheel":-1,"modTrimB":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modCustomTiresR":false,"modSeats":-1,"modEngine":-1,"modFrontWheels":-1,"modSuspension":-1,"xenonColor":255,"wheels":7,"modSpeakers":-1,"modAirFilter":-1,"windowTint":-1,"plate":"40TNH039","modDial":-1,"modFrame":-1,"extras":{"2":false,"3":false,"4":false,"5":false,"6":true,"1":false},"tankHealth":1000.0592475178704,"plateIndex":4,"modKit47":-1,"model":-1336796853,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTransmission":-1,"modHorns":-1,"fuelLevel":100.08535757525947,"color2":141,"wheelColor":0,"modFender":-1,"dashboardColor":111,"dirtLevel":3.17731293889712,"modKit19":-1,"modArchCover":-1,"liveryRoof":-1,"modStruts":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modLivery":-1,"modFrontBumper":-1,"modRearBumper":-1,"wheelWidth":0.0,"color1":141,"neonEnabled":[false,false,false,false],"modAPlate":-1,"engineHealth":1000.0592475178704,"modEngineBlock":-1,"modTank":-1,"modKit17":-1,"modBackWheels":-1,"modArmor":-1,"tyreSmokeColor":[255,255,255],"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"modPlateHolder":-1,"neonColor":[0,0,0],"modKit49":-1,"interiorColor":111,"modSideSkirt":-1,"modRightFender":-1,"modKit21":-1,"headlightColor":255,"modGrille":-1,"modVanityPlate":-1,"modSmokeEnabled":false,"modTurbo":false,"modHood":-1,"modDoorSpeaker":-1,"modCustomTiresF":false,"modTrunk":-1,"pearlescentColor":66,"modHydrolic":-1,"modDashboard":-1,"modBrakes":-1,"modTrimA":-1}', 'PD6797', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51679, 'license:f38dcde800b1b796b3e1f22959cc89f0afaef635', 'BCT78863', 'npolvette', '1854779669', '{"modShifterLeavers":-1,"modRoof":-1,"modWindows":-1,"modOrnaments":-1,"bodyHealth":1000.0592475178704,"oilLevel":8.73761058196709,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpoilers":-1,"modExhaust":-1,"modAerials":-1,"modXenon":false,"modSteeringWheel":-1,"modTrimB":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modCustomTiresR":false,"modSeats":-1,"modEngine":-1,"modFrontWheels":-1,"modSuspension":-1,"xenonColor":255,"wheels":0,"modSpeakers":-1,"modAirFilter":-1,"windowTint":-1,"plate":"88GBS691","modDial":-1,"modFrame":-1,"extras":{"2":false,"3":false,"4":false,"5":false,"6":false,"1":false},"tankHealth":1000.0592475178704,"plateIndex":4,"modKit47":-1,"model":-1109563416,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTransmission":-1,"modHorns":-1,"fuelLevel":100.08535757525947,"color2":141,"wheelColor":0,"modFender":-1,"dashboardColor":63,"dirtLevel":4.76596940834568,"modKit19":-1,"modArchCover":-1,"liveryRoof":-1,"modStruts":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modLivery":-1,"modFrontBumper":-1,"modRearBumper":-1,"wheelWidth":0.0,"color1":141,"neonEnabled":[false,false,false,false],"modAPlate":-1,"engineHealth":1000.0592475178704,"modEngineBlock":-1,"modTank":-1,"modKit17":-1,"modBackWheels":-1,"modArmor":-1,"tyreSmokeColor":[255,255,255],"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"modPlateHolder":-1,"neonColor":[0,0,0],"modKit49":-1,"interiorColor":111,"modSideSkirt":-1,"modRightFender":-1,"modKit21":-1,"headlightColor":255,"modGrille":-1,"modVanityPlate":-1,"modSmokeEnabled":false,"modTurbo":false,"modHood":-1,"modDoorSpeaker":-1,"modCustomTiresF":false,"modTrunk":-1,"pearlescentColor":66,"modHydrolic":-1,"modDashboard":-1,"modBrakes":-1,"modTrimA":-1}', 'PD9580', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51680, 'license:8e75ce201a26248589207f283cebbf7c2e8b6175', 'HWH38496', 'npolexp', '-1054407107', '{"modShifterLeavers":-1,"modRoof":-1,"modWindows":-1,"modOrnaments":-1,"bodyHealth":1000.0592475178704,"oilLevel":8.73761058196709,"wheelSize":0.0,"modSpoilers":-1,"modExhaust":-1,"modAerials":-1,"modXenon":false,"modSteeringWheel":-1,"modTrimB":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modCustomTiresR":false,"modSeats":-1,"modEngine":-1,"modRearBumper":-1,"modSuspension":-1,"xenonColor":255,"wheels":3,"modSpeakers":-1,"modAirFilter":-1,"windowTint":-1,"plate":"29YUV344","modDial":-1,"modFrame":-1,"extras":{"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"8":false,"1":true},"tankHealth":1000.0592475178704,"plateIndex":4,"modKit19":-1,"model":719025956,"modBrakes":-1,"modTransmission":-1,"modHorns":-1,"fuelLevel":100.08535757525947,"color2":62,"wheelColor":0,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"dashboardColor":112,"dirtLevel":10.32626705141565,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modArchCover":-1,"liveryRoof":-1,"modHydrolic":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"modCustomTiresF":false,"wheelWidth":0.0,"modKit47":-1,"modFrontBumper":-1,"headlightColor":255,"interiorColor":112,"modAPlate":-1,"engineHealth":1000.0592475178704,"modEngineBlock":-1,"modTank":-1,"modKit17":-1,"modBackWheels":-1,"modArmor":-1,"modFender":-1,"modSmokeEnabled":false,"modPlateHolder":-1,"pearlescentColor":0,"modFrontWheels":-1,"neonColor":[255,0,255],"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modRightFender":-1,"modKit21":-1,"modStruts":-1,"modGrille":-1,"modVanityPlate":-1,"modDoorSpeaker":-1,"modTurbo":false,"modHood":-1,"color1":62,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTrunk":-1,"tyreSmokeColor":[255,255,255],"modKit49":-1,"modDashboard":-1,"modLivery":-1,"modTrimA":-1}', 'PD9161', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51681, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'TEM43359', 't20', '1663218586', '{"oilLevel":4.76596940834568,"modHorns":-1,"tankHealth":1000.0592475178704,"windowTint":-1,"modArmor":-1,"modFender":-1,"modGrille":-1,"color1":7,"modEngine":-1,"neonColor":[255,0,255],"modSeats":-1,"modTurbo":false,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":true,"0":true},"modEngineBlock":-1,"modAirFilter":-1,"modOrnaments":-1,"modSmokeEnabled":false,"modBrakes":-1,"engineHealth":1000.0592475178704,"modDashboard":-1,"modTank":-1,"modSpeakers":-1,"wheelColor":0,"fuelLevel":100.08535757525947,"modShifterLeavers":-1,"headlightColor":255,"modPlateHolder":-1,"modDoorSpeaker":-1,"modArchCover":-1,"plate":"7ZU813KP","modTrunk":-1,"modLivery":-1,"modXenon":false,"pearlescentColor":3,"modTransmission":-1,"wheelSize":0.0,"modAerials":-1,"modTrimA":-1,"model":1663218586,"modFrontBumper":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"neonEnabled":[false,false,false,false],"interiorColor":0,"modCustomTiresR":false,"modStruts":-1,"modExhaust":-1,"modRightFender":-1,"modKit17":-1,"modFrontWheels":-1,"modKit47":-1,"modAPlate":-1,"extras":[],"dirtLevel":0.79432823472428,"xenonColor":255,"modSpoilers":-1,"modKit49":-1,"bodyHealth":1000.0592475178704,"modHood":-1,"dashboardColor":0,"modBackWheels":-1,"modKit21":-1,"liveryRoof":-1,"color2":7,"tyreSmokeColor":[255,255,255],"wheelWidth":0.0,"modCustomTiresF":false,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modHydrolic":-1,"modSteeringWheel":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modKit19":-1,"modTrimB":-1,"modVanityPlate":-1,"modSuspension":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrame":-1,"modRoof":-1,"modWindows":-1,"wheels":7,"modRearBumper":-1,"modSideSkirt":-1,"modDial":-1,"plateIndex":0}', '7ZU813KP', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51682, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'TEM43359', 't20', '1663218586', '{"modSteeringWheel":-1,"modDashboard":-1,"modGrille":-1,"windowTint":-1,"modLivery":-1,"modArmor":-1,"xenonColor":255,"modKit19":-1,"modXenon":false,"modSpeakers":-1,"modRightFender":-1,"bodyHealth":1000.0592475178704,"modHorns":-1,"engineHealth":1000.0592475178704,"modBrakes":-1,"model":1663218586,"dirtLevel":4.76596940834568,"modTrimB":-1,"interiorColor":0,"modDoorSpeaker":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modCustomTiresR":false,"plateIndex":0,"modSeats":-1,"modPlateHolder":-1,"modFender":-1,"color2":7,"color1":7,"wheelWidth":1.0,"headlightColor":255,"modArchCover":-1,"wheels":7,"modExhaust":-1,"modKit49":-1,"modAirFilter":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"dashboardColor":0,"modAerials":-1,"modWindows":-1,"modFrontBumper":-1,"modBackWheels":-1,"modTrunk":-1,"modTank":-1,"wheelSize":1.0,"neonEnabled":[false,false,false,false],"modHydrolic":-1,"modShifterLeavers":-1,"modStruts":-1,"modCustomTiresF":false,"modSuspension":-1,"modSideSkirt":-1,"wheelColor":0,"modVanityPlate":-1,"fuelLevel":50.04267878762973,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":true,"0":true},"extras":[],"modHood":-1,"modFrontWheels":-1,"modKit21":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tankHealth":1000.0592475178704,"modTransmission":-1,"modRoof":-1,"modTurbo":false,"modAPlate":-1,"liveryRoof":-1,"plate":"3WL609JY","modKit17":-1,"pearlescentColor":3,"modSmokeEnabled":false,"tyreSmokeColor":[255,255,255],"oilLevel":4.76596940834568,"modEngineBlock":-1,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modOrnaments":-1,"modDial":-1,"modRearBumper":-1,"neonColor":[255,0,255],"modTrimA":-1,"modEngine":-1,"modFrame":-1,"modKit47":-1}', '3WL609JY', NULL, 'nobleparking', NULL, 50, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51683, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'TEM43359', 't20', '1663218586', '{"windowTint":-1,"modFrontBumper":-1,"fuelLevel":100.08535757525947,"modCustomTiresF":false,"modRightFender":-1,"modFrame":-1,"wheelWidth":0.0,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"dirtLevel":3.17731293889712,"modEngine":-1,"modKit49":-1,"modTrimA":-1,"modGrille":-1,"wheelColor":0,"oilLevel":4.76596940834568,"wheelSize":0.0,"modCustomTiresR":false,"liveryRoof":-1,"neonColor":[255,0,255],"modTrunk":-1,"modTransmission":-1,"modKit19":-1,"modShifterLeavers":-1,"modTank":-1,"modTrimB":-1,"modTurbo":false,"model":1663218586,"color2":0,"wheels":7,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSmokeEnabled":false,"tankHealth":1000.0592475178704,"modBackWheels":-1,"modFender":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSteeringWheel":-1,"dashboardColor":0,"modRoof":-1,"modHood":-1,"neonEnabled":[false,false,false,false],"headlightColor":255,"modKit17":-1,"modPlateHolder":-1,"modDashboard":-1,"extras":[],"modLivery":-1,"modRearBumper":-1,"modAerials":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"modStruts":-1,"modHydrolic":-1,"modSpeakers":-1,"modFrontWheels":-1,"modDoorSpeaker":-1,"modAPlate":-1,"plate":"6RY907UF","modSpoilers":-1,"modKit47":-1,"modDial":-1,"modEngineBlock":-1,"modHorns":-1,"modArmor":-1,"modVanityPlate":-1,"modXenon":false,"modBrakes":-1,"pearlescentColor":3,"xenonColor":255,"plateIndex":0,"color1":0,"bodyHealth":1000.0592475178704,"interiorColor":0,"tyreSmokeColor":[255,255,255],"modArchCover":-1,"modAirFilter":-1,"modSideSkirt":-1,"modOrnaments":-1,"modSuspension":-1,"modKit21":-1,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":true,"0":true},"modExhaust":-1,"modWindows":-1,"engineHealth":1000.0592475178704}', '6RY907UF', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51684, 'license:ea086a693fdbea9f7649aa55935c2d5f4a3d10b9', 'LOT03634', 'bmx', '1131912276', '{}', '6CW709MV', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51685, 'license:5f3790e106127ad0c40a3f0c601c62f23f8f7ae8', 'GOE83795', 'npolvic', '-140603159', '{"modDial":-1,"modGrille":-1,"modSuspension":-1,"wheels":1,"modAerials":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"dirtLevel":10.32626705141565,"modKit49":-1,"color2":62,"interiorColor":111,"xenonColor":255,"headlightColor":255,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"fuelLevel":100.08535757525947,"modOrnaments":-1,"modSmokeEnabled":false,"modPlateHolder":-1,"modKit47":-1,"modHood":-1,"modVanityPlate":-1,"extras":{"3":false,"4":false,"5":false,"6":false,"7":false,"1":false,"2":false},"wheelSize":1.0,"modTank":-1,"modAPlate":-1,"modDashboard":-1,"modSteeringWheel":-1,"modHorns":-1,"modBackWheels":-1,"modTrimB":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"engineHealth":1000.0592475178704,"modLivery":-1,"dashboardColor":111,"oilLevel":8.73761058196709,"modSideSkirt":-1,"windowTint":-1,"wheelColor":0,"modSpeakers":-1,"modDoorSpeaker":-1,"modHydrolic":-1,"modFender":-1,"modEngineBlock":-1,"modFrame":-1,"modCustomTiresR":false,"modKit17":-1,"tankHealth":1000.0592475178704,"modEngine":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRoof":-1,"modRearBumper":-1,"tyreSmokeColor":[255,255,255],"modTrimA":-1,"wheelWidth":1.0,"neonColor":[255,0,255],"modBrakes":-1,"modSeats":-1,"modAirFilter":-1,"modKit21":-1,"modExhaust":-1,"modStruts":-1,"modTurbo":false,"plateIndex":4,"bodyHealth":1000.0592475178704,"pearlescentColor":0,"neonEnabled":[false,false,false,false],"modWindows":-1,"modShifterLeavers":-1,"plate":"PD8278","modXenon":false,"modKit19":-1,"modTrunk":-1,"modFrontWheels":-1,"modCustomTiresF":false,"modArchCover":-1,"modArmor":-1,"modTransmission":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRightFender":-1,"liveryRoof":-1,"color1":62,"model":-901056903,"modSpoilers":-1,"modFrontBumper":-1}', 'PD8278', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51686, 'license:5f3790e106127ad0c40a3f0c601c62f23f8f7ae8', 'GOE83795', 'npolexp', '1288791462', '{"modDial":-1,"modGrille":-1,"modSuspension":-1,"wheels":3,"modAerials":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"dirtLevel":11.12059528613994,"modKit49":-1,"color2":62,"interiorColor":112,"xenonColor":255,"headlightColor":255,"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"fuelLevel":100.08535757525947,"modOrnaments":-1,"modSmokeEnabled":false,"modPlateHolder":-1,"modKit47":-1,"modHood":-1,"modVanityPlate":-1,"extras":{"3":false,"4":false,"5":false,"6":false,"7":true,"8":false,"1":false,"2":false},"wheelSize":1.0,"modTank":-1,"modAPlate":-1,"modDashboard":-1,"modSteeringWheel":-1,"modHorns":-1,"modBackWheels":-1,"modTrimB":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"engineHealth":1000.0592475178704,"modLivery":-1,"dashboardColor":112,"oilLevel":8.73761058196709,"modSideSkirt":-1,"windowTint":-1,"wheelColor":0,"modSpeakers":-1,"modDoorSpeaker":-1,"modHydrolic":-1,"modFender":-1,"modEngineBlock":-1,"modFrame":-1,"modCustomTiresR":false,"modKit17":-1,"tankHealth":1000.0592475178704,"modEngine":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRoof":-1,"modRearBumper":-1,"tyreSmokeColor":[255,255,255],"modTrimA":-1,"wheelWidth":1.0,"neonColor":[255,0,255],"modBrakes":-1,"modSeats":-1,"modAirFilter":-1,"modKit21":-1,"modExhaust":-1,"modStruts":-1,"modTurbo":false,"plateIndex":4,"bodyHealth":1000.0592475178704,"pearlescentColor":0,"neonEnabled":[false,false,false,false],"modWindows":-1,"modShifterLeavers":-1,"plate":"PD2480","modXenon":false,"modKit19":-1,"modTrunk":-1,"modFrontWheels":-1,"modCustomTiresF":false,"modArchCover":-1,"modArmor":-1,"modTransmission":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRightFender":-1,"liveryRoof":-1,"color1":62,"model":719025956,"modSpoilers":-1,"modFrontBumper":-1}', 'PD2480', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51687, 'license:9c01d4dc58581551daa36f5ccaee5ee53322e50c', 'TTJ64953', 'oxyr8raid', '1897450223', '{}', '4PU719DV', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51688, 'license:9c01d4dc58581551daa36f5ccaee5ee53322e50c', 'NEJ17289', 'oxygenrx7', '-1628912492', '{"modDashboard":-1,"modGrille":-1,"modTransmission":-1,"modSpoilers":-1,"engineHealth":1000.0592475179,"bodyHealth":1000.0592475179,"modFrame":-1,"oilLevel":0.0,"modSmokeEnabled":false,"modBrakes":-1,"pearlescentColor":111,"modKit17":-1,"tyreSmokeColor":[255,255,255],"modRoof":-1,"modHood":-1,"modEngine":-1,"modTank":-1,"modExhaust":-1,"modVanityPlate":-1,"modBackWheels":-1,"color1":0,"modTrunk":-1,"modSeats":-1,"wheels":6,"modFender":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit49":-1,"xenonColor":255,"modAPlate":-1,"modAirFilter":-1,"modDial":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"model":1131912276,"modStruts":-1,"modSuspension":-1,"modSteeringWheel":-1,"modCustomTiresF":false,"neonEnabled":[false,false,false,false],"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modHorns":-1,"modXenon":false,"wheelWidth":0.0,"modKit19":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTurbo":false,"modLivery":-1,"dirtLevel":0.0,"plateIndex":4,"modEngineBlock":-1,"modArchCover":-1,"modFrontBumper":-1,"modHydrolic":-1,"modSideSkirt":-1,"headlightColor":255,"plate":"FF8HJYXU","modTrimB":-1,"modDoorSpeaker":-1,"modAerials":-1,"extras":[],"modWindows":-1,"liveryRoof":-1,"modSpeakers":-1,"modTrimA":-1,"modKit47":-1,"fuelLevel":69.106556421012,"modArmor":-1,"neonColor":[255,0,255],"modRearBumper":-1,"wheelSize":0.0,"interiorColor":0,"modOrnaments":-1,"windowTint":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"modPlateHolder":-1,"modShifterLeavers":-1,"dashboardColor":0,"modCustomTiresR":false,"modRightFender":-1,"tankHealth":1000.0592475179,"modKit21":-1,"color2":0,"wheelColor":156,"modFrontWheels":-1}', '6CE750JS', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51689, 'license:9c01d4dc58581551daa36f5ccaee5ee53322e50c', 'NEJ17289', 't20', '-1628912492', '{"modDashboard":-1,"modGrille":-1,"modTransmission":-1,"modSpoilers":-1,"engineHealth":1000.0592475179,"bodyHealth":1000.0592475179,"modFrame":-1,"oilLevel":0.0,"modSmokeEnabled":false,"modBrakes":-1,"pearlescentColor":111,"modKit17":-1,"tyreSmokeColor":[255,255,255],"modRoof":-1,"modHood":-1,"modEngine":-1,"modTank":-1,"modExhaust":-1,"modVanityPlate":-1,"modBackWheels":-1,"color1":0,"modTrunk":-1,"modSeats":-1,"wheels":6,"modFender":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit49":-1,"xenonColor":255,"modAPlate":-1,"modAirFilter":-1,"modDial":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"model":1131912276,"modStruts":-1,"modSuspension":-1,"modSteeringWheel":-1,"modCustomTiresF":false,"neonEnabled":[false,false,false,false],"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modHorns":-1,"modXenon":false,"wheelWidth":0.0,"modKit19":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTurbo":false,"modLivery":-1,"dirtLevel":0.0,"plateIndex":4,"modEngineBlock":-1,"modArchCover":-1,"modFrontBumper":-1,"modHydrolic":-1,"modSideSkirt":-1,"headlightColor":255,"plate":"QD27PF02","modTrimB":-1,"modDoorSpeaker":-1,"modAerials":-1,"extras":[],"modWindows":-1,"liveryRoof":-1,"modSpeakers":-1,"modTrimA":-1,"modKit47":-1,"fuelLevel":69.106556421012,"modArmor":-1,"neonColor":[255,0,255],"modRearBumper":-1,"wheelSize":0.0,"interiorColor":0,"modOrnaments":-1,"windowTint":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"modPlateHolder":-1,"modShifterLeavers":-1,"dashboardColor":0,"modCustomTiresR":false,"modRightFender":-1,"tankHealth":1000.0592475179,"modKit21":-1,"color2":0,"wheelColor":156,"modFrontWheels":-1}', '0HF646PV', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51690, 'license:9c01d4dc58581551daa36f5ccaee5ee53322e50c', 'NEJ17289', 'm8demon', '-1628912492', '{"modDashboard":-1,"modGrille":-1,"modTransmission":-1,"modSpoilers":-1,"engineHealth":1000.0592475179,"bodyHealth":1000.0592475179,"modFrame":-1,"oilLevel":0.0,"modSmokeEnabled":false,"modBrakes":-1,"pearlescentColor":111,"modKit17":-1,"tyreSmokeColor":[255,255,255],"modRoof":-1,"modHood":-1,"modEngine":-1,"modTank":-1,"modExhaust":-1,"modVanityPlate":-1,"modBackWheels":-1,"color1":0,"modTrunk":-1,"modSeats":-1,"wheels":6,"modFender":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit49":-1,"xenonColor":255,"modAPlate":-1,"modAirFilter":-1,"modDial":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"model":1131912276,"modStruts":-1,"modSuspension":-1,"modSteeringWheel":-1,"modCustomTiresF":false,"neonEnabled":[false,false,false,false],"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modHorns":-1,"modXenon":false,"wheelWidth":0.0,"modKit19":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTurbo":false,"modLivery":-1,"dirtLevel":0.0,"plateIndex":4,"modEngineBlock":-1,"modArchCover":-1,"modFrontBumper":-1,"modHydrolic":-1,"modSideSkirt":-1,"headlightColor":255,"plate":"ZL1ZN6HV","modTrimB":-1,"modDoorSpeaker":-1,"modAerials":-1,"extras":[],"modWindows":-1,"liveryRoof":-1,"modSpeakers":-1,"modTrimA":-1,"modKit47":-1,"fuelLevel":69.106556421012,"modArmor":-1,"neonColor":[255,0,255],"modRearBumper":-1,"wheelSize":0.0,"interiorColor":0,"modOrnaments":-1,"windowTint":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"modPlateHolder":-1,"modShifterLeavers":-1,"dashboardColor":0,"modCustomTiresR":false,"modRightFender":-1,"tankHealth":1000.0592475179,"modKit21":-1,"color2":0,"wheelColor":156,"modFrontWheels":-1}', '0ZH371ES', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51691, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'APB01636', 'tribike3', '-400295096', '{"extras":[],"modRightFender":-1,"modSpoilers":-1,"modKit17":-1,"modCustomTiresR":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"color1":132,"xenonColor":255,"modKit49":-1,"dashboardColor":0,"modFrame":-1,"modSeats":-1,"windowTint":-1,"modBackWheels":-1,"modSideSkirt":-1,"modBrakes":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modHydrolic":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"modTrimA":-1,"dirtLevel":0.0,"modWindows":-1,"modEngine":-1,"neonColor":[255,0,255],"modKit19":-1,"model":-400295096,"headlightColor":255,"modRearBumper":-1,"wheels":6,"interiorColor":0,"engineHealth":1000.0592475178704,"modArchCover":-1,"liveryRoof":-1,"modTank":-1,"modAirFilter":-1,"tyreSmokeColor":[255,255,255],"modHorns":-1,"modTrunk":-1,"plateIndex":4,"modSuspension":-1,"modOrnaments":-1,"tankHealth":1000.0592475178704,"wheelColor":156,"pearlescentColor":132,"modSteeringWheel":-1,"modCustomTiresF":false,"modArmor":-1,"modSmokeEnabled":false,"modGrille":-1,"modHood":-1,"modRoof":-1,"modVanityPlate":-1,"modSpeakers":-1,"modShifterLeavers":-1,"modTurbo":false,"modFrontBumper":-1,"modDial":-1,"modAerials":-1,"modDoorSpeaker":-1,"modTrimB":-1,"oilLevel":0.0,"neonEnabled":[false,false,false,false],"modAPlate":-1,"modKit21":-1,"wheelWidth":0.0,"modTransmission":-1,"modFrontWheels":-1,"fuelLevel":0.0,"modKit47":-1,"plate":"4DT183BU","modFender":-1,"bodyHealth":1000.0592475178704,"color2":132,"modDashboard":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modXenon":false,"modExhaust":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"modPlateHolder":-1,"modEngineBlock":-1,"modLivery":-1,"modStruts":-1}', '4DT183BU', NULL, 'Legion Square', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51692, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'APB01636', 'clique', '-1566607184', '{"extras":[],"modRightFender":-1,"modSpoilers":-1,"modKit17":-1,"modCustomTiresR":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"color1":6,"xenonColor":255,"modKit49":-1,"dashboardColor":156,"modFrame":-1,"modSeats":-1,"windowTint":-1,"modBackWheels":-1,"modSideSkirt":-1,"modBrakes":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modHydrolic":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modTrimA":-1,"dirtLevel":0.0,"modWindows":-1,"modEngine":-1,"neonColor":[255,0,255],"modKit19":-1,"model":-1566607184,"headlightColor":255,"modRearBumper":-1,"wheels":5,"interiorColor":2,"engineHealth":1000.0592475178704,"modArchCover":-1,"liveryRoof":-1,"modTank":-1,"modAirFilter":-1,"tyreSmokeColor":[255,255,255],"modHorns":-1,"modTrunk":-1,"plateIndex":0,"modSuspension":-1,"modOrnaments":-1,"tankHealth":1000.0592475178704,"wheelColor":0,"pearlescentColor":7,"modSteeringWheel":-1,"modCustomTiresF":false,"modArmor":-1,"modSmokeEnabled":false,"modGrille":-1,"modHood":-1,"modRoof":-1,"modVanityPlate":-1,"modSpeakers":-1,"modShifterLeavers":-1,"modTurbo":false,"modFrontBumper":-1,"modDial":-1,"modAerials":-1,"modDoorSpeaker":-1,"modTrimB":-1,"oilLevel":4.76596940834568,"neonEnabled":[false,false,false,false],"modAPlate":-1,"modKit21":-1,"wheelWidth":0.0,"modTransmission":-1,"modFrontWheels":-1,"fuelLevel":27.80148821534985,"modKit47":-1,"plate":"7FG321HL","modFender":-1,"bodyHealth":1000.0592475178704,"color2":120,"modDashboard":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modXenon":false,"modExhaust":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"modPlateHolder":-1,"modEngineBlock":-1,"modLivery":-1,"modStruts":-1}', '7FG321HL', NULL, 'Legion Square', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51693, 'license:9c01d4dc58581551daa36f5ccaee5ee53322e50c', 'NEJ17289', 't20', '-1628912492', '{"modTrimB":-1,"pearlescentColor":111,"modSpeakers":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"fuelLevel":69.106556421012,"model":1131912276,"modCustomTiresR":false,"liveryRoof":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modEngineBlock":-1,"modStruts":-1,"modExhaust":-1,"dirtLevel":0.0,"modSideSkirt":-1,"modKit19":-1,"modKit17":-1,"engineHealth":1000.0592475179,"wheels":6,"dashboardColor":0,"tyreSmokeColor":[255,255,255],"color1":0,"modHydrolic":-1,"modFender":-1,"wheelWidth":0.0,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modHorns":-1,"modLivery":-1,"modGrille":-1,"modVanityPlate":-1,"modCustomTiresF":false,"modSeats":-1,"modSteeringWheel":-1,"modOrnaments":-1,"modRoof":-1,"neonEnabled":[false,false,false,false],"modWindows":-1,"plateIndex":4,"modHood":-1,"modKit21":-1,"modTransmission":-1,"modFrame":-1,"modAerials":-1,"modPlateHolder":-1,"xenonColor":255,"wheelSize":0.0,"modDashboard":-1,"wheelColor":156,"modBackWheels":-1,"tankHealth":1000.0592475179,"plate":"95RSRMQK","modKit49":-1,"modAPlate":-1,"bodyHealth":1000.0592475179,"modFrontWheels":-1,"modTrimA":-1,"modAirFilter":-1,"modRearBumper":-1,"interiorColor":0,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"headlightColor":255,"modDoorSpeaker":-1,"modTurbo":false,"modXenon":false,"extras":[],"windowTint":-1,"modRightFender":-1,"modShifterLeavers":-1,"modSuspension":-1,"modTrunk":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modSmokeEnabled":false,"color2":0,"modBrakes":-1,"modArchCover":-1,"modSpoilers":-1,"modArmor":-1,"modKit47":-1,"oilLevel":0.0,"modDial":-1,"modEngine":-1,"modFrontBumper":-1,"modTank":-1,"neonColor":[255,0,255]}', '2VL935PB', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51694, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'APB01636', 'monster', '-845961253', '{"modRearBumper":-1,"modBrakes":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modVanityPlate":-1,"color2":64,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"fuelLevel":31.77312938897126,"modArmor":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSpeakers":-1,"modTransmission":-1,"modCustomTiresF":false,"modCustomTiresR":false,"tankHealth":1000.0592475178704,"extras":[],"modEngineBlock":-1,"modPlateHolder":-1,"modKit17":-1,"modStruts":-1,"modAerials":-1,"tyreSmokeColor":[255,255,255],"modFender":-1,"modSteeringWheel":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"plateIndex":0,"bodyHealth":1000.0592475178704,"modLivery":-1,"modAirFilter":-1,"dirtLevel":0.0,"modDial":-1,"modKit19":-1,"windowTint":-1,"modSideSkirt":-1,"modBackWheels":-1,"modKit21":-1,"modKit49":-1,"modTurbo":false,"modSpoilers":-1,"modWindows":-1,"modAPlate":-1,"pearlescentColor":111,"modEngine":-1,"dashboardColor":0,"modGrille":-1,"modHorns":-1,"oilLevel":10.32626705141565,"wheelColor":156,"modArchCover":-1,"modFrontBumper":-1,"modTank":-1,"model":-845961253,"modShifterLeavers":-1,"interiorColor":0,"modSuspension":-1,"modFrame":-1,"xenonColor":255,"modSmokeEnabled":false,"modHydrolic":-1,"modXenon":false,"neonColor":[255,0,255],"wheels":3,"modDashboard":-1,"modRoof":-1,"headlightColor":255,"modFrontWheels":-1,"liveryRoof":-1,"engineHealth":1000.0592475178704,"color1":111,"modRightFender":-1,"modDoorSpeaker":-1,"modTrimB":-1,"wheelWidth":0.0,"neonEnabled":[false,false,false,false],"modTrimA":-1,"modExhaust":-1,"plate":"3OJ724EG","modKit47":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTrunk":-1,"modHood":-1,"modOrnaments":-1}', '3OJ724EG', NULL, 'Legion Square', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51695, 'license:5f3790e106127ad0c40a3f0c601c62f23f8f7ae8', 'ZDF30906', 'f620', '-591610296', '{"modRearBumper":-1,"modBrakes":-1,"wheelSize":0.0,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modVanityPlate":-1,"color2":0,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"fuelLevel":68.31222818628821,"modArmor":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSpeakers":-1,"modTransmission":-1,"modCustomTiresF":false,"modCustomTiresR":false,"tankHealth":1000.0592475178704,"extras":{"12":false,"10":false},"modEngineBlock":-1,"modPlateHolder":-1,"modKit17":-1,"modStruts":-1,"modAerials":-1,"tyreSmokeColor":[255,255,255],"modFender":-1,"modSteeringWheel":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"plateIndex":0,"bodyHealth":1000.0592475178704,"modLivery":-1,"modAirFilter":-1,"dirtLevel":0.0,"modDial":-1,"modKit19":-1,"windowTint":-1,"modSideSkirt":-1,"modBackWheels":-1,"modKit21":-1,"modFrontBumper":-1,"wheelColor":156,"modSpoilers":-1,"engineHealth":1000.0592475178704,"modKit49":-1,"pearlescentColor":3,"modEngine":-1,"dashboardColor":0,"modGrille":-1,"modHorns":-1,"oilLevel":4.76596940834568,"modDashboard":-1,"modArchCover":-1,"modShifterLeavers":-1,"modTank":-1,"model":-591610296,"modTurbo":false,"interiorColor":0,"modSuspension":-1,"modFrame":-1,"xenonColor":255,"modSmokeEnabled":false,"modWindows":-1,"modXenon":false,"plate":"3ZN065HS","wheels":7,"liveryRoof":-1,"headlightColor":255,"modAPlate":-1,"modFrontWheels":-1,"neonColor":[255,0,255],"modHydrolic":-1,"color1":0,"modRightFender":-1,"modDoorSpeaker":-1,"modTrimB":-1,"modTrimA":-1,"wheelWidth":0.0,"modTrunk":-1,"modExhaust":-1,"modRoof":-1,"modKit47":-1,"modHood":-1,"neonEnabled":[false,false,false,false],"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modOrnaments":-1}', '3ZN065HS', NULL, 'Legion Square', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51696, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'APB01636', 'fixter', '-836512833', '{"modKit21":-1,"modStruts":-1,"dashboardColor":0,"modDashboard":-1,"modTrimB":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"neonEnabled":[false,false,false,false],"modDial":-1,"modFrame":-1,"modKit17":-1,"modTransmission":-1,"fuelLevel":54.80864819597542,"modFender":-1,"modHydrolic":-1,"modExhaust":-1,"modBackWheels":-1,"headlightColor":255,"modVanityPlate":-1,"modRearBumper":-1,"modPlateHolder":-1,"dirtLevel":0.0,"wheelSize":0.0,"color1":1,"wheels":6,"modHood":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"modArmor":-1,"modLivery":-1,"modEngineBlock":-1,"plate":"5MW331YN","modSmokeEnabled":false,"modSeats":-1,"modSideSkirt":-1,"modCustomTiresF":false,"modTurbo":false,"modTrunk":-1,"model":-836512833,"modEngine":-1,"modSpoilers":-1,"xenonColor":255,"modOrnaments":-1,"modGrille":-1,"wheelColor":27,"color2":27,"bodyHealth":1000.0592475178704,"windowTint":-1,"wheelWidth":0.0,"modAirFilter":-1,"modBrakes":-1,"tyreSmokeColor":[255,255,255],"modCustomTiresR":false,"modTank":-1,"liveryRoof":-1,"modHorns":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSteeringWheel":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"oilLevel":0.0,"interiorColor":0,"modSpeakers":-1,"modTrimA":-1,"modRoof":-1,"neonColor":[255,0,255],"modAPlate":-1,"modArchCover":-1,"modKit47":-1,"modShifterLeavers":-1,"modAerials":-1,"modSuspension":-1,"modXenon":false,"modDoorSpeaker":-1,"modKit19":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"plateIndex":4,"engineHealth":1000.0592475178704,"modFrontWheels":-1,"modFrontBumper":-1,"tankHealth":1000.0592475178704,"modRightFender":-1,"extras":[],"modWindows":-1,"pearlescentColor":2,"modKit49":-1}', '5MW331YN', NULL, 'Legion Square', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51697, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'APB01636', 'exemplar', '-5153954', '{"modOrnaments":-1,"model":-5153954,"modRearBumper":-1,"modVanityPlate":-1,"modHydrolic":-1,"interiorColor":0,"tyreSmokeColor":[255,255,255],"modKit17":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrame":-1,"modEngine":-1,"modDial":-1,"tankHealth":1000.0592475178704,"wheelWidth":0.0,"xenonColor":255,"extras":{"12":false,"10":false},"fuelLevel":65.13491524739108,"modTurbo":false,"modPlateHolder":-1,"modFrontWheels":-1,"color1":6,"modXenon":false,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTransmission":-1,"modCustomTiresF":false,"modTrunk":-1,"modTrimB":-1,"modFender":-1,"modHood":-1,"modSpeakers":-1,"modBrakes":-1,"modSuspension":-1,"liveryRoof":-1,"modHorns":-1,"oilLevel":4.76596940834568,"modCustomTiresR":false,"modKit19":-1,"engineHealth":1000.0592475178704,"modExhaust":-1,"wheelColor":156,"windowTint":-1,"plate":"4DL183BB","color2":6,"modSteeringWheel":-1,"dirtLevel":0.0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRoof":-1,"modAirFilter":-1,"modKit21":-1,"modSmokeEnabled":false,"modTrimA":-1,"modKit49":-1,"modDashboard":-1,"modDoorSpeaker":-1,"modKit47":-1,"modArchCover":-1,"neonColor":[255,0,255],"neonEnabled":[false,false,false,false],"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modBackWheels":-1,"modArmor":-1,"modStruts":-1,"modGrille":-1,"wheels":7,"modSpoilers":-1,"modSeats":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"plateIndex":0,"modEngineBlock":-1,"modSideSkirt":-1,"headlightColor":255,"modLivery":-1,"modRightFender":-1,"dashboardColor":0,"modTank":-1,"modFrontBumper":-1,"modShifterLeavers":-1,"modAerials":-1,"pearlescentColor":111,"modWindows":-1,"modAPlate":-1,"bodyHealth":1000.0592475178704,"wheelSize":0.0}', '4DL183BB', NULL, 'Legion Square', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51698, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'APB01636', 'avarus', '-2115793025', '{"modOrnaments":-1,"model":-2115793025,"modRearBumper":-1,"modVanityPlate":-1,"modHydrolic":-1,"interiorColor":111,"tyreSmokeColor":[255,255,255],"modKit17":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrame":-1,"modEngine":-1,"modDial":-1,"tankHealth":1000.0592475178704,"wheelWidth":0.0,"xenonColor":255,"extras":[],"fuelLevel":65.13491524739108,"modTurbo":false,"modPlateHolder":-1,"modFrontWheels":-1,"color1":5,"modXenon":false,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTransmission":-1,"modCustomTiresF":false,"modTrunk":-1,"modTrimB":-1,"modFender":-1,"modHood":-1,"modSpeakers":-1,"modBrakes":-1,"modSuspension":-1,"liveryRoof":-1,"modHorns":-1,"oilLevel":4.76596940834568,"modCustomTiresR":false,"modKit19":-1,"engineHealth":1000.0592475178704,"modExhaust":-1,"wheelColor":111,"windowTint":-1,"plate":"6NQ042XL","color2":88,"modSteeringWheel":-1,"dirtLevel":0.0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRoof":-1,"modAirFilter":-1,"modKit21":-1,"modSmokeEnabled":false,"modTrimA":-1,"modKit49":-1,"modDashboard":-1,"modDoorSpeaker":-1,"modKit47":-1,"modArchCover":-1,"neonColor":[255,0,255],"neonEnabled":[false,false,false,false],"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modBackWheels":-1,"modArmor":-1,"modStruts":-1,"modGrille":-1,"wheels":6,"modSpoilers":-1,"modSeats":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"plateIndex":0,"modEngineBlock":-1,"modSideSkirt":-1,"headlightColor":255,"modLivery":-1,"modRightFender":-1,"dashboardColor":111,"modTank":-1,"modFrontBumper":-1,"modShifterLeavers":-1,"modAerials":-1,"pearlescentColor":60,"modWindows":-1,"modAPlate":-1,"bodyHealth":1000.0592475178704,"wheelSize":0.0}', '6NQ042XL', NULL, 'Legion Square', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51699, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'APB01636', 'fixter', '-836512833', '{"modKit47":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit49":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"modArmor":-1,"modAerials":-1,"modRearBumper":-1,"modSuspension":-1,"modPlateHolder":-1,"modEngineBlock":-1,"modHydrolic":-1,"extras":[],"fuelLevel":0.0,"modTransmission":-1,"modRoof":-1,"modTurbo":false,"neonColor":[255,0,255],"modExhaust":-1,"modShifterLeavers":-1,"modLivery":-1,"modBackWheels":-1,"modOrnaments":-1,"modCustomTiresR":false,"modHorns":-1,"windowTint":-1,"engineHealth":1000.0592475178704,"modFender":-1,"pearlescentColor":2,"modSmokeEnabled":false,"modSeats":-1,"modStruts":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"liveryRoof":-1,"plate":"2VD485CV","tankHealth":1000.0592475178704,"modDashboard":-1,"modKit21":-1,"modWindows":-1,"modFrame":-1,"color1":1,"xenonColor":255,"neonEnabled":[false,false,false,false],"modSpoilers":-1,"modSpeakers":-1,"modXenon":false,"bodyHealth":1000.0592475178704,"interiorColor":0,"modSideSkirt":-1,"modDial":-1,"modCustomTiresF":false,"color2":27,"model":-836512833,"modArchCover":-1,"dirtLevel":0.0,"plateIndex":4,"modFrontBumper":-1,"headlightColor":255,"modAPlate":-1,"wheelColor":27,"modSteeringWheel":-1,"modBrakes":-1,"modVanityPlate":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tyreSmokeColor":[255,255,255],"modTrunk":-1,"oilLevel":0.0,"modTrimB":-1,"modTrimA":-1,"wheels":6,"wheelSize":0.0,"modDoorSpeaker":-1,"wheelWidth":0.0,"modEngine":-1,"modRightFender":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modKit17":-1,"modHood":-1,"modGrille":-1,"modFrontWheels":-1,"dashboardColor":0,"modTank":-1,"modAirFilter":-1,"modKit19":-1}', '2VD485CV', NULL, 'Legion Square', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51700, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'APB01636', 'scorcher', '-186537451', '{"bodyHealth":1000.0592475178704,"modSpoilers":-1,"modSteeringWheel":-1,"modKit21":-1,"dirtLevel":0.0,"modCustomTiresF":false,"tankHealth":1000.0592475178704,"modEngineBlock":-1,"modBackWheels":-1,"engineHealth":1000.0592475178704,"modXenon":false,"modSpeakers":-1,"model":-186537451,"modAPlate":-1,"windowTint":-1,"liveryRoof":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheels":6,"tyreSmokeColor":[255,255,255],"modHorns":-1,"modOrnaments":-1,"modKit47":-1,"neonEnabled":[false,false,false,false],"modRearBumper":-1,"modSeats":-1,"interiorColor":0,"modKit19":-1,"modSmokeEnabled":false,"modAerials":-1,"modDashboard":-1,"modFrame":-1,"plate":"5RG230AY","modExhaust":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"neonColor":[255,0,255],"fuelLevel":32.56745762369554,"modArchCover":-1,"modKit49":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modEngine":-1,"plateIndex":0,"modArmor":-1,"modWindows":-1,"modStruts":-1,"modCustomTiresR":false,"modTrunk":-1,"modTransmission":-1,"dashboardColor":0,"modTrimA":-1,"modRoof":-1,"modDial":-1,"modTurbo":false,"modSideSkirt":-1,"modFender":-1,"modShifterLeavers":-1,"modTrimB":-1,"modTank":-1,"modLivery":-1,"modSuspension":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"color1":92,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"modPlateHolder":-1,"wheelWidth":0.0,"modGrille":-1,"modAirFilter":-1,"oilLevel":0.0,"xenonColor":255,"extras":{"2":false,"1":false},"modRightFender":-1,"modKit17":-1,"wheelColor":156,"modFrontWheels":-1,"modBrakes":-1,"headlightColor":255,"modHood":-1,"color2":111,"pearlescentColor":3,"modHydrolic":-1,"modVanityPlate":-1,"modFrontBumper":-1,"modDoorSpeaker":-1}', '5RG230AY', NULL, 'Legion Square', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51701, 'license:94f8775cc2114c967cd17f08744789b16f89533c', 'APB01636', 'exemplar', '-5153954', '{"modLivery":-1,"modKit17":-1,"extras":{"10":true,"12":false},"modSmokeEnabled":false,"modTrunk":-1,"modAPlate":-1,"modPlateHolder":-1,"wheelWidth":0.0,"modHydrolic":-1,"model":-5153954,"color1":66,"modXenon":false,"xenonColor":255,"modStruts":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plateIndex":0,"modSteeringWheel":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modTransmission":-1,"modKit47":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"wheelSize":0.0,"modExhaust":-1,"neonColor":[255,0,255],"modSuspension":-1,"oilLevel":4.76596940834568,"modWindows":-1,"modOrnaments":-1,"modTank":-1,"modTrimB":-1,"modFrame":-1,"pearlescentColor":14,"dirtLevel":0.0,"modHorns":-1,"modTurbo":false,"modGrille":-1,"modAerials":-1,"modKit49":-1,"tyreSmokeColor":[255,255,255],"color2":66,"modFender":-1,"modCustomTiresR":false,"neonEnabled":[false,false,false,false],"plate":"5TK975VM","modArchCover":-1,"modCustomTiresF":false,"modFrontBumper":-1,"modDoorSpeaker":-1,"modEngineBlock":-1,"bodyHealth":1000.0592475178704,"modDial":-1,"fuelLevel":77.84416700297959,"dashboardColor":0,"modRearBumper":-1,"liveryRoof":-1,"modKit21":-1,"modTrimA":-1,"modSeats":-1,"modRightFender":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpeakers":-1,"modArmor":-1,"modShifterLeavers":-1,"modAirFilter":-1,"engineHealth":1000.0592475178704,"modKit19":-1,"modBackWheels":-1,"modFrontWheels":-1,"modSideSkirt":-1,"modBrakes":-1,"wheelColor":156,"modHood":-1,"modDashboard":-1,"windowTint":-1,"modRoof":-1,"interiorColor":0,"modSpoilers":-1,"wheels":7,"modVanityPlate":-1,"tankHealth":1000.0592475178704,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"headlightColor":255,"modEngine":-1}', '5TK975VM', NULL, 'Legion Square', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51702, 'license:ea086a693fdbea9f7649aa55935c2d5f4a3d10b9', 'MZH23055', 'journey', '-120287622', '{"modFender":-1,"modFrame":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTank":-1,"extras":{"1":true,"2":false,"3":false},"tankHealth":1000.0592475178704,"modRightFender":-1,"modPlateHolder":-1,"color2":114,"bodyHealth":1000.0592475178704,"wheelSize":0.0,"modSeats":-1,"neonColor":[255,255,255],"wheels":0,"interiorColor":0,"modTrimB":-1,"modWindows":-1,"dashboardColor":0,"modKit21":-1,"plateIndex":3,"modKit19":-1,"modFrontBumper":-1,"fuelLevel":39.71641173621407,"modSpoilers":-1,"dirtLevel":0.0,"modKit47":-1,"modKit17":-1,"modExhaust":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"engineHealth":1000.0592475178704,"wheelWidth":0.0,"modSuspension":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRoof":-1,"modXenon":false,"modHydrolic":-1,"modAirFilter":-1,"modCustomTiresR":false,"modDoorSpeaker":-1,"modRearBumper":-1,"model":-120287622,"modFrontWheels":-1,"modSteeringWheel":-1,"modAerials":-1,"modDial":-1,"wheelColor":112,"pearlescentColor":121,"plate":"86XZE542","windowTint":-1,"modArchCover":-1,"modShifterLeavers":-1,"liveryRoof":-1,"modTrimA":-1,"modLivery":-1,"modCustomTiresF":false,"modTransmission":-1,"neonEnabled":[false,false,false,false],"modHorns":-1,"modEngineBlock":-1,"modGrille":-1,"modSpeakers":-1,"xenonColor":255,"modBrakes":-1,"headlightColor":255,"modOrnaments":-1,"modEngine":-1,"modHood":-1,"modDashboard":-1,"oilLevel":4.76596940834568,"modKit49":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSmokeEnabled":false,"modStruts":-1,"tyreSmokeColor":[255,255,255],"color1":121,"modArmor":-1,"modAPlate":-1,"modSideSkirt":-1,"modTrunk":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modTurbo":false,"modVanityPlate":-1,"modBackWheels":-1}', '86XZE542', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, '1', 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51703, 'license:46ef691a75a59edb8365b594f7ebb2fe41d4a1c1', 'HFY79706', 't20', '1663218586', '[]', 'OO6LNUM0', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51704, 'license:46ef691a75a59edb8365b594f7ebb2fe41d4a1c1', 'HFY79706', 'zentorno', '-1403128555', '[]', 'YWXTDTB9', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51705, 'license:f0d590418bac5f9a3416239d8f21f626fdcc3d37', 'DHW44817', 't20', '1663218586', '[]', 'NNB3GCL2', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51706, 'license:cb718c56e818393821a472d6b53aa29b484d4b20', 'CKY95174', 't20', '1663218586', '[]', 'LRAPSV1O', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51707, 'license:cb718c56e818393821a472d6b53aa29b484d4b20', 'CKY95174', 't20', '1663218586', '[]', 'AWOABQ47', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51708, 'license:f0d590418bac5f9a3416239d8f21f626fdcc3d37', 'DHW44817', 't20', '1663218586', '[]', 'VVU3YMAJ', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51709, 'license:2ba6022d9eccdd57eef9a31cda577bdfe0a1f324', 'CEE84594', 'HEYSEDEN ARAÇ ÖDÜLÜ ', '-2063461124', '[]', 'COVCHFXQ', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51710, 'license:2ba6022d9eccdd57eef9a31cda577bdfe0a1f324', 'WLF54664', 't20', '1663218586', '[]', 'B6WPAIOX', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51711, 'license:2ba6022d9eccdd57eef9a31cda577bdfe0a1f324', 'WLF54664', 'weapon_g19', '949377494', '[]', 'QZ91XW8Y', NULL, 'A', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51712, 'license:6a29fce8a3ca66dfce88ed4aed3e586ed5bba20e', 'BTO14085', 'shinobi', '1353120668', '{}', '3VE312UR', NULL, 'nobleparking', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51713, 'license:6a29fce8a3ca66dfce88ed4aed3e586ed5bba20e', 'BTO14085', 'shinobi', '1353120668', '{}', '4XH542GB', NULL, 'nobleparking', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51714, 'license:585f4223ffddc61254cd8fd0bd9653d392cedae0', 'AHY06468', 'comet7', '1141395928', '{}', '3YT655DW', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51715, 'license:585f4223ffddc61254cd8fd0bd9653d392cedae0', 'AHY06468', 'comet7', '1141395928', '{}', '0OQ100GT', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51716, 'license:585f4223ffddc61254cd8fd0bd9653d392cedae0', 'AHY06468', 't20', '1663218586', '{"modSpeakers":-1,"modKit19":-1,"modBackWheels":-1,"neonColor":[255,0,255],"modAPlate":-1,"modRearBumper":-1,"modAirFilter":-1,"modHood":-1,"modFender":-1,"wheelWidth":0.0,"modSteeringWheel":-1,"plateIndex":0,"modTurbo":false,"modCustomTiresF":false,"modDial":-1,"model":1663218586,"extras":[],"modSmokeEnabled":false,"modStruts":-1,"modSpoilers":-1,"modGrille":-1,"tankHealth":1000.0592475178704,"modKit49":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"engineHealth":1000.0592475178704,"modTrimA":-1,"modAerials":-1,"modRightFender":-1,"modKit17":-1,"modEngineBlock":-1,"modBrakes":-1,"dashboardColor":0,"modTank":-1,"headlightColor":255,"interiorColor":0,"fuelLevel":100.08535757525947,"modTrunk":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrontBumper":-1,"modShifterLeavers":-1,"wheelColor":0,"neonEnabled":[false,false,false,false],"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":true,"0":true},"modEngine":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSuspension":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"liveryRoof":-1,"modExhaust":-1,"modSideSkirt":-1,"modCustomTiresR":false,"modArchCover":-1,"color1":7,"modHorns":-1,"modWindows":-1,"color2":7,"modTrimB":-1,"modRoof":-1,"windowTint":-1,"wheelSize":0.0,"modArmor":-1,"modTransmission":-1,"modXenon":false,"modHydrolic":-1,"modKit47":-1,"modPlateHolder":-1,"modFrontWheels":-1,"modOrnaments":-1,"bodyHealth":1000.0592475178704,"modVanityPlate":-1,"tyreSmokeColor":[255,255,255],"modSeats":-1,"dirtLevel":7.14895411251853,"modDashboard":-1,"wheels":7,"modLivery":-1,"pearlescentColor":3,"plate":"2ZO133OM","oilLevel":4.76596940834568,"modFrame":-1,"xenonColor":255,"modKit21":-1,"modDoorSpeaker":-1}', '2ZO133OM', NULL, 'nobleparking', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51717, 'license:585f4223ffddc61254cd8fd0bd9653d392cedae0', 'AHY06468', 'e36sedan', '-1024494722', '{}', '9RX550PY', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51718, 'license:585f4223ffddc61254cd8fd0bd9653d392cedae0', 'AHY06468', 'e36sedan', '-1024494722', '{}', '4WC332UO', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51719, 'license:585f4223ffddc61254cd8fd0bd9653d392cedae0', 'AHY06468', 'e36sedan', '-1024494722', '{}', '1HB043XL', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51720, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'npolvic', '1958089129', '{"modAPlate":-1,"dashboardColor":111,"neonColor":[255,0,255],"modVanityPlate":-1,"modSuspension":-1,"wheelColor":0,"modTransmission":-1,"model":-901056903,"modRoof":-1,"modCustomTiresF":false,"modEngine":-1,"modEngineBlock":-1,"wheelWidth":0.0,"modSeats":-1,"modXenon":false,"modSteeringWheel":-1,"liveryRoof":-1,"modAerials":-1,"neonEnabled":[false,false,false,false],"tankHealth":999.2649192831461,"headlightColor":255,"modRearBumper":-1,"modAirFilter":-1,"modHood":-1,"tyreSmokeColor":[255,255,255],"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"plate":"PD5112","modKit47":-1,"modKit21":-1,"modLivery":-1,"modKit17":-1,"wheelSize":0.0,"engineHealth":1000.0592475178704,"modGrille":-1,"dirtLevel":2.38298470417284,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":999.75},"color1":62,"modTrimB":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTank":-1,"extras":{"7":false,"6":false,"1":false,"3":false,"2":false,"5":false,"4":true},"modHydrolic":-1,"modFrame":-1,"pearlescentColor":0,"modFrontBumper":-1,"modShifterLeavers":-1,"modKit49":-1,"modFrontWheels":-1,"modArmor":-1,"modTrunk":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modExhaust":-1,"modArchCover":-1,"modWindows":-1,"modTrimA":-1,"color2":62,"modFender":-1,"wheels":1,"modStruts":-1,"fuelLevel":100.08535757525947,"oilLevel":8.73761058196709,"modOrnaments":-1,"xenonColor":255,"modBackWheels":-1,"modTurbo":false,"modBrakes":-1,"bodyHealth":998.4705910484217,"modDashboard":-1,"modKit19":-1,"modRightFender":-1,"windowTint":-1,"modHorns":-1,"modDoorSpeaker":-1,"modSpeakers":-1,"plateIndex":4,"interiorColor":111,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modPlateHolder":-1,"modSpoilers":-1,"modDial":-1,"modSmokeEnabled":false,"modCustomTiresR":false,"modSideSkirt":-1}', 'PD5112', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51721, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'npolexp', '687611455', '{"modAPlate":-1,"dashboardColor":112,"neonColor":[255,0,255],"modVanityPlate":-1,"modSuspension":-1,"wheelColor":0,"modTransmission":-1,"model":719025956,"modRoof":-1,"modCustomTiresF":false,"modEngine":-1,"modEngineBlock":-1,"wheelWidth":0.0,"modSeats":-1,"modXenon":false,"modSteeringWheel":-1,"liveryRoof":-1,"modAerials":-1,"neonEnabled":[false,false,false,false],"tankHealth":1000.0592475178704,"headlightColor":255,"modRearBumper":-1,"modAirFilter":-1,"modHood":-1,"tyreSmokeColor":[255,255,255],"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"plate":"06DIJ862","modKit47":-1,"modKit21":-1,"modLivery":-1,"modKit17":-1,"wheelSize":0.0,"engineHealth":1000.0592475178704,"modGrille":-1,"dirtLevel":8.73761058196709,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"color1":62,"modTrimB":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTank":-1,"extras":{"7":false,"6":false,"1":false,"8":false,"3":false,"2":false,"5":false,"4":false},"modHydrolic":-1,"modFrame":-1,"pearlescentColor":0,"modFrontBumper":-1,"modShifterLeavers":-1,"modKit49":-1,"modFrontWheels":-1,"modArmor":-1,"modTrunk":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modExhaust":-1,"modArchCover":-1,"modWindows":-1,"modTrimA":-1,"color2":62,"modFender":-1,"wheels":3,"modStruts":-1,"fuelLevel":100.08535757525947,"oilLevel":8.73761058196709,"modOrnaments":-1,"xenonColor":255,"modBackWheels":-1,"modTurbo":false,"modBrakes":-1,"bodyHealth":1000.0592475178704,"modDashboard":-1,"modKit19":-1,"modRightFender":-1,"windowTint":-1,"modHorns":-1,"modDoorSpeaker":-1,"modSpeakers":-1,"plateIndex":4,"interiorColor":112,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modPlateHolder":-1,"modSpoilers":-1,"modDial":-1,"modSmokeEnabled":false,"modCustomTiresR":false,"modSideSkirt":-1}', 'PD2141', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51723, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"modAerials":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modEngine":-1,"modSteeringWheel":-1,"dashboardColor":0,"engineHealth":1000.0592475178704,"liveryRoof":-1,"neonColor":[255,0,255],"color1":0,"modKit21":-1,"fuelLevel":100.08535757525947,"modKit47":-1,"modOrnaments":-1,"modKit17":-1,"modSuspension":-1,"oilLevel":4.76596940834568,"modGrille":-1,"modSpeakers":-1,"wheelSize":0.0,"modTrimB":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"modLivery":1,"wheelWidth":0.0,"headlightColor":255,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"neonEnabled":[false,false,false,false],"modBackWheels":-1,"modBrakes":-1,"modCustomTiresF":false,"interiorColor":0,"modTransmission":-1,"modWindows":-1,"color2":0,"modXenon":false,"modAPlate":-1,"modVanityPlate":-1,"modArmor":-1,"modDashboard":-1,"xenonColor":255,"modExhaust":-1,"modFrontBumper":-1,"tyreSmokeColor":[255,255,255],"wheelColor":0,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"dirtLevel":2.38298470417284,"modHydrolic":-1,"modRoof":-1,"modEngineBlock":-1,"extras":[],"tankHealth":1000.0592475178704,"pearlescentColor":0,"model":436874758,"modHorns":-1,"modFrame":-1,"modTrunk":-1,"modCustomTiresR":false,"modRightFender":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plate":"5RZ368RC","modAirFilter":-1,"modKit19":-1,"modTank":-1,"wheels":6,"modHood":-1,"modFrontWheels":-1,"modShifterLeavers":-1,"modTrimA":-1,"modStruts":-1,"modKit49":-1,"modRearBumper":-1,"modFender":-1,"modTurbo":false,"modArchCover":-1,"modSideSkirt":-1,"modPlateHolder":-1,"bodyHealth":1000.0592475178704,"modSmokeEnabled":false,"plateIndex":1,"modDial":-1,"modDoorSpeaker":-1,"windowTint":-1}', '5RZ368RC', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51725, 'license:8a1a2d20975857143a32b90abb1c9214e8f2e135', 'RPB30164', 's1000rr', '436874758', '{"modKit49":-1,"dashboardColor":0,"modTrimB":-1,"windowTint":-1,"modTurbo":false,"model":436874758,"modXenon":false,"modSeats":-1,"modKit21":-1,"engineHealth":1000.0592475178704,"modArmor":-1,"modKit47":-1,"xenonColor":255,"modEngine":-1,"color1":0,"tankHealth":1000.0592475178704,"modSideSkirt":-1,"plateIndex":0,"wheelWidth":1.0,"modAirFilter":-1,"modTrunk":-1,"headlightColor":255,"modHood":-1,"fuelLevel":50.04267878762973,"modTransmission":-1,"modDashboard":-1,"modTank":-1,"modGrille":-1,"modOrnaments":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modKit19":-1,"modPlateHolder":-1,"wheels":6,"neonEnabled":[false,false,false,false],"modDial":-1,"modBackWheels":-1,"extras":[],"neonColor":[0,0,0],"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modExhaust":-1,"interiorColor":0,"tyreSmokeColor":[255,255,255],"modFrontBumper":-1,"modRightFender":-1,"modSmokeEnabled":false,"modAPlate":-1,"dirtLevel":6.35462587779425,"modShifterLeavers":-1,"modStruts":-1,"modWindows":-1,"modEngineBlock":-1,"modRoof":-1,"modDoorSpeaker":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modCustomTiresF":false,"oilLevel":4.76596940834568,"wheelColor":0,"modSteeringWheel":-1,"modKit17":-1,"modHydrolic":-1,"modArchCover":-1,"modCustomTiresR":false,"modFender":-1,"modFrame":-1,"wheelSize":1.0,"modRearBumper":-1,"modSpeakers":-1,"modHorns":-1,"modVanityPlate":-1,"modFrontWheels":-1,"color2":0,"bodyHealth":1000.0592475178704,"modAerials":-1,"modTrimA":-1,"liveryRoof":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modSuspension":-1,"modBrakes":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plate":"4XC565PG","modLivery":1,"modSpoilers":-1,"pearlescentColor":0}', '4XC565PG', NULL, 'nobleparking', NULL, 50, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51726, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"modAerials":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modEngine":-1,"modSteeringWheel":-1,"dashboardColor":0,"engineHealth":1000.0592475178704,"liveryRoof":-1,"neonColor":[255,0,255],"color1":0,"modKit21":-1,"fuelLevel":100.08535757525947,"modKit47":-1,"modOrnaments":-1,"modKit17":-1,"modSuspension":-1,"oilLevel":4.76596940834568,"modGrille":-1,"modSpeakers":-1,"wheelSize":0.0,"modTrimB":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"modLivery":-1,"wheelWidth":0.0,"headlightColor":255,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"neonEnabled":[false,false,false,false],"modBackWheels":-1,"modBrakes":-1,"modCustomTiresF":false,"interiorColor":0,"modTransmission":-1,"modWindows":-1,"color2":0,"modXenon":false,"modAPlate":-1,"modVanityPlate":-1,"modArmor":-1,"modDashboard":-1,"xenonColor":255,"modExhaust":-1,"modFrontBumper":-1,"tyreSmokeColor":[255,255,255],"wheelColor":0,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"dirtLevel":7.94328234724281,"modHydrolic":-1,"modRoof":-1,"modEngineBlock":-1,"extras":[],"tankHealth":1000.0592475178704,"pearlescentColor":0,"model":436874758,"modHorns":-1,"modFrame":-1,"modTrunk":-1,"modCustomTiresR":false,"modRightFender":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plate":"9PF900AG","modAirFilter":-1,"modKit19":-1,"modTank":-1,"wheels":6,"modHood":-1,"modFrontWheels":-1,"modShifterLeavers":-1,"modTrimA":-1,"modStruts":-1,"modKit49":-1,"modRearBumper":-1,"modFender":-1,"modTurbo":false,"modArchCover":-1,"modSideSkirt":-1,"modPlateHolder":-1,"bodyHealth":1000.0592475178704,"modSmokeEnabled":false,"plateIndex":1,"modDial":-1,"modDoorSpeaker":-1,"windowTint":-1}', '9PF900AG', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51727, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"modAerials":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modEngine":-1,"modSteeringWheel":-1,"dashboardColor":0,"engineHealth":1000.0592475178704,"liveryRoof":-1,"neonColor":[255,0,255],"color1":0,"modKit21":-1,"fuelLevel":100.08535757525947,"modKit47":-1,"modOrnaments":-1,"modKit17":-1,"modSuspension":-1,"oilLevel":4.76596940834568,"modGrille":-1,"modSpeakers":-1,"wheelSize":0.0,"modTrimB":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"modLivery":-1,"wheelWidth":0.0,"headlightColor":255,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"neonEnabled":[false,false,false,false],"modBackWheels":-1,"modBrakes":-1,"modCustomTiresF":false,"interiorColor":0,"modTransmission":-1,"modWindows":-1,"color2":0,"modXenon":false,"modAPlate":-1,"modVanityPlate":-1,"modArmor":-1,"modDashboard":-1,"xenonColor":255,"modExhaust":-1,"modFrontBumper":-1,"tyreSmokeColor":[255,255,255],"wheelColor":0,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"dirtLevel":7.94328234724281,"modHydrolic":-1,"modRoof":-1,"modEngineBlock":-1,"extras":[],"tankHealth":1000.0592475178704,"pearlescentColor":0,"model":436874758,"modHorns":-1,"modFrame":-1,"modTrunk":-1,"modCustomTiresR":false,"modRightFender":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plate":"4XE390MT","modAirFilter":-1,"modKit19":-1,"modTank":-1,"wheels":6,"modHood":-1,"modFrontWheels":-1,"modShifterLeavers":-1,"modTrimA":-1,"modStruts":-1,"modKit49":-1,"modRearBumper":-1,"modFender":-1,"modTurbo":false,"modArchCover":-1,"modSideSkirt":-1,"modPlateHolder":-1,"bodyHealth":1000.0592475178704,"modSmokeEnabled":false,"plateIndex":3,"modDial":-1,"modDoorSpeaker":-1,"windowTint":-1}', '4XE390MT', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51735, 'license:0d2a1c0316dab516fd2a79832e3173e5a78cb2f6', 'UYV17385', 's1000rr', '436874758', '{"modArmor":-1,"wheelColor":0,"modSmokeEnabled":false,"modCustomTiresR":false,"modRightFender":-1,"modTransmission":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modExhaust":-1,"modSuspension":-1,"modTrunk":-1,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modXenon":false,"tyreSmokeColor":[255,255,255],"modFrame":-1,"plate":"7ND796LQ","tankHealth":1000.0592475178704,"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":[],"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpoilers":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"modHood":-1,"modSpeakers":-1,"model":436874758,"modEngine":-1,"xenonColor":255,"liveryRoof":-1,"modFrontWheels":-1,"modSteeringWheel":-1,"color2":0,"modKit49":-1,"modAirFilter":-1,"modStruts":-1,"plateIndex":3,"dirtLevel":7.14895411251853,"windowTint":-1,"modOrnaments":-1,"modTrimA":-1,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":6,"modKit19":-1,"wheelWidth":0.0,"modRoof":-1,"modBrakes":-1,"dashboardColor":0,"modRearBumper":-1,"oilLevel":4.76596940834568,"color1":0,"modShifterLeavers":-1,"modTurbo":false,"pearlescentColor":0,"bodyHealth":1000.0592475178704,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit21":-1,"modLivery":-1,"modGrille":-1,"modHorns":-1,"modHydrolic":-1,"modWindows":-1,"modKit17":-1,"modFrontBumper":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"interiorColor":0,"modDial":-1,"modTank":-1,"modVanityPlate":-1,"modDashboard":-1}', '7ND796LQ', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51736, 'license:0d2a1c0316dab516fd2a79832e3173e5a78cb2f6', 'UYV17385', 's1000rr', '436874758', '{"modArmor":-1,"wheelColor":0,"modSmokeEnabled":false,"modCustomTiresR":false,"modRightFender":-1,"modTransmission":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modExhaust":-1,"modSuspension":-1,"modTrunk":-1,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modXenon":false,"tyreSmokeColor":[255,255,255],"modFrame":-1,"plate":"2QT298ML","tankHealth":1000.0592475178704,"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":[],"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpoilers":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"modHood":-1,"modSpeakers":-1,"model":436874758,"modEngine":-1,"xenonColor":255,"liveryRoof":-1,"modFrontWheels":-1,"modSteeringWheel":-1,"color2":0,"modKit49":-1,"modAirFilter":-1,"modStruts":-1,"plateIndex":3,"dirtLevel":6.35462587779425,"windowTint":-1,"modOrnaments":-1,"modTrimA":-1,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":6,"modKit19":-1,"wheelWidth":0.0,"modRoof":-1,"modBrakes":-1,"dashboardColor":0,"modRearBumper":-1,"oilLevel":4.76596940834568,"color1":0,"modShifterLeavers":-1,"modTurbo":false,"pearlescentColor":0,"bodyHealth":1000.0592475178704,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit21":-1,"modLivery":-1,"modGrille":-1,"modHorns":-1,"modHydrolic":-1,"modWindows":-1,"modKit17":-1,"modFrontBumper":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"interiorColor":0,"modDial":-1,"modTank":-1,"modVanityPlate":-1,"modDashboard":-1}', '2QT298ML', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51737, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"modArmor":-1,"wheelColor":0,"modSmokeEnabled":false,"modFrontWheels":-1,"modRightFender":-1,"modTransmission":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modExhaust":-1,"modSuspension":-1,"modDial":-1,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modRoof":-1,"tyreSmokeColor":[255,255,255],"modKit17":-1,"plate":"5VC857IT","tankHealth":1000.0592475178704,"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":[],"modSteeringWheel":-1,"modSpoilers":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"modKit49":-1,"modSpeakers":-1,"modTank":-1,"modEngine":-1,"modFrontBumper":-1,"oilLevel":4.76596940834568,"modKit21":-1,"color1":0,"modAirFilter":-1,"plateIndex":3,"modTrimB":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"interiorColor":0,"modTrimA":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modOrnaments":-1,"modHorns":-1,"dirtLevel":3.17731293889712,"modDoorSpeaker":-1,"wheels":6,"modKit19":-1,"liveryRoof":-1,"model":436874758,"modBrakes":-1,"dashboardColor":0,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"color2":0,"bodyHealth":1000.0592475178704,"modShifterLeavers":-1,"modTurbo":false,"pearlescentColor":0,"xenonColor":255,"modCustomTiresR":false,"windowTint":-1,"modLivery":-1,"modGrille":-1,"wheelWidth":0.0,"modHydrolic":-1,"modWindows":-1,"modFrame":-1,"modXenon":false,"modStruts":-1,"modTrunk":-1,"modHood":-1,"modRearBumper":-1,"modVanityPlate":-1,"modDashboard":-1}', '5VC857IT', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51738, 'license:0d2a1c0316dab516fd2a79832e3173e5a78cb2f6', 'UYV17385', '22g63', '-2136080393', '{"modArmor":-1,"wheelColor":0,"modSmokeEnabled":false,"modFrontWheels":-1,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"modExhaust":-1,"modSuspension":-1,"interiorColor":0,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modRoof":-1,"tyreSmokeColor":[255,255,255],"modKit17":-1,"plate":"3XU268LY","tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":{"2":true},"modKit21":-1,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"color2":134,"modSpeakers":-1,"model":-2136080393,"modEngine":-1,"modXenon":false,"oilLevel":6.35462587779425,"modDial":-1,"dirtLevel":6.35462587779425,"plateIndex":4,"modCustomTiresR":false,"modHorns":-1,"modKit49":-1,"modFrontBumper":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"xenonColor":255,"modOrnaments":-1,"modSteeringWheel":-1,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":3,"modKit19":-1,"modRearBumper":-1,"modStruts":-1,"color1":134,"bodyHealth":1000.0592475178704,"modFender":-1,"modHydrolic":-1,"modAirFilter":-1,"modShifterLeavers":-1,"modTurbo":false,"pearlescentColor":0,"dashboardColor":0,"tankHealth":1000.0592475178704,"modTank":-1,"modLivery":-1,"modGrille":-1,"wheelWidth":0.0,"modBrakes":-1,"modWindows":-1,"modTrimA":-1,"liveryRoof":-1,"modTrunk":-1,"modFrame":-1,"modTransmission":-1,"modHood":-1,"modVanityPlate":-1,"modDashboard":-1}', '3XU268LY', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51739, 'license:0d2a1c0316dab516fd2a79832e3173e5a78cb2f6', 'UYV17385', 'bmwm8', '-1404319008', '{"modKit19":-1,"modExhaust":-1,"tankHealth":4000.2369900714818,"modLivery":-1,"modKit21":-1,"wheelSize":1.0,"neonColor":[2,21,255],"fuelLevel":59.57461760432111,"modBrakes":2,"engineHealth":1000.0592475178704,"modStruts":-1,"modDial":-1,"modTrimB":-1,"color2":0,"modRoof":-1,"modHood":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modEngineBlock":-1,"modSteeringWheel":-1,"modCustomTiresF":false,"modEngine":3,"modRearBumper":-1,"modTank":-1,"modArmor":-1,"modTurbo":1,"modFrontBumper":-1,"modOrnaments":-1,"bodyHealth":1000.0592475178704,"modVanityPlate":-1,"modPlateHolder":-1,"modXenon":1,"modRightFender":-1,"wheelWidth":1.0,"modFrontWheels":-1,"modSpeakers":-1,"modAerials":-1,"oilLevel":4.76596940834568,"model":-1404319008,"dashboardColor":27,"modCustomTiresR":false,"modKit49":-1,"neonEnabled":[1,1,1,1],"modSmokeEnabled":false,"modSuspension":4,"modSeats":-1,"tyreSmokeColor":[255,255,255],"modAirFilter":-1,"liveryRoof":-1,"headlightColor":12,"modKit17":-1,"modTrimA":-1,"wheelColor":15,"modHydrolic":-1,"interiorColor":15,"plate":"6KU815ZV","plateIndex":1,"modSpoilers":0,"modAPlate":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modGrille":-1,"color1":1,"modSideSkirt":0,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modDoorSpeaker":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFender":-1,"modDashboard":-1,"xenonColor":12,"modBackWheels":-1,"modShifterLeavers":-1,"dirtLevel":0.0,"pearlescentColor":3,"windowTint":1,"modKit47":-1,"modHorns":-1,"modTrunk":-1,"modWindows":-1,"modFrame":-1,"modTransmission":2,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"extras":{"10":false},"wheels":0,"modArchCover":-1}', '6KU815ZV', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51740, 'license:0d2a1c0316dab516fd2a79832e3173e5a78cb2f6', 'UYV17385', 'lamks', '144816699', '{"modKit19":-1,"modExhaust":-1,"tankHealth":1000.0592475178704,"modLivery":-1,"modKit21":-1,"wheelSize":1.0,"neonColor":[255,0,255],"fuelLevel":68.31222818628821,"modBrakes":2,"engineHealth":1000.0592475178704,"modStruts":-1,"modDial":-1,"modTrimB":-1,"color2":104,"modRoof":-1,"modHood":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modEngineBlock":-1,"modSteeringWheel":-1,"modCustomTiresF":false,"modEngine":3,"modRearBumper":-1,"modTank":-1,"modArmor":-1,"modTurbo":1,"modFrontBumper":-1,"modOrnaments":-1,"bodyHealth":1000.0592475178704,"modVanityPlate":-1,"modPlateHolder":-1,"modXenon":false,"modRightFender":-1,"wheelWidth":1.0,"modFrontWheels":-1,"modSpeakers":-1,"modAerials":-1,"oilLevel":4.76596940834568,"model":144816699,"dashboardColor":0,"modCustomTiresR":false,"modKit49":-1,"neonEnabled":[false,false,false,false],"modSmokeEnabled":false,"modSuspension":3,"modSeats":-1,"tyreSmokeColor":[255,255,255],"modAirFilter":-1,"liveryRoof":-1,"headlightColor":255,"modKit17":-1,"modTrimA":-1,"wheelColor":1,"modHydrolic":-1,"interiorColor":0,"plate":"8XG116IT","plateIndex":5,"modSpoilers":-1,"modAPlate":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modGrille":-1,"color1":147,"modSideSkirt":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"modDoorSpeaker":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFender":-1,"modDashboard":-1,"xenonColor":255,"modBackWheels":-1,"modShifterLeavers":-1,"dirtLevel":0.79432823472428,"pearlescentColor":0,"windowTint":-1,"modKit47":-1,"modHorns":-1,"modTrunk":-1,"modWindows":-1,"modFrame":-1,"modTransmission":2,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"extras":{"4":false,"10":true,"3":false,"2":true,"1":true},"wheels":7,"modArchCover":-1}', '8XG116IT', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51741, 'license:0d2a1c0316dab516fd2a79832e3173e5a78cb2f6', 'UYV17385', 'lamks', '144816699', '{"modArmor":-1,"wheelColor":1,"modSmokeEnabled":false,"modFrontWheels":-1,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"modExhaust":-1,"modSuspension":-1,"interiorColor":0,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modRoof":-1,"tyreSmokeColor":[255,255,255],"modKit17":-1,"plate":"0AB141JK","tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":{"4":true,"10":true,"1":false,"3":false,"2":true},"modKit21":-1,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"color2":3,"modSpeakers":-1,"model":144816699,"modEngine":-1,"modXenon":false,"oilLevel":4.76596940834568,"modDial":-1,"dirtLevel":0.0,"plateIndex":2,"modCustomTiresR":false,"modHorns":-1,"modKit49":-1,"modFrontBumper":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"xenonColor":255,"modOrnaments":-1,"modSteeringWheel":-1,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":7,"modKit19":-1,"modRearBumper":-1,"modStruts":-1,"color1":28,"bodyHealth":1000.0592475178704,"modFender":-1,"modHydrolic":-1,"modAirFilter":-1,"modShifterLeavers":-1,"modTurbo":false,"pearlescentColor":0,"dashboardColor":0,"tankHealth":1000.0592475178704,"modTank":-1,"modLivery":-1,"modGrille":-1,"wheelWidth":0.0,"modBrakes":-1,"modWindows":-1,"modTrimA":-1,"liveryRoof":-1,"modTrunk":-1,"modFrame":-1,"modTransmission":-1,"modHood":-1,"modVanityPlate":-1,"modDashboard":-1}', '0AB141JK', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51742, 'license:0d2a1c0316dab516fd2a79832e3173e5a78cb2f6', 'UYV17385', 'lamks', '144816699', '{"modArmor":-1,"wheelColor":1,"modSmokeEnabled":false,"modFrontWheels":-1,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"modExhaust":-1,"modSuspension":-1,"interiorColor":0,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modRoof":-1,"tyreSmokeColor":[255,255,255],"modKit17":-1,"plate":"2DX489VS","tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":{"4":false,"10":true,"1":false,"3":false,"2":true},"modKit21":-1,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"color2":3,"modSpeakers":-1,"model":144816699,"modEngine":-1,"modXenon":false,"oilLevel":4.76596940834568,"modDial":-1,"dirtLevel":0.79432823472428,"plateIndex":0,"modCustomTiresR":false,"modHorns":-1,"modKit49":-1,"modFrontBumper":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"xenonColor":255,"modOrnaments":-1,"modSteeringWheel":-1,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":7,"modKit19":-1,"modRearBumper":-1,"modStruts":-1,"color1":28,"bodyHealth":1000.0592475178704,"modFender":-1,"modHydrolic":-1,"modAirFilter":-1,"modShifterLeavers":-1,"modTurbo":false,"pearlescentColor":0,"dashboardColor":0,"tankHealth":1000.0592475178704,"modTank":-1,"modLivery":1,"modGrille":-1,"wheelWidth":0.0,"modBrakes":-1,"modWindows":-1,"modTrimA":-1,"liveryRoof":-1,"modTrunk":-1,"modFrame":-1,"modTransmission":-1,"modHood":-1,"modVanityPlate":-1,"modDashboard":-1}', '2DX489VS', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51743, 'license:bb74c63887960eb35b000c29e402fe295c876841', 'QOU80537', 'lamks', '144816699', '{"modArmor":-1,"wheelColor":1,"modSmokeEnabled":false,"modFrontWheels":-1,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"modAirFilter":-1,"modExhaust":-1,"modSuspension":-1,"modTrunk":-1,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modXenon":false,"tyreSmokeColor":[255,255,255],"modFrame":-1,"plate":"1EZ910UM","tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"modCustomTiresF":false,"neonColor":[0,0,0],"extras":{"4":false,"10":false,"1":false,"3":true,"2":true},"modKit21":-1,"modSpoilers":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"modHood":-1,"modSpeakers":-1,"modStruts":-1,"modEngine":-1,"modTank":-1,"oilLevel":4.76596940834568,"xenonColor":255,"modCustomTiresR":false,"modRoof":-1,"modHorns":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"color2":107,"color1":7,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modOrnaments":-1,"modKit49":-1,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":7,"modKit19":-1,"modTransmission":-1,"bodyHealth":1000.0592475178704,"modHydrolic":-1,"dashboardColor":0,"tankHealth":1000.0592475178704,"dirtLevel":0.79432823472428,"modTrimA":-1,"modShifterLeavers":-1,"modTurbo":false,"pearlescentColor":8,"liveryRoof":-1,"modSteeringWheel":-1,"plateIndex":0,"modLivery":1,"modGrille":-1,"wheelWidth":0.0,"modBrakes":-1,"modWindows":-1,"modKit17":-1,"modDial":-1,"interiorColor":0,"model":144816699,"modRearBumper":-1,"modFrontBumper":-1,"modVanityPlate":-1,"modDashboard":-1}', '1EZ910UM', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51744, 'license:05d4ed4aa64596922124c0a93d08633b9f41ad40', 'BNN74169', 's1000rr', '436874758', '{"modArmor":-1,"wheelColor":0,"modSmokeEnabled":false,"modRearBumper":-1,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modExhaust":-1,"modSuspension":-1,"interiorColor":0,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modRoof":-1,"tyreSmokeColor":[255,255,255],"xenonColor":255,"plate":"6ZT116IS","tankHealth":1000.0592475178704,"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":[],"modSteeringWheel":-1,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"modHood":-1,"modSpeakers":-1,"modStruts":-1,"modEngine":-1,"modFrontWheels":-1,"liveryRoof":-1,"modBrakes":-1,"modTrimA":-1,"plateIndex":3,"model":436874758,"modTrimB":-1,"color2":0,"modTrunk":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modOrnaments":-1,"modTransmission":-1,"dirtLevel":4.76596940834568,"modDoorSpeaker":-1,"wheels":6,"modKit19":-1,"modKit21":-1,"modFrame":-1,"modCustomTiresR":false,"bodyHealth":1000.0592475178704,"modAirFilter":-1,"oilLevel":4.76596940834568,"pearlescentColor":0,"modShifterLeavers":-1,"modTurbo":false,"color1":0,"modFender":-1,"wheelWidth":0.0,"dashboardColor":0,"modLivery":-1,"modGrille":-1,"modHorns":-1,"modHydrolic":-1,"modWindows":-1,"modFrontBumper":-1,"modKit17":-1,"modTank":-1,"modXenon":false,"modDial":-1,"modKit49":-1,"modVanityPlate":-1,"modDashboard":-1}', '6ZT116IS', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51745, 'license:0d2a1c0316dab516fd2a79832e3173e5a78cb2f6', 'UYV17385', 's1000rr', '436874758', '{"modArmor":-1,"wheelColor":0,"modSmokeEnabled":false,"modFrontWheels":-1,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modExhaust":-1,"modSuspension":-1,"interiorColor":0,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modRoof":-1,"tyreSmokeColor":[255,255,255],"modKit17":-1,"plate":"9UZ327VW","tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":[],"modKit21":-1,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"color2":5,"modSpeakers":-1,"model":436874758,"modEngine":-1,"modXenon":false,"oilLevel":4.76596940834568,"modDial":-1,"dirtLevel":4.76596940834568,"plateIndex":3,"modCustomTiresR":false,"modHorns":-1,"modKit49":-1,"modFrontBumper":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"xenonColor":255,"modOrnaments":-1,"modSteeringWheel":-1,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":6,"modKit19":-1,"modRearBumper":-1,"modStruts":-1,"color1":4,"bodyHealth":1000.0592475178704,"modFender":-1,"modHydrolic":-1,"modAirFilter":-1,"modShifterLeavers":-1,"modTurbo":false,"pearlescentColor":0,"dashboardColor":0,"tankHealth":1000.0592475178704,"modTank":-1,"modLivery":-1,"modGrille":-1,"wheelWidth":0.0,"modBrakes":-1,"modWindows":-1,"modTrimA":-1,"liveryRoof":-1,"modTrunk":-1,"modFrame":-1,"modTransmission":-1,"modHood":-1,"modVanityPlate":-1,"modDashboard":-1}', '9UZ327VW', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51746, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"modArmor":-1,"wheelColor":0,"modSmokeEnabled":false,"modCustomTiresR":false,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modExhaust":-1,"modSuspension":-1,"modTrunk":-1,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modRoof":-1,"tyreSmokeColor":[255,255,255],"modTrimA":-1,"plate":"5MW168MY","tankHealth":1000.0592475178704,"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":[],"modKit21":-1,"modSpoilers":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"color2":0,"modSpeakers":-1,"modTank":-1,"modEngine":-1,"modDial":-1,"liveryRoof":-1,"oilLevel":4.76596940834568,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"xenonColor":255,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"dirtLevel":7.14895411251853,"modBrakes":-1,"plateIndex":2,"modFrontWheels":-1,"modSteeringWheel":-1,"modOrnaments":-1,"model":436874758,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":6,"modKit19":-1,"modStruts":-1,"modTransmission":-1,"modXenon":false,"bodyHealth":1000.0592475178704,"modKit17":-1,"modAirFilter":-1,"modRearBumper":-1,"modShifterLeavers":-1,"modTurbo":false,"color1":0,"interiorColor":0,"wheelWidth":0.0,"modHood":-1,"modLivery":-1,"modGrille":-1,"modHorns":-1,"modHydrolic":-1,"modWindows":-1,"pearlescentColor":0,"modKit49":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"dashboardColor":0,"modFrame":-1,"modFrontBumper":-1,"modVanityPlate":-1,"modDashboard":-1}', '5MW168MY', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51748, 'license:bb74c63887960eb35b000c29e402fe295c876841', 'QOU80537', 's1000rr', '436874758', '{"modBrakes":-1,"color2":0,"modAPlate":-1,"modHorns":-1,"modKit17":-1,"modEngineBlock":-1,"modOrnaments":-1,"plate":"4GK663PV","modTrunk":-1,"modShifterLeavers":-1,"modTrimA":-1,"modSmokeEnabled":false,"modVanityPlate":-1,"bodyHealth":1000.0592475178704,"headlightColor":255,"modArchCover":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modWindows":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelColor":0,"modFender":-1,"pearlescentColor":0,"xenonColor":255,"modFrontBumper":-1,"modRoof":-1,"engineHealth":1000.0592475178704,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modKit47":-1,"modDial":-1,"interiorColor":0,"oilLevel":4.76596940834568,"modPlateHolder":-1,"modTank":-1,"liveryRoof":-1,"modGrille":-1,"modAirFilter":-1,"modCustomTiresF":false,"modFrontWheels":-1,"wheelSize":0.0,"modSeats":-1,"modSteeringWheel":-1,"neonEnabled":[false,false,false,false],"modSuspension":-1,"modRearBumper":-1,"plateIndex":1,"modSpoilers":-1,"fuelLevel":30.97880115424697,"tankHealth":1000.0592475178704,"modXenon":false,"modBackWheels":-1,"color1":0,"dirtLevel":3.9716411736214,"modKit21":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modFrame":-1,"modEngine":-1,"modSideSkirt":-1,"modHydrolic":-1,"model":436874758,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRightFender":-1,"modLivery":-1,"modTurbo":false,"modKit49":-1,"modCustomTiresR":false,"tyreSmokeColor":[255,255,255],"modKit19":-1,"modTrimB":-1,"modExhaust":-1,"modDashboard":-1,"modStruts":-1,"neonColor":[0,0,0],"wheelWidth":0.0,"modTransmission":-1,"modSpeakers":-1,"dashboardColor":0,"modDoorSpeaker":-1,"modHood":-1,"extras":[],"wheels":6,"modArmor":-1,"windowTint":-1,"modAerials":-1}', '4GK663PV', NULL, 'hastanegarajs', NULL, 31, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51749, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'besra', '1824333165', '{"modArmor":-1,"wheelColor":121,"modSmokeEnabled":false,"modCustomTiresR":false,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modExhaust":-1,"modSuspension":-1,"modDial":-1,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modXenon":false,"tyreSmokeColor":[255,255,255],"xenonColor":255,"plate":"2UZ696ZB","tankHealth":1000.0592475178704,"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":[],"modSteeringWheel":-1,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":0.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"modFrontBumper":-1,"modSpeakers":-1,"modStruts":-1,"modEngine":-1,"color2":89,"liveryRoof":-1,"modTrimA":-1,"modRoof":-1,"modFrontWheels":-1,"modKit21":-1,"interiorColor":0,"plateIndex":0,"modAirFilter":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modOrnaments":-1,"modHorns":-1,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":0,"modKit19":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTank":-1,"bodyHealth":1000.0592475178704,"dashboardColor":0,"modKit17":-1,"oilLevel":4.76596940834568,"modTrunk":-1,"modShifterLeavers":-1,"modTurbo":false,"color1":122,"model":1824333165,"modFender":-1,"pearlescentColor":25,"modLivery":-1,"modGrille":-1,"wheelWidth":0.0,"modBrakes":-1,"modWindows":-1,"modHood":-1,"modFrame":-1,"modKit49":-1,"modHydrolic":-1,"dirtLevel":4.76596940834568,"modTransmission":-1,"modVanityPlate":-1,"modDashboard":-1}', '2UZ696ZB', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51750, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'besra', '1824333165', '{"modArmor":-1,"wheelColor":121,"modSmokeEnabled":false,"modCustomTiresR":false,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modExhaust":-1,"modSuspension":-1,"modDial":-1,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modXenon":false,"tyreSmokeColor":[255,255,255],"xenonColor":255,"plate":"8FZ404KG","tankHealth":1000.0592475178704,"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":[],"modSteeringWheel":-1,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":0.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"modFrontBumper":-1,"modSpeakers":-1,"modStruts":-1,"modEngine":-1,"color2":28,"liveryRoof":-1,"modTrimA":-1,"modRoof":-1,"modFrontWheels":-1,"modKit21":-1,"interiorColor":0,"plateIndex":0,"modAirFilter":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modOrnaments":-1,"modHorns":-1,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":0,"modKit19":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTank":-1,"bodyHealth":1000.0592475178704,"dashboardColor":0,"modKit17":-1,"oilLevel":4.76596940834568,"modTrunk":-1,"modShifterLeavers":-1,"modTurbo":false,"color1":122,"model":1824333165,"modFender":-1,"pearlescentColor":25,"modLivery":-1,"modGrille":-1,"wheelWidth":0.0,"modBrakes":-1,"modWindows":-1,"modHood":-1,"modFrame":-1,"modKit49":-1,"modHydrolic":-1,"dirtLevel":4.76596940834568,"modTransmission":-1,"modVanityPlate":-1,"modDashboard":-1}', '8FZ404KG', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51751, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'besra', '1824333165', '{"modArmor":-1,"wheelColor":121,"modSmokeEnabled":false,"modCustomTiresR":false,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modExhaust":-1,"modSuspension":-1,"modDial":-1,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modXenon":false,"tyreSmokeColor":[255,255,255],"xenonColor":255,"plate":"9WU804IE","tankHealth":1000.0592475178704,"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":[],"modSteeringWheel":-1,"modSpoilers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":0.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"modFrontBumper":-1,"modSpeakers":-1,"modStruts":-1,"modEngine":-1,"color2":64,"liveryRoof":-1,"modTrimA":-1,"modRoof":-1,"modFrontWheels":-1,"modKit21":-1,"interiorColor":0,"plateIndex":0,"modAirFilter":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modOrnaments":-1,"modHorns":-1,"modTrimB":-1,"modDoorSpeaker":-1,"wheels":0,"modKit19":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTank":-1,"bodyHealth":1000.0592475178704,"dashboardColor":0,"modKit17":-1,"oilLevel":4.76596940834568,"modTrunk":-1,"modShifterLeavers":-1,"modTurbo":false,"color1":122,"model":1824333165,"modFender":-1,"pearlescentColor":25,"modLivery":-1,"modGrille":-1,"wheelWidth":0.0,"modBrakes":-1,"modWindows":-1,"modHood":-1,"modFrame":-1,"modKit49":-1,"modHydrolic":-1,"dirtLevel":6.35462587779425,"modTransmission":-1,"modVanityPlate":-1,"modDashboard":-1}', '9WU804IE', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51752, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"modArmor":-1,"wheelColor":0,"modSmokeEnabled":false,"modFrontWheels":-1,"modRightFender":-1,"windowTint":-1,"wheelSize":0.0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modExhaust":-1,"modSuspension":-1,"interiorColor":0,"engineHealth":1000.0592475178704,"modBackWheels":-1,"modEngineBlock":-1,"modArchCover":-1,"modAerials":-1,"modRoof":-1,"tyreSmokeColor":[255,255,255],"xenonColor":255,"plate":"5EH031FL","plateIndex":0,"modSeats":-1,"modCustomTiresF":false,"neonColor":[255,0,255],"extras":[],"modSteeringWheel":-1,"modSpoilers":-1,"modFender":-1,"neonEnabled":[false,false,false,false],"headlightColor":255,"modAPlate":-1,"modPlateHolder":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modSideSkirt":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"modFrontBumper":-1,"modSpeakers":-1,"modTank":-1,"modEngine":-1,"modTrunk":-1,"oilLevel":4.76596940834568,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTransmission":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"bodyHealth":1000.0592475178704,"modXenon":false,"modKit49":-1,"modRearBumper":-1,"modTrimA":-1,"color1":0,"modOrnaments":-1,"modDial":-1,"dirtLevel":3.17731293889712,"modDoorSpeaker":-1,"wheels":6,"modKit19":-1,"modKit21":-1,"modTrimB":-1,"liveryRoof":-1,"dashboardColor":0,"modAirFilter":-1,"color2":0,"modHydrolic":-1,"modShifterLeavers":-1,"modTurbo":false,"pearlescentColor":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modHood":-1,"tankHealth":1000.0592475178704,"modLivery":-1,"modGrille":-1,"modHorns":-1,"modBrakes":-1,"modWindows":-1,"modFrame":-1,"modCustomTiresR":false,"modKit17":-1,"wheelWidth":0.0,"model":436874758,"modStruts":-1,"modVanityPlate":-1,"modDashboard":-1}', '5EH031FL', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51753, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', 'm3bxane', '1645242193', '{"modRoof":-1,"modFender":-1,"liveryRoof":-1,"wheels":0,"pearlescentColor":66,"modSuspension":3,"headlightColor":255,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSeats":-1,"modFrontBumper":-1,"fuelLevel":76.25551053353103,"modHood":-1,"modEngineBlock":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit17":-1,"modRightFender":-1,"wheelSize":1.0,"modLivery":-1,"modKit49":-1,"tyreSmokeColor":[255,255,255],"xenonColor":255,"oilLevel":8.73761058196709,"windowTint":3,"modAPlate":-1,"engineHealth":1000.0592475178704,"modStruts":-1,"modKit47":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"modShifterLeavers":-1,"modSteeringWheel":-1,"modXenon":false,"modKit21":-1,"modAirFilter":-1,"modDial":-1,"modPlateHolder":-1,"extras":[],"modDoorSpeaker":-1,"tankHealth":4000.2369900714818,"wheelWidth":1.0,"modDashboard":-1,"color1":131,"modTrunk":-1,"modExhaust":-1,"modBackWheels":-1,"dashboardColor":111,"modSideSkirt":-1,"modTransmission":2,"modRearBumper":-1,"interiorColor":111,"modHorns":-1,"modEngine":3,"wheelColor":0,"plateIndex":4,"plate":"8EE088LG","modSpeakers":-1,"modArmor":-1,"neonEnabled":[false,false,false,false],"modArchCover":-1,"modFrame":-1,"modHydrolic":-1,"modBrakes":2,"modSpoilers":-1,"modVanityPlate":-1,"modKit19":-1,"modFrontWheels":-1,"neonColor":[255,0,255],"dirtLevel":0.0,"modCustomTiresR":false,"modTrimB":-1,"color2":141,"modTank":-1,"modCustomTiresF":false,"modAerials":-1,"modTrimA":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modWindows":-1,"modOrnaments":-1,"modGrille":-1,"model":1645242193,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSmokeEnabled":false,"modTurbo":1,"bodyHealth":1000.0592475178704}', '8EE088LG', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51754, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', 's1000rr', '436874758', '{"modStruts":-1,"modAirFilter":-1,"modAerials":-1,"color2":0,"extras":[],"windowTint":-1,"modSeats":-1,"neonColor":[255,0,255],"wheelColor":0,"modSpeakers":-1,"modFrontWheels":-1,"modEngine":-1,"modDial":-1,"modLivery":1,"wheelSize":0.0,"modOrnaments":-1,"modEngineBlock":-1,"headlightColor":255,"modFender":-1,"modTrimA":-1,"modTank":-1,"modBackWheels":-1,"modKit47":-1,"fuelLevel":100.08535757525947,"interiorColor":0,"modSideSkirt":-1,"modKit19":-1,"modExhaust":-1,"modRearBumper":-1,"model":436874758,"dirtLevel":0.0,"modFrontBumper":-1,"engineHealth":1000.0592475178704,"modCustomTiresR":false,"dashboardColor":0,"modSteeringWheel":-1,"modRoof":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modBrakes":-1,"pearlescentColor":0,"modShifterLeavers":-1,"modHood":-1,"wheels":6,"modArmor":-1,"modFrame":-1,"neonEnabled":[false,false,false,false],"modCustomTiresF":false,"modSmokeEnabled":false,"modTrimB":-1,"modKit49":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit17":-1,"modWindows":-1,"modPlateHolder":-1,"wheelWidth":0.0,"plate":"1OZ869ET","modSuspension":-1,"oilLevel":4.76596940834568,"modTrunk":-1,"modAPlate":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"tyreSmokeColor":[255,255,255],"modSpoilers":-1,"liveryRoof":-1,"xenonColor":255,"modDashboard":-1,"modVanityPlate":-1,"bodyHealth":1000.0592475178704,"modRightFender":-1,"plateIndex":3,"modTransmission":-1,"modHorns":-1,"modArchCover":-1,"modXenon":false,"modGrille":-1,"modTurbo":false,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"color1":0,"tankHealth":1000.0592475178704,"modHydrolic":-1,"modKit21":-1,"modDoorSpeaker":-1}', '1OZ869ET', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51758, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', 'm8demon', '1351783632', '{"modShifterLeavers":-1,"bodyHealth":1000.0592475178704,"wheelSize":1.0,"model":1351783632,"modStruts":-1,"modSuspension":3,"modAPlate":-1,"modOrnaments":-1,"modVanityPlate":-1,"modFrame":-1,"modDoorSpeaker":-1,"modSpoilers":-1,"wheelWidth":1.0,"headlightColor":0,"modHydrolic":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheels":7,"engineHealth":1000.0592475178704,"modTrimA":-1,"modArmor":-1,"neonColor":[255,0,255],"modKit49":-1,"modSeats":-1,"modRightFender":-1,"modBrakes":2,"modCustomTiresR":false,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modHorns":57,"modArchCover":-1,"modSteeringWheel":-1,"modDashboard":-1,"modXenon":false,"dirtLevel":0.0,"oilLevel":10.32626705141565,"modExhaust":-1,"modRearBumper":-1,"modEngineBlock":-1,"modAerials":-1,"dashboardColor":0,"extras":[],"modKit17":-1,"pearlescentColor":0,"wheelColor":0,"color1":0,"modFrontBumper":-1,"plate":"9XL696VT","fuelLevel":48.45402231818117,"modTurbo":1,"modSmokeEnabled":false,"modBackWheels":-1,"liveryRoof":-1,"modWindows":-1,"modLivery":-1,"modRoof":-1,"modTransmission":2,"modTrunk":-1,"modGrille":-1,"modCustomTiresF":false,"modHood":-1,"modKit21":-1,"modKit19":-1,"modSideSkirt":-1,"xenonColor":0,"modAirFilter":-1,"modKit47":-1,"modSpeakers":-1,"modFrontWheels":-1,"modPlateHolder":-1,"modTrimB":-1,"tankHealth":4000.2369900714818,"modEngine":3,"windowTint":1,"interiorColor":0,"modDial":-1,"modFender":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"plateIndex":0,"color2":0,"modTank":-1,"tyreSmokeColor":[255,255,255],"neonEnabled":[false,false,false,false]}', '9XL696VT', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, '[{"count":100,"name":"ammo-9","slot":1},{"count":1,"name":"WEAPON_G19","metadata":{"durability":100,"serial":"787815EHR429428","ammo":0,"components":[],"registered":"Zantree Can"},"slot":2},{"count":1,"name":"WEAPON_G19","metadata":{"durability":100,"serial":"643162NAL762205","ammo":0,"components":[],"registered":"Zantree Can"},"slot":3},{"count":1,"name":"WEAPON_G19","metadata":{"durability":100,"serial":"355575NWJ117535","ammo":0,"components":[],"registered":"Zantree Can"},"slot":4},{"count":1,"name":"WEAPON_G19","metadata":{"durability":100,"serial":"653265ULU223322","ammo":0,"components":[],"registered":"Zantree Can"},"slot":5},{"count":1,"name":"WEAPON_G19","metadata":{"durability":100,"serial":"512475PFY130253","ammo":0,"components":[],"registered":"Zantree Can"},"slot":6},{"count":1,"name":"WEAPON_G19","metadata":{"durability":100,"serial":"470325CPN186980","ammo":0,"components":[],"registered":"Zantree Can"},"slot":7},{"count":1,"name":"WEAPON_G19","metadata":{"durability":100,"serial":"560881GOT426743","ammo":0,"components":[],"registered":"Zantree Can"},"slot":8},{"count":1,"name":"WEAPON_G19","metadata":{"durability":100,"serial":"744278PJG490365","ammo":0,"components":[],"registered":"Zantree Can"},"slot":9},{"count":1,"name":"WEAPON_G19","metadata":{"durability":100,"serial":"391846DHC990702","ammo":0,"components":[],"registered":"Zantree Can"},"slot":10}]', NULL, 0, NULL, NULL, NULL, NULL),
	(51759, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', 'm8demon', '1351783632', '{"tankHealth":1000.0592475178704,"modKit17":-1,"modSeats":-1,"modXenon":false,"modFrame":-1,"fuelLevel":100.08535757525947,"modTrimB":-1,"windowTint":-1,"modShifterLeavers":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modLivery":-1,"dashboardColor":0,"modTurbo":false,"modAerials":-1,"wheels":7,"modSmokeEnabled":false,"modSpoilers":-1,"engineHealth":1000.0592475178704,"modRearBumper":-1,"modCustomTiresF":false,"modHood":-1,"modOrnaments":-1,"modKit21":-1,"modExhaust":-1,"modStruts":-1,"modEngine":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plate":"6MX422QT","modSuspension":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modDashboard":-1,"modTrimA":-1,"wheelSize":0.0,"pearlescentColor":0,"wheelColor":0,"neonColor":[255,0,255],"modRoof":-1,"neonEnabled":[false,false,false,false],"dirtLevel":6.35462587779425,"color1":0,"modFrontBumper":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plateIndex":0,"modRightFender":-1,"modAirFilter":-1,"modSpeakers":-1,"xenonColor":255,"wheelWidth":0.0,"modArmor":-1,"color2":0,"modKit47":-1,"modKit49":-1,"modPlateHolder":-1,"liveryRoof":-1,"oilLevel":10.32626705141565,"modGrille":-1,"modTank":-1,"modTrunk":-1,"modWindows":-1,"modBrakes":-1,"modTransmission":-1,"extras":[],"model":1351783632,"modSteeringWheel":-1,"modEngineBlock":-1,"modKit19":-1,"modFrontWheels":-1,"modSideSkirt":-1,"modFender":-1,"modDial":-1,"modArchCover":-1,"headlightColor":255,"interiorColor":0,"modDoorSpeaker":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modAPlate":-1,"modBackWheels":-1,"tyreSmokeColor":[255,255,255],"bodyHealth":1000.0592475178704,"modVanityPlate":-1,"modCustomTiresR":false,"modHydrolic":-1,"modHorns":-1}', '6MX422QT', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51760, 'license:a16f2a38f83e0d610ba71984f21b2799e004dd23', 'HFZ11174', 's1000rr', '436874758', '{"tankHealth":1000.0592475178704,"modKit17":-1,"modSeats":-1,"modXenon":false,"modFrame":-1,"headlightColor":255,"modTrimB":-1,"windowTint":-1,"modShifterLeavers":-1,"modHorns":-1,"interiorColor":0,"dashboardColor":0,"modTurbo":false,"liveryRoof":-1,"wheels":6,"modSmokeEnabled":false,"modSpoilers":-1,"engineHealth":1000.0592475178704,"modRearBumper":-1,"color2":0,"modHood":-1,"modOrnaments":-1,"modKit21":-1,"modExhaust":-1,"modStruts":-1,"modEngine":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plate":"9EK049NQ","modSuspension":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modDashboard":-1,"modTrimA":-1,"modEngineBlock":-1,"pearlescentColor":0,"wheelColor":0,"neonColor":[0,0,0],"modRoof":-1,"neonEnabled":[false,false,false,false],"dirtLevel":10.32626705141565,"color1":0,"modFrontBumper":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plateIndex":3,"modRightFender":-1,"modAirFilter":-1,"modSpeakers":-1,"xenonColor":255,"wheelWidth":0.0,"modArmor":-1,"oilLevel":4.76596940834568,"modKit47":-1,"modKit49":-1,"modTransmission":-1,"modAPlate":-1,"modAerials":-1,"modGrille":-1,"tyreSmokeColor":[255,255,255],"modTrunk":-1,"modWindows":-1,"wheelSize":0.0,"modArchCover":-1,"extras":[],"modBrakes":-1,"modSteeringWheel":-1,"bodyHealth":1000.0592475178704,"modKit19":-1,"modFrontWheels":-1,"modSideSkirt":-1,"modHydrolic":-1,"modDial":-1,"model":436874758,"fuelLevel":100.08535757525947,"modFender":-1,"modPlateHolder":-1,"modLivery":1,"modDoorSpeaker":-1,"modCustomTiresF":false,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modBackWheels":-1,"modVanityPlate":-1,"modCustomTiresR":false,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modTank":-1}', '9EK049NQ', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51761, 'license:8a1a2d20975857143a32b90abb1c9214e8f2e135', 'RPB30164', 'nissantitan17', '1221510024', '{"tankHealth":1000.0592475178704,"modKit17":-1,"modSeats":-1,"modXenon":false,"modFrame":-1,"headlightColor":255,"modTrimB":-1,"windowTint":-1,"modHydrolic":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"interiorColor":0,"dashboardColor":0,"bodyHealth":1000.0592475178704,"modDoorSpeaker":-1,"wheels":3,"modSmokeEnabled":false,"modSpoilers":-1,"engineHealth":1000.0592475178704,"modRearBumper":-1,"modCustomTiresF":false,"modHood":-1,"modOrnaments":-1,"modKit21":-1,"modExhaust":-1,"modStruts":-1,"modEngine":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plate":"7OF732KC","modSuspension":-1,"modArchCover":-1,"oilLevel":6.35462587779425,"modTrimA":-1,"modEngineBlock":-1,"pearlescentColor":6,"modTank":-1,"neonColor":[0,0,0],"modRoof":-1,"neonEnabled":[false,false,false,false],"dirtLevel":8.73761058196709,"color1":0,"modPlateHolder":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"plateIndex":0,"modRightFender":-1,"modAirFilter":-1,"modSpeakers":-1,"xenonColor":255,"wheelWidth":0.0,"modArmor":-1,"modLivery":4,"modKit47":-1,"modKit49":-1,"modShifterLeavers":-1,"color2":0,"modFrontBumper":-1,"modGrille":-1,"modHorns":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modWindows":-1,"modBackWheels":-1,"wheelSize":0.0,"extras":{"1":true,"9":false},"model":1221510024,"modSteeringWheel":-1,"modDashboard":-1,"modKit19":-1,"modFrontWheels":-1,"modFender":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modDial":-1,"fuelLevel":100.08535757525947,"wheelColor":156,"modBrakes":-1,"modTrunk":-1,"modTurbo":false,"modAPlate":-1,"tyreSmokeColor":[255,255,255],"modTransmission":-1,"liveryRoof":-1,"modVanityPlate":-1,"modCustomTiresR":false,"modAerials":-1,"modSideSkirt":-1}', '7OF732KC', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51762, 'license:7959f12c548961295aee03be49259245237e944f', 'RST11039', 'm8demon', '1351783632', '{"modDoorSpeaker":-1,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"tankHealth":1000.0592475178704,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"modSteeringWheel":-1,"modSmokeEnabled":false,"modKit19":-1,"modSpeakers":-1,"modGrille":-1,"modStruts":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":1351783632,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modKit21":-1,"extras":[],"modTrimA":-1,"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modShifterLeavers":-1,"modXenon":false,"interiorColor":0,"modTank":-1,"wheelWidth":0.0,"modArmor":-1,"dashboardColor":0,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modTrunk":-1,"modArchCover":-1,"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modEngine":-1,"modEngineBlock":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFender":-1,"fuelLevel":100.08535757525947,"headlightColor":255,"modHood":-1,"pearlescentColor":0,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"wheels":7,"modWindows":-1,"modOrnaments":-1,"modKit49":-1,"modFrontBumper":-1,"modLivery":-1,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"modDial":-1,"modAPlate":-1,"modFrontWheels":-1,"plateIndex":0,"modKit47":-1,"modBackWheels":-1,"oilLevel":10.32626705141565,"modTransmission":-1,"plate":"8ID605MB","modCustomTiresR":false,"modRightFender":-1,"engineHealth":1000.0592475178704,"dirtLevel":3.17731293889712,"modHorns":-1,"modSpoilers":-1,"modTrimB":-1,"modKit17":-1,"modSeats":-1,"tyreSmokeColor":[255,255,255]}', '8ID605MB', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51763, 'license:1b06f3bf6faaa70192f4400056bcc9942b4227d4', 'RBG67155', 'm8demon', '1351783632', '{"fuelLevel":100.08535757525947,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"tankHealth":1000.0592475178704,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":10.32626705141565,"modSmokeEnabled":false,"modSpoilers":-1,"modArchCover":-1,"modGrille":-1,"modStruts":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":1351783632,"xenonColor":255,"dirtLevel":0.79432823472428,"modHydrolic":-1,"modExhaust":-1,"modKit21":-1,"modKit49":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"plateIndex":0,"modXenon":false,"interiorColor":0,"modTank":-1,"wheelWidth":0.0,"modArmor":-1,"dashboardColor":0,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modTrunk":-1,"engineHealth":1000.0592475178704,"neonEnabled":[false,false,false,false],"modAPlate":-1,"modEngine":-1,"modEngineBlock":-1,"modFrontBumper":-1,"modFender":-1,"modLivery":-1,"modHorns":-1,"modDoorSpeaker":-1,"pearlescentColor":0,"modDial":-1,"modSideSkirt":-1,"modWindows":-1,"tyreSmokeColor":[255,255,255],"modRightFender":-1,"modSeats":-1,"modKit19":-1,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"modShifterLeavers":-1,"modSpeakers":-1,"modFrontWheels":-1,"headlightColor":255,"modKit47":-1,"modBackWheels":-1,"wheels":7,"modTransmission":-1,"plate":"0JS077IG","modCustomTiresR":false,"modTrimA":-1,"modOrnaments":-1,"modTrimB":-1,"wheelColor":0,"modSteeringWheel":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modKit17":-1,"modHood":-1,"extras":[]}', '0JS077IG', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51764, 'license:e684cfcb8133f966fcb68342b8250129fc8b3cbc', 'JYB49700', 's1000rr', '436874758', '{"fuelLevel":100.08535757525947,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"neonColor":[255,255,255],"modRoof":-1,"modPlateHolder":-1,"tankHealth":1000.0592475178704,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"modSteeringWheel":-1,"modSmokeEnabled":false,"modSpoilers":-1,"modArchCover":-1,"modGrille":-1,"modTrimB":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":436874758,"xenonColor":255,"dirtLevel":7.14895411251853,"modHydrolic":-1,"modExhaust":-1,"modOrnaments":-1,"extras":[],"modTrimA":-1,"modFrame":-1,"wheels":6,"modRearBumper":-1,"modShifterLeavers":-1,"tyreSmokeColor":[255,255,255],"modDial":-1,"engineHealth":1000.0592475178704,"wheelWidth":0.0,"modArmor":-1,"dashboardColor":0,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modFrontBumper":-1,"modStruts":-1,"neonEnabled":[false,false,false,false],"modAPlate":-1,"modEngine":-1,"modEngineBlock":-1,"oilLevel":4.76596940834568,"modFender":-1,"headlightColor":255,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modKit21":-1,"pearlescentColor":0,"modXenon":false,"modLivery":1,"modWindows":-1,"modRightFender":-1,"modSeats":-1,"wheelColor":0,"modSideSkirt":-1,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"modDoorSpeaker":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrontWheels":-1,"interiorColor":0,"modKit47":-1,"modBackWheels":-1,"modKit19":-1,"modTransmission":-1,"modTrunk":-1,"modCustomTiresR":false,"modTank":-1,"plate":"8EY596ND","doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit49":-1,"plateIndex":3,"modHorns":-1,"modKit17":-1,"modSpeakers":-1,"modHood":-1}', '8EY596ND', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51765, 'license:e684cfcb8133f966fcb68342b8250129fc8b3cbc', 'JYB49700', 'm8demon', '1351783632', '{"fuelLevel":100.08535757525947,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[255,255,255],"modRoof":-1,"modPlateHolder":-1,"tankHealth":1000.0592475178704,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"modSteeringWheel":-1,"modSmokeEnabled":false,"modSpoilers":-1,"modArchCover":-1,"modGrille":-1,"modTrimB":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":1351783632,"xenonColor":255,"dirtLevel":2.38298470417284,"modHydrolic":-1,"modExhaust":-1,"modOrnaments":-1,"extras":[],"modTrimA":-1,"modFrame":-1,"wheels":7,"modRearBumper":-1,"modShifterLeavers":-1,"tyreSmokeColor":[255,255,255],"modDial":-1,"engineHealth":1000.0592475178704,"wheelWidth":0.0,"modArmor":-1,"dashboardColor":0,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modFrontBumper":-1,"modStruts":-1,"neonEnabled":[false,false,false,false],"modAPlate":-1,"modEngine":-1,"modEngineBlock":-1,"oilLevel":10.32626705141565,"modFender":-1,"headlightColor":255,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modKit21":-1,"pearlescentColor":0,"modXenon":false,"modLivery":-1,"modWindows":-1,"modRightFender":-1,"modSeats":-1,"wheelColor":0,"modSideSkirt":-1,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"modDoorSpeaker":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrontWheels":-1,"interiorColor":0,"modKit47":-1,"modBackWheels":-1,"modKit19":-1,"modTransmission":-1,"modTrunk":-1,"modCustomTiresR":false,"modTank":-1,"plate":"6CU913AT","doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit49":-1,"plateIndex":0,"modHorns":-1,"modKit17":-1,"modSpeakers":-1,"modHood":-1}', '6CU913AT', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51766, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', 'm8demon', '1351783632', '{"modDoorSpeaker":-1,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"tankHealth":1000.0592475178704,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"modSteeringWheel":-1,"modSmokeEnabled":false,"modSpoilers":-1,"modSpeakers":-1,"modGrille":-1,"modStruts":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":1351783632,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modOrnaments":-1,"extras":[],"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modLivery":-1,"tyreSmokeColor":[255,255,255],"headlightColor":255,"modTank":-1,"wheelWidth":0.0,"modArmor":-1,"modHood":-1,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"interiorColor":0,"fuelLevel":100.08535757525947,"neonEnabled":[false,false,false,false],"modAPlate":-1,"modEngine":-1,"modEngineBlock":-1,"modRightFender":-1,"modFender":-1,"dashboardColor":0,"plateIndex":0,"plate":"1ZY420TI","pearlescentColor":0,"modSeats":-1,"modShifterLeavers":-1,"modHorns":-1,"modArchCover":-1,"modWindows":-1,"wheels":7,"modSideSkirt":-1,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"dirtLevel":3.17731293889712,"modFrontBumper":-1,"modFrontWheels":-1,"modKit19":-1,"modKit47":-1,"modBackWheels":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTransmission":-1,"modTrunk":-1,"modCustomTiresR":false,"engineHealth":1000.0592475178704,"modTrimA":-1,"modKit49":-1,"modKit21":-1,"modXenon":false,"modTrimB":-1,"modKit17":-1,"oilLevel":10.32626705141565,"modDial":-1}', '1ZY420TI', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51767, 'license:752ca54455c8134d65a50584bb9657832a747d66', 'FJY17019', 'elegy', '196747873', '{"dirtLevel":7.94328234724281,"modKit19":-1,"modCustomTiresF":false,"tyreSmokeColor":[255,255,255],"modDashboard":-1,"modDial":-1,"engineHealth":998.4705910484217,"modArmor":-1,"modHorns":-1,"modAerials":-1,"modRoof":-1,"modStruts":-1,"modShifterLeavers":-1,"modFender":-1,"modTurbo":false,"modKit17":-1,"modBackWheels":-1,"modFrontWheels":-1,"modCustomTiresR":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"model":196747873,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modAPlate":-1,"modSpeakers":-1,"modLivery":-1,"modDoorSpeaker":-1,"modKit49":-1,"modOrnaments":-1,"neonEnabled":[false,false,false,false],"modPlateHolder":-1,"modSuspension":-1,"modTrunk":-1,"modVanityPlate":-1,"modSpoilers":-1,"plateIndex":0,"color1":38,"modTrimB":-1,"modXenon":false,"modGrille":-1,"modFrame":-1,"modExhaust":-1,"extras":[],"plate":"5UG382BT","wheelSize":0.0,"modBrakes":-1,"modFrontBumper":-1,"modTrimA":-1,"wheels":0,"xenonColor":255,"pearlescentColor":61,"modEngine":-1,"modSmokeEnabled":false,"headlightColor":255,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modWindows":-1,"modEngineBlock":-1,"modSeats":-1,"wheelColor":158,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"bodyHealth":999.2649192831461,"windowTint":-1,"modArchCover":-1,"interiorColor":63,"modSteeringWheel":-1,"liveryRoof":-1,"modHood":-1,"modAirFilter":-1,"tankHealth":1000.0592475178704,"modKit47":-1,"wheelWidth":0.0,"modHydrolic":-1,"modKit21":-1,"modTransmission":-1,"dashboardColor":134,"modRearBumper":-1,"modTank":-1,"neonColor":[255,0,255],"fuelLevel":94.52505993218949,"modRightFender":-1,"color2":0,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modSideSkirt":-1,"oilLevel":4.76596940834568}', '5UG382BT', NULL, 'lagunapi', NULL, 94, 999, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51768, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"fuelLevel":100.08535757525947,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"modRightFender":-1,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":4.76596940834568,"modSmokeEnabled":false,"modKit19":-1,"modSpeakers":-1,"modGrille":-1,"modStruts":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":436874758,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modKit21":-1,"modKit49":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modFrontBumper":-1,"modXenon":false,"interiorColor":0,"modSeats":-1,"wheelWidth":0.0,"modArmor":-1,"modHood":-1,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modSpoilers":-1,"modDial":-1,"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modEngine":-1,"modEngineBlock":-1,"modOrnaments":-1,"modFender":-1,"tankHealth":1000.0592475178704,"modHorns":-1,"dirtLevel":0.79432823472428,"pearlescentColor":0,"dashboardColor":0,"extras":[],"modWindows":-1,"modTrimB":-1,"engineHealth":1000.0592475178704,"modDoorSpeaker":-1,"plateIndex":0,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"wheels":6,"modFrontWheels":-1,"modAPlate":-1,"modKit47":-1,"modBackWheels":-1,"modArchCover":-1,"modTransmission":-1,"plate":"5IM385KO","modCustomTiresR":false,"modTrunk":-1,"modLivery":1,"modShifterLeavers":-1,"headlightColor":255,"modTrimA":-1,"tyreSmokeColor":[255,255,255],"modKit17":-1,"modSteeringWheel":-1,"modTank":-1}', '5IM385KO', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51769, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', 'm8demon', '1351783632', '{"modDoorSpeaker":-1,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"modRightFender":-1,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":10.32626705141565,"modSmokeEnabled":false,"modSpoilers":-1,"modArchCover":-1,"modGrille":-1,"modTrimB":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":1351783632,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modOrnaments":-1,"extras":[],"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modFrontBumper":-1,"tyreSmokeColor":[255,255,255],"headlightColor":255,"engineHealth":1000.0592475178704,"wheelWidth":0.0,"modArmor":-1,"dashboardColor":0,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modTrimA":-1,"wheels":7,"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modEngine":-1,"modEngineBlock":-1,"modStruts":-1,"modFender":-1,"plateIndex":0,"modTrunk":-1,"modAPlate":-1,"pearlescentColor":0,"modSeats":-1,"modWindows":-1,"modHorns":-1,"modDial":-1,"modSpeakers":-1,"modTank":-1,"tankHealth":1000.0592475178704,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"modShifterLeavers":-1,"modHood":-1,"modFrontWheels":-1,"modKit19":-1,"modKit47":-1,"modBackWheels":-1,"modLivery":-1,"modTransmission":-1,"plate":"8KR158WG","modCustomTiresR":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit21":-1,"modKit49":-1,"modSteeringWheel":-1,"interiorColor":0,"dirtLevel":2.38298470417284,"modKit17":-1,"modXenon":false,"fuelLevel":100.08535757525947}', '8KR158WG', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51770, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"fuelLevel":100.08535757525947,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"modRightFender":-1,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":4.76596940834568,"modSmokeEnabled":false,"modKit19":-1,"modSpeakers":-1,"modGrille":-1,"modStruts":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":436874758,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modKit21":-1,"modKit49":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modFrontBumper":-1,"modXenon":false,"interiorColor":0,"modSeats":-1,"wheelWidth":0.0,"modArmor":-1,"modHood":-1,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modSpoilers":-1,"modDial":-1,"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modEngine":-1,"modEngineBlock":-1,"modOrnaments":-1,"modFender":-1,"tankHealth":1000.0592475178704,"modHorns":-1,"dirtLevel":0.79432823472428,"pearlescentColor":0,"dashboardColor":0,"extras":[],"modWindows":-1,"modTrimB":-1,"engineHealth":1000.0592475178704,"modDoorSpeaker":-1,"plateIndex":0,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"wheels":6,"modFrontWheels":-1,"modAPlate":-1,"modKit47":-1,"modBackWheels":-1,"modArchCover":-1,"modTransmission":-1,"plate":"3JY907QK","modCustomTiresR":false,"modTrunk":-1,"modLivery":1,"modShifterLeavers":-1,"headlightColor":255,"modTrimA":-1,"tyreSmokeColor":[255,255,255],"modKit17":-1,"modSteeringWheel":-1,"modTank":-1}', '3JY907QK', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51771, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"fuelLevel":100.08535757525947,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"modRightFender":-1,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":4.76596940834568,"modSmokeEnabled":false,"modKit19":-1,"modSpeakers":-1,"modGrille":-1,"modStruts":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":436874758,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modKit21":-1,"modKit49":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modFrontBumper":-1,"modXenon":false,"interiorColor":0,"modSeats":-1,"wheelWidth":0.0,"modArmor":-1,"modHood":-1,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modSpoilers":-1,"modDial":-1,"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modEngine":-1,"modEngineBlock":-1,"modOrnaments":-1,"modFender":-1,"tankHealth":1000.0592475178704,"modHorns":-1,"dirtLevel":4.76596940834568,"pearlescentColor":0,"dashboardColor":0,"extras":[],"modWindows":-1,"modTrimB":-1,"engineHealth":1000.0592475178704,"modDoorSpeaker":-1,"plateIndex":1,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"wheels":6,"modFrontWheels":-1,"modAPlate":-1,"modKit47":-1,"modBackWheels":-1,"modArchCover":-1,"modTransmission":-1,"plate":"0RC659AY","modCustomTiresR":false,"modTrunk":-1,"modLivery":1,"modShifterLeavers":-1,"headlightColor":255,"modTrimA":-1,"tyreSmokeColor":[255,255,255],"modKit17":-1,"modSteeringWheel":-1,"modTank":-1}', '0RC659AY', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51772, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"fuelLevel":100.08535757525947,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"modRightFender":-1,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":4.76596940834568,"modSmokeEnabled":false,"modKit19":-1,"modSpeakers":-1,"modGrille":-1,"modStruts":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":436874758,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modKit21":-1,"modKit49":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modFrontBumper":-1,"modXenon":false,"interiorColor":0,"modSeats":-1,"wheelWidth":0.0,"modArmor":-1,"modHood":-1,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modSpoilers":-1,"modDial":-1,"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modEngine":-1,"modEngineBlock":-1,"modOrnaments":-1,"modFender":-1,"tankHealth":1000.0592475178704,"modHorns":-1,"dirtLevel":4.76596940834568,"pearlescentColor":0,"dashboardColor":0,"extras":[],"modWindows":-1,"modTrimB":-1,"engineHealth":1000.0592475178704,"modDoorSpeaker":-1,"plateIndex":3,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"wheels":6,"modFrontWheels":-1,"modAPlate":-1,"modKit47":-1,"modBackWheels":-1,"modArchCover":-1,"modTransmission":-1,"plate":"4HO922JT","modCustomTiresR":false,"modTrunk":-1,"modLivery":1,"modShifterLeavers":-1,"headlightColor":255,"modTrimA":-1,"tyreSmokeColor":[255,255,255],"modKit17":-1,"modSteeringWheel":-1,"modTank":-1}', '4HO922JT', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51773, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', 'm5cs', '635429068', '{"modDoorSpeaker":-1,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"modRightFender":-1,"color1":29,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":4.76596940834568,"modSmokeEnabled":false,"modSpoilers":-1,"modArchCover":-1,"modGrille":-1,"modTrimB":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":635429068,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modOrnaments":-1,"extras":[],"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modFrontBumper":-1,"tyreSmokeColor":[255,255,255],"headlightColor":255,"engineHealth":1000.0592475178704,"wheelWidth":0.0,"modArmor":-1,"dashboardColor":0,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modTrimA":-1,"wheels":0,"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modEngine":-1,"modEngineBlock":-1,"modStruts":-1,"modFender":-1,"plateIndex":4,"modTrunk":-1,"modAPlate":-1,"pearlescentColor":29,"modSeats":-1,"modWindows":-1,"modHorns":-1,"modDial":-1,"modSpeakers":-1,"modTank":-1,"tankHealth":1000.0592475178704,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"modShifterLeavers":-1,"modHood":-1,"modFrontWheels":-1,"modKit19":-1,"modKit47":-1,"modBackWheels":-1,"modLivery":-1,"modTransmission":-1,"plate":"5BC051ND","modCustomTiresR":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit21":-1,"modKit49":-1,"modSteeringWheel":-1,"interiorColor":0,"dirtLevel":3.9716411736214,"modKit17":-1,"modXenon":false,"fuelLevel":100.08535757525947}', '5BC051ND', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51774, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', 'x1lr', '1337895184', '{"modDoorSpeaker":-1,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"modRightFender":-1,"color1":0,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":4.76596940834568,"modSmokeEnabled":false,"modSpoilers":-1,"modArchCover":-1,"modGrille":-1,"modTrimB":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":1337895184,"xenonColor":255,"wheelColor":156,"modHydrolic":-1,"modExhaust":-1,"modOrnaments":-1,"extras":{"1":true,"2":false,"3":false},"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modFrontBumper":-1,"tyreSmokeColor":[255,255,255],"headlightColor":255,"engineHealth":1000.0592475178704,"wheelWidth":0.0,"modArmor":-1,"dashboardColor":0,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modTrimA":-1,"wheels":3,"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modEngine":-1,"modEngineBlock":-1,"modStruts":-1,"modFender":-1,"plateIndex":3,"modTrunk":-1,"modAPlate":-1,"pearlescentColor":0,"modSeats":-1,"modWindows":-1,"modHorns":-1,"modDial":-1,"modSpeakers":-1,"modTank":-1,"tankHealth":1000.0592475178704,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"modShifterLeavers":-1,"modHood":-1,"modFrontWheels":-1,"modKit19":-1,"modKit47":-1,"modBackWheels":-1,"modLivery":-1,"modTransmission":-1,"plate":"4AH013NT","modCustomTiresR":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit21":-1,"modKit49":-1,"modSteeringWheel":-1,"interiorColor":0,"dirtLevel":6.35462587779425,"modKit17":-1,"modXenon":false,"fuelLevel":100.08535757525947}', '4AH013NT', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51777, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', 'luci_uruspitv2', '848198486', '{"modDoorSpeaker":-1,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"modRightFender":-1,"color1":138,"color2":88,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":7.94328234724281,"modSmokeEnabled":false,"modSpoilers":-1,"modArchCover":-1,"modGrille":-1,"modTrimB":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":848198486,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modOrnaments":-1,"extras":{"1":true,"2":true,"3":true},"windowStatus":{"1":true,"2":false,"3":false,"4":true,"5":true,"6":true,"7":true,"0":true},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modFrontBumper":-1,"tyreSmokeColor":[255,255,255],"headlightColor":255,"engineHealth":1000.0592475178704,"wheelWidth":0.0,"modArmor":-1,"dashboardColor":21,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modTrimA":-1,"wheels":7,"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modEngine":-1,"modEngineBlock":-1,"modStruts":-1,"modFender":-1,"plateIndex":1,"modTrunk":-1,"modAPlate":-1,"pearlescentColor":88,"modSeats":-1,"modWindows":-1,"modHorns":-1,"modDial":-1,"modSpeakers":-1,"modTank":-1,"tankHealth":1000.0592475178704,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"modShifterLeavers":-1,"modHood":-1,"modFrontWheels":-1,"modKit19":-1,"modKit47":-1,"modBackWheels":-1,"modLivery":-1,"modTransmission":-1,"plate":"9YX520YW","modCustomTiresR":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit21":-1,"modKit49":-1,"modSteeringWheel":-1,"interiorColor":138,"dirtLevel":3.17731293889712,"modKit17":-1,"modXenon":false,"fuelLevel":100.08535757525947}', '9YX520YW', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51778, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', '18performante', '836213613', '{"modDoorSpeaker":-1,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[255,0,255],"modRoof":-1,"modPlateHolder":-1,"modRightFender":-1,"color1":112,"color2":112,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":4.76596940834568,"modSmokeEnabled":false,"modSpoilers":-1,"modArchCover":-1,"modGrille":-1,"modTrimB":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":836213613,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modOrnaments":-1,"extras":[],"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"modFrame":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modFrontBumper":-1,"tyreSmokeColor":[255,255,255],"headlightColor":255,"engineHealth":1000.0592475178704,"wheelWidth":0.0,"modArmor":-1,"dashboardColor":31,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"modTrimA":-1,"wheels":7,"neonEnabled":[false,false,false,false],"modSideSkirt":-1,"modEngine":-1,"modEngineBlock":-1,"modStruts":-1,"modFender":-1,"plateIndex":2,"modTrunk":-1,"modAPlate":-1,"pearlescentColor":112,"modSeats":-1,"modWindows":-1,"modHorns":-1,"modDial":-1,"modSpeakers":-1,"modTank":-1,"tankHealth":1000.0592475178704,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"modShifterLeavers":-1,"modHood":-1,"modFrontWheels":-1,"modKit19":-1,"modKit47":-1,"modBackWheels":-1,"modLivery":-1,"modTransmission":-1,"plate":"2SN215VC","modCustomTiresR":false,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modKit21":-1,"modKit49":-1,"modSteeringWheel":-1,"interiorColor":31,"dirtLevel":0.0,"modKit17":-1,"modXenon":false,"fuelLevel":100.08535757525947}', '2SN215VC', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51779, 'license:5979918657e7e7c79ebf24859645fd9424a21baf', 'JAX11032', '18performante', '836213613', '{"fuelLevel":100.08535757525947,"modVanityPlate":-1,"modDashboard":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[0,0,0],"modRoof":-1,"modPlateHolder":-1,"modRightFender":-1,"color1":112,"color2":112,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"wheelSize":0.0,"oilLevel":4.76596940834568,"modSmokeEnabled":false,"modSpoilers":-1,"modSpeakers":-1,"modGrille":-1,"modStruts":-1,"modAirFilter":-1,"bodyHealth":1000.0592475178704,"model":836213613,"xenonColor":255,"wheelColor":0,"modHydrolic":-1,"modExhaust":-1,"modKit21":-1,"extras":[],"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"modFrame":-1,"wheels":7,"modRearBumper":-1,"plateIndex":2,"tyreSmokeColor":[255,255,255],"modDial":-1,"modSeats":-1,"wheelWidth":0.0,"modArmor":-1,"modHood":-1,"modBrakes":-1,"modTurbo":false,"modAerials":-1,"tankHealth":1000.0592475178704,"modWindows":-1,"neonEnabled":[false,false,false,false],"modAPlate":-1,"modEngine":-1,"modEngineBlock":-1,"engineHealth":1000.0592475178704,"modFender":-1,"modSteeringWheel":-1,"dashboardColor":31,"modTrunk":-1,"pearlescentColor":112,"interiorColor":31,"modArchCover":-1,"modHorns":-1,"modDoorSpeaker":-1,"modOrnaments":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modLivery":-1,"liveryRoof":-1,"modSuspension":-1,"modCustomTiresF":false,"windowTint":-1,"modSideSkirt":-1,"modKit19":-1,"modFrontWheels":-1,"dirtLevel":0.0,"modKit47":-1,"modBackWheels":-1,"modKit49":-1,"modTransmission":-1,"plate":"3DN573NC","modCustomTiresR":false,"modTrimA":-1,"headlightColor":255,"modFrontBumper":-1,"modShifterLeavers":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTrimB":-1,"modKit17":-1,"modTank":-1,"modXenon":false}', '3DN573NC', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51780, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 's1000rr', '436874758', '{"modCustomTiresF":false,"modHood":-1,"modKit47":-1,"modFrame":-1,"dashboardColor":0,"modCustomTiresR":false,"xenonColor":255,"modDial":-1,"modEngine":-1,"modKit21":-1,"modArmor":-1,"fuelLevel":100.08535757525947,"modFender":-1,"bodyHealth":1000.0592475178704,"modBrakes":-1,"modPlateHolder":-1,"modStruts":-1,"modRoof":-1,"modSpoilers":-1,"modTank":-1,"modAerials":-1,"modKit49":-1,"modDoorSpeaker":-1,"modSuspension":-1,"color1":0,"headlightColor":255,"wheelWidth":0.0,"modVanityPlate":-1,"modShifterLeavers":-1,"modAirFilter":-1,"modHydrolic":-1,"wheelColor":0,"modTrimA":-1,"oilLevel":4.76596940834568,"modEngineBlock":-1,"modTurbo":false,"modOrnaments":-1,"modKit17":-1,"modFrontWheels":-1,"modArchCover":-1,"modRearBumper":-1,"modHorns":-1,"color2":0,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":false},"modRightFender":-1,"extras":[],"dirtLevel":3.17731293889712,"pearlescentColor":0,"wheelSize":0.0,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modTrimB":-1,"modSteeringWheel":-1,"engineHealth":1000.0592475178704,"plate":"4LJ876AI","modWindows":-1,"modAPlate":-1,"modTransmission":-1,"modBackWheels":-1,"neonEnabled":[false,false,false,false],"model":436874758,"modSmokeEnabled":false,"interiorColor":0,"modSeats":-1,"plateIndex":3,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modExhaust":-1,"modTrunk":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modSpeakers":-1,"modXenon":false,"neonColor":[255,0,255],"windowTint":-1,"modGrille":-1,"modKit19":-1,"modDashboard":-1,"modLivery":1,"tyreSmokeColor":[255,255,255],"modSideSkirt":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrontBumper":-1,"tankHealth":1000.0592475178704,"wheels":6,"liveryRoof":-1}', '4LJ876AI', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51781, 'license:5005090b6c15274ca4fdfda7e31322fb849b6839', 'QNB34275', 'bmx', '1131912276', '{}', '4LZ271QI', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51782, 'license:bf12cd7bd0d2b67148e146755969f37e71710e13', 'WJC37394', 't20', '1663218586', '{"tyreSmokeColor":[255,255,255],"modAerials":-1,"color1":7,"modBrakes":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modRearBumper":-1,"modSteeringWheel":-1,"modTrimA":-1,"modGrille":-1,"color2":7,"neonEnabled":[false,false,false,false],"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modTurbo":false,"modTransmission":-1,"windowTint":-1,"modKit49":-1,"pearlescentColor":3,"modOrnaments":-1,"modKit19":-1,"modSmokeEnabled":false,"modSuspension":-1,"interiorColor":0,"xenonColor":255,"wheels":7,"modCustomTiresR":false,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"extras":[],"model":1663218586,"modKit17":-1,"modXenon":false,"modAirFilter":-1,"modWindows":-1,"modFender":-1,"modArmor":-1,"modAPlate":-1,"modArchCover":-1,"modVanityPlate":-1,"wheelSize":0.0,"modStruts":-1,"wheelWidth":0.0,"modPlateHolder":-1,"modExhaust":-1,"tankHealth":1000.0592475178704,"liveryRoof":-1,"modFrame":-1,"headlightColor":255,"modTank":-1,"fuelLevel":100.08535757525947,"modTrimB":-1,"modFrontBumper":-1,"modSeats":-1,"wheelColor":0,"plate":"8DB920AU","modHorns":-1,"bodyHealth":1000.0592475178704,"oilLevel":4.76596940834568,"modEngine":-1,"modDoorSpeaker":-1,"dirtLevel":0.0,"dashboardColor":0,"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":true,"0":true},"modShifterLeavers":-1,"modHydrolic":-1,"modHood":-1,"modFrontWheels":-1,"modDial":-1,"modLivery":-1,"modCustomTiresF":false,"modRoof":-1,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"neonColor":[255,0,255],"modEngineBlock":-1,"modKit47":-1,"plateIndex":0,"engineHealth":1000.0592475178704,"modKit21":-1,"modTrunk":-1,"modSideSkirt":-1,"modSpeakers":-1,"modSpoilers":-1,"modRightFender":-1,"modDashboard":-1,"modBackWheels":-1}', '8DB920AU', NULL, '', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51783, 'license:5dfe5f48ff9b14901a40705e7b26b2f2b42ca953', 'DVD07998', 'policet', '-962057607', '{"tankHealth":1000.0592475178704,"modRightFender":-1,"plate":"PD7730","modDashboard":-1,"oilLevel":4.76596940834568,"dashboardColor":0,"modVanityPlate":-1,"modSteeringWheel":-1,"modDial":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"windowTint":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"engineHealth":1000.0592475178704,"modKit47":-1,"modPlateHolder":-1,"wheelWidth":0.0,"modRoof":-1,"modEngine":-1,"modLivery":-1,"headlightColor":255,"modKit17":-1,"color1":111,"modAirFilter":-1,"wheelColor":156,"modSeats":-1,"modFender":-1,"modStruts":-1,"modHorns":-1,"extras":[],"modCustomTiresR":false,"modXenon":false,"modBrakes":-1,"modHood":-1,"color2":0,"modBackWheels":-1,"wheels":1,"modFrontWheels":-1,"bodyHealth":1000.0592475178704,"modSuspension":-1,"modTurbo":false,"dirtLevel":7.94328234724281,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"windowStatus":{"1":true,"2":false,"3":false,"4":false,"5":false,"6":true,"7":false,"0":true},"modRearBumper":-1,"modSideSkirt":-1,"modEngineBlock":-1,"model":456714581,"modArchCover":-1,"modHydrolic":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"liveryRoof":-1,"modTrimA":-1,"pearlescentColor":0,"modWindows":-1,"modTrimB":-1,"modDoorSpeaker":-1,"modGrille":-1,"modAerials":-1,"modShifterLeavers":-1,"modTank":-1,"modSmokeEnabled":false,"modAPlate":-1,"xenonColor":255,"modExhaust":-1,"modKit21":-1,"modFrontBumper":-1,"modOrnaments":-1,"interiorColor":0,"modCustomTiresF":false,"neonColor":[0,0,0],"fuelLevel":100.08535757525947,"modFrame":-1,"tyreSmokeColor":[255,255,255],"modTrunk":-1,"modKit19":-1,"modTransmission":-1,"neonEnabled":[false,false,false,false],"modArmor":-1,"plateIndex":4,"modKit49":-1,"modSpoilers":-1,"wheelSize":0.0,"modSpeakers":-1}', 'PD7730', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51784, 'license:5dfe5f48ff9b14901a40705e7b26b2f2b42ca953', 'DVD07998', 'riot', '-1789527295', '{"tankHealth":1000.0592475178704,"modRightFender":-1,"plate":"PD3845","modDashboard":-1,"oilLevel":4.76596940834568,"dashboardColor":0,"modVanityPlate":-1,"modSteeringWheel":-1,"modDial":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"windowTint":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"engineHealth":1000.0592475178704,"modKit47":-1,"modPlateHolder":-1,"wheelWidth":0.0,"modRoof":-1,"modEngine":-1,"modLivery":-1,"headlightColor":255,"modKit17":-1,"color1":132,"modAirFilter":-1,"wheelColor":156,"modSeats":-1,"modFender":-1,"modStruts":-1,"modHorns":-1,"extras":{"1":true},"modCustomTiresR":false,"modXenon":false,"modBrakes":-1,"modHood":-1,"color2":0,"modBackWheels":-1,"wheels":0,"modFrontWheels":-1,"bodyHealth":1000.0592475178704,"modSuspension":-1,"modTurbo":false,"dirtLevel":11.12059528613994,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":false,"0":false},"modRearBumper":-1,"modSideSkirt":-1,"modEngineBlock":-1,"model":-1205689942,"modArchCover":-1,"modHydrolic":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"liveryRoof":-1,"modTrimA":-1,"pearlescentColor":0,"modWindows":-1,"modTrimB":-1,"modDoorSpeaker":-1,"modGrille":-1,"modAerials":-1,"modShifterLeavers":-1,"modTank":-1,"modSmokeEnabled":false,"modAPlate":-1,"xenonColor":255,"modExhaust":-1,"modKit21":-1,"modFrontBumper":-1,"modOrnaments":-1,"interiorColor":0,"modCustomTiresF":false,"neonColor":[0,0,0],"fuelLevel":100.08535757525947,"modFrame":-1,"tyreSmokeColor":[255,255,255],"modTrunk":-1,"modKit19":-1,"modTransmission":-1,"neonEnabled":[false,false,false,false],"modArmor":-1,"plateIndex":4,"modKit49":-1,"modSpoilers":-1,"wheelSize":0.0,"modSpeakers":-1}', 'PD3845', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51785, 'license:5dfe5f48ff9b14901a40705e7b26b2f2b42ca953', 'DVD07998', 'riot', '1292996545', '{"tankHealth":1000.0592475178704,"modRightFender":-1,"plate":"PD8191","modDashboard":-1,"oilLevel":4.76596940834568,"dashboardColor":0,"modVanityPlate":-1,"modSteeringWheel":-1,"modDial":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"windowTint":-1,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"engineHealth":1000.0592475178704,"modKit47":-1,"modPlateHolder":-1,"wheelWidth":0.0,"modRoof":-1,"modEngine":-1,"modLivery":-1,"headlightColor":255,"modKit17":-1,"color1":132,"modAirFilter":-1,"wheelColor":156,"modSeats":-1,"modFender":-1,"modStruts":-1,"modHorns":-1,"extras":{"1":true},"modCustomTiresR":false,"modXenon":false,"modBrakes":-1,"modHood":-1,"color2":0,"modBackWheels":-1,"wheels":0,"modFrontWheels":-1,"bodyHealth":1000.0592475178704,"modSuspension":-1,"modTurbo":false,"dirtLevel":6.35462587779425,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":false,"0":true},"modRearBumper":-1,"modSideSkirt":-1,"modEngineBlock":-1,"model":-1205689942,"modArchCover":-1,"modHydrolic":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"liveryRoof":-1,"modTrimA":-1,"pearlescentColor":0,"modWindows":-1,"modTrimB":-1,"modDoorSpeaker":-1,"modGrille":-1,"modAerials":-1,"modShifterLeavers":-1,"modTank":-1,"modSmokeEnabled":false,"modAPlate":-1,"xenonColor":255,"modExhaust":-1,"modKit21":-1,"modFrontBumper":-1,"modOrnaments":-1,"interiorColor":0,"modCustomTiresF":false,"neonColor":[0,0,0],"fuelLevel":100.08535757525947,"modFrame":-1,"tyreSmokeColor":[255,255,255],"modTrunk":-1,"modKit19":-1,"modTransmission":-1,"neonEnabled":[false,false,false,false],"modArmor":-1,"plateIndex":4,"modKit49":-1,"modSpoilers":-1,"wheelSize":0.0,"modSpeakers":-1}', 'PD8191', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51786, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'avarus', '-2115793025', '{"modRoof":-1,"modTrimB":-1,"modFender":-1,"modBrakes":-1,"modVanityPlate":-1,"modWindows":-1,"modStruts":-1,"modDashboard":-1,"modAerials":-1,"modArmor":-1,"modHydrolic":-1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"fuelLevel":100.08535757525947,"windowStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"0":false},"modRightFender":-1,"modKit21":-1,"plateIndex":0,"modDial":-1,"wheelColor":111,"xenonColor":255,"engineHealth":1000.0592475178704,"dashboardColor":111,"model":-2115793025,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"oilLevel":4.76596940834568,"modBackWheels":-1,"modEngine":-1,"modSeats":-1,"modSpoilers":-1,"modHorns":-1,"modKit17":-1,"wheels":6,"modTrunk":-1,"modOrnaments":-1,"tyreSmokeColor":[255,255,255],"color1":73,"modSpeakers":-1,"color2":64,"modHood":-1,"pearlescentColor":2,"modFrontWheels":-1,"extras":[],"modTank":-1,"modRearBumper":-1,"modExhaust":-1,"modTrimA":-1,"modFrontBumper":-1,"dirtLevel":8.73761058196709,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modPlateHolder":-1,"modShifterLeavers":-1,"modLivery":-1,"windowTint":-1,"modTurbo":false,"modEngineBlock":-1,"modFrame":-1,"interiorColor":111,"tankHealth":1000.0592475178704,"modArchCover":-1,"modSideSkirt":-1,"bodyHealth":1000.0592475178704,"modAirFilter":-1,"modCustomTiresR":false,"wheelSize":0.0,"modGrille":-1,"modKit49":-1,"wheelWidth":0.0,"modXenon":false,"modTransmission":-1,"modCustomTiresF":false,"modKit19":-1,"modKit47":-1,"liveryRoof":-1,"plate":"7MA235JD","neonEnabled":[false,false,false,false],"modSteeringWheel":-1,"modSmokeEnabled":false,"tireHealth":{"1":1000.0,"2":0.0,"3":0.0,"0":1000.0},"modAPlate":-1,"neonColor":[255,0,255],"headlightColor":255,"modSuspension":-1,"modDoorSpeaker":-1}', '7MA235JD', NULL, 'galeri', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51787, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'autarch', '-313185164', '{}', '3AL768PQ', NULL, 'pillboxgarage', NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51788, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'fz07', '341441189', '{}', 'ANAYINAM', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51789, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'amggt63', '-970634648', '{}', 'AM SIKEN', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51790, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'm5cs', '635429068', '{}', '8GQ884HL', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51792, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'bmwm8', '-1404319008', '{}', '1', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51793, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '2', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51794, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'golf8gti', '1933250471', '{}', '3', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51795, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'bmwm8', '-1404319008', '{}', '4', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51796, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'golf8gti', '1933250471', '{}', '6', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51797, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '7', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51798, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '8', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51799, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'r820', '-143695728', '{}', '9', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51800, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'r820', '-143695728', '{}', '10', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51801, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'a80', '905399718', '{}', '11', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51802, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 's600', '-26888548', '{}', '12', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51803, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'sel600', '1195846554', '{}', '13', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51804, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', '600sel', '-1430685753', '{}', '14', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51805, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', '600sel', '-1430685753', '{}', '15', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51806, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'lambo', '168917830', '{}', '16', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51807, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'lambo', '168917830', '{}', '17', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51808, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '18', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51809, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '19', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51810, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '20', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51811, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '22', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51812, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '23', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51813, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', '600sel', '-1430685753', '{}', '24', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51814, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '25', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51815, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '26', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51816, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '27', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51817, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '28', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51818, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '29', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51819, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'golf8gti', '1933250471', '{}', '30', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51820, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'golf7gti', '-2114265264', '{}', '31', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51821, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'mk8r', '-194576641', '{}', '32', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51822, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'lp610', '-1796140063', '{}', '33', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51823, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '34', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51824, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '35', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51825, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'lp610', '-1796140063', '{}', '36', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51826, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '37', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51827, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '38', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51828, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '39', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51829, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '41', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51830, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '42', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51831, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '43', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51832, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '44', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51833, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '45', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51834, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '46', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51835, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '47', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51836, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '48', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51837, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '49', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51838, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '50', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51839, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '51', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51840, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '52', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51841, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '55', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51842, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '56', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51843, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '57', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51844, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '58', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51845, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '59', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51846, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '60', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51847, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '61', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51848, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '62', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51849, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '63', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51850, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '64', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51851, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '65', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51852, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '66', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51853, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '67', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51854, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '68', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51855, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '69', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51856, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '70', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51857, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '72', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51858, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '73', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51859, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '74', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51860, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '75', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51861, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '76', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51862, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '77', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51863, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '78', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51864, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'm5cs', '635429068', '{}', '7MW432RS', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51865, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'nismo20', '128072929', '{}', '79', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51866, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'm5cs', '635429068', '{}', '7KR478XG', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51867, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'nissantitan17', '1221510024', '{}', '1LR223DM', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51868, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'f8spider', '366352275', '{}', '7CH942GZ', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51869, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'm5cs', '635429068', '{}', '2WI635CK', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51870, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'nismo20', '128072929', '{}', '7FL529FY', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51871, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'nismo20', '128072929', '{}', '80', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51872, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'f8spider', '366352275', '{}', '81', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51873, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'm4kith', '797374789', '{}', '82', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51874, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'm4kith', '797374789', '{}', '83', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51875, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'm4kith', '797374789', '{}', '4YR212SC', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51876, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm5cs', '635429068', '{}', '89', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51877, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '90', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51878, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '91', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51879, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'golg7gti', '-843647259', '{}', '92', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51880, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'golf7gti', '-2114265264', '{}', '93', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51881, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'golf8gti', '1933250471', '{}', '94', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51882, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', '600sel', '-1430685753', '{}', '95', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51883, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '96', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51884, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'm4kith', '797374789', '{}', '0TX527ZE', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51885, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbvoyagerh', '938101172', '{}', '85', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51886, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbterrorizer', '-34558940', '{}', '86', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51887, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbpoltr3s', '1759729432', '{}', '87', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51888, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbpolturismogt', '-10990401', '{}', '88', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51889, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gb811s2', '1481884135', '{}', '98', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51890, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbadmiral', '792666687', '{}', '99', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51891, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbargento7f', '1728666326', '{}', '100', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51892, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbbanshees', '-1515775115', '{}', '101', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51893, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbbisonhf', '-1927474107', '{}', '102', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51894, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'm5cs', '635429068', '{}', '8IM905BD', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51895, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'nissmo17', '-699814192', '{}', '1IV084MF', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51896, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'nismo20', '128072929', '{}', '6WD107NT', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51897, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbcomets2r', '552981034', '{}', '103', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51898, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'r820', '-143695728', '{}', '3MG963IB', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51899, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbcomets2rc', '-1144731971', '{}', '104', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51900, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'amggt63', '-970634648', '{}', '7OG715UG', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51901, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'm4kith', '797374789', '{}', '0FI183ES', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51902, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbemsbisonstx', '-735099479', '{}', '105', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51903, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbeon', '1990273809', '{}', '106', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51904, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbeonpol', '1119173305', '{}', '107', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51905, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbesperta', '-164819338', '{}', '108', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51906, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbneonct', '2126083194', '{}', '109', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51907, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbsapphire', '890172403', '{}', '110', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51908, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbschlagenr', '160560685', '{}', '111', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51909, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'gbvivant', '1270000238', '{}', '150', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51910, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'gbturismogt', '-1355456249', '{}', '151', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51911, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'gbtr3s', '-629945978', '{}', '152', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51912, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gblod4', '333640189', '{}', '112', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51913, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbeon', '1990273809', '{}', '113', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51914, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbmogulrs', '-1587596621', '{}', '114', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51915, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gbsapphire', '890172403', '{}', '115', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51916, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'gbterrorizer', '-34558940', '{}', '154', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51917, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'gblod4', '333640189', '{}', '116', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51918, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'f8spider', '366352275', '{}', '155', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51919, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '156', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51920, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '157', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51921, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '158', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51922, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '159', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51923, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'm4kith', '797374789', '{}', '200', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51924, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'bmci', '1093697054', '{}', '210', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51925, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'vclass', 'unknown', '{}', '566QK75', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51926, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'v250', 'unknown', '{}', '997HH72', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51927, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'benze55', '-1032122474', '{}', '211', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51928, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'v250', '-1412248195', '{}', '0QO632KE', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51929, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'mers63c_hi', '1889850646', '{}', '6VL292IU', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51930, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'vclass', '970407273', '{}', '212', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51931, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'mers63c', '-189485405', '{}', '2BV366IP', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51932, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'vclass', '970407273', '{}', '213', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51933, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'bmci', '1093697054', '{}', '8HS538IK', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51934, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'KNK63128', 'mers63s', '-1508339324', '{}', '214', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51935, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'benze55', '-1032122474', '{}', '3ED693BS', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51936, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'volatus', '-1845487887', '{}', '6MZ760BV', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51937, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'm4kith', '797374789', '{}', 'BERAT', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51938, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'buzzard2', '745926877', '{}', '0LT525VP', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51939, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'volatus', '-1845487887', '{}', '9JX712QZ', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51940, 'license:743d1329c84c50587593410bfd0f02e858c89d89', 'EIH18257', 'volatus', '-1845487887', '{}', '4LA240SX', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51941, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'heli', '-738914697', '{}', '218', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51942, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'Khanjali', '-1435527158', '{}', '9ZR096ZU', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51943, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'Khanjali', '-1435527158', '{}', '4RK172KM', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51944, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'HZK30117', 'Khanjali', '-1435527158', '{}', '8ZB367WG', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51945, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '220', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51946, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '221', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51947, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '222', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51948, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '223', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51949, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '224', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51950, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '225', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51951, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '226', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51952, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '227', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51953, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '228', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51954, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '229', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51955, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '230', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51956, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '231', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51957, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '232', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51958, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '233', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51959, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '234', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51960, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '235', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51961, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '236', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51962, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '237', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51963, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '238', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51964, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '239', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51965, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '240', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51966, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '241', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51967, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '242', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51968, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '243', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51969, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '244', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51970, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '245', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51971, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '246', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51972, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '247', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51973, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '248', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51974, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '249', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51975, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '250', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51976, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '251', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51977, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '252', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51978, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '253', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51979, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '254', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51980, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '255', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51981, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '256', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51983, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '257', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51984, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '258', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51985, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '259', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51987, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '260', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51988, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '261', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51989, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '262', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51990, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '263', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51991, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '264', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51992, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '265', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51993, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '266', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51994, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '267', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51995, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '268', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51996, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '269', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51997, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '280', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51998, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '281', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(51999, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '282', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52000, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '283', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52001, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '284', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52002, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '285', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52003, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '286', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52004, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '287', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52005, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '288', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52006, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'benze55', '-1032122474', '{}', '289', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52007, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'WNE62099', 'bmci', '1093697054', '{}', '290', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52009, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'OVL98907', 'nkbuffalos', '-2065286610', '{"modSpeakers":-1,"modSeats":-1,"modCustomTiresF":false,"modKit49":-1,"modExhaust":-1,"modOrnaments":-1,"modAerials":-1,"modSmokeEnabled":false,"wheelSize":0.0,"modTrimA":-1,"liveryRoof":-1,"modFrame":-1,"modTrunk":-1,"plate":"68RDT983","dirtLevel":7.14895411251853,"oilLevel":4.76596940834568,"modKit19":-1,"interiorColor":0,"xenonColor":255,"modRightFender":-1,"headlightColor":255,"modShifterLeavers":-1,"modEngineBlock":-1,"modDoorSpeaker":-1,"modSuspension":-1,"extras":{"3":false,"2":false,"5":false,"4":true,"7":false,"6":false,"9":false,"8":false,"1":false},"modDial":-1,"modKit47":-1,"modTransmission":-1,"wheels":0,"modVanityPlate":-1,"bodyHealth":1000.0592475178704,"modTrimB":-1,"neonColor":[255,0,255],"model":332926265,"modHorns":-1,"modArchCover":-1,"modHydrolic":-1,"modTank":-1,"wheelColor":0,"modXenon":false,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modPlateHolder":-1,"windowTint":-1,"tyreSmokeColor":[255,255,255],"modStruts":-1,"tankHealth":1000.0592475178704,"modFrontBumper":-1,"modSpoilers":-1,"modBrakes":-1,"plateIndex":4,"modWindows":-1,"pearlescentColor":0,"modSideSkirt":-1,"modEngine":-1,"modCustomTiresR":false,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modGrille":-1,"modHood":-1,"engineHealth":1000.0592475178704,"modTurbo":false,"fuelLevel":100.08535757525947,"color1":0,"dashboardColor":0,"neonEnabled":[false,false,false,false],"modKit21":-1,"modSteeringWheel":-1,"wheelWidth":0.0,"modArmor":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modDashboard":-1,"modKit17":-1,"modAPlate":-1,"modAirFilter":-1,"modFender":-1,"modRoof":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"modRearBumper":-1,"modLivery":-1,"modBackWheels":-1,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrontWheels":-1}', '4FT022EB', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52010, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'OVL98907', 'nkcoquette', '-758862397', '{"modSpeakers":-1,"modSeats":-1,"modCustomTiresF":false,"modKit49":-1,"modExhaust":-1,"modOrnaments":-1,"modAerials":-1,"modSmokeEnabled":false,"wheelSize":0.0,"modTrimA":-1,"liveryRoof":-1,"modFrame":-1,"modTrunk":-1,"plate":"47EPM962","dirtLevel":3.9716411736214,"oilLevel":6.35462587779425,"modKit19":-1,"interiorColor":0,"xenonColor":255,"modRightFender":-1,"headlightColor":255,"modShifterLeavers":-1,"modEngineBlock":-1,"modDoorSpeaker":-1,"modSuspension":-1,"extras":{"3":true,"2":false,"5":false,"4":false,"7":false,"6":false,"9":false,"8":false,"11":false,"1":false,"10":false},"modDial":-1,"modKit47":-1,"modTransmission":-1,"wheels":0,"modVanityPlate":-1,"bodyHealth":1000.0592475178704,"modTrimB":-1,"neonColor":[255,0,255],"model":-1076662740,"modHorns":-1,"modArchCover":-1,"modHydrolic":-1,"modTank":-1,"wheelColor":0,"modXenon":false,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modPlateHolder":-1,"windowTint":-1,"tyreSmokeColor":[255,255,255],"modStruts":-1,"tankHealth":1000.0592475178704,"modFrontBumper":-1,"modSpoilers":-1,"modBrakes":-1,"plateIndex":4,"modWindows":-1,"pearlescentColor":0,"modSideSkirt":-1,"modEngine":-1,"modCustomTiresR":false,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modGrille":-1,"modHood":-1,"engineHealth":1000.0592475178704,"modTurbo":false,"fuelLevel":100.08535757525947,"color1":0,"dashboardColor":0,"neonEnabled":[false,false,false,false],"modKit21":-1,"modSteeringWheel":-1,"wheelWidth":0.0,"modArmor":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modDashboard":-1,"modKit17":-1,"modAPlate":-1,"modAirFilter":-1,"modFender":-1,"modRoof":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modRearBumper":-1,"modLivery":-1,"modBackWheels":-1,"color2":0,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrontWheels":-1}', '8CF967YK', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52011, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'OVL98907', 'nkcruiser', '1073204542', '{"modSpeakers":-1,"modSeats":-1,"modCustomTiresF":false,"modKit49":-1,"modExhaust":-1,"modOrnaments":-1,"modAerials":-1,"modSmokeEnabled":false,"wheelSize":0.0,"modTrimA":-1,"liveryRoof":-1,"modFrame":-1,"modTrunk":-1,"plate":"88WKN808","dirtLevel":11.12059528613994,"oilLevel":4.76596940834568,"modKit19":-1,"interiorColor":0,"xenonColor":255,"modRightFender":-1,"headlightColor":255,"modShifterLeavers":-1,"modEngineBlock":-1,"modDoorSpeaker":-1,"modSuspension":-1,"extras":{"3":false,"2":false,"5":false,"4":false,"7":true,"6":false,"9":false,"8":false,"1":false},"modDial":-1,"modKit47":-1,"modTransmission":-1,"wheels":1,"modVanityPlate":-1,"bodyHealth":1000.0592475178704,"modTrimB":-1,"neonColor":[255,0,255],"model":-271783068,"modHorns":-1,"modArchCover":-1,"modHydrolic":-1,"modTank":-1,"wheelColor":0,"modXenon":false,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modPlateHolder":-1,"windowTint":-1,"tyreSmokeColor":[255,255,255],"modStruts":-1,"tankHealth":1000.0592475178704,"modFrontBumper":-1,"modSpoilers":-1,"modBrakes":-1,"plateIndex":4,"modWindows":-1,"pearlescentColor":0,"modSideSkirt":-1,"modEngine":-1,"modCustomTiresR":false,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modGrille":-1,"modHood":-1,"engineHealth":1000.0592475178704,"modTurbo":false,"fuelLevel":100.08535757525947,"color1":1,"dashboardColor":0,"neonEnabled":[false,false,false,false],"modKit21":-1,"modSteeringWheel":-1,"wheelWidth":0.0,"modArmor":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modDashboard":-1,"modKit17":-1,"modAPlate":-1,"modAirFilter":-1,"modFender":-1,"modRoof":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"modRearBumper":-1,"modLivery":-1,"modBackWheels":-1,"color2":1,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrontWheels":-1}', '4AQ672PP', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52012, 'license:5db03ae1816a7f7039d8accb337a1bf7b2c3e13e', 'OVL98907', 'nkscout2020', '755372762', '{"modSpeakers":-1,"modSeats":-1,"modCustomTiresF":false,"modKit49":-1,"modExhaust":-1,"modOrnaments":-1,"modAerials":-1,"modSmokeEnabled":false,"wheelSize":0.0,"modTrimA":-1,"liveryRoof":-1,"modFrame":-1,"modTrunk":-1,"plate":"88DMX487","dirtLevel":10.32626705141565,"oilLevel":7.94328234724281,"modKit19":-1,"interiorColor":0,"xenonColor":255,"modRightFender":-1,"headlightColor":255,"modShifterLeavers":-1,"modEngineBlock":-1,"modDoorSpeaker":-1,"modSuspension":-1,"extras":{"3":false,"2":false,"5":true,"4":false,"7":false,"6":false,"1":false,"8":false},"modDial":-1,"modKit47":-1,"modTransmission":-1,"wheels":3,"modVanityPlate":-1,"bodyHealth":1000.0592475178704,"modTrimB":-1,"neonColor":[255,0,255],"model":1070722609,"modHorns":-1,"modArchCover":-1,"modHydrolic":-1,"modTank":-1,"wheelColor":0,"modXenon":false,"tireBurstState":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modPlateHolder":-1,"windowTint":-1,"tyreSmokeColor":[255,255,255],"modStruts":-1,"tankHealth":1000.0592475178704,"modFrontBumper":-1,"modSpoilers":-1,"modBrakes":-1,"plateIndex":4,"modWindows":-1,"pearlescentColor":0,"modSideSkirt":-1,"modEngine":-1,"modCustomTiresR":false,"tireHealth":{"1":1000.0,"2":1000.0,"3":1000.0,"0":1000.0},"modGrille":-1,"modHood":-1,"engineHealth":1000.0592475178704,"modTurbo":false,"fuelLevel":100.08535757525947,"color1":0,"dashboardColor":0,"neonEnabled":[false,false,false,false],"modKit21":-1,"modSteeringWheel":-1,"wheelWidth":0.0,"modArmor":-1,"doorStatus":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modDashboard":-1,"modKit17":-1,"modAPlate":-1,"modAirFilter":-1,"modFender":-1,"modRoof":-1,"windowStatus":{"1":true,"2":true,"3":true,"4":true,"5":true,"6":true,"7":true,"0":true},"modRearBumper":-1,"modLivery":-1,"modBackWheels":-1,"color2":111,"tireBurstCompletely":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"modFrontWheels":-1}', '8XU568EF', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52013, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '300', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52014, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '301', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52015, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '302', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52016, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '303', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52017, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '304', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52018, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '305', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52019, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '306', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52020, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'benz55', '1683115305', '{}', '500', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52021, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'benze55', '-1032122474', '{}', '501', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52022, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'benze55', '-1032122474', '{}', '502', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52023, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'benze55', '-1032122474', '{}', '505', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52024, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '310', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52025, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '311', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52026, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '312', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52027, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '313', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52028, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '314', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52029, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'benze55', '-1032122474', '{}', '315', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52030, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '316', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52031, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '317', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52032, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '318', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52033, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '319', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52034, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '320', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52035, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '321', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52036, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '322', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52037, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '323', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52038, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '324', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52039, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '325', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52040, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '326', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52041, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '327', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52042, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '328', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52043, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '329', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52044, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '330', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52045, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '331', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52046, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmwci', '-30750935', '{}', '440', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52047, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '441', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52048, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '442', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52049, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '443', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52050, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '444', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52051, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '445', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52052, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '446', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52053, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '447', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52054, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '448', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52055, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '336', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52056, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '455', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52057, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '337', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52058, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '456', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52059, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '338', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52060, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '457', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52061, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '339', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52062, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '458', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52063, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '340', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52064, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '459', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52065, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '341', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52066, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '342', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52067, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '475', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52068, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '343', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52069, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '476', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52070, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '477', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52071, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '344', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52072, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '478', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52073, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '345', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52074, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '479', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52075, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '346', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52076, 'license:bf27ee661fc3721a579fdf1abc24f595435fa4d8', 'TIV56684', 'bmci', '1093697054', '{}', '510', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52077, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '380', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52078, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '381', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52079, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '382', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52080, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '383', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52081, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '384', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52082, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '385', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52083, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '386', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52084, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '387', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52085, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '388', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52086, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '389', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL),
	(52087, 'license:b2b7ae3786c6db6e43241fb669b632f89d88798b', 'PDH43092', 'bmci', '1093697054', '{}', '390', NULL, NULL, NULL, 100, 1000, 1000, 1, 0, NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL);

-- Dumping structure for table coozv.player_warns
CREATE TABLE IF NOT EXISTS `player_warns` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `senderIdentifier` varchar(50) DEFAULT NULL,
  `targetIdentifier` varchar(50) DEFAULT NULL,
  `reason` text DEFAULT NULL,
  `warnId` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.player_warns: ~0 rows (approximately)
DELETE FROM `player_warns`;

-- Dumping structure for table coozv.ps_banking_accounts
CREATE TABLE IF NOT EXISTS `ps_banking_accounts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `balance` bigint(20) NOT NULL,
  `holder` varchar(255) NOT NULL,
  `cardNumber` varchar(255) NOT NULL,
  `users` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`users`)),
  `owner` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`owner`)),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ps_banking_accounts: ~2 rows (approximately)
DELETE FROM `ps_banking_accounts`;
INSERT INTO `ps_banking_accounts` (`id`, `balance`, `holder`, `cardNumber`, `users`, `owner`) VALUES
	(1, 0, 'sdadsa', '6567 3001 1279 1716', '[]', '{"identifier":"VCW52710","state":true,"name":"Dsadas Dsadas"}'),
	(2, 5555, '2eew2sedd', '8183 6179 7388 0952', '[]', '{"identifier":"VCW52710","state":true,"name":"Dsadas Dsadas"}');

-- Dumping structure for table coozv.ps_banking_bills
CREATE TABLE IF NOT EXISTS `ps_banking_bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(50) NOT NULL,
  `description` varchar(255) NOT NULL,
  `type` varchar(50) NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `date` date NOT NULL,
  `isPaid` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ps_banking_bills: ~0 rows (approximately)
DELETE FROM `ps_banking_bills`;

-- Dumping structure for table coozv.ps_banking_transactions
CREATE TABLE IF NOT EXISTS `ps_banking_transactions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(50) NOT NULL,
  `description` varchar(255) NOT NULL,
  `type` varchar(50) NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `date` date NOT NULL,
  `isIncome` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.ps_banking_transactions: ~9 rows (approximately)
DELETE FROM `ps_banking_transactions`;
INSERT INTO `ps_banking_transactions` (`id`, `identifier`, `description`, `type`, `amount`, `date`, `isIncome`) VALUES
	(1, 'VCW52710', 'Transaction', 'bank', 10000.00, '2025-03-19', 1),
	(2, 'VCW52710', 'Transaction', 'bank', 10000.00, '2025-03-19', 1),
	(3, 'VCW52710', 'İşlem', 'bank', 29938.00, '2025-03-19', 1),
	(4, 'VCW52710', 'İşlem', 'bank', 215938.00, '2025-03-19', 1),
	(5, 'VCW52710', 'İşlem', 'bank', 2000.00, '2025-03-19', 1),
	(6, 'VCW52710', 'İşlem', 'bank', 2000.00, '2025-03-19', 1),
	(7, 'VCW52710', 'İşlem', 'bank', 2000.00, '2025-03-19', 0),
	(8, 'VCW52710', 'İşlem', 'bank', 2000.00, '2025-03-19', 0),
	(9, 'VCW52710', 'İşlem', 'bank', 5000.00, '2025-03-19', 1);

-- Dumping structure for table coozv.stashitems
CREATE TABLE IF NOT EXISTS `stashitems` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `stash` varchar(255) DEFAULT NULL,
  `items` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`items`)),
  PRIMARY KEY (`id`),
  KEY `stash` (`stash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.stashitems: ~0 rows (approximately)
DELETE FROM `stashitems`;

-- Dumping structure for table coozv.tgiann_gps_fav
CREATE TABLE IF NOT EXISTS `tgiann_gps_fav` (
  `citizenid` varchar(50) DEFAULT NULL,
  `channel` float DEFAULT NULL,
  `password` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.tgiann_gps_fav: ~0 rows (approximately)
DELETE FROM `tgiann_gps_fav`;

-- Dumping structure for table coozv.tgiann_mdt_arananlar
CREATE TABLE IF NOT EXISTS `tgiann_mdt_arananlar` (
  `citizenid` varchar(50) DEFAULT NULL,
  `sebep` longtext DEFAULT NULL,
  `baslangic` varchar(255) DEFAULT NULL,
  `bitis` varchar(255) DEFAULT NULL,
  `isim` varchar(255) DEFAULT NULL,
  `img` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.tgiann_mdt_arananlar: ~0 rows (approximately)
DELETE FROM `tgiann_mdt_arananlar`;
INSERT INTO `tgiann_mdt_arananlar` (`citizenid`, `sebep`, `baslangic`, `bitis`, `isim`, `img`) VALUES
	('FNU16178', 'oçluk suçu', '1762255380', '1762687380', 'Boklu  Gegege', NULL);

-- Dumping structure for table coozv.tgiann_mdt_cezalar
CREATE TABLE IF NOT EXISTS `tgiann_mdt_cezalar` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) DEFAULT NULL,
  `aciklama` longtext DEFAULT NULL,
  `ceza` varchar(255) DEFAULT NULL,
  `polis` mediumtext DEFAULT NULL,
  `zanli` mediumtext DEFAULT NULL,
  `cezalar` longtext DEFAULT NULL,
  `olayid` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=907 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.tgiann_mdt_cezalar: ~0 rows (approximately)
DELETE FROM `tgiann_mdt_cezalar`;
INSERT INTO `tgiann_mdt_cezalar` (`id`, `citizenid`, `aciklama`, `ceza`, `polis`, `zanli`, `cezalar`, `olayid`) VALUES
	(906, 'FNU16178', 'seks', '{"para":561000,"hapis":0,"tceza":70,"kamu":825}', '["Efe Sarsılmaz"]', '["Boklu  Gegege"]', 'Kamu Alanlarına İzinsiz Giriş, Kamu Huzurunu Bozma, Kırmızı Işık İhlali, Hız Sınırı Aşma, Hatalı Park, Tehlikeli Araç Kullanmak, Şerit İhlali, Evraksız Araç Kullanma, Hatalı Sürüş, Gereksiz Korna Kullanımı, Darp Grişimi, Kaldırımda Araç Sürme, Alkollü Araç Kullanımı, Gasp, Araç Çalma Girişimi, Çevreyi Rahatsız Etme, Darp, İzinsiz Görüntü Ve Ses Kaydı, Maske-Zırh-Silah Kılıfı Bulundurma, Plakasız Araç Kullanma, İllegal Modifiye, Asılsız İhbar, Devlet Çalışanını Kandırma, İllegal Madde Bulundurma, Kesici,Delici Alet Bulundurmak, Siber Suçlar, İllegal Bölgede Bulunma, Dolandırıcılık, Dur İhtarına Uymamak, Çalıntı Araç Kullanma, Irkçılık, Magandalık, Sivil Yaralama Girişimi, Adam Soymak, Tehdit, Sorgu Düzenine Uymama, Kumar Oynatmak, İzinsiz Yasadışı Yarış Düzenleme, Kesici,Delici Alet Ticareti, Polise Direnme+Zorluk Çıkartmak, Devlet Malına Zarar Vermek, Şantaj, Market Soygunu, Adam Kaçırma, Yasadışı Ticaret, Tefecilik, Ruhsatsız Silah Bulundurma, Kesici,Delici Alet İle Adam Yaralama, Devlet Çalışanını Yaralama, Yalancı Şahitlik, Haraç Kesme, Ateşli Silah Ticareti, Tutuklama Durumundan Kaçmak, Kuyumcu Soygunu, Ateşli Silah İle Cinayet Girişimi, Devlet Aracını Çalma Girişimi, Banka/Merkez Banka Soygunu, Devlet Çalışanını Öldürme, İşkence', 906);

-- Dumping structure for table coozv.tgiann_mdt_olaylar
CREATE TABLE IF NOT EXISTS `tgiann_mdt_olaylar` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `aciklama` longtext DEFAULT NULL,
  `polis` mediumtext DEFAULT NULL,
  `zanli` mediumtext DEFAULT NULL,
  `zaman` varchar(50) DEFAULT current_timestamp(),
  `esyalar` mediumtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=907 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.tgiann_mdt_olaylar: ~0 rows (approximately)
DELETE FROM `tgiann_mdt_olaylar`;
INSERT INTO `tgiann_mdt_olaylar` (`id`, `aciklama`, `polis`, `zanli`, `zaman`, `esyalar`) VALUES
	(906, 'seks', '["Efe Sarsılmaz"]', '["Boklu  Gegege"]', '2025-11-04 03:23:52', '[]');

-- Dumping structure for table coozv.trunkitems
CREATE TABLE IF NOT EXISTS `trunkitems` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `plate` varchar(255) DEFAULT NULL,
  `items` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`items`)),
  PRIMARY KEY (`id`),
  KEY `plate` (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- Dumping data for table coozv.trunkitems: ~0 rows (approximately)
DELETE FROM `trunkitems`;

-- Dumping structure for table coozv.warns
CREATE TABLE IF NOT EXISTS `warns` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `license` varchar(50) NOT NULL,
  `reason` text NOT NULL,
  `warnedby` varchar(50) NOT NULL,
  `warnedtime` bigint(20) NOT NULL DEFAULT unix_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- Dumping data for table coozv.warns: ~0 rows (approximately)
DELETE FROM `warns`;

-- Dumping structure for table coozv.wx_anticheat
CREATE TABLE IF NOT EXISTS `wx_anticheat` (
  `banID` varchar(9) NOT NULL,
  `playerName` varchar(25) NOT NULL,
  `steamid` varchar(40) DEFAULT NULL,
  `ip` varchar(40) DEFAULT NULL,
  `license` varchar(100) DEFAULT NULL,
  `discordid` varchar(100) DEFAULT NULL,
  `reason` varchar(255) NOT NULL,
  `HWID` varchar(130) NOT NULL,
  `HWID2` varchar(130) NOT NULL,
  `HWID3` varchar(130) NOT NULL,
  `HWID4` varchar(130) NOT NULL,
  `HWID5` varchar(130) NOT NULL,
  PRIMARY KEY (`HWID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- Dumping data for table coozv.wx_anticheat: ~0 rows (approximately)
DELETE FROM `wx_anticheat`;

-- Dumping structure for trigger coozv.phone_instagram_decrement_comment_count
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_instagram_decrement_comment_count
AFTER DELETE ON phone_instagram_comments
FOR EACH ROW
BEGIN
    UPDATE phone_instagram_posts
    SET comment_count = comment_count - 1
    WHERE id = OLD.post_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_instagram_decrement_like_count
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_instagram_decrement_like_count
AFTER DELETE ON phone_instagram_likes
FOR EACH ROW
BEGIN
    IF OLD.is_comment = 0 THEN
        UPDATE phone_instagram_posts
        SET like_count = like_count - 1
        WHERE id = OLD.id;
    ELSE
        UPDATE phone_instagram_comments
        SET like_count = like_count - 1
        WHERE id = OLD.id;
    END IF;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_instagram_decrement_post_count
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_instagram_decrement_post_count
AFTER DELETE ON phone_instagram_posts
FOR EACH ROW
BEGIN
    UPDATE phone_instagram_accounts
    SET post_count = post_count - 1
    WHERE username = OLD.username;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_instagram_decrement_story_count
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_instagram_decrement_story_count
AFTER DELETE ON phone_instagram_stories
FOR EACH ROW
BEGIN
    UPDATE phone_instagram_accounts
    SET story_count = story_count - 1
    WHERE username = OLD.username;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_instagram_increment_comment_count
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_instagram_increment_comment_count
AFTER INSERT ON phone_instagram_comments
FOR EACH ROW
BEGIN
    UPDATE phone_instagram_posts
    SET comment_count = comment_count + 1
    WHERE id = NEW.post_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_instagram_increment_like_count
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_instagram_increment_like_count
AFTER INSERT ON phone_instagram_likes
FOR EACH ROW
BEGIN
    IF NEW.is_comment = 0 THEN
        UPDATE phone_instagram_posts
        SET like_count = like_count + 1
        WHERE id = NEW.id;
    ELSE
        UPDATE phone_instagram_comments
        SET like_count = like_count + 1
        WHERE id = NEW.id;
    END IF;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_instagram_increment_post_count
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_instagram_increment_post_count
AFTER INSERT ON phone_instagram_posts
FOR EACH ROW
BEGIN
    UPDATE phone_instagram_accounts
    SET post_count = post_count + 1
    WHERE username = NEW.username;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_instagram_increment_story_count
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_instagram_increment_story_count
AFTER INSERT ON phone_instagram_stories
FOR EACH ROW
BEGIN
    UPDATE phone_instagram_accounts
    SET story_count = story_count + 1
    WHERE username = NEW.username;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_instagram_update_counts_after_follow
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_instagram_update_counts_after_follow
AFTER INSERT ON phone_instagram_follows
FOR EACH ROW
BEGIN
    UPDATE phone_instagram_accounts
    SET follower_count = follower_count + 1
    WHERE username = NEW.followed;

    UPDATE phone_instagram_accounts
    SET following_count = following_count + 1
    WHERE username = NEW.follower;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_instagram_update_counts_after_unfollow
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_instagram_update_counts_after_unfollow
AFTER DELETE ON phone_instagram_follows
FOR EACH ROW
BEGIN
    UPDATE phone_instagram_accounts
    SET follower_count = follower_count - 1
    WHERE username = OLD.followed;

    UPDATE phone_instagram_accounts
    SET following_count = following_count - 1
    WHERE username = OLD.follower;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_decrement_account_likes
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_decrement_account_likes
AFTER DELETE ON phone_tiktok_likes
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_accounts
    JOIN phone_tiktok_videos ON phone_tiktok_videos.username = phone_tiktok_accounts.username
    SET phone_tiktok_accounts.like_count = phone_tiktok_accounts.like_count - 1
    WHERE phone_tiktok_videos.id = OLD.video_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_decrement_comment_likes
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_decrement_comment_likes
AFTER DELETE ON phone_tiktok_comments_likes
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_comments
    SET likes = likes - 1
    WHERE id = OLD.comment_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_decrement_video_comments
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_decrement_video_comments
BEFORE DELETE ON phone_tiktok_comments
FOR EACH ROW
BEGIN
    DECLARE v_replies_count INT;

    -- Count the replies for the comment
    SELECT COUNT(*) INTO v_replies_count
    FROM phone_tiktok_comments
    WHERE reply_to = OLD.id;

    -- Update the video's comments count
    UPDATE phone_tiktok_videos
    SET comments = comments - (1 + v_replies_count)
    WHERE id = OLD.video_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_decrement_video_likes
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_decrement_video_likes
AFTER DELETE ON phone_tiktok_likes
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_videos
    SET likes = likes - 1
    WHERE id = OLD.video_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_decrement_video_saves
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_decrement_video_saves
AFTER DELETE ON phone_tiktok_saves
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_videos
    SET saves = saves - 1
    WHERE id = OLD.video_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_increment_account_likes
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_increment_account_likes
AFTER INSERT ON phone_tiktok_likes
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_accounts
    JOIN phone_tiktok_videos ON phone_tiktok_videos.username = phone_tiktok_accounts.username
    SET phone_tiktok_accounts.like_count = phone_tiktok_accounts.like_count + 1
    WHERE phone_tiktok_videos.id = NEW.video_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_increment_comment_likes
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_increment_comment_likes
AFTER INSERT ON phone_tiktok_comments_likes
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_comments
    SET likes = likes + 1
    WHERE id = NEW.comment_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_increment_video_comments
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_increment_video_comments
AFTER INSERT ON phone_tiktok_comments
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_videos
    SET comments = comments + 1
    WHERE id = NEW.video_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_increment_video_count
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_increment_video_count
AFTER INSERT ON phone_tiktok_videos
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_accounts
    SET video_count = video_count + 1
    WHERE username = NEW.username;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_increment_video_likes
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_increment_video_likes
AFTER INSERT ON phone_tiktok_likes
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_videos
    SET likes = likes + 1
    WHERE id = NEW.video_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_increment_video_saves
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_increment_video_saves
AFTER INSERT ON phone_tiktok_saves
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_videos
    SET saves = saves + 1
    WHERE id = NEW.video_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_increment_video_views
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_increment_video_views
AFTER INSERT ON phone_tiktok_views
FOR EACH ROW
BEGIN
    UPDATE phone_tiktok_videos
    SET views = views + 1
    WHERE id = NEW.video_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_update_counts_after_follow
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_update_counts_after_follow
AFTER INSERT ON phone_tiktok_follows
FOR EACH ROW
BEGIN
    -- Increment the follower_count for the followed user
    UPDATE phone_tiktok_accounts
    SET follower_count = follower_count + 1
    WHERE username = NEW.followed;

    -- Increment the following_count for the follower user
    UPDATE phone_tiktok_accounts
    SET following_count = following_count + 1
    WHERE username = NEW.follower;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_update_counts_after_unfollow
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_update_counts_after_unfollow
AFTER DELETE ON phone_tiktok_follows
FOR EACH ROW
BEGIN
    -- Decrement the follower_count for the followed user
    UPDATE phone_tiktok_accounts
    SET follower_count = follower_count - 1
    WHERE username = OLD.followed;

    -- Decrement the following_count for the follower user
    UPDATE phone_tiktok_accounts
    SET following_count = following_count - 1
    WHERE username = OLD.follower;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_tiktok_update_last_message
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_tiktok_update_last_message
AFTER INSERT ON phone_tiktok_messages
FOR EACH ROW
BEGIN
    DECLARE modified_content TEXT CHARACTER SET utf8mb4;

    IF NEW.content LIKE '<!SHARED-VIDEO-URL%' THEN
        SET modified_content = 'Shared a video';
    ELSEIF LENGTH(NEW.content) > 50 THEN
        SET modified_content = CONCAT(SUBSTR(NEW.content, 1, 17), '...');
    ELSE
        SET modified_content = NEW.content;
    END IF;

    UPDATE phone_tiktok_channels
    SET last_message = modified_content
    WHERE id = NEW.channel_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_twitter_update_counts_after_follow
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_twitter_update_counts_after_follow
AFTER INSERT ON phone_twitter_follows
FOR EACH ROW
BEGIN
    -- Increment the follower_count for the followed user
    UPDATE phone_twitter_accounts
    SET follower_count = follower_count + 1
    WHERE username = NEW.followed;

    -- Increment the following_count for the follower user
    UPDATE phone_twitter_accounts
    SET following_count = following_count + 1
    WHERE username = NEW.follower;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_twitter_update_counts_after_unfollow
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_twitter_update_counts_after_unfollow
AFTER DELETE ON phone_twitter_follows
FOR EACH ROW
BEGIN
    -- Decrement the follower_count for the followed user
    UPDATE phone_twitter_accounts
    SET follower_count = follower_count - 1
    WHERE username = OLD.followed;

    -- Decrement the following_count for the follower user
    UPDATE phone_twitter_accounts
    SET following_count = following_count - 1
    WHERE username = OLD.follower;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_twitter_update_like_count_after_like
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_twitter_update_like_count_after_like
AFTER INSERT ON phone_twitter_likes
FOR EACH ROW
BEGIN
    UPDATE phone_twitter_tweets
    SET like_count = like_count + 1
    WHERE id = NEW.tweet_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_twitter_update_like_count_after_unlike
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_twitter_update_like_count_after_unlike
AFTER DELETE ON phone_twitter_likes
FOR EACH ROW
BEGIN
    UPDATE phone_twitter_tweets
    SET like_count = like_count - 1
    WHERE id = OLD.tweet_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_twitter_update_retweet_count_after_retweet
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_twitter_update_retweet_count_after_retweet
AFTER INSERT ON phone_twitter_retweets
FOR EACH ROW
BEGIN
    UPDATE phone_twitter_tweets
    SET retweet_count = retweet_count + 1
    WHERE id = NEW.tweet_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

-- Dumping structure for trigger coozv.phone_twitter_update_retweet_count_after_unretweet
SET @OLDTMP_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION';
DELIMITER //
CREATE TRIGGER IF NOT EXISTS phone_twitter_update_retweet_count_after_unretweet
AFTER DELETE ON phone_twitter_retweets
FOR EACH ROW
BEGIN
    UPDATE phone_twitter_tweets
    SET retweet_count = retweet_count - 1
    WHERE id = OLD.tweet_id;
END//
DELIMITER ;
SET SQL_MODE=@OLDTMP_SQL_MODE;

/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!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) */;
