From 49c7a98b56ada4e5d5b52f8344f1b8ebcb13bc9b Mon Sep 17 00:00:00 2001 From: bitpredator <67551273+bitpredator@users.noreply.github.com> Date: Tue, 5 Dec 2023 00:49:32 +0100 Subject: [PATCH] fix: [SQL]\es_extended.sql "addon_inventory" syntax error --- .github/CHANGELOG.md | 3 +- server-data/[SQL]/es_extended.sql | 2661 +++++------------------------ 2 files changed, 453 insertions(+), 2211 deletions(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 481f0ac7f..f0f3d660a 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -68,4 +68,5 @@ fix lint error: unused argument last; accessing undefined variable Invoke; unuse [ox_inventory\data\stashes.lua]: fix: removed the inventory for the taxi job as it was included in the esx_taxijob resource @bitpredator 42. [esx_joblisting]: refactor: correct the good year for the license + varius fix @bitpredator 43. [EUP]: delete: removed package [EUP] @bitpredator -44. [bpt_ammujob]: refactor: bpt_ammujob inventory implementation @bitpredator \ No newline at end of file +44. [bpt_ammujob]: refactor: bpt_ammujob inventory implementation @bitpredator +45. [SQL]: fix: es_extended.sql "addon_inventory" syntax error @bitpredator \ No newline at end of file diff --git a/server-data/[SQL]/es_extended.sql b/server-data/[SQL]/es_extended.sql index 1743bae67..4f37dfc28 100644 --- a/server-data/[SQL]/es_extended.sql +++ b/server-data/[SQL]/es_extended.sql @@ -25,17 +25,15 @@ CREATE TABLE IF NOT EXISTS `addon_account` ( `label` varchar(100) NOT NULL, `shared` int(11) NOT NULL, PRIMARY KEY (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.addon_account: ~14 rows (circa) +-- Dump dei dati della tabella es_extended.addon_account: ~12 rows (circa) INSERT INTO `addon_account` (`name`, `label`, `shared`) VALUES - ('bank_savings', 'Livret Bleu', 0), - ('caution', 'caution', 0), ('society_ambulance', 'Ambulance', 1), ('society_ammu', 'Ammu', 1), ('society_baker', 'Baker', 1), ('society_ballas', 'Ballas', 1), - ('society_cardealer', 'Cardealer', 1), + ('society_cardealer', 'Concessionnaire', 1), ('society_dustman', 'Dustman', 1), ('society_fisherman', 'Fisherman', 1), ('society_import', 'Import', 1), @@ -53,24 +51,22 @@ CREATE TABLE IF NOT EXISTS `addon_account_data` ( PRIMARY KEY (`id`), UNIQUE KEY `index_addon_account_data_account_name_owner` (`account_name`,`owner`), KEY `index_addon_account_data_account_name` (`account_name`) -) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.addon_account_data: ~16 rows (circa) +-- Dump dei dati della tabella es_extended.addon_account_data: ~12 rows (circa) INSERT INTO `addon_account_data` (`id`, `account_name`, `money`, `owner`) VALUES - (1, 'society_cardealer', 0, NULL), - (2, 'society_police', 0, NULL), - (3, 'society_mechanic', 53, NULL), - (4, 'society_taxi', 0, NULL), - (5, 'society_import', 0, NULL), - (6, 'society_ambulance', 200, NULL), - (7, 'society_ammu', 0, NULL), - (9, 'society_dustman', 0, NULL), - (10, 'caution', 0, ''), - (11, 'bank_savings', 0, ''), - (12, 'society_ballas', 0, NULL), - (13, 'society_baker', 0, NULL), - (14, 'society_unicorn', 0, NULL), - (15, 'society_fisherman', 0, NULL), + (1, 'society_ambulance', 0, NULL), + (2, 'society_ammu', 0, NULL), + (3, 'society_baker', 0, NULL), + (4, 'society_ballas', 0, NULL), + (5, 'society_cardealer', 0, NULL), + (6, 'society_dustman', 0, NULL), + (7, 'society_fisherman', 0, NULL), + (8, 'society_import', 0, NULL), + (9, 'society_mechanic', 0, NULL), + (10, 'society_police', 0, NULL), + (11, 'society_taxi', 0, NULL), + (12, 'society_unicorn', 0, NULL); -- Dump della struttura di tabella es_extended.addon_inventory CREATE TABLE IF NOT EXISTS `addon_inventory` ( @@ -78,9 +74,22 @@ CREATE TABLE IF NOT EXISTS `addon_inventory` ( `label` varchar(100) NOT NULL, `shared` int(11) NOT NULL, PRIMARY KEY (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.addon_inventory: ~0 rows (circa) +-- Dump dei dati della tabella es_extended.addon_inventory: ~12 rows (circa) +INSERT INTO `addon_inventory` (`name`, `label`, `shared`) VALUES + ('society_ambulance', 'Ambulance', 1), + ('society_ammu', 'Ammu', 1), + ('society_baker', 'Baker', 1), + ('society_ballas', 'Ballas', 1), + ('society_cardealer', 'Concesionnaire', 1), + ('society_dustman', 'Dustman', 1), + ('society_fisherman', 'Fisherman', 1), + ('society_import', 'Import', 1), + ('society_mechanic', 'Mechanic', 1), + ('society_police', 'Police', 1), + ('society_taxi', 'Taxi', 1), + ('society_unicorn', 'Unicorn', 1); -- Dump della struttura di tabella es_extended.addon_inventory_items CREATE TABLE IF NOT EXISTS `addon_inventory_items` ( @@ -93,7 +102,7 @@ CREATE TABLE IF NOT EXISTS `addon_inventory_items` ( KEY `index_addon_inventory_items_inventory_name_name` (`inventory_name`,`name`), KEY `index_addon_inventory_items_inventory_name_name_owner` (`inventory_name`,`name`,`owner`), KEY `index_addon_inventory_inventory_name` (`inventory_name`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.addon_inventory_items: ~0 rows (circa) @@ -107,23 +116,21 @@ CREATE TABLE IF NOT EXISTS `banking` ( `balance` int(11) DEFAULT 0, `label` varchar(255) DEFAULT NULL, PRIMARY KEY (`ID`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; --- Dump dei dati della tabella es_extended.banking: ~0 rows (circa) +-- Dump dei dati della tabella es_extended.banking: ~1 rows (circa) -- Dump della struttura di tabella es_extended.billing CREATE TABLE IF NOT EXISTS `billing` ( `id` int(11) NOT NULL AUTO_INCREMENT, `identifier` varchar(46) DEFAULT NULL, - `sender` varchar(255) NOT NULL, + `sender` varchar(60) NOT NULL, `target_type` varchar(50) NOT NULL, - `target` varchar(255) NOT NULL, + `target` varchar(60) NOT NULL, `label` varchar(255) NOT NULL, `amount` int(11) NOT NULL, - `split` tinyint(1) NOT NULL DEFAULT 0, - `paid` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.billing: ~0 rows (circa) @@ -133,9 +140,9 @@ CREATE TABLE IF NOT EXISTS `bpt_doorlock` ( `name` varchar(50) NOT NULL, `data` longtext NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.bpt_doorlock: ~31 rows (circa) +-- Dump dei dati della tabella es_extended.bpt_doorlock: ~42 rows (circa) INSERT INTO `bpt_doorlock` (`id`, `name`, `data`) VALUES (1, 'community_mrpd 1', '{"coords":{"x":434.7478942871094,"y":-981.916748046875,"z":30.83926963806152},"groups":{"police":0,"offpolice":0},"maxDistance":2.5,"state":0,"doors":[{"coords":{"x":434.7478942871094,"y":-980.618408203125,"z":30.83926963806152},"model":-1215222675,"heading":270},{"coords":{"x":434.7478942871094,"y":-983.215087890625,"z":30.83926963806152},"model":320433149,"heading":270}],"hideUi":false}'), (2, 'community_mrpd 2', '{"coords":{"x":468.6697998046875,"y":-1014.4520263671875,"z":26.53623962402343},"groups":{"police":0},"maxDistance":2.5,"state":1,"doors":[{"coords":{"x":469.9679870605469,"y":-1014.4520263671875,"z":26.53623962402343},"model":-2023754432,"heading":180},{"coords":{"x":467.3716125488281,"y":-1014.4520263671875,"z":26.53623962402343},"model":-2023754432,"heading":0}],"hideUi":false}'), @@ -167,18 +174,18 @@ INSERT INTO `bpt_doorlock` (`id`, `name`, `data`) VALUES (28, 'community_mrpd 28', '{"coords":{"x":480.03009033203127,"y":-1003.5380249023438,"z":25.00598907470703},"model":-1033001619,"groups":{"police":0},"heading":0,"maxDistance":2,"state":1,"hideUi":false}'), (29, 'community_mrpd 29', '{"coords":{"x":444.7078857421875,"y":-989.4453735351563,"z":30.83930969238281},"groups":{"police":0},"maxDistance":2.5,"state":1,"doors":[{"coords":{"x":443.4078063964844,"y":-989.4453735351563,"z":30.83930969238281},"model":185711165,"heading":180},{"coords":{"x":446.00799560546877,"y":-989.4453735351563,"z":30.83930969238281},"model":185711165,"heading":0}],"hideUi":false}'), (30, 'community_mrpd 30', '{"coords":{"x":445.9197998046875,"y":-999.0016479492188,"z":30.7890396118164},"groups":{"police":0},"maxDistance":2.5,"state":1,"doors":[{"coords":{"x":447.2184143066406,"y":-999.0023193359375,"z":30.78941917419433},"model":-1033001619,"heading":180},{"coords":{"x":444.6211853027344,"y":-999.0009765625,"z":30.78866004943847},"model":-1033001619,"heading":0}],"hideUi":false}'), - (31, 'community_mrpd 31', '{"coords":{"x":445.9298400878906,"y":-997.044677734375,"z":30.84351921081543},"groups":{"police":0},"maxDistance":2.5,"state":0,"doors":[{"coords":{"x":444.62939453125,"y":-997.044677734375,"z":30.84351921081543},"model":-2023754432,"heading":0},{"coords":{"x":447.23028564453127,"y":-997.044677734375,"z":30.84351921081543},"model":-2023754432,"heading":180}],"hideUi":false}'); - --- Dump della struttura di tabella es_extended.bpt_inventory -CREATE TABLE IF NOT EXISTS `bpt_inventory` ( - `owner` varchar(46) 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=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- Dump dei dati della tabella es_extended.bpt_inventory: ~0 rows (circa) + (31, 'community_mrpd 31', '{"coords":{"x":445.9298400878906,"y":-997.044677734375,"z":30.84351921081543},"groups":{"police":0},"maxDistance":2.5,"state":0,"doors":[{"coords":{"x":444.62939453125,"y":-997.044677734375,"z":30.84351921081543},"model":-2023754432,"heading":0},{"coords":{"x":447.23028564453127,"y":-997.044677734375,"z":30.84351921081543},"model":-2023754432,"heading":180}],"hideUi":false}'), + (32, 'mrpd locker rooms', '{"maxDistance":2,"heading":90,"coords":{"x":450.1041259765625,"y":-985.7384033203125,"z":30.83930206298828},"groups":{"police":0},"state":1,"model":1557126584,"hideUi":false}'), + (33, 'mrpd cells/briefing', '{"maxDistance":2,"coords":{"x":444.7078552246094,"y":-989.4454345703125,"z":30.83930206298828},"doors":[{"model":185711165,"coords":{"x":446.0079345703125,"y":-989.4454345703125,"z":30.83930206298828},"heading":0},{"model":185711165,"coords":{"x":443.40777587890627,"y":-989.4454345703125,"z":30.83930206298828},"heading":180}],"groups":{"police":0},"state":1,"hideUi":false}'), + (34, 'mrpd cell 3', '{"maxDistance":2,"heading":90,"coords":{"x":461.8065185546875,"y":-1001.9515380859375,"z":25.06442832946777},"lockSound":"metal-locker","groups":{"police":0},"state":1,"unlockSound":"metallic-creak","model":631614199,"hideUi":false}'), + (35, 'mrpd back entrance', '{"maxDistance":2,"coords":{"x":468.6697692871094,"y":-1014.4520263671875,"z":26.5362319946289},"doors":[{"model":-2023754432,"coords":{"x":467.37164306640627,"y":-1014.4520263671875,"z":26.5362319946289},"heading":0},{"model":-2023754432,"coords":{"x":469.9678955078125,"y":-1014.4520263671875,"z":26.5362319946289},"heading":180}],"groups":{"police":0},"state":1,"hideUi":false}'), + (36, 'mrpd cells security door', '{"maxDistance":2,"heading":0,"coords":{"x":464.1282958984375,"y":-1003.5386962890625,"z":25.00598907470703},"autolock":5,"groups":{"police":0},"state":1,"model":-1033001619,"hideUi":false}'), + (37, 'mrpd cell 2', '{"maxDistance":2,"heading":90,"coords":{"x":461.8064880371094,"y":-998.3082885742188,"z":25.06442832946777},"lockSound":"metal-locker","groups":{"police":0},"state":1,"unlockSound":"metallic-creak","model":631614199,"hideUi":false}'), + (38, 'mrpd captain\'s office', '{"maxDistance":2,"heading":180,"coords":{"x":446.57281494140627,"y":-980.0105590820313,"z":30.83930206298828},"groups":{"police":0},"state":1,"model":-1320876379,"hideUi":false}'), + (39, 'mrpd gate', '{"maxDistance":6,"heading":90,"coords":{"x":488.894775390625,"y":-1017.2102661132813,"z":27.14714050292968},"groups":{"police":0},"auto":true,"state":1,"model":-1603817716,"hideUi":false}'), + (40, 'mrpd cell 1', '{"maxDistance":2,"heading":270,"coords":{"x":461.8065185546875,"y":-993.7586059570313,"z":25.06442832946777},"lockSound":"metal-locker","groups":{"police":0},"state":1,"unlockSound":"metallic-creak","model":631614199,"hideUi":false}'), + (41, 'mrpd cells main', '{"maxDistance":2,"heading":360,"coords":{"x":463.92010498046877,"y":-992.6640625,"z":25.06442832946777},"lockSound":"metal-locker","groups":{"police":0},"state":1,"unlockSound":"metallic-creak","model":631614199,"hideUi":false}'), + (42, 'mrpd armoury', '{"maxDistance":2,"heading":270,"coords":{"x":453.08428955078127,"y":-982.5794677734375,"z":30.81926536560058},"autolock":5,"groups":{"police":0},"state":1,"model":749848321,"hideUi":false}'); -- Dump della struttura di tabella es_extended.bpt_items CREATE TABLE IF NOT EXISTS `bpt_items` ( @@ -186,42 +193,8 @@ CREATE TABLE IF NOT EXISTS `bpt_items` ( `label` text DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; --- Dump dei dati della tabella es_extended.bpt_items: ~73 rows (circa) +-- Dump dei dati della tabella es_extended.bpt_items: ~32 rows (circa) INSERT INTO `bpt_items` (`name`, `label`) VALUES - ('bandage', 'benda'), - ('cottonforbandages', 'cotone per bende'), - ('cotton', 'cotone'), - ('ironsheet', 'lamiera di ferro'), - ('garbage', 'rifiuti'), - ('WEAPON_APPISTOL', 'pistola AP'), - ('iron', 'Ferro'), - ('hammer', 'martello'), - ('legnatagliata', 'asse di legno'), - ('fixkit', 'kit di riparazione'), - ('almondmilk', 'latte di mandorla'), - ('ice', 'ghiaccio'), - ('water', 'acqua'), - ('almonds', 'mandorle'), - ('chips', 'patatine fritte'), - ('slicedchips', 'patate affettate'), - ('potato', 'patate'), - ('trash_can', 'lattina usata'), - ('recycled_paper', 'carta riciclata'), - ('paper', 'carta'), - ('newspaper', 'giornale rovinato'), - ('trash_burgershot', 'scatola di burgershot usata'), - ('cigarette_paper', 'cartina'), - ('cigarrette_opium', 'sigaretta con oppio'), - ('copper', 'Rame'), - ('gold', 'oro'), - ('gunpowder', 'polvere da sparo'), - ('ammo-sniper', '7.62 NATO'), - ('grain', 'grano'), - ('flour', 'farina'), - ('bread', 'panino vuoto'), - ('bread_deer', 'panino al cervo'), - ('deer_meat', 'carne di cervo'), - ('fry_oil', 'olio per friggere'), ('bandage', 'benda'), ('cottonforbandages', 'cotone per bende'), ('cotton', 'cotone'), @@ -253,14 +226,7 @@ INSERT INTO `bpt_items` (`name`, `label`) VALUES ('ammo-sniper', '7.62 NATO'), ('grain', 'grano'), ('flour', 'farina'), - ('bread', 'panino vuoto'), - ('bread_deer', 'panino al cervo'), - ('deer_meat', 'carne di cervo'), - ('fry_oil', 'olio per friggere'), - ('wood', 'Legna'), - ('choppedwood', 'Assi di legno'), - ('salmon_fillet', 'filetto di salmone'), - ('salmon', 'salmone'); + ('bread', 'panino vuoto'); -- Dump della struttura di tabella es_extended.cardealer_vehicles CREATE TABLE IF NOT EXISTS `cardealer_vehicles` ( @@ -268,7 +234,7 @@ CREATE TABLE IF NOT EXISTS `cardealer_vehicles` ( `vehicle` varchar(255) NOT NULL, `price` int(11) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.cardealer_vehicles: ~0 rows (circa) @@ -278,12 +244,11 @@ CREATE TABLE IF NOT EXISTS `datastore` ( `label` varchar(100) NOT NULL, `shared` int(11) NOT NULL, PRIMARY KEY (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.datastore: ~16 rows (circa) +-- Dump dei dati della tabella es_extended.datastore: ~11 rows (circa) INSERT INTO `datastore` (`name`, `label`, `shared`) VALUES - ('property', 'Property', 0), - ('society_ambulance', 'Ambulance', 1), + ('property', 'Property', 1), ('society_ammu', 'Ammu', 1), ('society_baker', 'Baker', 1), ('society_ballas', 'Ballas', 1), @@ -293,11 +258,7 @@ INSERT INTO `datastore` (`name`, `label`, `shared`) VALUES ('society_mechanic', 'Mechanic', 1), ('society_police', 'Police', 1), ('society_taxi', 'Taxi', 1), - ('society_unicorn', 'Unicorn', 1), - ('user_ears', 'Ears', 0), - ('user_glasses', 'Glasses', 0), - ('user_helmet', 'Helmet', 0), - ('user_mask', 'Mask', 0); + ('society_unicorn', 'Unicorn', 1); -- Dump della struttura di tabella es_extended.datastore_data CREATE TABLE IF NOT EXISTS `datastore_data` ( @@ -308,21 +269,21 @@ CREATE TABLE IF NOT EXISTS `datastore_data` ( PRIMARY KEY (`id`), UNIQUE KEY `index_datastore_data_name_owner` (`name`,`owner`), KEY `index_datastore_data_name` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=1799 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.datastore_data: ~1.705 rows (circa) +-- Dump dei dati della tabella es_extended.datastore_data: ~73 rows (circa) INSERT INTO `datastore_data` (`id`, `name`, `owner`, `data`) VALUES - (1, 'society_police', NULL, '{}'), - (2, 'society_ambulance', NULL, '{}'), - (3, 'society_mechanic', NULL, '{}'), - (4, 'society_taxi', NULL, '{}'), - (5, 'property', NULL, '{}'), - (6, 'property', NULL, '{}'), - (7, 'user_glasses', '', '{}'), - (8, 'user_helmet', '', '{}'), - (9, 'user_ears', '', '{}'), - (10, 'user_mask', '', '{}'), - (11, 'property', '', '{}'), + (1, 'society_ammu', NULL, '\'{}\''), + (2, 'society_baker', NULL, '\'{}\''), + (3, 'society_ballas', NULL, '\'{}\''), + (4, 'society_dustman', NULL, '\'{}\''), + (5, 'society_fisherman', NULL, '\'{}\''), + (6, 'society_import', NULL, '\'{}\''), + (7, 'society_mechanic', NULL, '\'{}\''), + (8, 'society_police', NULL, '\'{}\''), + (9, 'society_taxi', NULL, '\'{}\''), + (10, 'society_unicorn', NULL, '\'{}\''), + (11, 'property', NULL, '{}'), (12, 'property', NULL, '{}'), (13, 'property', NULL, '{}'), (14, 'property', NULL, '{}'), @@ -378,1714 +339,13 @@ INSERT INTO `datastore_data` (`id`, `name`, `owner`, `data`) VALUES (64, 'property', NULL, '{}'), (65, 'property', NULL, '{}'), (66, 'property', NULL, '{}'), - (67, 'society_import', NULL, '\'{}\''), + (67, 'property', NULL, '{}'), (68, 'property', NULL, '{}'), (69, 'property', NULL, '{}'), (70, 'property', NULL, '{}'), (71, 'property', NULL, '{}'), (72, 'property', NULL, '{}'), - (73, 'property', NULL, '{}'), - (74, 'property', NULL, '{}'), - (75, 'property', NULL, '{}'), - (76, 'property', NULL, '{}'), - (77, 'property', NULL, '{}'), - (78, 'property', NULL, '{}'), - (79, 'property', NULL, '{}'), - (80, 'property', NULL, '{}'), - (81, 'property', NULL, '{}'), - (82, 'property', NULL, '{}'), - (83, 'property', NULL, '{}'), - (84, 'property', NULL, '{}'), - (85, 'property', NULL, '{}'), - (86, 'property', NULL, '{}'), - (87, 'property', NULL, '{}'), - (88, 'property', NULL, '{}'), - (89, 'property', NULL, '{}'), - (90, 'property', NULL, '{}'), - (91, 'property', NULL, '{}'), - (92, 'property', NULL, '{}'), - (93, 'property', NULL, '{}'), - (94, 'property', NULL, '{}'), - (95, 'property', NULL, '{}'), - (96, 'property', NULL, '{}'), - (97, 'property', NULL, '{}'), - (98, 'property', NULL, '{}'), - (99, 'property', NULL, '{}'), - (100, 'property', NULL, '{}'), - (101, 'property', NULL, '{}'), - (102, 'property', NULL, '{}'), - (103, 'property', NULL, '{}'), - (104, 'property', NULL, '{}'), - (105, 'property', NULL, '{}'), - (106, 'property', NULL, '{}'), - (107, 'property', NULL, '{}'), - (108, 'property', NULL, '{}'), - (109, 'property', NULL, '{}'), - (110, 'property', NULL, '{}'), - (111, 'property', NULL, '{}'), - (112, 'property', NULL, '{}'), - (113, 'property', NULL, '{}'), - (114, 'property', NULL, '{}'), - (115, 'property', NULL, '{}'), - (116, 'property', NULL, '{}'), - (117, 'property', NULL, '{}'), - (118, 'property', NULL, '{}'), - (119, 'property', NULL, '{}'), - (120, 'property', NULL, '{}'), - (121, 'property', NULL, '{}'), - (122, 'property', NULL, '{}'), - (123, 'property', NULL, '{}'), - (124, 'property', NULL, '{}'), - (125, 'property', NULL, '{}'), - (126, 'property', NULL, '{}'), - (127, 'property', NULL, '{}'), - (128, 'property', NULL, '{}'), - (129, 'property', NULL, '{}'), - (130, 'property', NULL, '{}'), - (131, 'property', NULL, '{}'), - (132, 'property', NULL, '{}'), - (133, 'property', NULL, '{}'), - (134, 'property', NULL, '{}'), - (135, 'property', NULL, '{}'), - (136, 'property', NULL, '{}'), - (137, 'property', NULL, '{}'), - (138, 'property', NULL, '{}'), - (139, 'property', NULL, '{}'), - (140, 'property', NULL, '{}'), - (141, 'property', NULL, '{}'), - (142, 'property', NULL, '{}'), - (143, 'property', NULL, '{}'), - (144, 'property', NULL, '{}'), - (145, 'property', NULL, '{}'), - (146, 'property', NULL, '{}'), - (147, 'property', NULL, '{}'), - (148, 'property', NULL, '{}'), - (149, 'property', NULL, '{}'), - (150, 'property', NULL, '{}'), - (151, 'property', NULL, '{}'), - (152, 'property', NULL, '{}'), - (153, 'property', NULL, '{}'), - (154, 'property', NULL, '{}'), - (155, 'property', NULL, '{}'), - (156, 'property', NULL, '{}'), - (157, 'property', NULL, '{}'), - (158, 'property', NULL, '{}'), - (159, 'property', NULL, '{}'), - (160, 'property', NULL, '{}'), - (161, 'property', NULL, '{}'), - (162, 'property', NULL, '{}'), - (163, 'property', NULL, '{}'), - (164, 'property', NULL, '{}'), - (165, 'property', NULL, '{}'), - (166, 'property', NULL, '{}'), - (167, 'property', NULL, '{}'), - (168, 'property', NULL, '{}'), - (169, 'property', NULL, '{}'), - (170, 'property', NULL, '{}'), - (171, 'property', NULL, '{}'), - (172, 'property', NULL, '{}'), - (173, 'property', NULL, '{}'), - (174, 'property', NULL, '{}'), - (175, 'property', NULL, '{}'), - (176, 'property', NULL, '{}'), - (177, 'property', NULL, '{}'), - (178, 'property', NULL, '{}'), - (179, 'property', NULL, '{}'), - (180, 'property', NULL, '{}'), - (181, 'property', NULL, '{}'), - (182, 'property', NULL, '{}'), - (183, 'property', NULL, '{}'), - (184, 'property', NULL, '{}'), - (185, 'property', NULL, '{}'), - (186, 'property', NULL, '{}'), - (187, 'property', NULL, '{}'), - (188, 'property', NULL, '{}'), - (189, 'property', NULL, '{}'), - (190, 'property', NULL, '{}'), - (191, 'property', NULL, '{}'), - (192, 'property', NULL, '{}'), - (193, 'property', NULL, '{}'), - (194, 'property', NULL, '{}'), - (195, 'property', NULL, '{}'), - (196, 'property', NULL, '{}'), - (197, 'property', NULL, '{}'), - (198, 'property', NULL, '{}'), - (199, 'property', NULL, '{}'), - (200, 'property', NULL, '{}'), - (201, 'property', NULL, '{}'), - (202, 'property', NULL, '{}'), - (203, 'property', NULL, '{}'), - (204, 'property', NULL, '{}'), - (205, 'property', NULL, '{}'), - (206, 'property', NULL, '{}'), - (207, 'property', NULL, '{}'), - (208, 'property', NULL, '{}'), - (209, 'property', NULL, '{}'), - (210, 'property', NULL, '{}'), - (211, 'property', NULL, '{}'), - (212, 'property', NULL, '{}'), - (213, 'property', NULL, '{}'), - (214, 'property', NULL, '{}'), - (215, 'property', NULL, '{}'), - (216, 'property', NULL, '{}'), - (217, 'property', NULL, '{}'), - (218, 'property', NULL, '{}'), - (219, 'property', NULL, '{}'), - (220, 'property', NULL, '{}'), - (221, 'property', NULL, '{}'), - (222, 'property', NULL, '{}'), - (223, 'property', NULL, '{}'), - (224, 'property', NULL, '{}'), - (225, 'property', NULL, '{}'), - (226, 'property', NULL, '{}'), - (227, 'property', NULL, '{}'), - (228, 'property', NULL, '{}'), - (229, 'property', NULL, '{}'), - (230, 'property', NULL, '{}'), - (231, 'property', NULL, '{}'), - (232, 'property', NULL, '{}'), - (233, 'property', NULL, '{}'), - (234, 'property', NULL, '{}'), - (235, 'property', NULL, '{}'), - (236, 'property', NULL, '{}'), - (237, 'property', NULL, '{}'), - (238, 'property', NULL, '{}'), - (239, 'property', NULL, '{}'), - (240, 'property', NULL, '{}'), - (241, 'property', NULL, '{}'), - (242, 'property', NULL, '{}'), - (243, 'property', NULL, '{}'), - (244, 'property', NULL, '{}'), - (245, 'property', NULL, '{}'), - (246, 'property', NULL, '{}'), - (247, 'property', NULL, '{}'), - (248, 'property', NULL, '{}'), - (249, 'property', NULL, '{}'), - (250, 'property', NULL, '{}'), - (251, 'property', NULL, '{}'), - (252, 'property', NULL, '{}'), - (253, 'property', NULL, '{}'), - (254, 'property', NULL, '{}'), - (255, 'property', NULL, '{}'), - (256, 'property', NULL, '{}'), - (257, 'property', NULL, '{}'), - (258, 'property', NULL, '{}'), - (259, 'property', NULL, '{}'), - (260, 'property', NULL, '{}'), - (261, 'property', NULL, '{}'), - (262, 'property', NULL, '{}'), - (263, 'property', NULL, '{}'), - (264, 'property', NULL, '{}'), - (265, 'property', NULL, '{}'), - (266, 'property', NULL, '{}'), - (267, 'property', NULL, '{}'), - (268, 'property', NULL, '{}'), - (269, 'property', NULL, '{}'), - (270, 'property', NULL, '{}'), - (271, 'property', NULL, '{}'), - (272, 'property', NULL, '{}'), - (273, 'property', NULL, '{}'), - (274, 'property', NULL, '{}'), - (275, 'property', NULL, '{}'), - (276, 'property', NULL, '{}'), - (277, 'property', NULL, '{}'), - (278, 'property', NULL, '{}'), - (279, 'property', NULL, '{}'), - (280, 'property', NULL, '{}'), - (281, 'property', NULL, '{}'), - (282, 'property', NULL, '{}'), - (283, 'property', NULL, '{}'), - (284, 'property', NULL, '{}'), - (285, 'property', NULL, '{}'), - (286, 'property', NULL, '{}'), - (287, 'property', NULL, '{}'), - (288, 'property', NULL, '{}'), - (289, 'property', NULL, '{}'), - (290, 'property', NULL, '{}'), - (291, 'property', NULL, '{}'), - (292, 'property', NULL, '{}'), - (293, 'property', NULL, '{}'), - (294, 'property', NULL, '{}'), - (295, 'property', NULL, '{}'), - (296, 'property', NULL, '{}'), - (297, 'property', NULL, '{}'), - (298, 'property', NULL, '{}'), - (299, 'property', NULL, '{}'), - (300, 'property', NULL, '{}'), - (301, 'property', NULL, '{}'), - (302, 'property', NULL, '{}'), - (303, 'property', NULL, '{}'), - (304, 'property', NULL, '{}'), - (305, 'property', NULL, '{}'), - (306, 'society_ammu', NULL, '\'{}\''), - (307, 'property', NULL, '{}'), - (308, 'property', NULL, '{}'), - (309, 'property', NULL, '{}'), - (310, 'property', NULL, '{}'), - (311, 'property', NULL, '{}'), - (312, 'property', NULL, '{}'), - (313, 'property', NULL, '{}'), - (314, 'property', NULL, '{}'), - (315, 'property', NULL, '{}'), - (316, 'property', NULL, '{}'), - (317, 'property', NULL, '{}'), - (318, 'property', NULL, '{}'), - (319, 'property', NULL, '{}'), - (320, 'property', NULL, '{}'), - (321, 'property', NULL, '{}'), - (323, 'property', NULL, '{}'), - (324, 'property', NULL, '{}'), - (325, 'property', NULL, '{}'), - (326, 'property', NULL, '{}'), - (327, 'property', NULL, '{}'), - (328, 'property', NULL, '{}'), - (329, 'property', NULL, '{}'), - (330, 'property', NULL, '{}'), - (331, 'property', NULL, '{}'), - (332, 'property', NULL, '{}'), - (333, 'property', NULL, '{}'), - (334, 'property', NULL, '{}'), - (335, 'property', NULL, '{}'), - (336, 'property', NULL, '{}'), - (337, 'property', NULL, '{}'), - (338, 'property', NULL, '{}'), - (339, 'property', NULL, '{}'), - (340, 'property', NULL, '{}'), - (341, 'property', NULL, '{}'), - (342, 'property', NULL, '{}'), - (343, 'property', NULL, '{}'), - (344, 'property', NULL, '{}'), - (345, 'property', NULL, '{}'), - (346, 'property', NULL, '{}'), - (347, 'property', NULL, '{}'), - (348, 'property', NULL, '{}'), - (349, 'property', NULL, '{}'), - (350, 'property', NULL, '{}'), - (351, 'property', NULL, '{}'), - (352, 'property', NULL, '{}'), - (353, 'property', NULL, '{}'), - (354, 'property', NULL, '{}'), - (355, 'property', NULL, '{}'), - (356, 'property', NULL, '{}'), - (357, 'property', NULL, '{}'), - (358, 'property', NULL, '{}'), - (359, 'property', NULL, '{}'), - (360, 'property', NULL, '{}'), - (361, 'property', NULL, '{}'), - (362, 'property', NULL, '{}'), - (363, 'property', NULL, '{}'), - (364, 'property', NULL, '{}'), - (365, 'property', NULL, '{}'), - (366, 'property', NULL, '{}'), - (367, 'property', NULL, '{}'), - (368, 'property', NULL, '{}'), - (369, 'property', NULL, '{}'), - (370, 'property', NULL, '{}'), - (371, 'property', NULL, '{}'), - (372, 'property', NULL, '{}'), - (373, 'property', NULL, '{}'), - (374, 'property', NULL, '{}'), - (375, 'property', NULL, '{}'), - (376, 'property', NULL, '{}'), - (377, 'society_dustman', NULL, '\'{}\''), - (378, 'property', NULL, '{}'), - (379, 'property', NULL, '{}'), - (380, 'property', NULL, '{}'), - (381, 'property', NULL, '{}'), - (382, 'property', NULL, '{}'), - (383, 'property', NULL, '{}'), - (384, 'property', NULL, '{}'), - (385, 'property', NULL, '{}'), - (386, 'property', NULL, '{}'), - (387, 'property', NULL, '{}'), - (388, 'property', NULL, '{}'), - (389, 'property', NULL, '{}'), - (390, 'property', NULL, '{}'), - (391, 'property', NULL, '{}'), - (392, 'property', NULL, '{}'), - (393, 'property', NULL, '{}'), - (394, 'property', NULL, '{}'), - (395, 'property', NULL, '{}'), - (396, 'property', NULL, '{}'), - (397, 'property', NULL, '{}'), - (398, 'property', NULL, '{}'), - (399, 'property', NULL, '{}'), - (400, 'property', NULL, '{}'), - (401, 'property', NULL, '{}'), - (402, 'property', NULL, '{}'), - (403, 'property', NULL, '{}'), - (404, 'property', NULL, '{}'), - (405, 'property', NULL, '{}'), - (406, 'property', NULL, '{}'), - (407, 'property', NULL, '{}'), - (408, 'property', NULL, '{}'), - (409, 'property', NULL, '{}'), - (410, 'property', NULL, '{}'), - (411, 'property', NULL, '{}'), - (412, 'property', NULL, '{}'), - (413, 'property', NULL, '{}'), - (414, 'property', NULL, '{}'), - (415, 'property', NULL, '{}'), - (416, 'property', NULL, '{}'), - (417, 'property', NULL, '{}'), - (418, 'property', NULL, '{}'), - (419, 'property', NULL, '{}'), - (420, 'property', NULL, '{}'), - (421, 'property', NULL, '{}'), - (422, 'property', NULL, '{}'), - (423, 'property', NULL, '{}'), - (424, 'property', NULL, '{}'), - (425, 'property', NULL, '{}'), - (426, 'property', NULL, '{}'), - (427, 'property', NULL, '{}'), - (428, 'property', NULL, '{}'), - (429, 'property', NULL, '{}'), - (430, 'property', NULL, '{}'), - (431, 'property', NULL, '{}'), - (432, 'property', NULL, '{}'), - (433, 'property', NULL, '{}'), - (434, 'property', NULL, '{}'), - (435, 'property', NULL, '{}'), - (436, 'property', NULL, '{}'), - (437, 'property', NULL, '{}'), - (438, 'property', NULL, '{}'), - (439, 'property', NULL, '{}'), - (440, 'property', NULL, '{}'), - (441, 'property', NULL, '{}'), - (442, 'property', NULL, '{}'), - (443, 'property', NULL, '{}'), - (444, 'property', NULL, '{}'), - (445, 'property', NULL, '{}'), - (446, 'property', NULL, '{}'), - (447, 'property', NULL, '{}'), - (448, 'property', NULL, '{}'), - (449, 'property', NULL, '{}'), - (450, 'property', NULL, '{}'), - (451, 'property', NULL, '{}'), - (452, 'property', NULL, '{}'), - (453, 'property', NULL, '{}'), - (454, 'property', NULL, '{}'), - (455, 'property', NULL, '{}'), - (456, 'property', NULL, '{}'), - (457, 'property', NULL, '{}'), - (458, 'property', NULL, '{}'), - (459, 'property', NULL, '{}'), - (460, 'property', NULL, '{}'), - (461, 'property', NULL, '{}'), - (462, 'property', NULL, '{}'), - (463, 'property', NULL, '{}'), - (464, 'property', NULL, '{}'), - (465, 'property', NULL, '{}'), - (466, 'property', NULL, '{}'), - (467, 'property', NULL, '{}'), - (468, 'property', NULL, '{}'), - (469, 'property', NULL, '{}'), - (470, 'property', NULL, '{}'), - (471, 'property', NULL, '{}'), - (472, 'property', NULL, '{}'), - (473, 'property', NULL, '{}'), - (474, 'property', NULL, '{}'), - (475, 'property', NULL, '{}'), - (476, 'property', NULL, '{}'), - (477, 'property', NULL, '{}'), - (478, 'property', NULL, '{}'), - (479, 'property', NULL, '{}'), - (480, 'property', NULL, '{}'), - (481, 'property', NULL, '{}'), - (482, 'property', NULL, '{}'), - (483, 'property', NULL, '{}'), - (484, 'property', NULL, '{}'), - (485, 'property', NULL, '{}'), - (486, 'property', NULL, '{}'), - (487, 'property', NULL, '{}'), - (488, 'property', NULL, '{}'), - (489, 'property', NULL, '{}'), - (490, 'property', NULL, '{}'), - (491, 'property', NULL, '{}'), - (492, 'property', NULL, '{}'), - (493, 'property', NULL, '{}'), - (494, 'property', NULL, '{}'), - (495, 'property', NULL, '{}'), - (496, 'property', NULL, '{}'), - (497, 'property', NULL, '{}'), - (498, 'property', NULL, '{}'), - (499, 'property', NULL, '{}'), - (500, 'property', NULL, '{}'), - (501, 'property', NULL, '{}'), - (502, 'property', NULL, '{}'), - (503, 'property', NULL, '{}'), - (504, 'property', NULL, '{}'), - (505, 'property', NULL, '{}'), - (506, 'property', NULL, '{}'), - (507, 'property', NULL, '{}'), - (513, 'property', NULL, '{}'), - (514, 'property', NULL, '{}'), - (515, 'property', NULL, '{}'), - (516, 'property', NULL, '{}'), - (517, 'property', NULL, '{}'), - (518, 'property', NULL, '{}'), - (519, 'property', NULL, '{}'), - (520, 'property', NULL, '{}'), - (521, 'property', NULL, '{}'), - (522, 'property', NULL, '{}'), - (523, 'property', NULL, '{}'), - (524, 'property', NULL, '{}'), - (525, 'property', NULL, '{}'), - (526, 'property', NULL, '{}'), - (527, 'property', NULL, '{}'), - (528, 'property', NULL, '{}'), - (529, 'property', NULL, '{}'), - (530, 'property', NULL, '{}'), - (531, 'property', NULL, '{}'), - (532, 'property', NULL, '{}'), - (533, 'property', NULL, '{}'), - (534, 'property', NULL, '{}'), - (535, 'property', NULL, '{}'), - (536, 'property', NULL, '{}'), - (537, 'property', NULL, '{}'), - (538, 'property', NULL, '{}'), - (539, 'society_ballas', NULL, '\'{}\''), - (540, 'property', NULL, '{}'), - (541, 'property', NULL, '{}'), - (542, 'property', NULL, '{}'), - (543, 'property', NULL, '{}'), - (544, 'property', NULL, '{}'), - (550, 'property', NULL, '{}'), - (551, 'property', NULL, '{}'), - (552, 'property', NULL, '{}'), - (553, 'property', NULL, '{}'), - (554, 'property', NULL, '{}'), - (555, 'property', NULL, '{}'), - (556, 'property', NULL, '{}'), - (557, 'property', NULL, '{}'), - (558, 'property', NULL, '{}'), - (559, 'property', NULL, '{}'), - (560, 'property', NULL, '{}'), - (561, 'property', NULL, '{}'), - (562, 'property', NULL, '{}'), - (563, 'property', NULL, '{}'), - (564, 'property', NULL, '{}'), - (565, 'property', NULL, '{}'), - (566, 'property', NULL, '{}'), - (567, 'property', NULL, '{}'), - (568, 'property', NULL, '{}'), - (569, 'property', NULL, '{}'), - (570, 'property', NULL, '{}'), - (571, 'property', NULL, '{}'), - (572, 'property', NULL, '{}'), - (573, 'property', NULL, '{}'), - (574, 'property', NULL, '{}'), - (575, 'property', NULL, '{}'), - (576, 'property', NULL, '{}'), - (577, 'property', NULL, '{}'), - (578, 'property', NULL, '{}'), - (579, 'property', NULL, '{}'), - (580, 'property', NULL, '{}'), - (581, 'property', NULL, '{}'), - (582, 'property', NULL, '{}'), - (583, 'property', NULL, '{}'), - (584, 'property', NULL, '{}'), - (585, 'property', NULL, '{}'), - (586, 'property', NULL, '{}'), - (587, 'property', NULL, '{}'), - (588, 'property', NULL, '{}'), - (589, 'property', NULL, '{}'), - (590, 'property', NULL, '{}'), - (591, 'property', NULL, '{}'), - (592, 'property', NULL, '{}'), - (593, 'property', NULL, '{}'), - (594, 'property', NULL, '{}'), - (595, 'property', NULL, '{}'), - (596, 'property', NULL, '{}'), - (597, 'property', NULL, '{}'), - (598, 'property', NULL, '{}'), - (599, 'property', NULL, '{}'), - (600, 'property', NULL, '{}'), - (601, 'property', NULL, '{}'), - (602, 'property', NULL, '{}'), - (603, 'property', NULL, '{}'), - (604, 'property', NULL, '{}'), - (605, 'property', NULL, '{}'), - (606, 'property', NULL, '{}'), - (607, 'property', NULL, '{}'), - (608, 'property', NULL, '{}'), - (609, 'property', NULL, '{}'), - (610, 'property', NULL, '{}'), - (611, 'property', NULL, '{}'), - (612, 'property', NULL, '{}'), - (613, 'property', NULL, '{}'), - (614, 'property', NULL, '{}'), - (615, 'property', NULL, '{}'), - (616, 'property', NULL, '{}'), - (617, 'property', NULL, '{}'), - (618, 'property', NULL, '{}'), - (619, 'property', NULL, '{}'), - (620, 'property', NULL, '{}'), - (621, 'property', NULL, '{}'), - (622, 'property', NULL, '{}'), - (623, 'property', NULL, '{}'), - (624, 'property', NULL, '{}'), - (625, 'property', NULL, '{}'), - (626, 'property', NULL, '{}'), - (627, 'property', NULL, '{}'), - (628, 'property', NULL, '{}'), - (629, 'property', NULL, '{}'), - (630, 'property', NULL, '{}'), - (631, 'property', NULL, '{}'), - (632, 'property', NULL, '{}'), - (633, 'property', NULL, '{}'), - (634, 'property', NULL, '{}'), - (635, 'property', NULL, '{}'), - (636, 'property', NULL, '{}'), - (637, 'property', NULL, '{}'), - (638, 'property', NULL, '{}'), - (639, 'property', NULL, '{}'), - (640, 'property', NULL, '{}'), - (641, 'property', NULL, '{}'), - (642, 'property', NULL, '{}'), - (643, 'property', NULL, '{}'), - (644, 'property', NULL, '{}'), - (645, 'property', NULL, '{}'), - (646, 'property', NULL, '{}'), - (647, 'property', NULL, '{}'), - (648, 'property', NULL, '{}'), - (649, 'property', NULL, '{}'), - (650, 'property', NULL, '{}'), - (651, 'property', NULL, '{}'), - (652, 'property', NULL, '{}'), - (653, 'property', NULL, '{}'), - (654, 'property', NULL, '{}'), - (655, 'property', NULL, '{}'), - (656, 'property', NULL, '{}'), - (657, 'property', NULL, '{}'), - (658, 'property', NULL, '{}'), - (659, 'property', NULL, '{}'), - (660, 'property', NULL, '{}'), - (661, 'property', NULL, '{}'), - (662, 'property', NULL, '{}'), - (663, 'property', NULL, '{}'), - (664, 'property', NULL, '{}'), - (665, 'property', NULL, '{}'), - (666, 'property', NULL, '{}'), - (667, 'property', NULL, '{}'), - (668, 'property', NULL, '{}'), - (669, 'property', NULL, '{}'), - (670, 'property', NULL, '{}'), - (671, 'property', NULL, '{}'), - (672, 'property', NULL, '{}'), - (673, 'property', NULL, '{}'), - (674, 'property', NULL, '{}'), - (675, 'property', NULL, '{}'), - (676, 'property', NULL, '{}'), - (677, 'property', NULL, '{}'), - (678, 'property', NULL, '{}'), - (679, 'property', NULL, '{}'), - (680, 'property', NULL, '{}'), - (681, 'property', NULL, '{}'), - (682, 'property', NULL, '{}'), - (683, 'property', NULL, '{}'), - (684, 'property', NULL, '{}'), - (685, 'property', NULL, '{}'), - (686, 'property', NULL, '{}'), - (687, 'property', NULL, '{}'), - (688, 'property', NULL, '{}'), - (689, 'property', NULL, '{}'), - (690, 'property', NULL, '{}'), - (691, 'property', NULL, '{}'), - (692, 'property', NULL, '{}'), - (693, 'property', NULL, '{}'), - (694, 'property', NULL, '{}'), - (695, 'property', NULL, '{}'), - (696, 'property', NULL, '{}'), - (697, 'property', NULL, '{}'), - (698, 'property', NULL, '{}'), - (699, 'property', NULL, '{}'), - (700, 'property', NULL, '{}'), - (701, 'property', NULL, '{}'), - (702, 'property', NULL, '{}'), - (703, 'property', NULL, '{}'), - (704, 'property', NULL, '{}'), - (705, 'property', NULL, '{}'), - (706, 'property', NULL, '{}'), - (707, 'property', NULL, '{}'), - (708, 'property', NULL, '{}'), - (709, 'property', NULL, '{}'), - (710, 'property', NULL, '{}'), - (711, 'property', NULL, '{}'), - (712, 'property', NULL, '{}'), - (713, 'property', NULL, '{}'), - (714, 'property', NULL, '{}'), - (715, 'property', NULL, '{}'), - (716, 'property', NULL, '{}'), - (717, 'property', NULL, '{}'), - (718, 'property', NULL, '{}'), - (719, 'property', NULL, '{}'), - (720, 'property', NULL, '{}'), - (721, 'property', NULL, '{}'), - (723, 'property', NULL, '{}'), - (725, 'property', NULL, '{}'), - (726, 'property', NULL, '{}'), - (727, 'property', NULL, '{}'), - (728, 'property', NULL, '{}'), - (729, 'property', NULL, '{}'), - (730, 'property', NULL, '{}'), - (731, 'property', NULL, '{}'), - (732, 'property', NULL, '{}'), - (733, 'property', NULL, '{}'), - (734, 'property', NULL, '{}'), - (735, 'property', NULL, '{}'), - (736, 'property', NULL, '{}'), - (737, 'property', NULL, '{}'), - (738, 'property', NULL, '{}'), - (739, 'property', NULL, '{}'), - (740, 'property', NULL, '{}'), - (741, 'property', NULL, '{}'), - (742, 'property', NULL, '{}'), - (743, 'property', NULL, '{}'), - (744, 'property', NULL, '{}'), - (745, 'property', NULL, '{}'), - (746, 'property', NULL, '{}'), - (747, 'property', NULL, '{}'), - (748, 'property', NULL, '{}'), - (749, 'property', NULL, '{}'), - (750, 'property', NULL, '{}'), - (751, 'property', NULL, '{}'), - (752, 'property', NULL, '{}'), - (753, 'property', NULL, '{}'), - (754, 'property', NULL, '{}'), - (755, 'property', NULL, '{}'), - (756, 'property', NULL, '{}'), - (757, 'property', NULL, '{}'), - (758, 'property', NULL, '{}'), - (759, 'property', NULL, '{}'), - (760, 'property', NULL, '{}'), - (761, 'property', NULL, '{}'), - (762, 'property', NULL, '{}'), - (763, 'property', NULL, '{}'), - (764, 'property', NULL, '{}'), - (765, 'society_baker', NULL, '\'{}\''), - (766, 'property', NULL, '{}'), - (767, 'property', NULL, '{}'), - (768, 'property', NULL, '{}'), - (769, 'property', NULL, '{}'), - (770, 'property', NULL, '{}'), - (771, 'property', NULL, '{}'), - (772, 'property', NULL, '{}'), - (773, 'property', NULL, '{}'), - (774, 'property', NULL, '{}'), - (775, 'property', NULL, '{}'), - (776, 'property', NULL, '{}'), - (777, 'property', NULL, '{}'), - (778, 'property', NULL, '{}'), - (779, 'property', NULL, '{}'), - (780, 'property', NULL, '{}'), - (781, 'property', NULL, '{}'), - (782, 'property', NULL, '{}'), - (783, 'property', NULL, '{}'), - (784, 'property', NULL, '{}'), - (785, 'property', NULL, '{}'), - (786, 'property', NULL, '{}'), - (787, 'property', NULL, '{}'), - (788, 'property', NULL, '{}'), - (789, 'property', NULL, '{}'), - (790, 'property', NULL, '{}'), - (791, 'property', NULL, '{}'), - (792, 'property', NULL, '{}'), - (793, 'property', NULL, '{}'), - (794, 'property', NULL, '{}'), - (795, 'property', NULL, '{}'), - (796, 'property', NULL, '{}'), - (797, 'property', NULL, '{}'), - (798, 'property', NULL, '{}'), - (799, 'property', NULL, '{}'), - (800, 'property', NULL, '{}'), - (801, 'property', NULL, '{}'), - (802, 'property', NULL, '{}'), - (803, 'property', NULL, '{}'), - (804, 'property', NULL, '{}'), - (805, 'property', NULL, '{}'), - (806, 'property', NULL, '{}'), - (807, 'property', NULL, '{}'), - (808, 'property', NULL, '{}'), - (809, 'property', NULL, '{}'), - (810, 'property', NULL, '{}'), - (811, 'property', NULL, '{}'), - (812, 'property', NULL, '{}'), - (813, 'property', NULL, '{}'), - (814, 'property', NULL, '{}'), - (815, 'property', NULL, '{}'), - (816, 'property', NULL, '{}'), - (817, 'property', NULL, '{}'), - (818, 'property', NULL, '{}'), - (819, 'property', NULL, '{}'), - (820, 'property', NULL, '{}'), - (821, 'property', NULL, '{}'), - (822, 'property', NULL, '{}'), - (823, 'property', NULL, '{}'), - (824, 'property', NULL, '{}'), - (825, 'property', NULL, '{}'), - (826, 'property', NULL, '{}'), - (827, 'property', NULL, '{}'), - (828, 'property', NULL, '{}'), - (829, 'property', NULL, '{}'), - (830, 'property', NULL, '{}'), - (831, 'property', NULL, '{}'), - (832, 'property', NULL, '{}'), - (833, 'property', NULL, '{}'), - (834, 'property', NULL, '{}'), - (835, 'property', NULL, '{}'), - (836, 'property', NULL, '{}'), - (837, 'property', NULL, '{}'), - (838, 'property', NULL, '{}'), - (839, 'property', NULL, '{}'), - (840, 'property', NULL, '{}'), - (841, 'property', NULL, '{}'), - (842, 'property', NULL, '{}'), - (843, 'property', NULL, '{}'), - (844, 'property', NULL, '{}'), - (845, 'property', NULL, '{}'), - (846, 'property', NULL, '{}'), - (847, 'property', NULL, '{}'), - (848, 'property', NULL, '{}'), - (849, 'property', NULL, '{}'), - (850, 'property', NULL, '{}'), - (851, 'property', NULL, '{}'), - (852, 'property', NULL, '{}'), - (853, 'property', NULL, '{}'), - (854, 'society_unicorn', NULL, '\'{}\''), - (855, 'property', NULL, '{}'), - (856, 'property', NULL, '{}'), - (857, 'property', NULL, '{}'), - (858, 'property', NULL, '{}'), - (859, 'property', NULL, '{}'), - (860, 'property', NULL, '{}'), - (861, 'property', NULL, '{}'), - (862, 'property', NULL, '{}'), - (863, 'property', NULL, '{}'), - (864, 'property', NULL, '{}'), - (865, 'property', NULL, '{}'), - (866, 'property', NULL, '{}'), - (867, 'property', NULL, '{}'), - (868, 'property', NULL, '{}'), - (869, 'property', NULL, '{}'), - (870, 'property', NULL, '{}'), - (871, 'property', NULL, '{}'), - (872, 'property', NULL, '{}'), - (873, 'property', NULL, '{}'), - (874, 'property', NULL, '{}'), - (875, 'property', NULL, '{}'), - (876, 'property', NULL, '{}'), - (877, 'property', NULL, '{}'), - (878, 'property', NULL, '{}'), - (879, 'property', NULL, '{}'), - (880, 'property', NULL, '{}'), - (881, 'property', NULL, '{}'), - (882, 'property', NULL, '{}'), - (883, 'property', NULL, '{}'), - (884, 'property', NULL, '{}'), - (885, 'property', NULL, '{}'), - (886, 'property', NULL, '{}'), - (887, 'property', NULL, '{}'), - (888, 'property', NULL, '{}'), - (889, 'property', NULL, '{}'), - (890, 'property', NULL, '{}'), - (891, 'property', NULL, '{}'), - (892, 'property', NULL, '{}'), - (893, 'property', NULL, '{}'), - (894, 'property', NULL, '{}'), - (895, 'property', NULL, '{}'), - (896, 'property', NULL, '{}'), - (897, 'property', NULL, '{}'), - (898, 'property', NULL, '{}'), - (899, 'property', NULL, '{}'), - (900, 'property', NULL, '{}'), - (901, 'property', NULL, '{}'), - (902, 'property', NULL, '{}'), - (903, 'property', NULL, '{}'), - (904, 'property', NULL, '{}'), - (905, 'property', NULL, '{}'), - (906, 'property', NULL, '{}'), - (907, 'property', NULL, '{}'), - (908, 'property', NULL, '{}'), - (909, 'property', NULL, '{}'), - (910, 'property', NULL, '{}'), - (911, 'property', NULL, '{}'), - (912, 'property', NULL, '{}'), - (913, 'property', NULL, '{}'), - (914, 'property', NULL, '{}'), - (915, 'property', NULL, '{}'), - (916, 'property', NULL, '{}'), - (917, 'property', NULL, '{}'), - (918, 'property', NULL, '{}'), - (919, 'property', NULL, '{}'), - (920, 'property', NULL, '{}'), - (921, 'property', NULL, '{}'), - (922, 'property', NULL, '{}'), - (923, 'property', NULL, '{}'), - (924, 'property', NULL, '{}'), - (925, 'property', NULL, '{}'), - (926, 'property', NULL, '{}'), - (927, 'property', NULL, '{}'), - (928, 'property', NULL, '{}'), - (929, 'property', NULL, '{}'), - (930, 'property', NULL, '{}'), - (931, 'property', NULL, '{}'), - (932, 'property', NULL, '{}'), - (933, 'property', NULL, '{}'), - (934, 'property', NULL, '{}'), - (935, 'property', NULL, '{}'), - (936, 'property', NULL, '{}'), - (937, 'property', NULL, '{}'), - (938, 'property', NULL, '{}'), - (939, 'property', NULL, '{}'), - (940, 'property', NULL, '{}'), - (941, 'property', NULL, '{}'), - (942, 'property', NULL, '{}'), - (943, 'property', NULL, '{}'), - (944, 'property', NULL, '{}'), - (945, 'property', NULL, '{}'), - (946, 'property', NULL, '{}'), - (947, 'property', NULL, '{}'), - (948, 'property', NULL, '{}'), - (949, 'property', NULL, '{}'), - (950, 'property', NULL, '{}'), - (951, 'property', NULL, '{}'), - (952, 'property', NULL, '{}'), - (953, 'property', NULL, '{}'), - (954, 'property', NULL, '{}'), - (955, 'property', NULL, '{}'), - (956, 'property', NULL, '{}'), - (957, 'property', NULL, '{}'), - (958, 'property', NULL, '{}'), - (959, 'property', NULL, '{}'), - (960, 'property', NULL, '{}'), - (961, 'property', NULL, '{}'), - (962, 'property', NULL, '{}'), - (963, 'property', NULL, '{}'), - (964, 'property', NULL, '{}'), - (965, 'property', NULL, '{}'), - (966, 'property', NULL, '{}'), - (967, 'property', NULL, '{}'), - (968, 'property', NULL, '{}'), - (969, 'property', NULL, '{}'), - (970, 'property', NULL, '{}'), - (971, 'property', NULL, '{}'), - (972, 'property', NULL, '{}'), - (973, 'property', NULL, '{}'), - (974, 'property', NULL, '{}'), - (975, 'property', NULL, '{}'), - (977, 'property', NULL, '{}'), - (978, 'property', NULL, '{}'), - (979, 'property', NULL, '{}'), - (980, 'property', NULL, '{}'), - (981, 'property', NULL, '{}'), - (982, 'property', NULL, '{}'), - (983, 'property', NULL, '{}'), - (984, 'property', NULL, '{}'), - (985, 'property', NULL, '{}'), - (986, 'property', NULL, '{}'), - (987, 'property', NULL, '{}'), - (988, 'property', NULL, '{}'), - (989, 'property', NULL, '{}'), - (990, 'property', NULL, '{}'), - (991, 'property', NULL, '{}'), - (992, 'property', NULL, '{}'), - (993, 'property', NULL, '{}'), - (994, 'property', NULL, '{}'), - (995, 'property', NULL, '{}'), - (996, 'property', NULL, '{}'), - (997, 'property', NULL, '{}'), - (998, 'property', NULL, '{}'), - (999, 'property', NULL, '{}'), - (1000, 'property', NULL, '{}'), - (1001, 'property', NULL, '{}'), - (1002, 'property', NULL, '{}'), - (1003, 'property', NULL, '{}'), - (1004, 'property', NULL, '{}'), - (1005, 'property', NULL, '{}'), - (1006, 'property', NULL, '{}'), - (1007, 'property', NULL, '{}'), - (1008, 'property', NULL, '{}'), - (1009, 'property', NULL, '{}'), - (1010, 'property', NULL, '{}'), - (1011, 'property', NULL, '{}'), - (1012, 'property', NULL, '{}'), - (1013, 'property', NULL, '{}'), - (1014, 'property', NULL, '{}'), - (1015, 'property', NULL, '{}'), - (1016, 'property', NULL, '{}'), - (1017, 'property', NULL, '{}'), - (1018, 'property', NULL, '{}'), - (1019, 'property', NULL, '{}'), - (1020, 'property', NULL, '{}'), - (1021, 'property', NULL, '{}'), - (1022, 'property', NULL, '{}'), - (1023, 'property', NULL, '{}'), - (1024, 'property', NULL, '{}'), - (1025, 'property', NULL, '{}'), - (1026, 'property', NULL, '{}'), - (1027, 'property', NULL, '{}'), - (1028, 'property', NULL, '{}'), - (1029, 'property', NULL, '{}'), - (1030, 'property', NULL, '{}'), - (1031, 'property', NULL, '{}'), - (1032, 'property', NULL, '{}'), - (1033, 'property', NULL, '{}'), - (1034, 'property', NULL, '{}'), - (1035, 'property', NULL, '{}'), - (1036, 'property', NULL, '{}'), - (1037, 'property', NULL, '{}'), - (1038, 'property', NULL, '{}'), - (1039, 'property', NULL, '{}'), - (1040, 'property', NULL, '{}'), - (1041, 'property', NULL, '{}'), - (1042, 'property', NULL, '{}'), - (1043, 'property', NULL, '{}'), - (1044, 'property', NULL, '{}'), - (1045, 'property', NULL, '{}'), - (1046, 'property', NULL, '{}'), - (1047, 'property', NULL, '{}'), - (1048, 'property', NULL, '{}'), - (1049, 'property', NULL, '{}'), - (1050, 'property', NULL, '{}'), - (1051, 'property', NULL, '{}'), - (1052, 'property', NULL, '{}'), - (1053, 'property', NULL, '{}'), - (1054, 'property', NULL, '{}'), - (1055, 'property', NULL, '{}'), - (1056, 'property', NULL, '{}'), - (1057, 'property', NULL, '{}'), - (1058, 'property', NULL, '{}'), - (1059, 'property', NULL, '{}'), - (1060, 'property', NULL, '{}'), - (1061, 'property', NULL, '{}'), - (1062, 'property', NULL, '{}'), - (1063, 'property', NULL, '{}'), - (1064, 'property', NULL, '{}'), - (1065, 'property', NULL, '{}'), - (1066, 'property', NULL, '{}'), - (1067, 'property', NULL, '{}'), - (1068, 'property', NULL, '{}'), - (1069, 'property', NULL, '{}'), - (1070, 'property', NULL, '{}'), - (1071, 'property', NULL, '{}'), - (1072, 'property', NULL, '{}'), - (1073, 'property', NULL, '{}'), - (1074, 'property', NULL, '{}'), - (1075, 'property', NULL, '{}'), - (1076, 'property', NULL, '{}'), - (1077, 'property', NULL, '{}'), - (1078, 'property', NULL, '{}'), - (1079, 'property', NULL, '{}'), - (1080, 'property', NULL, '{}'), - (1081, 'property', NULL, '{}'), - (1082, 'property', NULL, '{}'), - (1088, 'property', NULL, '{}'), - (1089, 'property', NULL, '{}'), - (1090, 'property', NULL, '{}'), - (1091, 'property', NULL, '{}'), - (1092, 'property', NULL, '{}'), - (1093, 'property', NULL, '{}'), - (1094, 'property', NULL, '{}'), - (1095, 'property', NULL, '{}'), - (1096, 'property', NULL, '{}'), - (1097, 'property', NULL, '{}'), - (1098, 'property', NULL, '{}'), - (1099, 'property', NULL, '{}'), - (1100, 'property', NULL, '{}'), - (1101, 'property', NULL, '{}'), - (1102, 'property', NULL, '{}'), - (1103, 'property', NULL, '{}'), - (1104, 'property', NULL, '{}'), - (1105, 'property', NULL, '{}'), - (1106, 'property', NULL, '{}'), - (1107, 'property', NULL, '{}'), - (1108, 'property', NULL, '{}'), - (1109, 'property', NULL, '{}'), - (1110, 'property', NULL, '{}'), - (1111, 'property', NULL, '{}'), - (1112, 'property', NULL, '{}'), - (1113, 'property', NULL, '{}'), - (1114, 'property', NULL, '{}'), - (1115, 'property', NULL, '{}'), - (1116, 'property', NULL, '{}'), - (1117, 'property', NULL, '{}'), - (1118, 'property', NULL, '{}'), - (1119, 'property', NULL, '{}'), - (1120, 'property', NULL, '{}'), - (1121, 'property', NULL, '{}'), - (1122, 'property', NULL, '{}'), - (1123, 'property', NULL, '{}'), - (1124, 'property', NULL, '{}'), - (1125, 'property', NULL, '{}'), - (1126, 'property', NULL, '{}'), - (1127, 'property', NULL, '{}'), - (1128, 'property', NULL, '{}'), - (1129, 'property', NULL, '{}'), - (1130, 'property', NULL, '{}'), - (1131, 'property', NULL, '{}'), - (1132, 'property', NULL, '{}'), - (1133, 'property', NULL, '{}'), - (1134, 'property', NULL, '{}'), - (1135, 'property', NULL, '{}'), - (1136, 'property', NULL, '{}'), - (1137, 'property', NULL, '{}'), - (1138, 'property', NULL, '{}'), - (1139, 'property', NULL, '{}'), - (1140, 'property', NULL, '{}'), - (1141, 'property', NULL, '{}'), - (1142, 'property', NULL, '{}'), - (1143, 'property', NULL, '{}'), - (1144, 'property', NULL, '{}'), - (1145, 'property', NULL, '{}'), - (1146, 'property', NULL, '{}'), - (1147, 'property', NULL, '{}'), - (1148, 'property', NULL, '{}'), - (1149, 'property', NULL, '{}'), - (1150, 'property', NULL, '{}'), - (1151, 'property', NULL, '{}'), - (1152, 'property', NULL, '{}'), - (1153, 'property', NULL, '{}'), - (1154, 'property', NULL, '{}'), - (1155, 'property', NULL, '{}'), - (1156, 'property', NULL, '{}'), - (1157, 'property', NULL, '{}'), - (1158, 'property', NULL, '{}'), - (1159, 'property', NULL, '{}'), - (1160, 'property', NULL, '{}'), - (1161, 'property', NULL, '{}'), - (1162, 'property', NULL, '{}'), - (1163, 'property', NULL, '{}'), - (1164, 'property', NULL, '{}'), - (1165, 'property', NULL, '{}'), - (1166, 'property', NULL, '{}'), - (1167, 'property', NULL, '{}'), - (1168, 'property', NULL, '{}'), - (1169, 'property', NULL, '{}'), - (1170, 'property', NULL, '{}'), - (1171, 'property', NULL, '{}'), - (1172, 'property', NULL, '{}'), - (1178, 'property', NULL, '{}'), - (1179, 'property', NULL, '{}'), - (1180, 'property', NULL, '{}'), - (1181, 'property', NULL, '{}'), - (1182, 'property', NULL, '{}'), - (1183, 'property', NULL, '{}'), - (1184, 'property', NULL, '{}'), - (1185, 'property', NULL, '{}'), - (1186, 'property', NULL, '{}'), - (1187, 'property', NULL, '{}'), - (1188, 'property', NULL, '{}'), - (1189, 'property', NULL, '{}'), - (1190, 'property', NULL, '{}'), - (1191, 'property', NULL, '{}'), - (1192, 'property', NULL, '{}'), - (1193, 'property', NULL, '{}'), - (1194, 'property', NULL, '{}'), - (1195, 'property', NULL, '{}'), - (1196, 'property', NULL, '{}'), - (1197, 'property', NULL, '{}'), - (1198, 'property', NULL, '{}'), - (1199, 'property', NULL, '{}'), - (1200, 'property', NULL, '{}'), - (1201, 'property', NULL, '{}'), - (1202, 'property', NULL, '{}'), - (1203, 'property', NULL, '{}'), - (1204, 'property', NULL, '{}'), - (1205, 'property', NULL, '{}'), - (1206, 'property', NULL, '{}'), - (1207, 'property', NULL, '{}'), - (1208, 'property', NULL, '{}'), - (1209, 'property', NULL, '{}'), - (1210, 'property', NULL, '{}'), - (1211, 'property', NULL, '{}'), - (1212, 'property', NULL, '{}'), - (1213, 'property', NULL, '{}'), - (1214, 'property', NULL, '{}'), - (1215, 'property', NULL, '{}'), - (1216, 'property', NULL, '{}'), - (1217, 'property', NULL, '{}'), - (1218, 'property', NULL, '{}'), - (1219, 'property', NULL, '{}'), - (1220, 'property', NULL, '{}'), - (1221, 'property', NULL, '{}'), - (1222, 'property', NULL, '{}'), - (1223, 'property', NULL, '{}'), - (1224, 'property', NULL, '{}'), - (1225, 'property', NULL, '{}'), - (1226, 'property', NULL, '{}'), - (1227, 'property', NULL, '{}'), - (1228, 'property', NULL, '{}'), - (1229, 'property', NULL, '{}'), - (1230, 'property', NULL, '{}'), - (1231, 'property', NULL, '{}'), - (1232, 'property', NULL, '{}'), - (1233, 'property', NULL, '{}'), - (1234, 'property', NULL, '{}'), - (1235, 'property', NULL, '{}'), - (1236, 'property', NULL, '{}'), - (1237, 'property', NULL, '{}'), - (1238, 'property', NULL, '{}'), - (1239, 'property', NULL, '{}'), - (1240, 'property', NULL, '{}'), - (1241, 'property', NULL, '{}'), - (1242, 'property', NULL, '{}'), - (1243, 'property', NULL, '{}'), - (1244, 'property', NULL, '{}'), - (1245, 'property', NULL, '{}'), - (1246, 'property', NULL, '{}'), - (1247, 'property', NULL, '{}'), - (1248, 'property', NULL, '{}'), - (1249, 'property', NULL, '{}'), - (1250, 'property', NULL, '{}'), - (1251, 'property', NULL, '{}'), - (1252, 'property', NULL, '{}'), - (1253, 'property', NULL, '{}'), - (1254, 'property', NULL, '{}'), - (1255, 'property', NULL, '{}'), - (1256, 'property', NULL, '{}'), - (1257, 'property', NULL, '{}'), - (1258, 'property', NULL, '{}'), - (1259, 'property', NULL, '{}'), - (1260, 'property', NULL, '{}'), - (1261, 'property', NULL, '{}'), - (1262, 'property', NULL, '{}'), - (1263, 'property', NULL, '{}'), - (1264, 'property', NULL, '{}'), - (1265, 'property', NULL, '{}'), - (1266, 'property', NULL, '{}'), - (1267, 'property', NULL, '{}'), - (1268, 'property', NULL, '{}'), - (1269, 'property', NULL, '{}'), - (1270, 'property', NULL, '{}'), - (1271, 'property', NULL, '{}'), - (1272, 'property', NULL, '{}'), - (1273, 'property', NULL, '{}'), - (1274, 'property', NULL, '{}'), - (1275, 'property', NULL, '{}'), - (1276, 'property', NULL, '{}'), - (1277, 'property', NULL, '{}'), - (1278, 'property', NULL, '{}'), - (1279, 'property', NULL, '{}'), - (1280, 'property', NULL, '{}'), - (1281, 'property', NULL, '{}'), - (1282, 'property', NULL, '{}'), - (1283, 'property', NULL, '{}'), - (1284, 'property', NULL, '{}'), - (1285, 'property', NULL, '{}'), - (1286, 'property', NULL, '{}'), - (1287, 'property', NULL, '{}'), - (1288, 'property', NULL, '{}'), - (1289, 'property', NULL, '{}'), - (1290, 'property', NULL, '{}'), - (1291, 'property', NULL, '{}'), - (1292, 'property', NULL, '{}'), - (1293, 'property', NULL, '{}'), - (1294, 'property', NULL, '{}'), - (1295, 'property', NULL, '{}'), - (1296, 'property', NULL, '{}'), - (1297, 'property', NULL, '{}'), - (1298, 'property', NULL, '{}'), - (1299, 'property', NULL, '{}'), - (1300, 'property', NULL, '{}'), - (1301, 'property', NULL, '{}'), - (1302, 'property', NULL, '{}'), - (1303, 'property', NULL, '{}'), - (1304, 'property', NULL, '{}'), - (1305, 'property', NULL, '{}'), - (1306, 'property', NULL, '{}'), - (1307, 'property', NULL, '{}'), - (1308, 'property', NULL, '{}'), - (1309, 'property', NULL, '{}'), - (1310, 'property', NULL, '{}'), - (1311, 'property', NULL, '{}'), - (1312, 'property', NULL, '{}'), - (1313, 'property', NULL, '{}'), - (1314, 'property', NULL, '{}'), - (1315, 'property', NULL, '{}'), - (1316, 'property', NULL, '{}'), - (1317, 'property', NULL, '{}'), - (1318, 'property', NULL, '{}'), - (1319, 'property', NULL, '{}'), - (1320, 'property', NULL, '{}'), - (1321, 'property', NULL, '{}'), - (1322, 'property', NULL, '{}'), - (1323, 'property', NULL, '{}'), - (1324, 'property', NULL, '{}'), - (1325, 'property', NULL, '{}'), - (1326, 'property', NULL, '{}'), - (1327, 'property', NULL, '{}'), - (1328, 'property', NULL, '{}'), - (1329, 'property', NULL, '{}'), - (1330, 'property', NULL, '{}'), - (1331, 'property', NULL, '{}'), - (1332, 'property', NULL, '{}'), - (1333, 'property', NULL, '{}'), - (1334, 'property', NULL, '{}'), - (1335, 'property', NULL, '{}'), - (1336, 'property', NULL, '{}'), - (1337, 'property', NULL, '{}'), - (1338, 'property', NULL, '{}'), - (1339, 'property', NULL, '{}'), - (1340, 'property', NULL, '{}'), - (1341, 'property', NULL, '{}'), - (1342, 'property', NULL, '{}'), - (1343, 'property', NULL, '{}'), - (1344, 'property', NULL, '{}'), - (1345, 'property', NULL, '{}'), - (1346, 'property', NULL, '{}'), - (1347, 'property', NULL, '{}'), - (1348, 'property', NULL, '{}'), - (1349, 'property', NULL, '{}'), - (1350, 'property', NULL, '{}'), - (1351, 'property', NULL, '{}'), - (1352, 'property', NULL, '{}'), - (1353, 'property', NULL, '{}'), - (1354, 'property', NULL, '{}'), - (1355, 'property', NULL, '{}'), - (1356, 'property', NULL, '{}'), - (1357, 'property', NULL, '{}'), - (1358, 'property', NULL, '{}'), - (1359, 'property', NULL, '{}'), - (1360, 'property', NULL, '{}'), - (1361, 'property', NULL, '{}'), - (1362, 'property', NULL, '{}'), - (1363, 'property', NULL, '{}'), - (1364, 'property', NULL, '{}'), - (1365, 'property', NULL, '{}'), - (1366, 'property', NULL, '{}'), - (1367, 'property', NULL, '{}'), - (1368, 'property', NULL, '{}'), - (1369, 'property', NULL, '{}'), - (1370, 'property', NULL, '{}'), - (1371, 'property', NULL, '{}'), - (1372, 'property', NULL, '{}'), - (1373, 'property', NULL, '{}'), - (1374, 'property', NULL, '{}'), - (1375, 'property', NULL, '{}'), - (1376, 'property', NULL, '{}'), - (1377, 'property', NULL, '{}'), - (1378, 'property', NULL, '{}'), - (1379, 'property', NULL, '{}'), - (1380, 'property', NULL, '{}'), - (1381, 'property', NULL, '{}'), - (1382, 'property', NULL, '{}'), - (1383, 'property', NULL, '{}'), - (1384, 'property', NULL, '{}'), - (1385, 'property', NULL, '{}'), - (1386, 'property', NULL, '{}'), - (1387, 'property', NULL, '{}'), - (1388, 'property', NULL, '{}'), - (1389, 'property', NULL, '{}'), - (1390, 'property', NULL, '{}'), - (1391, 'property', NULL, '{}'), - (1392, 'property', NULL, '{}'), - (1393, 'property', NULL, '{}'), - (1394, 'property', NULL, '{}'), - (1395, 'property', NULL, '{}'), - (1396, 'property', NULL, '{}'), - (1397, 'property', NULL, '{}'), - (1398, 'property', NULL, '{}'), - (1399, 'property', NULL, '{}'), - (1400, 'property', NULL, '{}'), - (1401, 'property', NULL, '{}'), - (1402, 'property', NULL, '{}'), - (1403, 'property', NULL, '{}'), - (1404, 'property', NULL, '{}'), - (1405, 'property', NULL, '{}'), - (1406, 'property', NULL, '{}'), - (1407, 'property', NULL, '{}'), - (1408, 'property', NULL, '{}'), - (1409, 'property', NULL, '{}'), - (1410, 'property', NULL, '{}'), - (1411, 'property', NULL, '{}'), - (1412, 'property', NULL, '{}'), - (1413, 'property', NULL, '{}'), - (1414, 'property', NULL, '{}'), - (1415, 'property', NULL, '{}'), - (1416, 'property', NULL, '{}'), - (1417, 'property', NULL, '{}'), - (1418, 'property', NULL, '{}'), - (1419, 'property', NULL, '{}'), - (1420, 'property', NULL, '{}'), - (1421, 'property', NULL, '{}'), - (1422, 'property', NULL, '{}'), - (1423, 'property', NULL, '{}'), - (1424, 'property', NULL, '{}'), - (1425, 'property', NULL, '{}'), - (1426, 'property', NULL, '{}'), - (1427, 'property', NULL, '{}'), - (1428, 'property', NULL, '{}'), - (1429, 'property', NULL, '{}'), - (1430, 'property', NULL, '{}'), - (1431, 'property', NULL, '{}'), - (1432, 'property', NULL, '{}'), - (1433, 'property', NULL, '{}'), - (1434, 'property', NULL, '{}'), - (1435, 'property', NULL, '{}'), - (1436, 'property', NULL, '{}'), - (1437, 'property', NULL, '{}'), - (1438, 'property', NULL, '{}'), - (1439, 'property', NULL, '{}'), - (1440, 'property', NULL, '{}'), - (1441, 'property', NULL, '{}'), - (1442, 'property', NULL, '{}'), - (1443, 'property', NULL, '{}'), - (1444, 'property', NULL, '{}'), - (1445, 'property', NULL, '{}'), - (1446, 'property', NULL, '{}'), - (1447, 'property', NULL, '{}'), - (1448, 'property', NULL, '{}'), - (1449, 'property', NULL, '{}'), - (1450, 'property', NULL, '{}'), - (1451, 'property', NULL, '{}'), - (1452, 'property', NULL, '{}'), - (1453, 'property', NULL, '{}'), - (1454, 'property', NULL, '{}'), - (1455, 'property', NULL, '{}'), - (1456, 'property', NULL, '{}'), - (1457, 'property', NULL, '{}'), - (1458, 'property', NULL, '{}'), - (1459, 'property', NULL, '{}'), - (1460, 'property', NULL, '{}'), - (1461, 'property', NULL, '{}'), - (1462, 'property', NULL, '{}'), - (1463, 'property', NULL, '{}'), - (1464, 'property', NULL, '{}'), - (1465, 'property', NULL, '{}'), - (1466, 'property', NULL, '{}'), - (1467, 'property', NULL, '{}'), - (1468, 'property', NULL, '{}'), - (1469, 'property', NULL, '{}'), - (1470, 'property', NULL, '{}'), - (1471, 'property', NULL, '{}'), - (1472, 'property', NULL, '{}'), - (1473, 'property', NULL, '{}'), - (1474, 'property', NULL, '{}'), - (1475, 'property', NULL, '{}'), - (1476, 'property', NULL, '{}'), - (1477, 'property', NULL, '{}'), - (1478, 'property', NULL, '{}'), - (1479, 'property', NULL, '{}'), - (1480, 'property', NULL, '{}'), - (1481, 'property', NULL, '{}'), - (1482, 'property', NULL, '{}'), - (1483, 'property', NULL, '{}'), - (1484, 'property', NULL, '{}'), - (1485, 'property', NULL, '{}'), - (1486, 'property', NULL, '{}'), - (1487, 'property', NULL, '{}'), - (1488, 'property', NULL, '{}'), - (1489, 'property', NULL, '{}'), - (1490, 'property', NULL, '{}'), - (1491, 'property', NULL, '{}'), - (1492, 'property', NULL, '{}'), - (1493, 'property', NULL, '{}'), - (1494, 'property', NULL, '{}'), - (1495, 'property', NULL, '{}'), - (1496, 'property', NULL, '{}'), - (1497, 'property', NULL, '{}'), - (1498, 'property', NULL, '{}'), - (1499, 'property', NULL, '{}'), - (1500, 'property', NULL, '{}'), - (1501, 'property', NULL, '{}'), - (1502, 'property', NULL, '{}'), - (1503, 'property', NULL, '{}'), - (1504, 'property', NULL, '{}'), - (1505, 'property', NULL, '{}'), - (1506, 'property', NULL, '{}'), - (1507, 'property', NULL, '{}'), - (1508, 'property', NULL, '{}'), - (1509, 'property', NULL, '{}'), - (1510, 'property', NULL, '{}'), - (1511, 'property', NULL, '{}'), - (1512, 'property', NULL, '{}'), - (1513, 'property', NULL, '{}'), - (1514, 'property', NULL, '{}'), - (1515, 'property', NULL, '{}'), - (1516, 'property', NULL, '{}'), - (1517, 'property', NULL, '{}'), - (1518, 'property', NULL, '{}'), - (1519, 'property', NULL, '{}'), - (1520, 'property', NULL, '{}'), - (1521, 'property', NULL, '{}'), - (1522, 'property', NULL, '{}'), - (1523, 'property', NULL, '{}'), - (1524, 'property', NULL, '{}'), - (1525, 'property', NULL, '{}'), - (1526, 'property', NULL, '{}'), - (1527, 'property', NULL, '{}'), - (1528, 'property', NULL, '{}'), - (1529, 'property', NULL, '{}'), - (1530, 'property', NULL, '{}'), - (1531, 'property', NULL, '{}'), - (1532, 'property', NULL, '{}'), - (1533, 'property', NULL, '{}'), - (1534, 'property', NULL, '{}'), - (1535, 'property', NULL, '{}'), - (1536, 'property', NULL, '{}'), - (1537, 'property', NULL, '{}'), - (1538, 'property', NULL, '{}'), - (1539, 'property', NULL, '{}'), - (1540, 'property', NULL, '{}'), - (1541, 'property', NULL, '{}'), - (1542, 'property', NULL, '{}'), - (1543, 'property', NULL, '{}'), - (1544, 'property', NULL, '{}'), - (1545, 'property', NULL, '{}'), - (1546, 'property', NULL, '{}'), - (1547, 'property', NULL, '{}'), - (1548, 'property', NULL, '{}'), - (1549, 'property', NULL, '{}'), - (1550, 'property', NULL, '{}'), - (1551, 'property', NULL, '{}'), - (1552, 'property', NULL, '{}'), - (1553, 'property', NULL, '{}'), - (1554, 'property', NULL, '{}'), - (1555, 'property', NULL, '{}'), - (1556, 'property', NULL, '{}'), - (1557, 'property', NULL, '{}'), - (1558, 'property', NULL, '{}'), - (1559, 'property', NULL, '{}'), - (1560, 'property', NULL, '{}'), - (1561, 'property', NULL, '{}'), - (1562, 'property', NULL, '{}'), - (1563, 'property', NULL, '{}'), - (1564, 'property', NULL, '{}'), - (1565, 'property', NULL, '{}'), - (1566, 'property', NULL, '{}'), - (1567, 'property', NULL, '{}'), - (1568, 'property', NULL, '{}'), - (1569, 'property', NULL, '{}'), - (1570, 'property', NULL, '{}'), - (1571, 'property', NULL, '{}'), - (1572, 'property', NULL, '{}'), - (1573, 'property', NULL, '{}'), - (1574, 'property', NULL, '{}'), - (1575, 'property', NULL, '{}'), - (1576, 'property', NULL, '{}'), - (1577, 'property', NULL, '{}'), - (1578, 'property', NULL, '{}'), - (1579, 'property', NULL, '{}'), - (1580, 'property', NULL, '{}'), - (1581, 'property', NULL, '{}'), - (1582, 'property', NULL, '{}'), - (1583, 'property', NULL, '{}'), - (1584, 'property', NULL, '{}'), - (1585, 'property', NULL, '{}'), - (1586, 'property', NULL, '{}'), - (1587, 'property', NULL, '{}'), - (1588, 'property', NULL, '{}'), - (1589, 'property', NULL, '{}'), - (1590, 'property', NULL, '{}'), - (1591, 'property', NULL, '{}'), - (1592, 'property', NULL, '{}'), - (1593, 'property', NULL, '{}'), - (1594, 'property', NULL, '{}'), - (1595, 'property', NULL, '{}'), - (1596, 'property', NULL, '{}'), - (1597, 'property', NULL, '{}'), - (1598, 'property', NULL, '{}'), - (1599, 'property', NULL, '{}'), - (1600, 'property', NULL, '{}'), - (1601, 'property', NULL, '{}'), - (1602, 'property', NULL, '{}'), - (1603, 'property', NULL, '{}'), - (1604, 'property', NULL, '{}'), - (1605, 'property', NULL, '{}'), - (1606, 'property', NULL, '{}'), - (1607, 'property', NULL, '{}'), - (1608, 'property', NULL, '{}'), - (1609, 'property', NULL, '{}'), - (1610, 'property', NULL, '{}'), - (1611, 'property', NULL, '{}'), - (1612, 'property', NULL, '{}'), - (1613, 'property', NULL, '{}'), - (1614, 'property', NULL, '{}'), - (1615, 'property', NULL, '{}'), - (1616, 'property', NULL, '{}'), - (1617, 'property', NULL, '{}'), - (1618, 'society_fisherman', NULL, '\'{}\''), - (1619, 'property', NULL, '{}'), - (1620, 'property', NULL, '{}'), - (1621, 'property', NULL, '{}'), - (1622, 'property', NULL, '{}'), - (1623, 'property', NULL, '{}'), - (1624, 'property', NULL, '{}'), - (1625, 'property', NULL, '{}'), - (1626, 'property', NULL, '{}'), - (1627, 'property', NULL, '{}'), - (1628, 'property', NULL, '{}'), - (1629, 'property', NULL, '{}'), - (1630, 'property', NULL, '{}'), - (1631, 'property', NULL, '{}'), - (1632, 'property', NULL, '{}'), - (1633, 'property', NULL, '{}'), - (1634, 'property', NULL, '{}'), - (1635, 'property', NULL, '{}'), - (1636, 'property', NULL, '{}'), - (1637, 'property', NULL, '{}'), - (1638, 'property', NULL, '{}'), - (1639, 'property', NULL, '{}'), - (1640, 'property', NULL, '{}'), - (1641, 'property', NULL, '{}'), - (1642, 'property', NULL, '{}'), - (1643, 'property', NULL, '{}'), - (1644, 'property', NULL, '{}'), - (1645, 'property', NULL, '{}'), - (1646, 'property', NULL, '{}'), - (1647, 'property', NULL, '{}'), - (1648, 'property', NULL, '{}'), - (1649, 'property', NULL, '{}'), - (1650, 'property', NULL, '{}'), - (1651, 'property', NULL, '{}'), - (1652, 'property', NULL, '{}'), - (1653, 'property', NULL, '{}'), - (1654, 'property', NULL, '{}'), - (1655, 'property', NULL, '{}'), - (1656, 'property', NULL, '{}'), - (1657, 'property', NULL, '{}'), - (1658, 'property', NULL, '{}'), - (1659, 'property', NULL, '{}'), - (1660, 'property', NULL, '{}'), - (1661, 'property', NULL, '{}'), - (1662, 'property', NULL, '{}'), - (1663, 'property', NULL, '{}'), - (1664, 'property', NULL, '{}'), - (1665, 'property', NULL, '{}'), - (1666, 'property', NULL, '{}'), - (1667, 'property', NULL, '{}'), - (1668, 'property', NULL, '{}'), - (1669, 'property', NULL, '{}'), - (1670, 'property', NULL, '{}'), - (1671, 'property', NULL, '{}'), - (1672, 'property', NULL, '{}'), - (1673, 'property', NULL, '{}'), - (1674, 'property', NULL, '{}'), - (1675, 'property', NULL, '{}'), - (1676, 'property', NULL, '{}'), - (1677, 'property', NULL, '{}'), - (1678, 'property', NULL, '{}'), - (1679, 'property', NULL, '{}'), - (1680, 'property', NULL, '{}'), - (1681, 'property', NULL, '{}'), - (1682, 'property', NULL, '{}'), - (1683, 'property', NULL, '{}'), - (1684, 'property', NULL, '{}'), - (1685, 'property', NULL, '{}'), - (1686, 'property', NULL, '{}'), - (1687, 'property', NULL, '{}'), - (1688, 'property', NULL, '{}'), - (1689, 'property', NULL, '{}'), - (1690, 'property', NULL, '{}'), - (1691, 'property', NULL, '{}'), - (1692, 'property', NULL, '{}'), - (1693, 'property', NULL, '{}'), - (1694, 'property', NULL, '{}'), - (1695, 'property', NULL, '{}'), - (1696, 'property', NULL, '{}'), - (1697, 'property', NULL, '{}'), - (1698, 'property', NULL, '{}'), - (1699, 'property', NULL, '{}'), - (1700, 'property', NULL, '{}'), - (1701, 'property', NULL, '{}'), - (1702, 'property', NULL, '{}'), - (1703, 'property', NULL, '{}'), - (1704, 'property', NULL, '{}'), - (1705, 'property', NULL, '{}'), - (1706, 'property', NULL, '{}'), - (1707, 'property', NULL, '{}'), - (1708, 'property', NULL, '{}'), - (1709, 'property', NULL, '{}'), - (1710, 'property', NULL, '{}'), - (1711, 'property', NULL, '{}'), - (1712, 'property', NULL, '{}'), - (1713, 'property', NULL, '{}'), - (1714, 'property', NULL, '{}'), - (1715, 'property', NULL, '{}'), - (1716, 'property', NULL, '{}'), - (1717, 'property', NULL, '{}'), - (1718, 'property', NULL, '{}'), - (1719, 'property', NULL, '{}'), - (1720, 'property', NULL, '{}'), - (1721, 'property', NULL, '{}'), - (1722, 'property', NULL, '{}'), - (1723, 'property', NULL, '{}'), - (1724, 'property', NULL, '{}'), - (1725, 'property', NULL, '{}'), - (1726, 'property', NULL, '{}'), - (1727, 'property', NULL, '{}'), - (1728, 'property', NULL, '{}'), - (1729, 'property', NULL, '{}'), - (1730, 'property', NULL, '{}'), - (1731, 'property', NULL, '{}'), - (1732, 'property', NULL, '{}'), - (1733, 'property', NULL, '{}'), - (1734, 'property', NULL, '{}'), - (1735, 'property', NULL, '{}'), - (1736, 'property', NULL, '{}'), - (1737, 'property', NULL, '{}'), - (1738, 'property', NULL, '{}'), - (1739, 'property', NULL, '{}'), - (1740, 'property', NULL, '{}'), - (1741, 'property', NULL, '{}'), - (1742, 'property', NULL, '{}'), - (1743, 'property', NULL, '{}'), - (1744, 'property', NULL, '{}'), - (1745, 'property', NULL, '{}'), - (1746, 'property', NULL, '{}'), - (1747, 'property', NULL, '{}'), - (1748, 'property', NULL, '{}'), - (1749, 'property', NULL, '{}'), - (1750, 'property', NULL, '{}'), - (1751, 'property', NULL, '{}'), - (1752, 'property', NULL, '{}'), - (1753, 'property', NULL, '{}'), - (1754, 'property', NULL, '{}'), - (1755, 'property', NULL, '{}'), - (1756, 'property', NULL, '{}'), - (1757, 'property', NULL, '{}'), - (1758, 'property', NULL, '{}'), - (1759, 'property', NULL, '{}'), - (1760, 'property', NULL, '{}'), - (1761, 'property', NULL, '{}'), - (1762, 'property', NULL, '{}'), - (1763, 'property', NULL, '{}'), - (1764, 'property', NULL, '{}'), - (1765, 'property', NULL, '{}'), - (1766, 'property', NULL, '{}'), - (1767, 'property', NULL, '{}'), - (1768, 'property', NULL, '{}'), - (1769, 'property', NULL, '{}'), - (1770, 'property', NULL, '{}'), - (1771, 'property', NULL, '{}'), - (1772, 'property', NULL, '{}'), - (1773, 'property', NULL, '{}'), - (1774, 'property', NULL, '{}'), - (1775, 'property', NULL, '{}'), - (1776, 'property', NULL, '{}'), - (1777, 'property', NULL, '{}'), - (1778, 'property', NULL, '{}'), - (1779, 'property', NULL, '{}'), - (1780, 'property', NULL, '{}'), - (1781, 'property', NULL, '{}'), - (1782, 'property', NULL, '{}'), - (1783, 'property', NULL, '{}'), - (1784, 'property', NULL, '{}'), - (1785, 'property', NULL, '{}'), - (1786, 'property', NULL, '{}'), - (1787, 'property', NULL, '{}'), - (1788, 'property', NULL, '{}'), - (1789, 'property', NULL, '{}'), - (1790, 'property', NULL, '{}'), - (1791, 'property', NULL, '{}'), - (1792, 'property', NULL, '{}'), - (1793, 'property', NULL, '{}'), - (1794, 'property', NULL, '{}'), - (1795, 'property', NULL, '{}'), - (1796, 'property', NULL, '{}'), - (1797, 'property', NULL, '{}'), - (1798, 'property', NULL, '{}'); + (73, 'property', NULL, '{}'); -- Dump della struttura di tabella es_extended.fine_types CREATE TABLE IF NOT EXISTS `fine_types` ( @@ -2094,62 +354,62 @@ CREATE TABLE IF NOT EXISTS `fine_types` ( `amount` int(11) DEFAULT NULL, `category` int(11) DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.fine_types: ~52 rows (circa) INSERT INTO `fine_types` (`id`, `label`, `amount`, `category`) VALUES - (1, 'Misuse of a horn', 30, 0), - (2, 'Illegally Crossing a continuous Line', 40, 0), - (3, 'Driving on the wrong side of the road', 250, 0), - (4, 'Illegal U-Turn', 250, 0), - (5, 'Illegally Driving Off-road', 170, 0), - (6, 'Refusing a Lawful Command', 30, 0), - (7, 'Illegally Stopping a Vehicle', 150, 0), - (8, 'Illegal Parking', 70, 0), - (9, 'Failing to Yield to the right', 70, 0), - (10, 'Failure to comply with Vehicle Information', 90, 0), - (11, 'Failing to stop at a Stop Sign ', 105, 0), - (12, 'Failing to stop at a Red Light', 130, 0), - (13, 'Illegal Passing', 100, 0), - (14, 'Driving an illegal Vehicle', 100, 0), - (15, 'Driving without a License', 1500, 0), - (16, 'Hit and Run', 800, 0), - (17, 'Exceeding Speeds Over < 5 mph', 90, 0), - (18, 'Exceeding Speeds Over 5-15 mph', 120, 0), - (19, 'Exceeding Speeds Over 15-30 mph', 180, 0), - (20, 'Exceeding Speeds Over > 30 mph', 300, 0), - (21, 'Impeding traffic flow', 110, 1), - (22, 'Public Intoxication', 90, 1), - (23, 'Disorderly conduct', 90, 1), - (24, 'Obstruction of Justice', 130, 1), - (25, 'Insults towards Civilans', 75, 1), - (26, 'Disrespecting of an LEO', 110, 1), - (27, 'Verbal Threat towards a Civilan', 90, 1), - (28, 'Verbal Threat towards an LEO', 150, 1), - (29, 'Providing False Information', 250, 1), - (30, 'Attempt of Corruption', 1500, 1), - (31, 'Brandishing a weapon in city Limits', 120, 2), - (32, 'Brandishing a Lethal Weapon in city Limits', 300, 2), - (33, 'No Firearms License', 600, 2), - (34, 'Possession of an Illegal Weapon', 700, 2), - (35, 'Possession of Burglary Tools', 300, 2), - (36, 'Grand Theft Auto', 1800, 2), - (37, 'Intent to Sell/Distrube of an illegal Substance', 1500, 2), - (38, 'Frabrication of an Illegal Substance', 1500, 2), - (39, 'Possession of an Illegal Substance ', 650, 2), - (40, 'Kidnapping of a Civilan', 1500, 2), - (41, 'Kidnapping of an LEO', 2000, 2), - (42, 'Robbery', 650, 2), - (43, 'Armed Robbery of a Store', 650, 2), - (44, 'Armed Robbery of a Bank', 1500, 2), - (45, 'Assault on a Civilian', 2000, 3), - (46, 'Assault of an LEO', 2500, 3), - (47, 'Attempt of Murder of a Civilian', 3000, 3), - (48, 'Attempt of Murder of an LEO', 5000, 3), - (49, 'Murder of a Civilian', 10000, 3), - (50, 'Murder of an LEO', 30000, 3), - (51, 'Involuntary manslaughter', 1800, 3), - (52, 'Fraud', 2000, 2); + (1, 'Usage abusif du klaxon', 30, 0), + (2, 'Franchir une ligne continue', 40, 0), + (3, 'Circulation à contresens', 250, 0), + (4, 'Demi-tour non autorisé', 250, 0), + (5, 'Circulation hors-route', 170, 0), + (6, 'Non-respect des distances de sécurité', 30, 0), + (7, 'Arrêt dangereux / interdit', 150, 0), + (8, 'Stationnement gênant / interdit', 70, 0), + (9, 'Non respect de la priorité à droite', 70, 0), + (10, 'Non-respect à un véhicule prioritaire', 90, 0), + (11, 'Non-respect d\'un stop', 105, 0), + (12, 'Non-respect d\'un feu rouge', 130, 0), + (13, 'Dépassement dangereux', 100, 0), + (14, 'Véhicule non en état', 100, 0), + (15, 'Conduite sans permis', 1500, 0), + (16, 'Délit de fuite', 800, 0), + (17, 'Excès de vitesse < 5 kmh', 90, 0), + (18, 'Excès de vitesse 5-15 kmh', 120, 0), + (19, 'Excès de vitesse 15-30 kmh', 180, 0), + (20, 'Excès de vitesse > 30 kmh', 300, 0), + (21, 'Entrave de la circulation', 110, 1), + (22, 'Dégradation de la voie publique', 90, 1), + (23, 'Trouble à l\'ordre publique', 90, 1), + (24, 'Entrave opération de police', 130, 1), + (25, 'Insulte envers / entre civils', 75, 1), + (26, 'Outrage à agent de police', 110, 1), + (27, 'Menace verbale ou intimidation envers civil', 90, 1), + (28, 'Menace verbale ou intimidation envers policier', 150, 1), + (29, 'Manifestation illégale', 250, 1), + (30, 'Tentative de corruption', 1500, 1), + (31, 'Arme blanche sortie en ville', 120, 2), + (32, 'Arme léthale sortie en ville', 300, 2), + (33, 'Port d\'arme non autorisé (défaut de license)', 600, 2), + (34, 'Port d\'arme illégal', 700, 2), + (35, 'Pris en flag lockpick', 300, 2), + (36, 'Vol de voiture', 1800, 2), + (37, 'Vente de drogue', 1500, 2), + (38, 'Fabriquation de drogue', 1500, 2), + (39, 'Possession de drogue', 650, 2), + (40, 'Prise d\'ôtage civil', 1500, 2), + (41, 'Prise d\'ôtage agent de l\'état', 2000, 2), + (42, 'Braquage particulier', 650, 2), + (43, 'Braquage magasin', 650, 2), + (44, 'Braquage de banque', 1500, 2), + (45, 'Tir sur civil', 2000, 3), + (46, 'Tir sur agent de l\'état', 2500, 3), + (47, 'Tentative de meurtre sur civil', 3000, 3), + (48, 'Tentative de meurtre sur agent de l\'état', 5000, 3), + (49, 'Meurtre sur civil', 10000, 3), + (50, 'Meurte sur agent de l\'état', 30000, 3), + (51, 'Meurtre involontaire', 1800, 3), + (52, 'Escroquerie à l\'entreprise', 2000, 2); -- Dump della struttura di tabella es_extended.items CREATE TABLE IF NOT EXISTS `items` ( @@ -2159,7 +419,7 @@ CREATE TABLE IF NOT EXISTS `items` ( `rare` tinyint(4) NOT NULL DEFAULT 0, `can_remove` tinyint(4) NOT NULL DEFAULT 1, PRIMARY KEY (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.items: ~0 rows (circa) @@ -2169,18 +429,18 @@ CREATE TABLE IF NOT EXISTS `jobs` ( `label` varchar(50) DEFAULT NULL, `whitelisted` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.jobs: ~14 rows (circa) INSERT INTO `jobs` (`name`, `label`, `whitelisted`) VALUES - ('ambulance', 'EMS', 1), + ('ambulance', 'Ambulance', 1), ('ammu', 'Armeria', 1), ('baker', 'Panettiere', 1), ('ballas', 'Ballas', 1), - ('cardealer', 'Cardealer', 1), + ('cardealer', 'Concessionnaire', 1), ('delivery', 'Delivery', 0), ('dustman', 'Dustman', 1), - ('fisherman', 'Fisherman', 0), + ('fisherman', 'Fisherman', 1), ('import', 'Import', 1), ('mechanic', 'Mechanic', 1), ('police', 'LSPD', 1), @@ -2199,88 +459,86 @@ CREATE TABLE IF NOT EXISTS `job_grades` ( `skin_male` longtext NOT NULL, `skin_female` longtext NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.job_grades: ~61 rows (circa) +-- Dump dei dati della tabella es_extended.job_grades: ~60 rows (circa) INSERT INTO `job_grades` (`id`, `job_name`, `grade`, `name`, `label`, `salary`, `skin_male`, `skin_female`) VALUES (1, 'unemployed', 0, 'unemployed', 'Unemployed', 200, '{}', '{}'), - (2, 'police', 0, 'recruit', 'Recrue', 20, '{}', '{}'), - (3, 'police', 1, 'officer', 'Officier', 40, '{}', '{}'), - (4, 'police', 2, 'sergeant', 'Sergent', 60, '{}', '{}'), - (5, 'police', 3, 'lieutenant', 'Lieutenant', 85, '{}', '{}'), - (6, 'police', 4, 'boss', 'Commandant', 100, '{}', '{}'), - (11, 'cardealer', 0, 'recruit', 'Recruit', 10, '{}', '{}'), - (12, 'cardealer', 1, 'novice', 'Novice', 25, '{}', '{}'), - (13, 'cardealer', 2, 'experienced', 'Experienced', 40, '{}', '{}'), - (14, 'cardealer', 3, 'boss', 'Boss', 0, '{}', '{}'), - (22, 'ambulance', 0, 'ambulance', 'Jr. EMT', 20, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":3,"shoes":9,"torso_2":3,"hair_color_2":0,"pants_1":24,"glasses_1":4,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":15,"helmet_1":8,"helmet_2":0,"arms":92,"face":19,"decals_1":60,"torso_1":13,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'), - (23, 'ambulance', 1, 'doctor', 'EMT', 40, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":3,"shoes":9,"torso_2":3,"hair_color_2":0,"pants_1":24,"glasses_1":4,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":15,"helmet_1":8,"helmet_2":0,"arms":92,"face":19,"decals_1":60,"torso_1":13,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'), - (24, 'ambulance', 2, 'chief_doctor', 'Sr. EMT', 60, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":3,"shoes":9,"torso_2":3,"hair_color_2":0,"pants_1":24,"glasses_1":4,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":15,"helmet_1":8,"helmet_2":0,"arms":92,"face":19,"decals_1":60,"torso_1":13,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'), - (25, 'ambulance', 3, 'boss', 'EMT Supervisor', 80, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":3,"shoes":9,"torso_2":3,"hair_color_2":0,"pants_1":24,"glasses_1":4,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":15,"helmet_1":8,"helmet_2":0,"arms":92,"face":19,"decals_1":60,"torso_1":13,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'), - (26, 'mechanic', 0, 'recrue', 'Recruit', 90, '{}', '{}'), - (27, 'mechanic', 1, 'novice', 'Novice', 24, '{}', '{}'), - (28, 'mechanic', 2, 'experimente', 'Experienced', 36, '{}', '{}'), - (29, 'mechanic', 3, 'chief', 'Leader', 10, '{}', '{}'), - (30, 'mechanic', 4, 'boss', 'Boss', 100, '{}', '{}'), - (31, 'taxi', 0, 'recrue', 'Recruit', 12, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (32, 'taxi', 1, 'novice', 'Cabby', 24, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (33, 'taxi', 2, 'experimente', 'Experienced', 36, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (34, 'taxi', 3, 'uber', 'Uber Cabby', 48, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (35, 'taxi', 4, 'boss', 'Lead Cabby', 0, '{"hair_2":0,"hair_color_2":0,"torso_1":29,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":1,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":4,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (46, 'import', 0, 'ontrial', 'in prova', 1, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (47, 'import', 1, 'employee', 'dipendente', 24, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (48, 'import', 2, 'driver', 'autista', 36, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (49, 'import', 3, 'responsible', 'responsabile', 48, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (50, 'import', 4, 'boss', 'direttore', 100, '{"hair_2":0,"hair_color_2":0,"torso_1":29,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":1,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":4,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (53, 'ammu', 0, 'apprentice', 'Apprendista', 20, '{}', '{}'), - (54, 'ammu', 1, 'gunsmith', 'Armaiolo', 40, '{}', '{}'), - (55, 'ammu', 2, 'armorychief', 'Capo Armeria', 60, '{}', '{}'), - (56, 'ammu', 3, 'deputydirector', 'Vice direttore', 85, '{}', '{}'), - (57, 'ammu', 4, 'boss', 'Direttore', 100, '{}', '{}'), - (62, 'dustman', 0, 'ontrial', 'in prova', 12, '{"hair_2":0,"hair_1":11,"cheeks_3":0,"hair_color_1":2,"complexion_1":0,"hair_color_2":0,"chin_2":0,"chain_1":0,"arms":16,"watches_2":0,"eye_color":0,"age_1":0,"blush_3":0,"nose_1":-5,"moles_2":0,"glasses_1":0,"chin_3":0,"bags_1":0,"pants_1":27,"chin_4":0,"blush_2":0,"ears_2":0,"chest_3":0,"decals_2":0,"bodyb_4":0,"sun_1":0,"watches_1":-1,"bodyb_1":-1,"lipstick_2":0,"sex":0,"bodyb_3":-1,"helmet_1":-1,"glasses_2":0,"lipstick_3":0,"mask_1":0,"blemishes_2":0,"eyebrows_5":0,"blush_1":0,"makeup_3":0,"bproof_1":0,"age_2":0,"arms_2":0,"beard_2":10,"cheeks_1":0,"tshirt_2":1,"chest_1":0,"eyebrows_2":0,"beard_4":9,"eyebrows_1":0,"decals_1":0,"lipstick_4":0,"mask_2":0,"chain_2":0,"eyebrows_3":0,"eyebrows_6":0,"face_md_weight":61,"chest_2":0,"makeup_4":0,"bproof_2":0,"nose_4":8,"helmet_2":0,"jaw_1":0,"bags_2":0,"eyebrows_4":0,"skin_md_weight":27,"cheeks_2":0,"nose_5":10,"nose_3":5,"bodyb_2":0,"complexion_2":0,"eye_squint":0,"dad":0,"ears_1":-1,"chin_1":0,"bracelets_1":-1,"nose_6":0,"pants_2":8,"shoes_2":0,"torso_1":3,"jaw_2":0,"neck_thickness":0,"shoes_1":24,"bracelets_2":0,"moles_1":0,"blemishes_1":0,"beard_1":10,"sun_2":0,"makeup_2":0,"lip_thickness":0,"tshirt_1":59,"beard_3":2,"torso_2":0,"makeup_1":0,"lipstick_1":0,"mom":21,"nose_2":6,"chin_13":0}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (63, 'dustman', 1, 'employee', 'dipendente', 24, '{"hair_2":0,"hair_1":11,"cheeks_3":0,"hair_color_1":2,"complexion_1":0,"hair_color_2":0,"chin_2":0,"chain_1":0,"arms":16,"watches_2":0,"eye_color":0,"age_1":0,"blush_3":0,"nose_1":-5,"moles_2":0,"glasses_1":0,"chin_3":0,"bags_1":0,"pants_1":27,"chin_4":0,"blush_2":0,"ears_2":0,"chest_3":0,"decals_2":0,"bodyb_4":0,"sun_1":0,"watches_1":-1,"bodyb_1":-1,"lipstick_2":0,"sex":0,"bodyb_3":-1,"helmet_1":-1,"glasses_2":0,"lipstick_3":0,"mask_1":0,"blemishes_2":0,"eyebrows_5":0,"blush_1":0,"makeup_3":0,"bproof_1":0,"age_2":0,"arms_2":0,"beard_2":10,"cheeks_1":0,"tshirt_2":1,"chest_1":0,"eyebrows_2":0,"beard_4":9,"eyebrows_1":0,"decals_1":0,"lipstick_4":0,"mask_2":0,"chain_2":0,"eyebrows_3":0,"eyebrows_6":0,"face_md_weight":61,"chest_2":0,"makeup_4":0,"bproof_2":0,"nose_4":8,"helmet_2":0,"jaw_1":0,"bags_2":0,"eyebrows_4":0,"skin_md_weight":27,"cheeks_2":0,"nose_5":10,"nose_3":5,"bodyb_2":0,"complexion_2":0,"eye_squint":0,"dad":0,"ears_1":-1,"chin_1":0,"bracelets_1":-1,"nose_6":0,"pants_2":8,"shoes_2":0,"torso_1":3,"jaw_2":0,"neck_thickness":0,"shoes_1":24,"bracelets_2":0,"moles_1":0,"blemishes_1":0,"beard_1":10,"sun_2":0,"makeup_2":0,"lip_thickness":0,"tshirt_1":59,"beard_3":2,"torso_2":0,"makeup_1":0,"lipstick_1":0,"mom":21,"nose_2":6,"chin_13":0}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (64, 'dustman', 2, 'driver', 'autista', 36, '{"hair_2":0,"hair_1":11,"cheeks_3":0,"hair_color_1":2,"complexion_1":0,"hair_color_2":0,"chin_2":0,"chain_1":0,"arms":16,"watches_2":0,"eye_color":0,"age_1":0,"blush_3":0,"nose_1":-5,"moles_2":0,"glasses_1":0,"chin_3":0,"bags_1":0,"pants_1":27,"chin_4":0,"blush_2":0,"ears_2":0,"chest_3":0,"decals_2":0,"bodyb_4":0,"sun_1":0,"watches_1":-1,"bodyb_1":-1,"lipstick_2":0,"sex":0,"bodyb_3":-1,"helmet_1":-1,"glasses_2":0,"lipstick_3":0,"mask_1":0,"blemishes_2":0,"eyebrows_5":0,"blush_1":0,"makeup_3":0,"bproof_1":0,"age_2":0,"arms_2":0,"beard_2":10,"cheeks_1":0,"tshirt_2":1,"chest_1":0,"eyebrows_2":0,"beard_4":9,"eyebrows_1":0,"decals_1":0,"lipstick_4":0,"mask_2":0,"chain_2":0,"eyebrows_3":0,"eyebrows_6":0,"face_md_weight":61,"chest_2":0,"makeup_4":0,"bproof_2":0,"nose_4":8,"helmet_2":0,"jaw_1":0,"bags_2":0,"eyebrows_4":0,"skin_md_weight":27,"cheeks_2":0,"nose_5":10,"nose_3":5,"bodyb_2":0,"complexion_2":0,"eye_squint":0,"dad":0,"ears_1":-1,"chin_1":0,"bracelets_1":-1,"nose_6":0,"pants_2":8,"shoes_2":0,"torso_1":3,"jaw_2":0,"neck_thickness":0,"shoes_1":24,"bracelets_2":0,"moles_1":0,"blemishes_1":0,"beard_1":10,"sun_2":0,"makeup_2":0,"lip_thickness":0,"tshirt_1":59,"beard_3":2,"torso_2":0,"makeup_1":0,"lipstick_1":0,"mom":21,"nose_2":6,"chin_13":0}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (65, 'dustman', 3, 'responsible', 'responsabile', 48, '{"hair_2":0,"hair_1":11,"cheeks_3":0,"hair_color_1":2,"complexion_1":0,"hair_color_2":0,"chin_2":0,"chain_1":0,"arms":16,"watches_2":0,"eye_color":0,"age_1":0,"blush_3":0,"nose_1":-5,"moles_2":0,"glasses_1":0,"chin_3":0,"bags_1":0,"pants_1":27,"chin_4":0,"blush_2":0,"ears_2":0,"chest_3":0,"decals_2":0,"bodyb_4":0,"sun_1":0,"watches_1":-1,"bodyb_1":-1,"lipstick_2":0,"sex":0,"bodyb_3":-1,"helmet_1":-1,"glasses_2":0,"lipstick_3":0,"mask_1":0,"blemishes_2":0,"eyebrows_5":0,"blush_1":0,"makeup_3":0,"bproof_1":0,"age_2":0,"arms_2":0,"beard_2":10,"cheeks_1":0,"tshirt_2":1,"chest_1":0,"eyebrows_2":0,"beard_4":9,"eyebrows_1":0,"decals_1":0,"lipstick_4":0,"mask_2":0,"chain_2":0,"eyebrows_3":0,"eyebrows_6":0,"face_md_weight":61,"chest_2":0,"makeup_4":0,"bproof_2":0,"nose_4":8,"helmet_2":0,"jaw_1":0,"bags_2":0,"eyebrows_4":0,"skin_md_weight":27,"cheeks_2":0,"nose_5":10,"nose_3":5,"bodyb_2":0,"complexion_2":0,"eye_squint":0,"dad":0,"ears_1":-1,"chin_1":0,"bracelets_1":-1,"nose_6":0,"pants_2":8,"shoes_2":0,"torso_1":3,"jaw_2":0,"neck_thickness":0,"shoes_1":24,"bracelets_2":0,"moles_1":0,"blemishes_1":0,"beard_1":10,"sun_2":0,"makeup_2":0,"lip_thickness":0,"tshirt_1":59,"beard_3":2,"torso_2":0,"makeup_1":0,"lipstick_1":0,"mom":21,"nose_2":6,"chin_13":0}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (66, 'dustman', 4, 'boss', 'Direttore', 0, '{"hair_2":0,"hair_1":11,"cheeks_3":0,"hair_color_1":2,"complexion_1":0,"hair_color_2":0,"chin_2":0,"chain_1":0,"arms":16,"watches_2":0,"eye_color":0,"age_1":0,"blush_3":0,"nose_1":-5,"moles_2":0,"glasses_1":0,"chin_3":0,"bags_1":0,"pants_1":27,"chin_4":0,"blush_2":0,"ears_2":0,"chest_3":0,"decals_2":0,"bodyb_4":0,"sun_1":0,"watches_1":-1,"bodyb_1":-1,"lipstick_2":0,"sex":0,"bodyb_3":-1,"helmet_1":-1,"glasses_2":0,"lipstick_3":0,"mask_1":0,"blemishes_2":0,"eyebrows_5":0,"blush_1":0,"makeup_3":0,"bproof_1":0,"age_2":0,"arms_2":0,"beard_2":10,"cheeks_1":0,"tshirt_2":1,"chest_1":0,"eyebrows_2":0,"beard_4":9,"eyebrows_1":0,"decals_1":0,"lipstick_4":0,"mask_2":0,"chain_2":0,"eyebrows_3":0,"eyebrows_6":0,"face_md_weight":61,"chest_2":0,"makeup_4":0,"bproof_2":0,"nose_4":8,"helmet_2":0,"jaw_1":0,"bags_2":0,"eyebrows_4":0,"skin_md_weight":27,"cheeks_2":0,"nose_5":10,"nose_3":5,"bodyb_2":0,"complexion_2":0,"eye_squint":0,"dad":0,"ears_1":-1,"chin_1":0,"bracelets_1":-1,"nose_6":0,"pants_2":8,"shoes_2":0,"torso_1":3,"jaw_2":0,"neck_thickness":0,"shoes_1":24,"bracelets_2":0,"moles_1":0,"blemishes_1":0,"beard_1":10,"sun_2":0,"makeup_2":0,"lip_thickness":0,"tshirt_1":59,"beard_3":2,"torso_2":0,"makeup_1":0,"lipstick_1":0,"mom":21,"nose_2":6,"chin_13":0}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (67, 'unemployed', 0, 'unemployed', 'unemployed', 250, '{}', '{}'), - (68, 'ballas', 0, 'little', 'picciotto', 12, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (69, 'ballas', 1, 'employee', 'scagnozzo', 24, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (70, 'ballas', 2, 'trustedman', 'Uomo di fiducia', 36, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (71, 'ballas', 3, 'adviser', 'consigliere', 48, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (72, 'ballas', 4, 'boss', 'Capo ballas', 10, '{"hair_2":0,"hair_color_2":0,"torso_1":29,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":1,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":4,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (82, 'baker', 0, 'apprentice', 'Apprendista', 20, '{}', '{}'), - (83, 'baker', 1, 'gunsmith', 'Panettiere', 40, '{}', '{}'), - (84, 'baker', 2, 'armorychief', 'Capo', 60, '{}', '{}'), - (85, 'baker', 3, 'deputydirector', 'Vice direttore', 85, '{}', '{}'), - (86, 'baker', 4, 'boss', 'Direttore', 100, '{}', '{}'), - (87, 'unicorn', 0, 'ontrial', 'in prova', 12, '{}', '{}'), - (88, 'unicorn', 1, 'employee', 'ballerino', 24, '{}', '{}'), - (89, 'unicorn', 2, 'driver', 'barrista', 36, '{}', '{}'), - (90, 'unicorn', 3, 'responsible', 'responsabile', 48, '{}', '{}'), - (91, 'unicorn', 4, 'boss', 'Direttore', 0, '{}', '{}'), - (97, 'delivery', 0, 'delivery', 'Delivery', 0, '{}', '{}'), - (103, 'fisherman', 0, 'ontrial', 'in prova', 12, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (104, 'fisherman', 1, 'employee', 'dipendente', 24, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (105, 'fisherman', 2, 'driver', 'autista', 36, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (106, 'fisherman', 3, 'responsible', 'responsabile', 48, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), - (107, 'fisherman', 4, 'boss', 'Direttore', 0, '{"hair_2":0,"hair_color_2":0,"torso_1":29,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":1,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":4,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'); + (2, 'ambulance', 0, 'ambulance', 'Ambulancier', 20, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":3,"shoes":9,"torso_2":3,"hair_color_2":0,"pants_1":24,"glasses_1":4,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":15,"helmet_1":8,"helmet_2":0,"arms":92,"face":19,"decals_1":60,"torso_1":13,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'), + (3, 'ambulance', 1, 'doctor', 'Medecin', 40, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":3,"shoes":9,"torso_2":3,"hair_color_2":0,"pants_1":24,"glasses_1":4,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":15,"helmet_1":8,"helmet_2":0,"arms":92,"face":19,"decals_1":60,"torso_1":13,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'), + (4, 'ambulance', 2, 'chief_doctor', 'Medecin-chef', 60, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":3,"shoes":9,"torso_2":3,"hair_color_2":0,"pants_1":24,"glasses_1":4,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":15,"helmet_1":8,"helmet_2":0,"arms":92,"face":19,"decals_1":60,"torso_1":13,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'), + (5, 'ambulance', 3, 'boss', 'Chirurgien', 80, '{"tshirt_2":0,"hair_color_1":5,"glasses_2":3,"shoes":9,"torso_2":3,"hair_color_2":0,"pants_1":24,"glasses_1":4,"hair_1":2,"sex":0,"decals_2":0,"tshirt_1":15,"helmet_1":8,"helmet_2":0,"arms":92,"face":19,"decals_1":60,"torso_1":13,"hair_2":0,"skin":34,"pants_2":5}', '{"tshirt_2":3,"decals_2":0,"glasses":0,"hair_1":2,"torso_1":73,"shoes":1,"hair_color_2":0,"glasses_1":19,"skin":13,"face":6,"pants_2":5,"tshirt_1":75,"pants_1":37,"helmet_1":57,"torso_2":0,"arms":14,"sex":1,"glasses_2":0,"decals_1":0,"hair_2":0,"helmet_2":0,"hair_color_1":0}'), + (6, 'mechanic', 0, 'recrue', 'Recrue', 12, '{}', '{}'), + (7, 'mechanic', 1, 'novice', 'Novice', 24, '{}', '{}'), + (8, 'mechanic', 2, 'experimente', 'Experimente', 36, '{}', '{}'), + (9, 'mechanic', 3, 'chief', 'Chef d\'équipe', 48, '{}', '{}'), + (10, 'mechanic', 4, 'boss', 'Patron', 0, '{}', '{}'), + (11, 'police', 0, 'recruit', 'Recrue', 20, '{}', '{}'), + (12, 'police', 1, 'officer', 'Officier', 40, '{}', '{}'), + (13, 'police', 2, 'sergeant', 'Sergent', 60, '{}', '{}'), + (14, 'police', 3, 'lieutenant', 'Lieutenant', 85, '{}', '{}'), + (15, 'police', 4, 'boss', 'Commandant', 100, '{}', '{}'), + (16, 'taxi', 0, 'recrue', 'Recrue', 12, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (17, 'taxi', 1, 'novice', 'Novice', 24, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (18, 'taxi', 2, 'experimente', 'Experimente', 36, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (19, 'taxi', 3, 'uber', 'Uber', 48, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (20, 'taxi', 4, 'boss', 'Patron', 0, '{"hair_2":0,"hair_color_2":0,"torso_1":29,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":1,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":4,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (21, 'cardealer', 0, 'recruit', 'Recrue', 10, '{}', '{}'), + (22, 'cardealer', 1, 'novice', 'Novice', 25, '{}', '{}'), + (23, 'cardealer', 2, 'experienced', 'Experimente', 40, '{}', '{}'), + (24, 'cardealer', 3, 'boss', 'Patron', 0, '{}', '{}'), + (25, 'ammu', 0, 'apprentice', 'Apprendista', 20, '{}', '{}'), + (26, 'ammu', 1, 'gunsmith', 'Armaiolo', 40, '{}', '{}'), + (27, 'ammu', 2, 'armorychief', 'Capo Armeria', 60, '{}', '{}'), + (28, 'ammu', 3, 'deputydirector', 'Vice direttore', 85, '{}', '{}'), + (29, 'ammu', 4, 'boss', 'Direttore', 100, '{}', '{}'), + (30, 'baker', 0, 'apprentice', 'Apprendista', 20, '{}', '{}'), + (31, 'baker', 1, 'gunsmith', 'Panettiere', 40, '{}', '{}'), + (32, 'baker', 2, 'armorychief', 'Capo', 60, '{}', '{}'), + (33, 'baker', 3, 'deputydirector', 'Vice direttore', 85, '{}', '{}'), + (34, 'baker', 4, 'boss', 'Direttore', 100, '{}', '{}'), + (35, 'ballas', 0, 'little', 'picciotto', 12, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (36, 'ballas', 1, 'employee', 'scagnozzo', 24, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (37, 'ballas', 2, 'trustedman', 'Uomo di fiducia', 36, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (38, 'ballas', 3, 'adviser', 'consigliere', 48, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (39, 'ballas', 4, 'boss', 'Capo ballas', 0, '{"hair_2":0,"hair_color_2":0,"torso_1":29,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":1,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":4,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (40, 'delivery', 0, 'delivery', 'Delivery', 500, '{}', '{}'), + (41, 'dustman', 0, 'ontrial', 'in prova', 12, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (42, 'dustman', 1, 'employee', 'dipendente', 24, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (43, 'dustman', 2, 'driver', 'autista', 36, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (44, 'dustman', 3, 'responsible', 'responsabile', 48, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (45, 'dustman', 4, 'boss', 'Direttore', 0, '{"hair_2":0,"hair_color_2":0,"torso_1":29,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":1,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":4,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (46, 'fisherman', 0, 'ontrial', 'in prova', 12, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (47, 'fisherman', 1, 'employee', 'dipendente', 24, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (48, 'fisherman', 2, 'driver', 'autista', 36, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (49, 'fisherman', 3, 'responsible', 'responsabile', 48, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (50, 'fisherman', 4, 'boss', 'Direttore', 0, '{"hair_2":0,"hair_color_2":0,"torso_1":29,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":1,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":4,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (51, 'import', 0, 'ontrial', 'in prova', 12, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (52, 'import', 1, 'employee', 'dipendente', 24, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (53, 'import', 2, 'driver', 'autista', 36, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (54, 'import', 3, 'responsible', 'responsabile', 48, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (55, 'import', 4, 'boss', 'Direttore', 0, '{"hair_2":0,"hair_color_2":0,"torso_1":29,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":1,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":4,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (56, 'unicorn', 0, 'ontrial', 'in prova', 12, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (57, 'unicorn', 1, 'employee', 'ballerino', 24, '{"hair_2":0,"hair_color_2":0,"torso_1":32,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":0,"age_2":0,"glasses_2":0,"ears_2":0,"arms":27,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (58, 'unicorn', 2, 'driver', 'barrista', 36, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (59, 'unicorn', 3, 'responsible', 'responsabile', 48, '{"hair_2":0,"hair_color_2":0,"torso_1":26,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":57,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":11,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'), + (60, 'unicorn', 4, 'boss', 'Direttore', 0, '{"hair_2":0,"hair_color_2":0,"torso_1":29,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":31,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":4,"age_2":0,"glasses_2":0,"ears_2":0,"arms":1,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":0,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":0,"bproof_1":0,"mask_1":0,"decals_1":0,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":4,"eyebrows_1":0,"face":0,"shoes_1":10,"pants_1":24}', '{"hair_2":0,"hair_color_2":0,"torso_1":57,"bags_1":0,"helmet_2":0,"chain_2":0,"eyebrows_3":0,"makeup_3":0,"makeup_2":0,"tshirt_1":38,"makeup_1":0,"bags_2":0,"makeup_4":0,"eyebrows_4":0,"chain_1":0,"lipstick_4":0,"bproof_2":0,"hair_color_1":0,"decals_2":0,"pants_2":1,"age_2":0,"glasses_2":0,"ears_2":0,"arms":21,"lipstick_1":0,"ears_1":-1,"mask_2":0,"sex":1,"lipstick_3":0,"helmet_1":-1,"shoes_2":0,"beard_2":0,"beard_1":0,"lipstick_2":0,"beard_4":0,"glasses_1":5,"bproof_1":0,"mask_1":0,"decals_1":1,"hair_1":0,"eyebrows_2":0,"beard_3":0,"age_1":0,"tshirt_2":0,"skin":0,"torso_2":0,"eyebrows_1":0,"face":0,"shoes_1":49,"pants_1":11}'); -- Dump della struttura di tabella es_extended.licenses CREATE TABLE IF NOT EXISTS `licenses` ( `type` varchar(60) NOT NULL, `label` varchar(60) NOT NULL, PRIMARY KEY (`type`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.licenses: ~7 rows (circa) +-- Dump dei dati della tabella es_extended.licenses: ~6 rows (circa) INSERT INTO `licenses` (`type`, `label`) VALUES ('boat', 'Boat License'), - ('dmv', 'Driving Permit'), - ('drive', 'Drivers License'), - ('drive_bike', 'Motorcycle License'), - ('drive_truck', 'Commercial Drivers License'), - ('weapon', 'Weapon License'), - ('weed_processing', 'Weed Processing License'); + ('dmv', 'Code de la route'), + ('drive', 'Permis de conduire'), + ('drive_bike', 'Permis moto'), + ('drive_truck', 'Permis camion'), + ('weapon', 'Weapon License'); -- Dump della struttura di tabella es_extended.multicharacter_slots CREATE TABLE IF NOT EXISTS `multicharacter_slots` ( @@ -2288,7 +546,7 @@ CREATE TABLE IF NOT EXISTS `multicharacter_slots` ( `slots` int(11) NOT NULL, PRIMARY KEY (`identifier`) USING BTREE, KEY `slots` (`slots`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.multicharacter_slots: ~0 rows (circa) @@ -2299,11 +557,12 @@ CREATE TABLE IF NOT EXISTS `npwd_calls` ( `transmitter` varchar(255) NOT NULL, `receiver` varchar(255) NOT NULL, `is_accepted` tinyint(4) DEFAULT 0, + `isAnonymous` tinyint(4) NOT NULL DEFAULT 0, `start` varchar(255) DEFAULT NULL, `end` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `identifier` (`identifier`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.npwd_calls: ~0 rows (circa) @@ -2314,11 +573,9 @@ CREATE TABLE IF NOT EXISTS `npwd_darkchat_channels` ( `label` varchar(255) DEFAULT '', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `darkchat_channels_channel_identifier_uindex` (`channel_identifier`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Dump dei dati della tabella es_extended.npwd_darkchat_channels: ~0 rows (circa) -INSERT INTO `npwd_darkchat_channels` (`id`, `channel_identifier`, `label`) VALUES - (20, '3', '3'); -- Dump della struttura di tabella es_extended.npwd_darkchat_channel_members CREATE TABLE IF NOT EXISTS `npwd_darkchat_channel_members` ( @@ -2330,8 +587,6 @@ CREATE TABLE IF NOT EXISTS `npwd_darkchat_channel_members` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Dump dei dati della tabella es_extended.npwd_darkchat_channel_members: ~0 rows (circa) -INSERT INTO `npwd_darkchat_channel_members` (`channel_id`, `user_identifier`, `is_owner`) VALUES -; -- Dump della struttura di tabella es_extended.npwd_darkchat_messages CREATE TABLE IF NOT EXISTS `npwd_darkchat_messages` ( @@ -2344,10 +599,9 @@ CREATE TABLE IF NOT EXISTS `npwd_darkchat_messages` ( PRIMARY KEY (`id`) USING BTREE, KEY `darkchat_messages_darkchat_channels_id_fk` (`channel_id`) USING BTREE, CONSTRAINT `darkchat_messages_darkchat_channels_id_fk` FOREIGN KEY (`channel_id`) REFERENCES `npwd_darkchat_channels` (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- Dump dei dati della tabella es_extended.npwd_darkchat_messages: ~0 rows (circa) -INSERT INTO `npwd_darkchat_messages` (`id`, `channel_id`, `message`, `user_identifier`, `createdAt`, `is_image`) VALUES -- Dump della struttura di tabella es_extended.npwd_marketplace_listings CREATE TABLE IF NOT EXISTS `npwd_marketplace_listings` ( @@ -2364,7 +618,7 @@ CREATE TABLE IF NOT EXISTS `npwd_marketplace_listings` ( `reported` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `identifier` (`identifier`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.npwd_marketplace_listings: ~0 rows (circa) @@ -2383,10 +637,9 @@ CREATE TABLE IF NOT EXISTS `npwd_match_profiles` ( `updatedAt` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`), UNIQUE KEY `identifier_UNIQUE` (`identifier`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.npwd_match_profiles: ~0 rows (circa) -INSERT INTO `npwd_match_profiles` (`id`, `identifier`, `name`, `image`, `bio`, `location`, `job`, `tags`, `voiceMessage`, `createdAt`, `updatedAt`) VALUES +-- Dump dei dati della tabella es_extended.npwd_match_profiles: ~1 rows (circa) -- Dump della struttura di tabella es_extended.npwd_match_views CREATE TABLE IF NOT EXISTS `npwd_match_views` ( @@ -2400,15 +653,15 @@ CREATE TABLE IF NOT EXISTS `npwd_match_views` ( KEY `match_profile_idx` (`profile`), KEY `identifier` (`identifier`), CONSTRAINT `match_profile` FOREIGN KEY (`profile`) REFERENCES `npwd_match_profiles` (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.npwd_match_views: ~0 rows (circa) -- Dump della struttura di tabella es_extended.npwd_messages CREATE TABLE IF NOT EXISTS `npwd_messages` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `message` varchar(512) NOT NULL, - `user_identifier` varchar(48) NOT NULL, + `message` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, + `user_identifier` varchar(48) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `conversation_id` varchar(512) NOT NULL, `isRead` tinyint(4) NOT NULL DEFAULT 0, `createdAt` timestamp NOT NULL DEFAULT current_timestamp(), @@ -2419,21 +672,21 @@ CREATE TABLE IF NOT EXISTS `npwd_messages` ( `embed` varchar(512) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `user_identifier` (`user_identifier`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.npwd_messages: ~0 rows (circa) -- Dump della struttura di tabella es_extended.npwd_messages_conversations CREATE TABLE IF NOT EXISTS `npwd_messages_conversations` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `conversation_list` varchar(225) NOT NULL, - `label` varchar(60) DEFAULT '', + `conversation_list` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, + `label` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '', `createdAt` timestamp NOT NULL DEFAULT current_timestamp(), `updatedAt` timestamp NOT NULL DEFAULT current_timestamp(), `last_message_id` int(11) DEFAULT NULL, `is_group_chat` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.npwd_messages_conversations: ~0 rows (circa) @@ -2441,12 +694,12 @@ CREATE TABLE IF NOT EXISTS `npwd_messages_conversations` ( CREATE TABLE IF NOT EXISTS `npwd_messages_participants` ( `id` int(11) NOT NULL AUTO_INCREMENT, `conversation_id` int(11) NOT NULL, - `participant` varchar(225) NOT NULL, + `participant` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `unread_count` int(11) DEFAULT 0, PRIMARY KEY (`id`) USING BTREE, KEY `message_participants_npwd_messages_conversations_id_fk` (`conversation_id`) USING BTREE, CONSTRAINT `message_participants_npwd_messages_conversations_id_fk` FOREIGN KEY (`conversation_id`) REFERENCES `npwd_messages_conversations` (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.npwd_messages_participants: ~0 rows (circa) @@ -2458,7 +711,7 @@ CREATE TABLE IF NOT EXISTS `npwd_notes` ( `content` varchar(255) NOT NULL, PRIMARY KEY (`id`), KEY `identifier` (`identifier`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.npwd_notes: ~0 rows (circa) @@ -2471,7 +724,7 @@ CREATE TABLE IF NOT EXISTS `npwd_phone_contacts` ( `display` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `identifier` (`identifier`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.npwd_phone_contacts: ~0 rows (circa) @@ -2482,10 +735,9 @@ CREATE TABLE IF NOT EXISTS `npwd_phone_gallery` ( `image` varchar(255) NOT NULL, PRIMARY KEY (`id`), KEY `identifier` (`identifier`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.npwd_phone_gallery: ~3 rows (circa) -INSERT INTO `npwd_phone_gallery` (`id`, `identifier`, `image`) VALUES +-- Dump dei dati della tabella es_extended.npwd_phone_gallery: ~0 rows (circa) -- Dump della struttura di tabella es_extended.npwd_twitter_likes CREATE TABLE IF NOT EXISTS `npwd_twitter_likes` ( @@ -2498,7 +750,7 @@ CREATE TABLE IF NOT EXISTS `npwd_twitter_likes` ( KEY `tweet_idx` (`tweet_id`), CONSTRAINT `profile` FOREIGN KEY (`profile_id`) REFERENCES `npwd_twitter_profiles` (`id`), CONSTRAINT `tweet` FOREIGN KEY (`tweet_id`) REFERENCES `npwd_twitter_tweets` (`id`) ON DELETE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.npwd_twitter_likes: ~0 rows (circa) @@ -2507,16 +759,15 @@ CREATE TABLE IF NOT EXISTS `npwd_twitter_profiles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `profile_name` varchar(90) NOT NULL, `identifier` varchar(46) DEFAULT NULL, - `avatar_url` varchar(255) DEFAULT 'https://i.file.glass/QrEvq.png', + `avatar_url` varchar(255) DEFAULT 'https://i.fivemanage.com/images/3ClWwmpwkFhL.png', `createdAt` timestamp NOT NULL DEFAULT current_timestamp(), `updatedAt` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`), UNIQUE KEY `profile_name_UNIQUE` (`profile_name`), KEY `identifier` (`identifier`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.npwd_twitter_profiles: ~0 rows (circa) -INSERT INTO `npwd_twitter_profiles` (`id`, `profile_name`, `identifier`, `avatar_url`, `createdAt`, `updatedAt`) VALUES +-- Dump dei dati della tabella es_extended.npwd_twitter_profiles: ~1 rows (circa) -- Dump della struttura di tabella es_extended.npwd_twitter_reports CREATE TABLE IF NOT EXISTS `npwd_twitter_reports` ( @@ -2529,28 +780,28 @@ CREATE TABLE IF NOT EXISTS `npwd_twitter_reports` ( KEY `tweet_idx` (`tweet_id`), CONSTRAINT `report_profile` FOREIGN KEY (`profile_id`) REFERENCES `npwd_twitter_profiles` (`id`), CONSTRAINT `report_tweet` FOREIGN KEY (`tweet_id`) REFERENCES `npwd_twitter_tweets` (`id`) ON DELETE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.npwd_twitter_reports: ~0 rows (circa) -- Dump della struttura di tabella es_extended.npwd_twitter_tweets CREATE TABLE IF NOT EXISTS `npwd_twitter_tweets` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `message` varchar(1000) NOT NULL, + `message` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `createdAt` timestamp NOT NULL DEFAULT current_timestamp(), `updatedAt` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `likes` int(11) NOT NULL DEFAULT 0, `identifier` varchar(46) DEFAULT NULL, `visible` tinyint(4) NOT NULL DEFAULT 1, - `images` varchar(1000) DEFAULT '', + `images` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '', `retweet` int(11) DEFAULT NULL, `profile_id` int(11) NOT NULL, PRIMARY KEY (`id`) USING BTREE, KEY `npwd_twitter_tweets_npwd_twitter_profiles_id_fk` (`profile_id`) USING BTREE, CONSTRAINT `npwd_twitter_tweets_npwd_twitter_profiles_id_fk` FOREIGN KEY (`profile_id`) REFERENCES `npwd_twitter_profiles` (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.npwd_twitter_tweets: ~0 rows (circa) +-- Dump dei dati della tabella es_extended.npwd_twitter_tweets: ~1 rows (circa) -- Dump della struttura di tabella es_extended.outfits CREATE TABLE IF NOT EXISTS `outfits` ( @@ -2562,10 +813,9 @@ CREATE TABLE IF NOT EXISTS `outfits` ( `props` longtext DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id_UNIQUE` (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; -- Dump dei dati della tabella es_extended.outfits: ~0 rows (circa) -INSERT INTO `outfits` (`id`, `identifier`, `name`, `ped`, `components`, `props`) VALUES -- Dump della struttura di tabella es_extended.owned_vehicles CREATE TABLE IF NOT EXISTS `owned_vehicles` ( @@ -2574,18 +824,16 @@ CREATE TABLE IF NOT EXISTS `owned_vehicles` ( `vehicle` longtext DEFAULT NULL, `type` varchar(20) NOT NULL DEFAULT 'car', `job` varchar(20) DEFAULT NULL, - `stored` tinyint(4) NOT NULL DEFAULT 0, + `stored` tinyint(1) NOT NULL DEFAULT 0, `parking` varchar(60) DEFAULT NULL, `pound` varchar(60) DEFAULT NULL, - `trunk` longtext DEFAULT NULL, + `peopleWithKeys` longtext DEFAULT NULL, `glovebox` longtext DEFAULT NULL, - `peopleWithKeys` longtext DEFAULT '', - `mileage` float DEFAULT 0, + `trunk` longtext DEFAULT NULL, PRIMARY KEY (`plate`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.owned_vehicles: ~5 rows (circa) -INSERT INTO `owned_vehicles` (`owner`, `plate`, `vehicle`, `type`, `job`, `stored`, `parking`, `pound`, `trunk`, `glovebox`, `peopleWithKeys`, `mileage`) VALUES +-- Dump dei dati della tabella es_extended.owned_vehicles: ~0 rows (circa) -- Dump della struttura di tabella es_extended.ox_inventory CREATE TABLE IF NOT EXISTS `ox_inventory` ( @@ -2594,10 +842,9 @@ CREATE TABLE IF NOT EXISTS `ox_inventory` ( `data` longtext DEFAULT NULL, `lastupdated` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), UNIQUE KEY `owner` (`owner`,`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.ox_inventory: ~6 rows (circa) -INSERT INTO `ox_inventory` (`owner`, `name`, `data`, `lastupdated`) VALUES +-- Dump dei dati della tabella es_extended.ox_inventory: ~2 rows (circa) -- Dump della struttura di tabella es_extended.rented_vehicles CREATE TABLE IF NOT EXISTS `rented_vehicles` ( @@ -2608,7 +855,7 @@ CREATE TABLE IF NOT EXISTS `rented_vehicles` ( `rent_price` int(11) NOT NULL, `owner` varchar(46) DEFAULT NULL, PRIMARY KEY (`plate`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.rented_vehicles: ~0 rows (circa) @@ -2619,10 +866,9 @@ CREATE TABLE IF NOT EXISTS `society_moneywash` ( `society` varchar(60) NOT NULL, `amount` int(11) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.society_moneywash: ~0 rows (circa) -INSERT INTO `society_moneywash` (`id`, `identifier`, `society`, `amount`) VALUES -- Dump della struttura di tabella es_extended.users CREATE TABLE IF NOT EXISTS `users` ( @@ -2640,23 +886,18 @@ CREATE TABLE IF NOT EXISTS `users` ( `dateofbirth` varchar(10) DEFAULT NULL, `sex` varchar(1) DEFAULT NULL, `height` int(11) DEFAULT NULL, + `disabled` tinyint(1) DEFAULT 0, `skin` longtext DEFAULT NULL, - `status` longtext DEFAULT NULL, `is_dead` tinyint(1) DEFAULT 0, - `id` int(11) NOT NULL AUTO_INCREMENT, - `disabled` tinyint(1) DEFAULT 0, - `last_property` varchar(255) DEFAULT NULL, `pincode` int(11) DEFAULT NULL, - `tattoos` longtext DEFAULT NULL, - `iban` varchar(255) DEFAULT NULL, + `status` longtext DEFAULT NULL, `jail` int(11) NOT NULL DEFAULT 0, - `phone_number` int(10) DEFAULT NULL, - PRIMARY KEY (`identifier`), - UNIQUE KEY `id` (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + `phone_number` varchar(20) DEFAULT NULL, + `last_property` longtext DEFAULT NULL, + PRIMARY KEY (`identifier`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.users: ~0 rows (circa) -INSERT INTO `users` (`identifier`, `accounts`, `group`, `inventory`, `job`, `job_grade`, `loadout`, `crafting_level`, `position`, `firstname`, `lastname`, `dateofbirth`, `sex`, `height`, `skin`, `status`, `is_dead`, `id`, `disabled`, `last_property`, `pincode`, `tattoos`, `iban`, `jail`, `phone_number`) VALUES +-- Dump dei dati della tabella es_extended.users: ~1 rows (circa) -- Dump della struttura di tabella es_extended.user_licenses CREATE TABLE IF NOT EXISTS `user_licenses` ( @@ -2664,10 +905,9 @@ CREATE TABLE IF NOT EXISTS `user_licenses` ( `type` varchar(60) NOT NULL, `owner` varchar(46) DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Dump dei dati della tabella es_extended.user_licenses: ~2 rows (circa) -INSERT INTO `user_licenses` (`id`, `type`, `owner`) VALUES +-- Dump dei dati della tabella es_extended.user_licenses: ~0 rows (circa) -- Dump della struttura di tabella es_extended.uteknark1 CREATE TABLE IF NOT EXISTS `uteknark1` ( @@ -2680,7 +920,7 @@ CREATE TABLE IF NOT EXISTS `uteknark1` ( `soil` bigint(20) NOT NULL, PRIMARY KEY (`id`), KEY `stage` (`stage`,`time`) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.uteknark1: ~0 rows (circa) @@ -2689,263 +929,264 @@ CREATE TABLE IF NOT EXISTS `vehicles` ( `name` varchar(60) NOT NULL, `model` varchar(60) NOT NULL, `price` int(11) NOT NULL, - `category` varchar(60) DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; + `category` varchar(60) DEFAULT NULL, + PRIMARY KEY (`model`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.vehicles: ~240 rows (circa) INSERT INTO `vehicles` (`name`, `model`, `price`, `category`) VALUES - ('Blade', 'blade', 15000, 'muscle'), - ('Buccaneer', 'buccaneer', 18000, 'muscle'), - ('Buccaneer Rider', 'buccaneer2', 24000, 'muscle'), - ('Chino', 'chino', 15000, 'muscle'), - ('Chino Luxe', 'chino2', 19000, 'muscle'), - ('Coquette BlackFin', 'coquette3', 55000, 'muscle'), - ('Dominator', 'dominator', 35000, 'muscle'), - ('Dukes', 'dukes', 28000, 'muscle'), - ('Gauntlet', 'gauntlet', 30000, 'muscle'), - ('Hotknife', 'hotknife', 125000, 'muscle'), - ('Faction', 'faction', 20000, 'muscle'), - ('Faction Rider', 'faction2', 30000, 'muscle'), - ('Faction XL', 'faction3', 40000, 'muscle'), - ('Nightshade', 'nightshade', 65000, 'muscle'), - ('Phoenix', 'phoenix', 12500, 'muscle'), - ('Picador', 'picador', 18000, 'muscle'), - ('Sabre Turbo', 'sabregt', 20000, 'muscle'), - ('Sabre GT', 'sabregt2', 25000, 'muscle'), - ('Slam Van', 'slamvan3', 11500, 'muscle'), - ('Tampa', 'tampa', 16000, 'muscle'), - ('Virgo', 'virgo', 14000, 'muscle'), - ('Vigero', 'vigero', 12500, 'muscle'), - ('Voodoo', 'voodoo', 7200, 'muscle'), - ('Blista', 'blista', 8000, 'compacts'), - ('Brioso R/A', 'brioso', 18000, 'compacts'), - ('Issi', 'issi2', 10000, 'compacts'), - ('Panto', 'panto', 10000, 'compacts'), - ('Prairie', 'prairie', 12000, 'compacts'), - ('Bison', 'bison', 45000, 'vans'), - ('Bobcat XL', 'bobcatxl', 32000, 'vans'), - ('Burrito', 'burrito3', 19000, 'vans'), - ('Burrito', 'gburrito2', 29000, 'vans'), - ('Camper', 'camper', 42000, 'vans'), - ('Gang Burrito', 'gburrito', 45000, 'vans'), - ('Journey', 'journey', 6500, 'vans'), - ('Minivan', 'minivan', 13000, 'vans'), - ('Moonbeam', 'moonbeam', 18000, 'vans'), - ('Moonbeam Rider', 'moonbeam2', 35000, 'vans'), - ('Paradise', 'paradise', 19000, 'vans'), - ('Rumpo', 'rumpo', 15000, 'vans'), - ('Rumpo Trail', 'rumpo3', 19500, 'vans'), - ('Surfer', 'surfer', 12000, 'vans'), - ('Youga', 'youga', 10800, 'vans'), - ('Youga Luxuary', 'youga2', 14500, 'vans'), + ('Adder', 'adder', 900000, 'super'), + ('Akuma', 'AKUMA', 7500, 'motorcycles'), + ('Alpha', 'alpha', 60000, 'sports'), + ('Ardent', 'ardent', 1150000, 'sportsclassics'), ('Asea', 'asea', 5500, 'sedans'), - ('Cognoscenti', 'cognoscenti', 55000, 'sedans'), - ('Emperor', 'emperor', 8500, 'sedans'), - ('Fugitive', 'fugitive', 12000, 'sedans'), - ('Glendale', 'glendale', 6500, 'sedans'), - ('Intruder', 'intruder', 7500, 'sedans'), - ('Premier', 'premier', 8000, 'sedans'), - ('Primo Custom', 'primo2', 14000, 'sedans'), - ('Regina', 'regina', 5000, 'sedans'), - ('Schafter', 'schafter2', 25000, 'sedans'), - ('Stretch', 'stretch', 90000, 'sedans'), - ('Super Diamond', 'superd', 130000, 'sedans'), - ('Tailgater', 'tailgater', 30000, 'sedans'), - ('Warrener', 'warrener', 4000, 'sedans'), - ('Washington', 'washington', 9000, 'sedans'), + ('Autarch', 'autarch', 1955000, 'super'), + ('Avarus', 'avarus', 18000, 'motorcycles'), + ('Bagger', 'bagger', 13500, 'motorcycles'), ('Baller', 'baller2', 40000, 'suvs'), ('Baller Sport', 'baller3', 60000, 'suvs'), - ('Cavalcade', 'cavalcade2', 55000, 'suvs'), - ('Contender', 'contender', 70000, 'suvs'), - ('Dubsta', 'dubsta', 45000, 'suvs'), - ('Dubsta Luxuary', 'dubsta2', 60000, 'suvs'), - ('Fhantom', 'fq2', 17000, 'suvs'), - ('Grabger', 'granger', 50000, 'suvs'), - ('Gresley', 'gresley', 47500, 'suvs'), - ('Huntley S', 'huntley', 40000, 'suvs'), - ('Landstalker', 'landstalker', 35000, 'suvs'), - ('Mesa', 'mesa', 16000, 'suvs'), - ('Mesa Trail', 'mesa3', 40000, 'suvs'), - ('Patriot', 'patriot', 55000, 'suvs'), - ('Radius', 'radi', 29000, 'suvs'), - ('Rocoto', 'rocoto', 45000, 'suvs'), - ('Seminole', 'seminole', 25000, 'suvs'), - ('XLS', 'xls', 32000, 'suvs'), - ('Btype', 'btype', 62000, 'sportsclassics'), - ('Btype Luxe', 'btype3', 85000, 'sportsclassics'), - ('Btype Hotroad', 'btype2', 155000, 'sportsclassics'), - ('Casco', 'casco', 30000, 'sportsclassics'), - ('Coquette Classic', 'coquette2', 40000, 'sportsclassics'), - ('Manana', 'manana', 12800, 'sportsclassics'), - ('Monroe', 'monroe', 55000, 'sportsclassics'), - ('Pigalle', 'pigalle', 20000, 'sportsclassics'), - ('Stinger', 'stinger', 80000, 'sportsclassics'), - ('Stinger GT', 'stingergt', 75000, 'sportsclassics'), - ('Stirling GT', 'feltzer3', 65000, 'sportsclassics'), - ('Z-Type', 'ztype', 220000, 'sportsclassics'), - ('Bifta', 'bifta', 12000, 'offroad'), + ('Banshee', 'banshee', 70000, 'sports'), + ('Banshee 900R', 'banshee2', 255000, 'super'), + ('Bati 801', 'bati', 12000, 'motorcycles'), + ('Bati 801RR', 'bati2', 19000, 'motorcycles'), + ('Bestia GTS', 'bestiagts', 55000, 'sports'), + ('BF400', 'bf400', 6500, 'motorcycles'), ('Bf Injection', 'bfinjection', 16000, 'offroad'), + ('Bifta', 'bifta', 12000, 'offroad'), + ('Bison', 'bison', 45000, 'vans'), + ('Blade', 'blade', 15000, 'muscle'), ('Blazer', 'blazer', 6500, 'offroad'), ('Blazer Sport', 'blazer4', 8500, 'offroad'), + ('blazer5', 'blazer5', 1755600, 'offroad'), + ('Blista', 'blista', 8000, 'compacts'), + ('BMX (velo)', 'bmx', 160, 'motorcycles'), + ('Bobcat XL', 'bobcatxl', 32000, 'vans'), ('Brawler', 'brawler', 45000, 'offroad'), - ('Bubsta 6x6', 'dubsta3', 120000, 'offroad'), - ('Dune Buggy', 'dune', 8000, 'offroad'), - ('Guardian', 'guardian', 45000, 'offroad'), - ('Rebel', 'rebel2', 35000, 'offroad'), - ('Sandking', 'sandking', 55000, 'offroad'), - ('The Liberator', 'monster', 210000, 'offroad'), - ('Trophy Truck', 'trophytruck', 60000, 'offroad'), - ('Trophy Truck Limited', 'trophytruck2', 80000, 'offroad'), - ('Cognoscenti Cabrio', 'cogcabrio', 55000, 'coupes'), - ('Exemplar', 'exemplar', 32000, 'coupes'), - ('F620', 'f620', 40000, 'coupes'), - ('Felon', 'felon', 42000, 'coupes'), - ('Felon GT', 'felon2', 55000, 'coupes'), - ('Jackal', 'jackal', 38000, 'coupes'), - ('Oracle XS', 'oracle2', 35000, 'coupes'), - ('Sentinel', 'sentinel', 32000, 'coupes'), - ('Sentinel XS', 'sentinel2', 40000, 'coupes'), - ('Windsor', 'windsor', 95000, 'coupes'), - ('Windsor Drop', 'windsor2', 125000, 'coupes'), - ('Zion', 'zion', 36000, 'coupes'), - ('Zion Cabrio', 'zion2', 45000, 'coupes'), - ('9F', 'ninef', 65000, 'sports'), - ('9F Cabrio', 'ninef2', 80000, 'sports'), - ('Alpha', 'alpha', 60000, 'sports'), - ('Banshee', 'banshee', 70000, 'sports'), - ('Bestia GTS', 'bestiagts', 55000, 'sports'), + ('Brioso R/A', 'brioso', 18000, 'compacts'), + ('Btype', 'btype', 62000, 'sportsclassics'), + ('Btype Hotroad', 'btype2', 155000, 'sportsclassics'), + ('Btype Luxe', 'btype3', 85000, 'sportsclassics'), + ('Buccaneer', 'buccaneer', 18000, 'muscle'), + ('Buccaneer Rider', 'buccaneer2', 24000, 'muscle'), ('Buffalo', 'buffalo', 12000, 'sports'), ('Buffalo S', 'buffalo2', 20000, 'sports'), - ('Carbonizzare', 'carbonizzare', 75000, 'sports'), - ('Comet', 'comet2', 65000, 'sports'), - ('Coquette', 'coquette', 65000, 'sports'), - ('Drift Tampa', 'tampa2', 80000, 'sports'), - ('Elegy', 'elegy2', 38500, 'sports'), - ('Feltzer', 'feltzer2', 55000, 'sports'), - ('Furore GT', 'furoregt', 45000, 'sports'), - ('Fusilade', 'fusilade', 40000, 'sports'), - ('Jester', 'jester', 65000, 'sports'), - ('Jester(Racecar)', 'jester2', 135000, 'sports'), - ('Khamelion', 'khamelion', 38000, 'sports'), - ('Kuruma', 'kuruma', 30000, 'sports'), - ('Lynx', 'lynx', 40000, 'sports'), - ('Mamba', 'mamba', 70000, 'sports'), - ('Massacro', 'massacro', 65000, 'sports'), - ('Massacro(Racecar)', 'massacro2', 130000, 'sports'), - ('Omnis', 'omnis', 35000, 'sports'), - ('Penumbra', 'penumbra', 28000, 'sports'), - ('Rapid GT', 'rapidgt', 35000, 'sports'), - ('Rapid GT Convertible', 'rapidgt2', 45000, 'sports'), - ('Schafter V12', 'schafter3', 50000, 'sports'), - ('Seven 70', 'seven70', 39500, 'sports'), - ('Sultan', 'sultan', 15000, 'sports'), - ('Surano', 'surano', 50000, 'sports'), - ('Tropos', 'tropos', 40000, 'sports'), - ('Verlierer', 'verlierer2', 70000, 'sports'), - ('Adder', 'adder', 900000, 'super'), - ('Banshee 900R', 'banshee2', 255000, 'super'), ('Bullet', 'bullet', 90000, 'super'), - ('Cheetah', 'cheetah', 375000, 'super'), - ('Entity XF', 'entityxf', 425000, 'super'), - ('ETR1', 'sheava', 220000, 'super'), - ('FMJ', 'fmj', 185000, 'super'), - ('Infernus', 'infernus', 180000, 'super'), - ('Osiris', 'osiris', 160000, 'super'), - ('Pfister', 'pfister811', 85000, 'super'), - ('RE-7B', 'le7b', 325000, 'super'), - ('Reaper', 'reaper', 150000, 'super'), - ('Sultan RS', 'sultanrs', 65000, 'super'), - ('T20', 't20', 300000, 'super'), - ('Turismo R', 'turismor', 350000, 'super'), - ('Tyrus', 'tyrus', 600000, 'super'), - ('Vacca', 'vacca', 120000, 'super'), - ('Voltic', 'voltic', 90000, 'super'), - ('X80 Proto', 'prototipo', 2500000, 'super'), - ('Zentorno', 'zentorno', 1500000, 'super'), - ('Akuma', 'AKUMA', 7500, 'motorcycles'), - ('Avarus', 'avarus', 18000, 'motorcycles'), - ('Bagger', 'bagger', 13500, 'motorcycles'), - ('Bati 801', 'bati', 12000, 'motorcycles'), - ('Bati 801RR', 'bati2', 19000, 'motorcycles'), - ('BF400', 'bf400', 6500, 'motorcycles'), - ('BMX (velo)', 'bmx', 160, 'motorcycles'), + ('Burrito', 'burrito3', 19000, 'vans'), + ('Camper', 'camper', 42000, 'vans'), + ('Carbonizzare', 'carbonizzare', 75000, 'sports'), ('Carbon RS', 'carbonrs', 18000, 'motorcycles'), + ('Casco', 'casco', 30000, 'sportsclassics'), + ('Cavalcade', 'cavalcade2', 55000, 'suvs'), + ('Cheetah', 'cheetah', 375000, 'super'), ('Chimera', 'chimera', 38000, 'motorcycles'), + ('Chino', 'chino', 15000, 'muscle'), + ('Chino Luxe', 'chino2', 19000, 'muscle'), ('Cliffhanger', 'cliffhanger', 9500, 'motorcycles'), + ('Cognoscenti Cabrio', 'cogcabrio', 55000, 'coupes'), + ('Cognoscenti', 'cognoscenti', 55000, 'sedans'), + ('Comet', 'comet2', 65000, 'sports'), + ('Comet 5', 'comet5', 1145000, 'sports'), + ('Contender', 'contender', 70000, 'suvs'), + ('Coquette', 'coquette', 65000, 'sports'), + ('Coquette Classic', 'coquette2', 40000, 'sportsclassics'), + ('Coquette BlackFin', 'coquette3', 55000, 'muscle'), ('Cruiser (velo)', 'cruiser', 510, 'motorcycles'), + ('Cyclone', 'cyclone', 1890000, 'super'), ('Daemon', 'daemon', 11500, 'motorcycles'), ('Daemon High', 'daemon2', 13500, 'motorcycles'), ('Defiler', 'defiler', 9800, 'motorcycles'), + ('Deluxo', 'deluxo', 4721500, 'sportsclassics'), + ('Dominator', 'dominator', 35000, 'muscle'), ('Double T', 'double', 28000, 'motorcycles'), + ('Dubsta', 'dubsta', 45000, 'suvs'), + ('Dubsta Luxuary', 'dubsta2', 60000, 'suvs'), + ('Bubsta 6x6', 'dubsta3', 120000, 'offroad'), + ('Dukes', 'dukes', 28000, 'muscle'), + ('Dune Buggy', 'dune', 8000, 'offroad'), + ('Elegy', 'elegy2', 38500, 'sports'), + ('Emperor', 'emperor', 8500, 'sedans'), ('Enduro', 'enduro', 5500, 'motorcycles'), + ('Entity XF', 'entityxf', 425000, 'super'), ('Esskey', 'esskey', 4200, 'motorcycles'), + ('Exemplar', 'exemplar', 32000, 'coupes'), + ('F620', 'f620', 40000, 'coupes'), + ('Faction', 'faction', 20000, 'muscle'), + ('Faction Rider', 'faction2', 30000, 'muscle'), + ('Faction XL', 'faction3', 40000, 'muscle'), ('Faggio', 'faggio', 1900, 'motorcycles'), ('Vespa', 'faggio2', 2800, 'motorcycles'), + ('Felon', 'felon', 42000, 'coupes'), + ('Felon GT', 'felon2', 55000, 'coupes'), + ('Feltzer', 'feltzer2', 55000, 'sports'), + ('Stirling GT', 'feltzer3', 65000, 'sportsclassics'), ('Fixter (velo)', 'fixter', 225, 'motorcycles'), + ('FMJ', 'fmj', 185000, 'super'), + ('Fhantom', 'fq2', 17000, 'suvs'), + ('Fugitive', 'fugitive', 12000, 'sedans'), + ('Furore GT', 'furoregt', 45000, 'sports'), + ('Fusilade', 'fusilade', 40000, 'sports'), ('Gargoyle', 'gargoyle', 16500, 'motorcycles'), + ('Gauntlet', 'gauntlet', 30000, 'muscle'), + ('Gang Burrito', 'gburrito', 45000, 'vans'), + ('Burrito', 'gburrito2', 29000, 'vans'), + ('Glendale', 'glendale', 6500, 'sedans'), + ('Grabger', 'granger', 50000, 'suvs'), + ('Gresley', 'gresley', 47500, 'suvs'), + ('GT 500', 'gt500', 785000, 'sportsclassics'), + ('Guardian', 'guardian', 45000, 'offroad'), ('Hakuchou', 'hakuchou', 31000, 'motorcycles'), ('Hakuchou Sport', 'hakuchou2', 55000, 'motorcycles'), + ('Hermes', 'hermes', 535000, 'muscle'), ('Hexer', 'hexer', 12000, 'motorcycles'), + ('Hotknife', 'hotknife', 125000, 'muscle'), + ('Huntley S', 'huntley', 40000, 'suvs'), + ('Hustler', 'hustler', 625000, 'muscle'), + ('Infernus', 'infernus', 180000, 'super'), ('Innovation', 'innovation', 23500, 'motorcycles'), + ('Intruder', 'intruder', 7500, 'sedans'), + ('Issi', 'issi2', 10000, 'compacts'), + ('Jackal', 'jackal', 38000, 'coupes'), + ('Jester', 'jester', 65000, 'sports'), + ('Jester(Racecar)', 'jester2', 135000, 'sports'), + ('Journey', 'journey', 6500, 'vans'), + ('Kamacho', 'kamacho', 345000, 'offroad'), + ('Khamelion', 'khamelion', 38000, 'sports'), + ('Kuruma', 'kuruma', 30000, 'sports'), + ('Landstalker', 'landstalker', 35000, 'suvs'), + ('RE-7B', 'le7b', 325000, 'super'), + ('Lynx', 'lynx', 40000, 'sports'), + ('Mamba', 'mamba', 70000, 'sports'), + ('Manana', 'manana', 12800, 'sportsclassics'), ('Manchez', 'manchez', 5300, 'motorcycles'), + ('Massacro', 'massacro', 65000, 'sports'), + ('Massacro(Racecar)', 'massacro2', 130000, 'sports'), + ('Mesa', 'mesa', 16000, 'suvs'), + ('Mesa Trail', 'mesa3', 40000, 'suvs'), + ('Minivan', 'minivan', 13000, 'vans'), + ('Monroe', 'monroe', 55000, 'sportsclassics'), + ('The Liberator', 'monster', 210000, 'offroad'), + ('Moonbeam', 'moonbeam', 18000, 'vans'), + ('Moonbeam Rider', 'moonbeam2', 35000, 'vans'), ('Nemesis', 'nemesis', 5800, 'motorcycles'), + ('Neon', 'neon', 1500000, 'sports'), ('Nightblade', 'nightblade', 35000, 'motorcycles'), + ('Nightshade', 'nightshade', 65000, 'muscle'), + ('9F', 'ninef', 65000, 'sports'), + ('9F Cabrio', 'ninef2', 80000, 'sports'), + ('Omnis', 'omnis', 35000, 'sports'), + ('Oppressor', 'oppressor', 3524500, 'super'), + ('Oracle XS', 'oracle2', 35000, 'coupes'), + ('Osiris', 'osiris', 160000, 'super'), + ('Panto', 'panto', 10000, 'compacts'), + ('Paradise', 'paradise', 19000, 'vans'), + ('Pariah', 'pariah', 1420000, 'sports'), + ('Patriot', 'patriot', 55000, 'suvs'), ('PCJ-600', 'pcj', 6200, 'motorcycles'), + ('Penumbra', 'penumbra', 28000, 'sports'), + ('Pfister', 'pfister811', 85000, 'super'), + ('Phoenix', 'phoenix', 12500, 'muscle'), + ('Picador', 'picador', 18000, 'muscle'), + ('Pigalle', 'pigalle', 20000, 'sportsclassics'), + ('Prairie', 'prairie', 12000, 'compacts'), + ('Premier', 'premier', 8000, 'sedans'), + ('Primo Custom', 'primo2', 14000, 'sedans'), + ('X80 Proto', 'prototipo', 2500000, 'super'), + ('Radius', 'radi', 29000, 'suvs'), + ('raiden', 'raiden', 1375000, 'sports'), + ('Rapid GT', 'rapidgt', 35000, 'sports'), + ('Rapid GT Convertible', 'rapidgt2', 45000, 'sports'), + ('Rapid GT3', 'rapidgt3', 885000, 'sportsclassics'), + ('Reaper', 'reaper', 150000, 'super'), + ('Rebel', 'rebel2', 35000, 'offroad'), + ('Regina', 'regina', 5000, 'sedans'), + ('Retinue', 'retinue', 615000, 'sportsclassics'), + ('Revolter', 'revolter', 1610000, 'sports'), + ('riata', 'riata', 380000, 'offroad'), + ('Rocoto', 'rocoto', 45000, 'suvs'), ('Ruffian', 'ruffian', 6800, 'motorcycles'), + ('Ruiner 2', 'ruiner2', 5745600, 'muscle'), + ('Rumpo', 'rumpo', 15000, 'vans'), + ('Rumpo Trail', 'rumpo3', 19500, 'vans'), + ('Sabre Turbo', 'sabregt', 20000, 'muscle'), + ('Sabre GT', 'sabregt2', 25000, 'muscle'), ('Sanchez', 'sanchez', 5300, 'motorcycles'), ('Sanchez Sport', 'sanchez2', 5300, 'motorcycles'), ('Sanctus', 'sanctus', 25000, 'motorcycles'), + ('Sandking', 'sandking', 55000, 'offroad'), + ('Savestra', 'savestra', 990000, 'sportsclassics'), + ('SC 1', 'sc1', 1603000, 'super'), + ('Schafter', 'schafter2', 25000, 'sedans'), + ('Schafter V12', 'schafter3', 50000, 'sports'), ('Scorcher (velo)', 'scorcher', 280, 'motorcycles'), - ('Sovereign', 'sovereign', 22000, 'motorcycles'), + ('Seminole', 'seminole', 25000, 'suvs'), + ('Sentinel', 'sentinel', 32000, 'coupes'), + ('Sentinel XS', 'sentinel2', 40000, 'coupes'), + ('Sentinel3', 'sentinel3', 650000, 'sports'), + ('Seven 70', 'seven70', 39500, 'sports'), + ('ETR1', 'sheava', 220000, 'super'), ('Shotaro Concept', 'shotaro', 320000, 'motorcycles'), + ('Slam Van', 'slamvan3', 11500, 'muscle'), + ('Sovereign', 'sovereign', 22000, 'motorcycles'), + ('Stinger', 'stinger', 80000, 'sportsclassics'), + ('Stinger GT', 'stingergt', 75000, 'sportsclassics'), + ('Streiter', 'streiter', 500000, 'sports'), + ('Stretch', 'stretch', 90000, 'sedans'), + ('Stromberg', 'stromberg', 3185350, 'sports'), + ('Sultan', 'sultan', 15000, 'sports'), + ('Sultan RS', 'sultanrs', 65000, 'super'), + ('Super Diamond', 'superd', 130000, 'sedans'), + ('Surano', 'surano', 50000, 'sports'), + ('Surfer', 'surfer', 12000, 'vans'), + ('T20', 't20', 300000, 'super'), + ('Tailgater', 'tailgater', 30000, 'sedans'), + ('Tampa', 'tampa', 16000, 'muscle'), + ('Drift Tampa', 'tampa2', 80000, 'sports'), ('Thrust', 'thrust', 24000, 'motorcycles'), ('Tri bike (velo)', 'tribike3', 520, 'motorcycles'), + ('Trophy Truck', 'trophytruck', 60000, 'offroad'), + ('Trophy Truck Limited', 'trophytruck2', 80000, 'offroad'), + ('Tropos', 'tropos', 40000, 'sports'), + ('Turismo R', 'turismor', 350000, 'super'), + ('Tyrus', 'tyrus', 600000, 'super'), + ('Vacca', 'vacca', 120000, 'super'), ('Vader', 'vader', 7200, 'motorcycles'), + ('Verlierer', 'verlierer2', 70000, 'sports'), + ('Vigero', 'vigero', 12500, 'muscle'), + ('Virgo', 'virgo', 14000, 'muscle'), + ('Viseris', 'viseris', 875000, 'sportsclassics'), + ('Visione', 'visione', 2250000, 'super'), + ('Voltic', 'voltic', 90000, 'super'), + ('Voltic 2', 'voltic2', 3830400, 'super'), + ('Voodoo', 'voodoo', 7200, 'muscle'), ('Vortex', 'vortex', 9800, 'motorcycles'), + ('Warrener', 'warrener', 4000, 'sedans'), + ('Washington', 'washington', 9000, 'sedans'), + ('Windsor', 'windsor', 95000, 'coupes'), + ('Windsor Drop', 'windsor2', 125000, 'coupes'), ('Woflsbane', 'wolfsbane', 9000, 'motorcycles'), - ('Zombie', 'zombiea', 9500, 'motorcycles'), - ('Zombie Luxuary', 'zombieb', 12000, 'motorcycles'), - ('blazer5', 'blazer5', 1755600, 'offroad'), - ('Ruiner 2', 'ruiner2', 5745600, 'muscle'), - ('Voltic 2', 'voltic2', 3830400, 'super'), - ('Ardent', 'ardent', 1150000, 'sportsclassics'), - ('Oppressor', 'oppressor', 3524500, 'super'), - ('Visione', 'visione', 2250000, 'super'), - ('Retinue', 'retinue', 615000, 'sportsclassics'), - ('Cyclone', 'cyclone', 1890000, 'super'), - ('Rapid GT3', 'rapidgt3', 885000, 'sportsclassics'), - ('raiden', 'raiden', 1375000, 'sports'), + ('XLS', 'xls', 32000, 'suvs'), ('Yosemite', 'yosemite', 485000, 'muscle'), - ('Deluxo', 'deluxo', 4721500, 'sportsclassics'), - ('Pariah', 'pariah', 1420000, 'sports'), - ('Stromberg', 'stromberg', 3185350, 'sports'), - ('SC 1', 'sc1', 1603000, 'super'), - ('riata', 'riata', 380000, 'offroad'), - ('Hermes', 'hermes', 535000, 'muscle'), - ('Savestra', 'savestra', 990000, 'sportsclassics'), - ('Streiter', 'streiter', 500000, 'sports'), - ('Kamacho', 'kamacho', 345000, 'offroad'), - ('GT 500', 'gt500', 785000, 'sportsclassics'), + ('Youga', 'youga', 10800, 'vans'), + ('Youga Luxuary', 'youga2', 14500, 'vans'), ('Z190', 'z190', 900000, 'sportsclassics'), - ('Viseris', 'viseris', 875000, 'sportsclassics'), - ('Autarch', 'autarch', 1955000, 'super'), - ('Comet 5', 'comet5', 1145000, 'sports'), - ('Neon', 'neon', 1500000, 'sports'), - ('Revolter', 'revolter', 1610000, 'sports'), - ('Sentinel3', 'sentinel3', 650000, 'sports'), - ('Hustler', 'hustler', 625000, 'muscle'); + ('Zentorno', 'zentorno', 1500000, 'super'), + ('Zion', 'zion', 36000, 'coupes'), + ('Zion Cabrio', 'zion2', 45000, 'coupes'), + ('Zombie', 'zombiea', 9500, 'motorcycles'), + ('Zombie Luxuary', 'zombieb', 12000, 'motorcycles'), + ('Z-Type', 'ztype', 220000, 'sportsclassics'); -- Dump della struttura di tabella es_extended.vehicle_categories CREATE TABLE IF NOT EXISTS `vehicle_categories` ( `name` varchar(60) NOT NULL, `label` varchar(60) NOT NULL, PRIMARY KEY (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.vehicle_categories: ~11 rows (circa) INSERT INTO `vehicle_categories` (`name`, `label`) VALUES ('compacts', 'Compacts'), - ('coupes', 'Coupes'), + ('coupes', 'Coupés'), ('motorcycles', 'Motos'), ('muscle', 'Muscle'), ('offroad', 'Off Road'), @@ -2964,7 +1205,7 @@ CREATE TABLE IF NOT EXISTS `vehicle_sold` ( `soldby` varchar(50) NOT NULL, `date` varchar(50) NOT NULL, PRIMARY KEY (`plate`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dump dei dati della tabella es_extended.vehicle_sold: ~0 rows (circa)