Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
1,303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 190.26 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.9.0.1
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: 127.0.0.1
  6. -- Generation Time: Aug 25, 2019 at 02:49 PM
  7. -- Server version: 10.3.16-MariaDB
  8. -- PHP Version: 7.3.7
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET AUTOCOMMIT = 0;
  12. START TRANSACTION;
  13. SET time_zone = "+00:00";
  14.  
  15.  
  16. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  17. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  18. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  19. /*!40101 SET NAMES utf8mb4 */;
  20.  
  21. --
  22. -- Database: `essentialmode`
  23. --
  24.  
  25. -- --------------------------------------------------------
  26.  
  27. --
  28. -- Table structure for table `addon_account`
  29. --
  30.  
  31. CREATE TABLE `addon_account` (
  32. `name` varchar(60) NOT NULL,
  33. `label` varchar(100) NOT NULL,
  34. `shared` int(11) NOT NULL
  35. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  36.  
  37. --
  38. -- Dumping data for table `addon_account`
  39. --
  40.  
  41. INSERT INTO `addon_account` (`name`, `label`, `shared`) VALUES
  42. ('property_black_money', 'Argent Sale Propriété', 0),
  43. ('society_ambulance', 'Ambulance', 1),
  44. ('society_cardealer', 'Concessionnaire', 1),
  45. ('society_mechanic', 'Mécano', 1),
  46. ('society_nightclub', 'Nightclub', 1),
  47. ('society_police', 'Police', 1),
  48. ('society_realestateagent', 'Agent immobilier', 1),
  49. ('society_taxi', 'Taxi', 1);
  50.  
  51. -- --------------------------------------------------------
  52.  
  53. --
  54. -- Table structure for table `addon_account_data`
  55. --
  56.  
  57. CREATE TABLE `addon_account_data` (
  58. `id` int(11) NOT NULL,
  59. `account_name` varchar(100) DEFAULT NULL,
  60. `money` int(11) NOT NULL,
  61. `owner` varchar(100) DEFAULT NULL
  62. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  63.  
  64. --
  65. -- Dumping data for table `addon_account_data`
  66. --
  67.  
  68. INSERT INTO `addon_account_data` (`id`, `account_name`, `money`, `owner`) VALUES
  69. (2, 'society_ambulance', 0, NULL),
  70. (3, 'society_cardealer', 0, NULL),
  71. (4, 'society_nightclub', 0, NULL),
  72. (5, 'society_realestateagent', 13500, NULL),
  73. (7, 'society_mechanic', 0, NULL),
  74. (8, 'society_police', 0, NULL),
  75. (9, 'society_taxi', 0, NULL),
  76. (11, 'property_black_money', 0, 'steam:110000108eb0a3c'),
  77. (12, 'property_black_money', 0, 'steam:110000108bc4ad2'),
  78. (13, 'property_black_money', 0, 'steam:110000103e390a2'),
  79. (14, 'property_black_money', 0, 'steam:11000011359922c'),
  80. (15, 'property_black_money', 0, 'steam:1100001126ba2a9'),
  81. (16, 'property_black_money', 0, 'steam:1100001151e08e5'),
  82. (17, 'property_black_money', 0, 'Char1:1100001122b9aec'),
  83. (18, 'property_black_money', 0, 'steam:11000011867fe42'),
  84. (20, 'property_black_money', 0, 'steam:11000013d023d27'),
  85. (21, 'property_black_money', 0, 'steam:1100001122b9aec');
  86.  
  87. -- --------------------------------------------------------
  88.  
  89. --
  90. -- Table structure for table `addon_inventory`
  91. --
  92.  
  93. CREATE TABLE `addon_inventory` (
  94. `name` varchar(60) NOT NULL,
  95. `label` varchar(100) NOT NULL,
  96. `shared` int(11) NOT NULL
  97. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  98.  
  99. --
  100. -- Dumping data for table `addon_inventory`
  101. --
  102.  
  103. INSERT INTO `addon_inventory` (`name`, `label`, `shared`) VALUES
  104. ('property', 'Propriété', 0),
  105. ('society_ambulance', 'Ambulance', 1),
  106. ('society_cardealer', 'Concesionnaire', 1),
  107. ('society_mechanic', 'Mécano', 1),
  108. ('society_nightclub', 'Nightclub', 1),
  109. ('society_nightclub_fridge', 'Nightclub (fridge)', 1),
  110. ('society_police', 'Police', 1),
  111. ('society_taxi', 'Taxi', 1);
  112.  
  113. -- --------------------------------------------------------
  114.  
  115. --
  116. -- Table structure for table `addon_inventory_items`
  117. --
  118.  
  119. CREATE TABLE `addon_inventory_items` (
  120. `id` int(11) NOT NULL,
  121. `inventory_name` varchar(100) NOT NULL,
  122. `name` varchar(100) NOT NULL,
  123. `count` int(11) NOT NULL,
  124. `owner` varchar(60) DEFAULT NULL
  125. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  126.  
  127. -- --------------------------------------------------------
  128.  
  129. --
  130. -- Table structure for table `billing`
  131. --
  132.  
  133. CREATE TABLE `billing` (
  134. `id` int(11) NOT NULL,
  135. `identifier` varchar(255) NOT NULL,
  136. `sender` varchar(255) NOT NULL,
  137. `target_type` varchar(50) NOT NULL,
  138. `target` varchar(255) NOT NULL,
  139. `label` varchar(255) NOT NULL,
  140. `amount` int(11) NOT NULL
  141. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  142.  
  143. -- --------------------------------------------------------
  144.  
  145. --
  146. -- Table structure for table `cardealer_vehicles`
  147. --
  148.  
  149. CREATE TABLE `cardealer_vehicles` (
  150. `id` int(11) NOT NULL,
  151. `vehicle` varchar(255) NOT NULL,
  152. `price` int(11) NOT NULL
  153. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  154.  
  155. -- --------------------------------------------------------
  156.  
  157. --
  158. -- Table structure for table `characters`
  159. --
  160.  
  161. CREATE TABLE `characters` (
  162. `id` int(11) NOT NULL,
  163. `identifier` varchar(255) NOT NULL,
  164. `firstname` varchar(255) NOT NULL,
  165. `lastname` varchar(255) NOT NULL,
  166. `dateofbirth` varchar(255) NOT NULL,
  167. `sex` varchar(1) NOT NULL DEFAULT 'M',
  168. `height` varchar(128) NOT NULL
  169. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  170.  
  171. --
  172. -- Dumping data for table `characters`
  173. --
  174.  
  175. INSERT INTO `characters` (`id`, `identifier`, `firstname`, `lastname`, `dateofbirth`, `sex`, `height`) VALUES
  176. (1, 'steam:110000108eb0a3c', 'Devan', 'Lucas', '1994-10-10', 'm', '180'),
  177. (2, 'steam:110000108bc4ad2', 'James', 'Harris', '1996-03-14', 'm', '189'),
  178. (3, 'steam:110000103e390a2', 'Jack ', 'Jacky', '1981/8/30', 'm', '180'),
  179. (4, 'steam:11000011359922c', 'Bob', 'Baile', '2018/12/12', 'm', '200'),
  180. (5, 'steam:1100001126ba2a9', 'Anthony ', 'Price', '1980/02/26', 'm', '140'),
  181. (6, 'steam:1100001151e08e5', 'Jose', 'Rodriguez', '1983-07-30', 'm', '200'),
  182. (8, 'Char1:1100001122b9aec', 'Johnny', 'Boga', '1995/9/25', 'm', '155'),
  183. (9, 'steam:11000011867fe42', 'Sem', 'Jackob', '1999', 'm', '200'),
  184. (10, 'steam:11000013d023d27', 'Carl', 'Peters', '2000406', 'm', '150'),
  185. (11, 'steam:110000105890329', 'Catloaf', 'Of Meow', '1998', 'm', '167'),
  186. (12, 'steam:1100001122b9aec', 'Hardy', 'Harr', '1995/9/25', 'm', '155');
  187.  
  188. -- --------------------------------------------------------
  189.  
  190. --
  191. -- Table structure for table `datastore`
  192. --
  193.  
  194. CREATE TABLE `datastore` (
  195. `name` varchar(60) NOT NULL,
  196. `label` varchar(100) NOT NULL,
  197. `shared` int(11) NOT NULL
  198. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  199.  
  200. --
  201. -- Dumping data for table `datastore`
  202. --
  203.  
  204. INSERT INTO `datastore` (`name`, `label`, `shared`) VALUES
  205. ('property', 'Propriété', 0),
  206. ('society_ambulance', 'Ambulance', 1),
  207. ('society_nightclub', 'Nightclub', 1),
  208. ('society_police', 'Police', 1),
  209. ('society_taxi', 'Taxi', 1);
  210.  
  211. -- --------------------------------------------------------
  212.  
  213. --
  214. -- Table structure for table `datastore_data`
  215. --
  216.  
  217. CREATE TABLE `datastore_data` (
  218. `id` int(11) NOT NULL,
  219. `name` varchar(60) NOT NULL,
  220. `owner` varchar(60) DEFAULT NULL,
  221. `data` longtext DEFAULT NULL
  222. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  223.  
  224. --
  225. -- Dumping data for table `datastore_data`
  226. --
  227.  
  228. INSERT INTO `datastore_data` (`id`, `name`, `owner`, `data`) VALUES
  229. (1, 'society_ambulance', NULL, '{}'),
  230. (2, 'society_nightclub', NULL, '{}'),
  231. (4, 'society_police', NULL, '{}'),
  232. (5, 'society_taxi', NULL, '{}'),
  233. (9, 'property', 'steam:110000108eb0a3c', '{\"weapons\":[]}'),
  234. (10, 'property', 'steam:110000108bc4ad2', '{\"dressing\":[{\"label\":\"main\",\"skin\":{\"eyebrows_4\":0,\"complexion_1\":0,\"hair_1\":10,\"shoes_2\":2,\"beard_2\":6,\"blemishes_1\":0,\"chest_3\":0,\"tshirt_2\":0,\"pants_1\":26,\"bodyb_2\":0,\"bproof_2\":0,\"bracelets_2\":0,\"makeup_1\":0,\"tshirt_1\":32,\"beard_3\":0,\"sun_1\":1,\"ears_1\":-1,\"moles_1\":0,\"decals_2\":0,\"glasses_2\":0,\"sex\":0,\"chain_2\":0,\"mask_1\":0,\"glasses_1\":5,\"makeup_2\":0,\"hair_color_2\":1,\"bags_1\":0,\"watches_1\":-1,\"bags_2\":0,\"makeup_4\":0,\"blush_1\":0,\"lipstick_2\":0,\"makeup_3\":0,\"eye_color\":0,\"torso_2\":1,\"face\":4,\"blemishes_2\":0,\"lipstick_4\":0,\"hair_2\":5,\"moles_2\":0,\"arms\":0,\"torso_1\":70,\"beard_1\":3,\"eyebrows_1\":0,\"ears_2\":0,\"helmet_1\":-1,\"age_2\":0,\"age_1\":0,\"mask_2\":0,\"pants_2\":1,\"shoes_1\":4,\"chest_1\":0,\"eyebrows_3\":0,\"complexion_2\":0,\"bodyb_1\":0,\"bracelets_1\":-1,\"eyebrows_2\":0,\"chain_1\":0,\"sun_2\":0,\"hair_color_1\":8,\"helmet_2\":0,\"lipstick_3\":0,\"beard_4\":0,\"watches_2\":0,\"blush_2\":0,\"lipstick_1\":0,\"decals_1\":0,\"blush_3\":0,\"bproof_1\":0,\"skin\":6,\"chest_2\":0,\"arms_2\":0}}]}'),
  235. (11, 'property', 'steam:110000103e390a2', '{}'),
  236. (14, 'property', 'steam:11000011359922c', '{}'),
  237. (15, 'property', 'steam:1100001126ba2a9', '{}'),
  238. (16, 'property', 'steam:1100001151e08e5', '{}'),
  239. (17, 'property', 'Char1:1100001122b9aec', '{\"dressing\":[{\"label\":\"Main\",\"skin\":{\"hair_color_2\":0,\"glasses_2\":4,\"arms\":31,\"arms_2\":0,\"blush_3\":0,\"complexion_2\":0,\"age_1\":0,\"sun_2\":0,\"blemishes_1\":0,\"beard_1\":0,\"hair_color_1\":4,\"chest_3\":0,\"mask_1\":0,\"skin\":0,\"makeup_2\":0,\"lipstick_1\":0,\"bags_1\":0,\"shoes_1\":12,\"bracelets_1\":-1,\"glasses_1\":5,\"chest_2\":0,\"watches_1\":-1,\"ears_1\":-1,\"eye_color\":0,\"sex\":0,\"eyebrows_4\":0,\"eyebrows_1\":0,\"hair_2\":0,\"pants_2\":4,\"face\":44,\"pants_1\":78,\"chain_2\":0,\"eyebrows_2\":0,\"decals_1\":0,\"makeup_3\":0,\"bags_2\":0,\"bproof_1\":0,\"beard_3\":0,\"moles_1\":0,\"lipstick_4\":0,\"blush_1\":0,\"bodyb_1\":0,\"lipstick_2\":0,\"bproof_2\":0,\"makeup_1\":0,\"shoes_2\":7,\"bodyb_2\":0,\"helmet_1\":-1,\"makeup_4\":0,\"blemishes_2\":0,\"ears_2\":0,\"tshirt_1\":15,\"mask_2\":0,\"torso_2\":2,\"chain_1\":0,\"moles_2\":0,\"torso_1\":263,\"bracelets_2\":0,\"beard_2\":10,\"lipstick_3\":0,\"age_2\":0,\"helmet_2\":0,\"eyebrows_3\":0,\"beard_4\":0,\"tshirt_2\":0,\"chest_1\":0,\"watches_2\":0,\"complexion_1\":0,\"hair_1\":10,\"blush_2\":0,\"sun_1\":0,\"decals_2\":0}},{\"label\":\"bikes\",\"skin\":{\"hair_color_2\":0,\"glasses_2\":4,\"arms\":31,\"arms_2\":0,\"blush_3\":0,\"complexion_2\":0,\"age_1\":0,\"bracelets_2\":0,\"blemishes_1\":0,\"beard_1\":0,\"hair_color_1\":4,\"chest_3\":0,\"mask_1\":0,\"skin\":0,\"makeup_2\":0,\"lipstick_1\":0,\"bags_1\":0,\"shoes_1\":12,\"bracelets_1\":-1,\"glasses_1\":5,\"chest_2\":0,\"watches_1\":-1,\"ears_1\":-1,\"eye_color\":0,\"sex\":0,\"eyebrows_4\":0,\"eyebrows_1\":0,\"torso_2\":5,\"pants_2\":2,\"face\":44,\"pants_1\":78,\"chain_2\":0,\"eyebrows_2\":0,\"decals_1\":0,\"makeup_3\":0,\"bags_2\":0,\"bproof_1\":0,\"beard_3\":0,\"moles_1\":0,\"lipstick_4\":0,\"blush_1\":0,\"bproof_2\":0,\"bodyb_1\":0,\"lipstick_2\":0,\"beard_4\":0,\"shoes_2\":7,\"bodyb_2\":0,\"helmet_1\":51,\"makeup_4\":0,\"lipstick_3\":0,\"ears_2\":0,\"tshirt_1\":15,\"sun_2\":0,\"mask_2\":0,\"makeup_1\":0,\"blemishes_2\":0,\"chain_1\":0,\"hair_2\":0,\"beard_2\":10,\"eyebrows_3\":0,\"age_2\":0,\"torso_1\":262,\"moles_2\":0,\"helmet_2\":0,\"tshirt_2\":0,\"complexion_1\":0,\"watches_2\":0,\"sun_1\":0,\"hair_1\":10,\"blush_2\":0,\"chest_1\":0,\"decals_2\":0}}]}'),
  240. (18, 'property', 'steam:11000011867fe42', '{}'),
  241. (20, 'property', 'steam:110000105890329', '{}'),
  242. (21, 'property', 'steam:11000013d023d27', '{}'),
  243. (22, 'property', 'steam:1100001122b9aec', '{}');
  244.  
  245. -- --------------------------------------------------------
  246.  
  247. --
  248. -- Table structure for table `fine_types`
  249. --
  250.  
  251. CREATE TABLE `fine_types` (
  252. `id` int(11) NOT NULL,
  253. `label` varchar(255) DEFAULT NULL,
  254. `amount` int(11) DEFAULT NULL,
  255. `category` int(11) DEFAULT NULL
  256. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  257.  
  258. -- --------------------------------------------------------
  259.  
  260. --
  261. -- Table structure for table `glovebox_inventory`
  262. --
  263.  
  264. CREATE TABLE `glovebox_inventory` (
  265. `id` int(11) NOT NULL,
  266. `plate` varchar(8) NOT NULL,
  267. `data` text NOT NULL,
  268. `owned` int(11) NOT NULL
  269. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  270.  
  271. --
  272. -- Dumping data for table `glovebox_inventory`
  273. --
  274.  
  275. INSERT INTO `glovebox_inventory` (`id`, `plate`, `data`, `owned`) VALUES
  276. (5, 'ADZGF405', '{}', 1),
  277. (6, 'KZFXN148', '{\"coffres\":[{\"name\":\"fixkit\",\"count\":1}]}', 1),
  278. (10, 'HEQVW311', '{}', 1),
  279. (13, 'ZJIFC588', '{\"coffres\":[]}', 1),
  280. (21, 'XBOMP191', '{}', 1),
  281. (22, 'IQOQE723', '{}', 1),
  282. (23, 'WSVXE141', '{}', 1);
  283.  
  284. -- --------------------------------------------------------
  285.  
  286. --
  287. -- Table structure for table `impounded_vehicles`
  288. --
  289.  
  290. CREATE TABLE `impounded_vehicles` (
  291. `id` int(11) NOT NULL,
  292. `plate` varchar(12) DEFAULT NULL,
  293. `vehicle` text DEFAULT NULL,
  294. `owner` varchar(250) DEFAULT NULL,
  295. `impounded_at` int(11) DEFAULT NULL
  296. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  297.  
  298. -- --------------------------------------------------------
  299.  
  300. --
  301. -- Table structure for table `items`
  302. --
  303.  
  304. CREATE TABLE `items` (
  305. `name` varchar(50) NOT NULL,
  306. `label` varchar(50) NOT NULL,
  307. `limit` int(11) NOT NULL DEFAULT -1,
  308. `rare` int(11) NOT NULL DEFAULT 0,
  309. `can_remove` int(11) NOT NULL DEFAULT 1
  310. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  311.  
  312. --
  313. -- Dumping data for table `items`
  314. --
  315.  
  316. INSERT INTO `items` (`name`, `label`, `limit`, `rare`, `can_remove`) VALUES
  317. ('absinthe', 'Absinto', 5, 0, 1),
  318. ('airbag', 'Airbag', 7, 0, 1),
  319. ('alive_chicken', 'Chicken', 20, 0, 1),
  320. ('bandage', 'Bandage', 20, 0, 1),
  321. ('battery', 'Car Battery', 2, 0, 1),
  322. ('beer', 'Beer', 15, 0, 1),
  323. ('blowpipe', 'Blowpipe', 10, 0, 1),
  324. ('blowtorch', 'Blowtorch', 1, 0, 1),
  325. ('bolcacahuetes', 'Bowl of peanuts', 5, 0, 1),
  326. ('bolchips', 'Bowl of crisps', 5, 0, 1),
  327. ('bolnoixcajou', 'Bowl of cashew nuts', 5, 0, 1),
  328. ('bolpistache', 'Bowl of pistachios', 5, 0, 1),
  329. ('bread', 'Bread', 15, 0, 1),
  330. ('c4_bank', 'C4', 1, 0, 1),
  331. ('cannabis', 'Cannabis', -1, 0, 1),
  332. ('carokit', 'Repair Kit', 3, 0, 1),
  333. ('carotool', 'Repair Tools', 4, 0, 1),
  334. ('champagne', 'Champanhe', 10, 0, 1),
  335. ('chips', 'Chips', 5, 0, 1),
  336. ('chocolate', 'Chocolate', 10, 0, 1),
  337. ('cigarett', 'cigarettes', 20, 0, 1),
  338. ('clothe', 'Clothes', 40, 0, 1),
  339. ('cocacola', 'Coca-cola', 15, 0, 1),
  340. ('coffe', 'Coffee', 15, 0, 1),
  341. ('copper', 'Copper', -1, 0, 1),
  342. ('cupcake', 'Cupcake', 15, 0, 1),
  343. ('cutted_wood', 'Cut Wood', 20, 0, 1),
  344. ('diamond', 'Diamond', -1, 0, 1),
  345. ('drpepper', 'Dr. Pepper', 5, 0, 1),
  346. ('energy', 'Energy Drink', 5, 0, 1),
  347. ('essence', 'Essence', 24, 0, 1),
  348. ('fabric', 'Fabric', 80, 0, 1),
  349. ('fish', 'Fish', 100, 0, 1),
  350. ('fixkit', 'Repair Kit', 5, 0, 1),
  351. ('fixtool', 'Repair Tools', 6, 0, 1),
  352. ('gazbottle', 'bouteille de gaz', 11, 0, 1),
  353. ('gintonic', 'Gintonic', 5, 0, 1),
  354. ('gold', 'Gold', -1, 0, 1),
  355. ('golem', 'Golem', 5, 0, 1),
  356. ('grapperaisin', 'Bunch of grapes', 5, 0, 1),
  357. ('hamburger', 'Hamburger', 15, 0, 1),
  358. ('highradio', 'Aftermarket Radio', 5, 0, 1),
  359. ('highrim', 'Nice Rim', 4, 0, 1),
  360. ('ice', 'Ice', 5, 0, 1),
  361. ('icetea', 'Ice Tea', 5, 0, 1),
  362. ('iron', 'Iron', -1, 0, 1),
  363. ('jager', 'Jägermeister', 5, 0, 1),
  364. ('jagerbomb', 'Jägerbomb', 5, 0, 1),
  365. ('jagercerbere', 'Jäger Cerberus', 3, 0, 1),
  366. ('jusfruit', 'Fruit juice', 5, 0, 1),
  367. ('lighter', 'Lighter', 1, 0, 1),
  368. ('limonade', 'Lemonade', 5, 0, 1),
  369. ('lockpick', 'Lockpick', -1, 0, 1),
  370. ('lowradio', 'Stock Radio', 5, 0, 1),
  371. ('marijuana', 'Marijuana', -1, 0, 1),
  372. ('martini', 'White Martini', 5, 0, 1),
  373. ('medikit', 'MedKit', 5, 0, 1),
  374. ('menthe', 'Mint leaf', 10, 0, 1),
  375. ('metreshooter', 'Shooter meter', 3, 0, 1),
  376. ('milk', 'Milk', 15, 0, 1),
  377. ('mixapero', 'Aperitif Mix', 3, 0, 1),
  378. ('mojito', 'Mojito', 5, 0, 1),
  379. ('packaged_chicken', 'Packaged Chicken', 100, 0, 1),
  380. ('packaged_plank', 'Bundle of planks', 100, 0, 1),
  381. ('petrol', 'Gas', 24, 0, 1),
  382. ('petrol_raffin', 'Pétrole Raffiné', 24, 0, 1),
  383. ('raspberry', 'Raspberry', 1, 0, 1),
  384. ('rhum', 'Rhum', 5, 0, 1),
  385. ('rhumcoca', 'Rhum-coke', 5, 0, 1),
  386. ('rhumfruit', 'Rhum-fruit juice', 5, 0, 1),
  387. ('sandwich', 'Sandwich', 15, 0, 1),
  388. ('saucisson', 'Sausage', 5, 0, 1),
  389. ('scratchoff', 'Scratchoff Ticket', -1, 0, 1),
  390. ('scratchoff_used', 'Used Scratchoff Ticket', -1, 0, 1),
  391. ('slaughtered_chicken', 'Dead Chicken', 20, 0, 1),
  392. ('soda', 'Soda', 5, 0, 1),
  393. ('stockrim', 'Stock Rim', 4, 0, 1),
  394. ('stone', 'Stone', 20, 0, 1),
  395. ('teqpaf', 'Teq\'paf', 5, 0, 1),
  396. ('tequila', 'Tequila', 15, 0, 1),
  397. ('vodka', 'Vodka', 15, 0, 1),
  398. ('vodkaenergy', 'Vodka-energy', 5, 0, 1),
  399. ('vodkafruit', 'Vodka-fruit juice', 5, 0, 1),
  400. ('washed_stone', 'Washed Stone', 7, 0, 1),
  401. ('water', 'Water', 15, 0, 1),
  402. ('whisky', 'Whisky', 15, 0, 1),
  403. ('whiskycoca', 'Whisky-coke', 5, 0, 1),
  404. ('Wine', 'Wine', 5, 0, 1),
  405. ('wood', 'Wood', 20, 0, 1),
  406. ('wool', 'wool', 40, 0, 1),
  407. ('yusuf', 'Luxury Skin', -1, 0, 1);
  408.  
  409. -- --------------------------------------------------------
  410.  
  411. --
  412. -- Table structure for table `jobs`
  413. --
  414.  
  415. CREATE TABLE `jobs` (
  416. `name` varchar(50) NOT NULL,
  417. `label` varchar(50) DEFAULT NULL,
  418. `whitelisted` tinyint(1) NOT NULL DEFAULT 0
  419. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  420.  
  421. --
  422. -- Dumping data for table `jobs`
  423. --
  424.  
  425. INSERT INTO `jobs` (`name`, `label`, `whitelisted`) VALUES
  426. ('ambulance', 'EMS', 0),
  427. ('cardealer', 'Car Dealer', 0),
  428. ('garbage', 'Sanitary Service', 1),
  429. ('gopostal', 'Money Washer', 0),
  430. ('mechanic', 'Mechanic', 0),
  431. ('miner', 'Miner', 0),
  432. ('nightclub', 'Nightclub', 0),
  433. ('police', 'LSPD', 0),
  434. ('realestateagent', 'Agent', 0),
  435. ('taxi', 'Taxi', 0),
  436. ('trucker', 'Trucker', 0),
  437. ('unemployed', 'Unemployed', 0);
  438.  
  439. -- --------------------------------------------------------
  440.  
  441. --
  442. -- Table structure for table `job_grades`
  443. --
  444.  
  445. CREATE TABLE `job_grades` (
  446. `id` int(11) NOT NULL,
  447. `job_name` varchar(50) DEFAULT NULL,
  448. `grade` int(11) NOT NULL,
  449. `name` varchar(50) NOT NULL,
  450. `label` varchar(50) NOT NULL,
  451. `salary` int(11) NOT NULL,
  452. `skin_male` longtext NOT NULL,
  453. `skin_female` longtext NOT NULL
  454. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  455.  
  456. --
  457. -- Dumping data for table `job_grades`
  458. --
  459.  
  460. INSERT INTO `job_grades` (`id`, `job_name`, `grade`, `name`, `label`, `salary`, `skin_male`, `skin_female`) VALUES
  461. (1, 'unemployed', 0, 'unemployed', 'Unemployed', 50, '{}', '{}'),
  462. (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}'),
  463. (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}'),
  464. (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}'),
  465. (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}'),
  466. (13, 'cardealer', 0, 'recruit', 'Newbie', 10, '{}', '{}'),
  467. (14, 'cardealer', 1, 'novice', 'Salesman', 25, '{}', '{}'),
  468. (15, 'cardealer', 2, 'experienced', 'Experianced', 40, '{}', '{}'),
  469. (16, 'cardealer', 3, 'boss', 'Boss', 0, '{}', '{}'),
  470. (17, 'garbage', 0, 'employee', 'Employee', 200, '{\"tshirt_1\":59,\"torso_1\":89,\"arms\":31,\"pants_1\":36,\"glasses_1\":19,\"decals_2\":0,\"hair_color_2\":0,\"helmet_2\":0,\"hair_color_1\":0,\"face\":2,\"glasses_2\":0,\"torso_2\":1,\"shoes\":35,\"hair_1\":0,\"skin\":0,\"sex\":0,\"glasses_1\":19,\"pants_2\":0,\"hair_2\":0,\"decals_1\":0,\"tshirt_2\":0,\"helmet_1\":5}', '{\"tshirt_1\":36,\"torso_1\":0,\"arms\":68,\"pants_1\":30,\"glasses_1\":15,\"decals_2\":0,\"hair_color_2\":0,\"helmet_2\":0,\"hair_color_1\":0,\"face\":27,\"glasses_2\":0,\"torso_2\":11,\"shoes\":26,\"hair_1\":5,\"skin\":0,\"sex\":1,\"glasses_1\":15,\"pants_2\":2,\"hair_2\":0,\"decals_1\":0,\"tshirt_2\":0,\"helmet_1\":19}'),
  471. (18, 'miner', 0, 'employee', 'Employee', 235, '{}', '{}'),
  472. (19, 'nightclub', 0, 'barman', 'Barkeeper', 220, '{}', '{}'),
  473. (20, 'nightclub', 1, 'dancer', 'Dancer', 240, '{}', '{}'),
  474. (21, 'nightclub', 2, 'viceboss', 'Co-Manager', 260, '{}', '{}'),
  475. (22, 'nightclub', 3, 'boss', 'Manager', 290, '{}', '{}'),
  476. (23, 'realestateagent', 0, 'location', 'Novice', 200, '{}', '{}'),
  477. (24, 'realestateagent', 1, 'vendeur', 'Advanced', 235, '{}', '{}'),
  478. (25, 'realestateagent', 2, 'gestion', 'Second', 240, '{}', '{}'),
  479. (26, 'realestateagent', 3, 'boss', 'Boss', 260, '{}', '{}'),
  480. (27, 'mechanic', 0, 'recrue', 'Intern', 125, '{}', '{}'),
  481. (28, 'mechanic', 1, 'novice', 'Noob', 150, '{}', '{}'),
  482. (29, 'mechanic', 2, 'experimente', 'Mechanic', 175, '{}', '{}'),
  483. (30, 'mechanic', 3, 'chief', 'Foreman', 200, '{}', '{}'),
  484. (31, 'mechanic', 4, 'boss', 'Boss', 225, '{}', '{}'),
  485. (32, 'police', 0, 'recruit', 'Recruit', 200, '{}', '{}'),
  486. (33, 'police', 1, 'officer', 'Officer', 250, '{}', '{}'),
  487. (34, 'police', 2, 'sergeant', 'sergeant', 300, '{}', '{}'),
  488. (35, 'police', 3, 'lieutenant', 'Lieutenant', 350, '{}', '{}'),
  489. (36, 'police', 4, 'boss', 'Commander', 400, '{}', '{}'),
  490. (37, 'taxi', 0, 'recrue', 'Trainee', 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}'),
  491. (38, '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}'),
  492. (39, 'taxi', 2, 'experimente', 'Experianced', 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}'),
  493. (40, '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}'),
  494. (41, 'taxi', 4, 'boss', 'Boss', 56, '{\"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}'),
  495. (42, 'trucker', 0, 'employe', 'Employee', 200, '{}', '{}'),
  496. (43, 'gopostal', 0, 'employee', 'Sedex', 200, '{\"tshirt_1\":59,\"torso_1\":89,\"arms\":31,\"pants_1\":36,\"glasses_1\":19,\"decals_2\":0,\"hair_color_2\":0,\"helmet_2\":0,\"hair_color_1\":0,\"face\":2,\"glasses_2\":0,\"torso_2\":1,\"shoes\":35,\"hair_1\":0,\"skin\":0,\"sex\":0,\"glasses_1\":19,\"pants_2\":0,\"hair_2\":0,\"decals_1\":0,\"tshirt_2\":0,\"helmet_1\":5}', '{\"tshirt_1\":36,\"torso_1\":0,\"arms\":68,\"pants_1\":30,\"glasses_1\":15,\"decals_2\":0,\"hair_color_2\":0,\"helmet_2\":0,\"hair_color_1\":0,\"face\":27,\"glasses_2\":0,\"torso_2\":11,\"shoes\":26,\"hair_1\":5,\"skin\":0,\"sex\":1,\"glasses_1\":15,\"pants_2\":2,\"hair_2\":0,\"decals_1\":0,\"tshirt_2\":0,\"helmet_1\":19}');
  497.  
  498. -- --------------------------------------------------------
  499.  
  500. --
  501. -- Table structure for table `licenses`
  502. --
  503.  
  504. CREATE TABLE `licenses` (
  505. `type` varchar(60) NOT NULL,
  506. `label` varchar(60) NOT NULL
  507. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  508.  
  509. --
  510. -- Dumping data for table `licenses`
  511. --
  512.  
  513. INSERT INTO `licenses` (`type`, `label`) VALUES
  514. ('weapon', 'Weapon Permit');
  515.  
  516. -- --------------------------------------------------------
  517.  
  518. --
  519. -- Table structure for table `owned_properties`
  520. --
  521.  
  522. CREATE TABLE `owned_properties` (
  523. `id` int(11) NOT NULL,
  524. `name` varchar(255) NOT NULL,
  525. `price` double NOT NULL,
  526. `rented` int(11) NOT NULL,
  527. `owner` varchar(60) NOT NULL
  528. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  529.  
  530. --
  531. -- Dumping data for table `owned_properties`
  532. --
  533.  
  534. INSERT INTO `owned_properties` (`id`, `name`, `price`, `rented`, `owner`) VALUES
  535. (1, 'TinselTowersApt12', 1700000, 0, 'steam:110000108eb0a3c'),
  536. (2, 'MedEndApartment1', 2500, 1, 'steam:110000108bc4ad2'),
  537. (3, 'TinselTowersApt12', 8500, 1, 'steam:1100001126ba2a9');
  538.  
  539. -- --------------------------------------------------------
  540.  
  541. --
  542. -- Table structure for table `owned_vehicles`
  543. --
  544.  
  545. CREATE TABLE `owned_vehicles` (
  546. `owner` varchar(30) NOT NULL,
  547. `plate` varchar(12) NOT NULL,
  548. `vehicle` longtext NOT NULL,
  549. `type` varchar(20) NOT NULL DEFAULT 'car',
  550. `job` varchar(20) NOT NULL,
  551. `stored` tinyint(1) NOT NULL DEFAULT 0
  552. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  553.  
  554. --
  555. -- Dumping data for table `owned_vehicles`
  556. --
  557.  
  558. INSERT INTO `owned_vehicles` (`owner`, `plate`, `vehicle`, `type`, `job`, `stored`) VALUES
  559. ('steam:110000108eb0a3c', 'CXHGM083', '{\"modEngineBlock\":-1,\"modTrimB\":-1,\"modSteeringWheel\":-1,\"modEngine\":-1,\"pearlescentColor\":112,\"modDashboard\":-1,\"modHorns\":-1,\"modFrontWheels\":-1,\"tyreSmokeColor\":[255,255,255],\"windowTint\":6,\"modFrame\":-1,\"modSeats\":-1,\"modShifterLeavers\":-1,\"wheelColor\":156,\"modWindows\":-1,\"modLivery\":-1,\"neonEnabled\":[false,false,false,false],\"modAirFilter\":-1,\"modBackWheels\":-1,\"modTrunk\":-1,\"modSideSkirt\":-1,\"plateIndex\":3,\"modHydrolic\":-1,\"extras\":{\"1\":true},\"color2\":18,\"modExhaust\":-1,\"dirtLevel\":15.0,\"modAerials\":-1,\"modBrakes\":-1,\"modArchCover\":-1,\"neonColor\":[255,0,255],\"modSuspension\":-1,\"modArmor\":-1,\"modTank\":-1,\"modGrille\":-1,\"modVanityPlate\":-1,\"modTransmission\":-1,\"modRightFender\":-1,\"modFrontBumper\":-1,\"modSmokeEnabled\":false,\"modTrimA\":-1,\"modRoof\":-1,\"modFender\":-1,\"plate\":\"CXHGM083\",\"modXenon\":false,\"modPlateHolder\":-1,\"modTurbo\":false,\"health\":985,\"model\":-587505153,\"modHood\":-1,\"modAPlate\":-1,\"modSpeakers\":-1,\"modStruts\":-1,\"color1\":0,\"modDoorSpeaker\":-1,\"modRearBumper\":-1,\"modSpoilers\":-1,\"modOrnaments\":-1,\"wheels\":3,\"modDial\":-1}', 'car', '', 1),
  560. ('steam:110000103e390a2', 'EWXCS096', '{\"modAPlate\":-1,\"extras\":{\"4\":false,\"5\":false,\"2\":false,\"3\":false,\"1\":true},\"plate\":\"EWXCS096\",\"modDial\":-1,\"modFrontWheels\":-1,\"modTank\":-1,\"modShifterLeavers\":-1,\"modTrunk\":-1,\"color2\":0,\"modWindows\":-1,\"neonEnabled\":[false,false,false,false],\"modSeats\":-1,\"modRearBumper\":-1,\"model\":1707272728,\"plateIndex\":4,\"dirtLevel\":9.0,\"modHydrolic\":-1,\"modGrille\":-1,\"modTrimB\":-1,\"modHorns\":-1,\"modBrakes\":-1,\"modArchCover\":-1,\"modSmokeEnabled\":false,\"modOrnaments\":-1,\"modSpeakers\":-1,\"modSteeringWheel\":-1,\"modFrame\":-1,\"modEngine\":-1,\"modLivery\":0,\"modDoorSpeaker\":-1,\"modPlateHolder\":-1,\"modStruts\":-1,\"neonColor\":[255,0,255],\"modEngineBlock\":-1,\"modRoof\":-1,\"modVanityPlate\":-1,\"modSuspension\":-1,\"tyreSmokeColor\":[255,255,255],\"modTransmission\":-1,\"modBackWheels\":-1,\"modFrontBumper\":-1,\"wheelColor\":156,\"modTrimA\":-1,\"modFender\":-1,\"wheels\":3,\"modAirFilter\":-1,\"modHood\":-1,\"modSideSkirt\":-1,\"modSpoilers\":-1,\"modDashboard\":-1,\"modTurbo\":false,\"color1\":0,\"modXenon\":false,\"modArmor\":-1,\"pearlescentColor\":156,\"windowTint\":-1,\"modAerials\":-1,\"health\":1000,\"modRightFender\":-1,\"modExhaust\":-1}', 'car', 'police', 1),
  561. ('steam:110000103e390a2', 'HEQVW311', '{\"modFrame\":-1,\"extras\":{\"4\":false,\"2\":false,\"3\":false,\"8\":true,\"1\":false,\"6\":false,\"7\":false},\"modBrakes\":-1,\"modDial\":-1,\"modFrontWheels\":-1,\"modTank\":-1,\"modShifterLeavers\":-1,\"modTrunk\":-1,\"color2\":0,\"modTrimA\":-1,\"modLivery\":0,\"modSeats\":-1,\"modRearBumper\":-1,\"modSpoilers\":-1,\"plateIndex\":4,\"neonEnabled\":[false,false,false,false],\"modHydrolic\":-1,\"modGrille\":-1,\"modTrimB\":-1,\"modHorns\":-1,\"modRoof\":-1,\"modArchCover\":-1,\"modSmokeEnabled\":false,\"modOrnaments\":-1,\"modSpeakers\":-1,\"modSteeringWheel\":-1,\"modSideSkirt\":-1,\"modStruts\":-1,\"plate\":\"HEQVW311\",\"health\":1000,\"modPlateHolder\":-1,\"modEngineBlock\":-1,\"neonColor\":[255,0,255],\"modWindows\":-1,\"dirtLevel\":4.0,\"modVanityPlate\":-1,\"modSuspension\":-1,\"tyreSmokeColor\":[255,255,255],\"modTransmission\":-1,\"modBackWheels\":-1,\"modDoorSpeaker\":-1,\"wheelColor\":156,\"model\":-1293679527,\"modHood\":-1,\"wheels\":0,\"modExhaust\":-1,\"modDashboard\":-1,\"modAirFilter\":-1,\"modFrontBumper\":-1,\"modXenon\":false,\"modArmor\":-1,\"color1\":0,\"modAPlate\":-1,\"modEngine\":-1,\"pearlescentColor\":156,\"windowTint\":-1,\"modAerials\":-1,\"modFender\":-1,\"modRightFender\":-1,\"modTurbo\":false}', 'car', 'police', 1),
  562. ('steam:1100001126ba2a9', 'IQOQE723', '{\"modArmor\":-1,\"modBrakes\":-1,\"modSideSkirt\":-1,\"plateIndex\":0,\"modArchCover\":-1,\"modFrontWheels\":-1,\"plate\":\"IQOQE723\",\"neonEnabled\":[false,false,false,false],\"modEngine\":-1,\"modExhaust\":-1,\"modWindows\":-1,\"tyreSmokeColor\":[244,65,65],\"modSuspension\":-1,\"modOrnaments\":-1,\"modAerials\":-1,\"dirtLevel\":10.172391891479,\"modTank\":-1,\"modSpoilers\":-1,\"modFrame\":-1,\"wheelColor\":252,\"modSpeakers\":-1,\"modTrimA\":-1,\"modLivery\":-1,\"modHood\":-1,\"neonColor\":[255,0,255],\"modXenon\":1,\"health\":971,\"color2\":0,\"modHorns\":-1,\"modFender\":-1,\"wheels\":1,\"modRearBumper\":-1,\"modHydrolic\":-1,\"modBackWheels\":-1,\"modTransmission\":-1,\"modAirFilter\":-1,\"modDashboard\":-1,\"modStruts\":-1,\"windowTint\":1,\"modFrontBumper\":-1,\"modTrimB\":-1,\"modPlateHolder\":-1,\"color1\":0,\"modGrille\":-1,\"extras\":[],\"modSeats\":-1,\"modVanityPlate\":-1,\"model\":701998922,\"modAPlate\":-1,\"modRoof\":-1,\"modSteeringWheel\":-1,\"modEngineBlock\":-1,\"modTurbo\":1,\"modDial\":-1,\"pearlescentColor\":156,\"modShifterLeavers\":-1,\"modTrunk\":-1,\"modDoorSpeaker\":-1,\"modRightFender\":-1,\"modSmokeEnabled\":1}', 'car', '', 1),
  563. ('steam:110000108eb0a3c', 'KZFXN148', '{\"modRoof\":-1,\"modDoorSpeaker\":-1,\"modFender\":-1,\"extras\":{\"2\":false,\"1\":false,\"4\":false,\"3\":false,\"6\":false,\"5\":false},\"modArchCover\":-1,\"modSteeringWheel\":-1,\"modSeats\":-1,\"modBrakes\":-1,\"neonColor\":[255,0,255],\"modShifterLeavers\":-1,\"tyreSmokeColor\":[255,255,255],\"wheelColor\":156,\"model\":1477136041,\"color2\":0,\"modTurbo\":false,\"modSmokeEnabled\":false,\"modHydrolic\":-1,\"modTrimA\":-1,\"modAPlate\":-1,\"modFrame\":-1,\"modRightFender\":-1,\"modArmor\":-1,\"pearlescentColor\":156,\"modHood\":-1,\"plate\":\"KZFXN148\",\"modTransmission\":-1,\"modLivery\":0,\"modSuspension\":-1,\"dirtLevel\":6.0,\"modBackWheels\":-1,\"modExhaust\":-1,\"health\":1000,\"modWindows\":-1,\"modHorns\":-1,\"modTank\":-1,\"modVanityPlate\":-1,\"modStruts\":-1,\"neonEnabled\":[false,false,false,false],\"modAerials\":-1,\"modAirFilter\":-1,\"modDashboard\":-1,\"modGrille\":-1,\"modRearBumper\":-1,\"modTrunk\":-1,\"modSideSkirt\":-1,\"modEngineBlock\":-1,\"modFrontBumper\":-1,\"modTrimB\":-1,\"modDial\":-1,\"modOrnaments\":-1,\"windowTint\":-1,\"plateIndex\":4,\"wheels\":0,\"color1\":0,\"modPlateHolder\":-1,\"modSpeakers\":-1,\"modXenon\":false,\"modEngine\":-1,\"modSpoilers\":-1,\"modFrontWheels\":-1}', 'car', 'police', 1),
  564. ('steam:110000103e390a2', 'LJAJH503', '{\"modAPlate\":-1,\"extras\":{\"4\":false,\"5\":false,\"2\":false,\"3\":false,\"8\":false,\"9\":false,\"6\":false,\"7\":false,\"1\":true,\"11\":false},\"plate\":\"LJAJH503\",\"modDial\":-1,\"modFrontWheels\":-1,\"modTank\":-1,\"modShifterLeavers\":-1,\"modTrunk\":-1,\"color2\":0,\"modWindows\":-1,\"neonEnabled\":[false,false,false,false],\"modSeats\":-1,\"modRearBumper\":-1,\"model\":-1046437422,\"plateIndex\":4,\"dirtLevel\":5.0,\"modHydrolic\":-1,\"modGrille\":-1,\"modTrimB\":-1,\"modHorns\":-1,\"modBrakes\":-1,\"modArchCover\":-1,\"modSmokeEnabled\":false,\"modOrnaments\":-1,\"modSpeakers\":-1,\"modSteeringWheel\":-1,\"modFrame\":-1,\"modEngine\":-1,\"modLivery\":0,\"modDoorSpeaker\":-1,\"modPlateHolder\":-1,\"modStruts\":-1,\"neonColor\":[255,0,255],\"modEngineBlock\":-1,\"modRoof\":-1,\"modVanityPlate\":-1,\"modSuspension\":-1,\"tyreSmokeColor\":[255,255,255],\"modTransmission\":-1,\"modBackWheels\":-1,\"modFrontBumper\":-1,\"wheelColor\":156,\"modTrimA\":-1,\"modFender\":-1,\"wheels\":1,\"modAirFilter\":-1,\"modHood\":-1,\"modSideSkirt\":-1,\"modSpoilers\":-1,\"modDashboard\":-1,\"modTurbo\":false,\"color1\":0,\"modXenon\":false,\"modArmor\":-1,\"pearlescentColor\":156,\"windowTint\":-1,\"modAerials\":-1,\"health\":1000,\"modRightFender\":-1,\"modExhaust\":-1}', 'car', 'police', 1),
  565. ('steam:11000011359922c', 'NFREZ606', '{\"modFrame\":-1,\"extras\":{\"4\":false,\"5\":false,\"2\":false,\"3\":false,\"1\":true,\"6\":false},\"plate\":\"NFREZ606\",\"modEngine\":-1,\"modFrontWheels\":-1,\"modTank\":-1,\"modShifterLeavers\":-1,\"modTrunk\":-1,\"color2\":0,\"modArmor\":-1,\"modTrimB\":-1,\"modFender\":-1,\"modRearBumper\":-1,\"model\":1477136041,\"plateIndex\":4,\"neonEnabled\":[false,false,false,false],\"modBrakes\":-1,\"modGrille\":-1,\"modSpoilers\":-1,\"modHorns\":-1,\"modHydrolic\":-1,\"modArchCover\":-1,\"modSmokeEnabled\":false,\"modLivery\":2,\"modSpeakers\":-1,\"modSteeringWheel\":-1,\"modHood\":-1,\"dirtLevel\":5.0,\"modXenon\":false,\"modFrontBumper\":-1,\"modPlateHolder\":-1,\"modEngineBlock\":-1,\"neonColor\":[255,0,255],\"modTrimA\":-1,\"modRoof\":-1,\"modVanityPlate\":-1,\"modSuspension\":-1,\"tyreSmokeColor\":[255,255,255],\"health\":1000,\"modBackWheels\":-1,\"modDoorSpeaker\":-1,\"wheelColor\":156,\"modTurbo\":false,\"modWindows\":-1,\"wheels\":0,\"modStruts\":-1,\"modSeats\":-1,\"modAirFilter\":-1,\"modDashboard\":-1,\"modSideSkirt\":-1,\"modTransmission\":-1,\"color1\":0,\"modAPlate\":-1,\"modDial\":-1,\"pearlescentColor\":156,\"windowTint\":-1,\"modAerials\":-1,\"modOrnaments\":-1,\"modRightFender\":-1,\"modExhaust\":-1}', 'car', 'police', 1),
  566. ('steam:110000108bc4ad2', 'PFFXK231', '{\"modDoorSpeaker\":-1,\"modFrontBumper\":1,\"extras\":[],\"modDashboard\":-1,\"modLivery\":-1,\"modBackWheels\":-1,\"modDial\":-1,\"modArmor\":4,\"modTrimA\":-1,\"wheels\":7,\"modVanityPlate\":-1,\"modRoof\":-1,\"modFender\":-1,\"modHydrolic\":-1,\"modTransmission\":2,\"modArchCover\":-1,\"modEngineBlock\":-1,\"modHood\":-1,\"modSmokeEnabled\":1,\"modFrontWheels\":-1,\"modXenon\":false,\"model\":2117711508,\"modSideSkirt\":1,\"modOrnaments\":-1,\"modBrakes\":2,\"neonEnabled\":[false,false,false,false],\"modAirFilter\":-1,\"modEngine\":3,\"modSpoilers\":-1,\"modShifterLeavers\":-1,\"wheelColor\":156,\"pearlescentColor\":142,\"modTrunk\":-1,\"dirtLevel\":15.0,\"modAPlate\":-1,\"health\":995,\"modPlateHolder\":-1,\"modSteeringWheel\":-1,\"modWindows\":-1,\"modStruts\":-1,\"modAerials\":-1,\"modSuspension\":3,\"modHorns\":9,\"modSeats\":-1,\"modExhaust\":-1,\"color2\":148,\"modTrimB\":-1,\"windowTint\":1,\"color1\":142,\"modGrille\":-1,\"modFrame\":-1,\"modRearBumper\":1,\"modTurbo\":false,\"tyreSmokeColor\":[108,24,192],\"plateIndex\":3,\"neonColor\":[255,0,255],\"plate\":\"PFFXK231\",\"modSpeakers\":-1,\"modRightFender\":-1,\"modTank\":-1}', 'car', '', 1),
  567. ('steam:110000103e390a2', 'PPEBV199', '{\"modEngineBlock\":-1,\"modTrimB\":-1,\"modSteeringWheel\":-1,\"modEngine\":-1,\"pearlescentColor\":0,\"modDashboard\":-1,\"modHorns\":0,\"modFrontWheels\":-1,\"tyreSmokeColor\":[255,255,255],\"windowTint\":-1,\"modFrame\":-1,\"modSeats\":-1,\"modShifterLeavers\":-1,\"modStruts\":-1,\"modWindows\":-1,\"modLivery\":-1,\"modSmokeEnabled\":1,\"wheelColor\":156,\"modBackWheels\":-1,\"modTrunk\":-1,\"modArmor\":-1,\"plateIndex\":0,\"modHydrolic\":-1,\"extras\":[],\"color2\":45,\"modExhaust\":-1,\"dirtLevel\":9.6785516738892,\"modAerials\":-1,\"color1\":45,\"modArchCover\":-1,\"neonColor\":[255,0,255],\"modSideSkirt\":-1,\"health\":967,\"modTank\":-1,\"modGrille\":-1,\"modVanityPlate\":-1,\"modTransmission\":-1,\"modAirFilter\":-1,\"modSuspension\":-1,\"modDoorSpeaker\":-1,\"neonEnabled\":[false,false,false,false],\"modRightFender\":-1,\"modFender\":-1,\"modFrontBumper\":-1,\"modXenon\":false,\"modTrimA\":-1,\"modRoof\":-1,\"modOrnaments\":-1,\"model\":-1067271962,\"modHood\":-1,\"modAPlate\":-1,\"modSpeakers\":-1,\"plate\":\"PPEBV199\",\"modPlateHolder\":-1,\"modBrakes\":2,\"modRearBumper\":-1,\"modSpoilers\":-1,\"modTurbo\":false,\"wheels\":3,\"modDial\":-1}', 'car', '', 1),
  568. ('steam:1100001122b9aec', 'UKXRD917', '{\"modAPlate\":-1,\"extras\":{\"4\":false,\"5\":false,\"2\":false,\"3\":false,\"1\":false,\"6\":true},\"plate\":\"UKXRD917\",\"modEngine\":-1,\"modFrontWheels\":-1,\"modTank\":-1,\"modShifterLeavers\":-1,\"modTrunk\":-1,\"color2\":0,\"modWindows\":-1,\"modDashboard\":-1,\"modFender\":-1,\"modRearBumper\":-1,\"neonEnabled\":[false,false,false,false],\"plateIndex\":4,\"dirtLevel\":7.0,\"modTurbo\":false,\"modGrille\":-1,\"modHydrolic\":-1,\"modHorns\":-1,\"modTrimA\":-1,\"modArchCover\":-1,\"modSmokeEnabled\":false,\"modOrnaments\":-1,\"modSpeakers\":-1,\"modSteeringWheel\":-1,\"tyreSmokeColor\":[255,255,255],\"modLivery\":2,\"modAirFilter\":-1,\"modArmor\":-1,\"modPlateHolder\":-1,\"modEngineBlock\":-1,\"neonColor\":[255,0,255],\"modFrontBumper\":-1,\"modRoof\":-1,\"modVanityPlate\":-1,\"modSuspension\":-1,\"modTrimB\":-1,\"health\":1000,\"modBackWheels\":-1,\"modDoorSpeaker\":-1,\"wheelColor\":156,\"model\":1477136041,\"modHood\":-1,\"wheels\":0,\"modStruts\":-1,\"modBrakes\":-1,\"modSideSkirt\":-1,\"modSpoilers\":-1,\"modXenon\":false,\"modFrame\":-1,\"color1\":0,\"modDial\":-1,\"modTransmission\":-1,\"pearlescentColor\":156,\"windowTint\":-1,\"modAerials\":-1,\"modSeats\":-1,\"modRightFender\":-1,\"modExhaust\":-1}', 'car', 'police', 1),
  569. ('steam:110000103e390a2', 'VVTSS916', '{\"modFrame\":-1,\"extras\":{\"4\":false,\"2\":false,\"3\":false,\"8\":true,\"1\":false,\"6\":false,\"7\":false},\"modBrakes\":-1,\"modDial\":-1,\"modFrontWheels\":-1,\"modTank\":-1,\"modShifterLeavers\":-1,\"modTrunk\":-1,\"color2\":0,\"modTrimA\":-1,\"modLivery\":2,\"modSeats\":-1,\"modRearBumper\":-1,\"modSpoilers\":-1,\"plateIndex\":4,\"neonEnabled\":[false,false,false,false],\"modHydrolic\":-1,\"modGrille\":-1,\"modTrimB\":-1,\"modHorns\":-1,\"modRoof\":-1,\"modArchCover\":-1,\"modSmokeEnabled\":false,\"modOrnaments\":-1,\"modSpeakers\":-1,\"modSteeringWheel\":-1,\"modSideSkirt\":-1,\"modStruts\":-1,\"plate\":\"VVTSS916\",\"health\":1000,\"modPlateHolder\":-1,\"modEngineBlock\":-1,\"neonColor\":[255,0,255],\"modWindows\":-1,\"dirtLevel\":6.0,\"modVanityPlate\":-1,\"modSuspension\":-1,\"tyreSmokeColor\":[255,255,255],\"modTransmission\":-1,\"modBackWheels\":-1,\"modDoorSpeaker\":-1,\"wheelColor\":156,\"model\":-1293679527,\"modHood\":-1,\"wheels\":0,\"modExhaust\":-1,\"modDashboard\":-1,\"modAirFilter\":-1,\"modFrontBumper\":-1,\"modXenon\":false,\"modArmor\":-1,\"color1\":0,\"modAPlate\":-1,\"modEngine\":-1,\"pearlescentColor\":156,\"windowTint\":-1,\"modAerials\":-1,\"modFender\":-1,\"modRightFender\":-1,\"modTurbo\":false}', 'car', 'police', 1),
  570. ('steam:11000011867fe42', 'VXYIY421', '{\"extras\":[],\"modAerials\":-1,\"modAirFilter\":-1,\"modSteeringWheel\":-1,\"modEngine\":-1,\"neonColor\":[255,0,255],\"modGrille\":-1,\"modArchCover\":-1,\"modTrimB\":-1,\"modRightFender\":-1,\"modAPlate\":-1,\"modOrnaments\":-1,\"modArmor\":-1,\"modFrame\":-1,\"modSideSkirt\":-1,\"modFrontBumper\":-1,\"modBrakes\":-1,\"modXenon\":false,\"pearlescentColor\":111,\"modFender\":-1,\"plate\":\"VXYIY421\",\"modFrontWheels\":-1,\"modHydrolic\":-1,\"modHood\":-1,\"modTransmission\":-1,\"modRearBumper\":-1,\"modEngineBlock\":-1,\"modSpeakers\":-1,\"wheels\":6,\"modLivery\":-1,\"modRoof\":-1,\"modHorns\":-1,\"modTurbo\":false,\"modSeats\":-1,\"modSpoilers\":-1,\"modSmokeEnabled\":false,\"tyreSmokeColor\":[255,255,255],\"model\":1753414259,\"modExhaust\":-1,\"dirtLevel\":4.0000033378601,\"color2\":11,\"modTrimA\":-1,\"modPlateHolder\":-1,\"modDial\":-1,\"neonEnabled\":[false,false,false,false],\"modWindows\":-1,\"modSuspension\":-1,\"modVanityPlate\":-1,\"modTrunk\":-1,\"modDashboard\":-1,\"modBackWheels\":-1,\"modShifterLeavers\":-1,\"modDoorSpeaker\":-1,\"windowTint\":-1,\"modStruts\":-1,\"wheelColor\":156,\"color1\":5,\"modTank\":-1,\"health\":1000,\"plateIndex\":0}', 'car', '', 1),
  571. ('steam:11000011359922c', 'WHLCN636', '{\"modFrame\":-1,\"extras\":{\"4\":false,\"1\":true,\"2\":false,\"3\":false},\"plate\":\"WHLCN636\",\"modEngine\":-1,\"modFrontWheels\":-1,\"modTank\":-1,\"modShifterLeavers\":-1,\"modTrunk\":-1,\"color2\":0,\"modArmor\":-1,\"modTrimB\":-1,\"modFender\":-1,\"modRearBumper\":-1,\"model\":153006289,\"plateIndex\":4,\"neonEnabled\":[false,false,false,false],\"modBrakes\":-1,\"modGrille\":-1,\"modSpoilers\":-1,\"modHorns\":-1,\"modHydrolic\":-1,\"modArchCover\":-1,\"modSmokeEnabled\":false,\"modLivery\":1,\"modSpeakers\":-1,\"modSteeringWheel\":-1,\"modHood\":-1,\"dirtLevel\":11.0,\"modXenon\":false,\"modFrontBumper\":-1,\"modPlateHolder\":-1,\"modEngineBlock\":-1,\"neonColor\":[255,0,255],\"modTrimA\":-1,\"modRoof\":-1,\"modVanityPlate\":-1,\"modSuspension\":-1,\"tyreSmokeColor\":[255,255,255],\"health\":1000,\"modBackWheels\":-1,\"modDoorSpeaker\":-1,\"wheelColor\":156,\"modTurbo\":false,\"modWindows\":-1,\"wheels\":3,\"modStruts\":-1,\"modSeats\":-1,\"modAirFilter\":-1,\"modDashboard\":-1,\"modSideSkirt\":-1,\"modTransmission\":-1,\"color1\":0,\"modAPlate\":-1,\"modDial\":-1,\"pearlescentColor\":156,\"windowTint\":-1,\"modAerials\":-1,\"modOrnaments\":-1,\"modRightFender\":-1,\"modExhaust\":-1}', 'car', 'police', 1),
  572. ('steam:110000108eb0a3c', 'WSVXE141', '{\"modArmor\":4,\"modBrakes\":2,\"modSideSkirt\":-1,\"modBackWheels\":-1,\"modArchCover\":-1,\"modFrontWheels\":-1,\"plate\":\"WSVXE141\",\"neonEnabled\":[false,false,false,false],\"modEngine\":3,\"modExhaust\":3,\"modWindows\":-1,\"tyreSmokeColor\":[255,255,255],\"modSuspension\":-1,\"modOrnaments\":-1,\"modXenon\":1,\"dirtLevel\":5.5648741722107,\"modTank\":-1,\"modSpoilers\":-1,\"modFrame\":1,\"wheelColor\":88,\"modSpeakers\":-1,\"modEngineBlock\":-1,\"modLivery\":5,\"modTrimA\":-1,\"neonColor\":[255,0,255],\"plateIndex\":0,\"health\":1000,\"modAerials\":-1,\"modHorns\":-1,\"modFender\":1,\"wheels\":7,\"modRearBumper\":-1,\"modHydrolic\":-1,\"modVanityPlate\":-1,\"windowTint\":-1,\"color2\":88,\"modHood\":1,\"modStruts\":-1,\"color1\":12,\"modFrontBumper\":1,\"modTrimB\":-1,\"modPlateHolder\":-1,\"pearlescentColor\":5,\"modGrille\":-1,\"extras\":[],\"modSeats\":-1,\"modAPlate\":-1,\"model\":1890188937,\"modTransmission\":2,\"modRoof\":0,\"modSteeringWheel\":-1,\"modShifterLeavers\":-1,\"modTurbo\":1,\"modDial\":-1,\"modAirFilter\":-1,\"modDashboard\":-1,\"modTrunk\":-1,\"modDoorSpeaker\":-1,\"modRightFender\":-1,\"modSmokeEnabled\":false}', 'car', '', 1),
  573. ('steam:110000108eb0a3c', 'XBOMP191', '{\"modArmor\":-1,\"modBrakes\":-1,\"modSideSkirt\":-1,\"modBackWheels\":-1,\"modArchCover\":-1,\"modFrontWheels\":-1,\"plate\":\"XBOMP191\",\"neonEnabled\":[false,false,false,false],\"modEngine\":-1,\"modExhaust\":-1,\"modWindows\":-1,\"tyreSmokeColor\":[255,255,255],\"modSuspension\":-1,\"modOrnaments\":-1,\"modXenon\":false,\"dirtLevel\":5.2246022224426,\"modTank\":-1,\"modSpoilers\":-1,\"modFrame\":-1,\"wheelColor\":156,\"modSpeakers\":-1,\"modEngineBlock\":-1,\"modLivery\":3,\"modTrimA\":-1,\"neonColor\":[255,0,255],\"plateIndex\":0,\"health\":1000,\"modAerials\":-1,\"modHorns\":-1,\"modFender\":-1,\"wheels\":7,\"modRearBumper\":-1,\"modHydrolic\":-1,\"modVanityPlate\":-1,\"windowTint\":-1,\"color2\":15,\"modHood\":-1,\"modStruts\":-1,\"color1\":15,\"modFrontBumper\":-1,\"modTrimB\":-1,\"modPlateHolder\":-1,\"pearlescentColor\":15,\"modGrille\":-1,\"extras\":[],\"modSeats\":-1,\"modAPlate\":-1,\"model\":1200120654,\"modTransmission\":-1,\"modRoof\":-1,\"modSteeringWheel\":-1,\"modShifterLeavers\":-1,\"modTurbo\":false,\"modDial\":-1,\"modAirFilter\":-1,\"modDashboard\":-1,\"modTrunk\":-1,\"modDoorSpeaker\":-1,\"modRightFender\":-1,\"modSmokeEnabled\":false}', 'car', '', 1),
  574. ('steam:110000108bc4ad2', 'XHGTA186', '{\"modTurbo\":false,\"modPlateHolder\":-1,\"modFrame\":-1,\"modSuspension\":-1,\"plateIndex\":3,\"modArchCover\":-1,\"modTrunk\":-1,\"neonEnabled\":[false,false,false,false],\"color1\":8,\"modRoof\":-1,\"modStruts\":-1,\"modLivery\":-1,\"modTrimB\":-1,\"modSeats\":-1,\"modSpeakers\":-1,\"modSmokeEnabled\":false,\"modAPlate\":-1,\"modEngineBlock\":-1,\"windowTint\":-1,\"modSpoilers\":-1,\"extras\":[],\"modTrimA\":-1,\"dirtLevel\":6.0000047683716,\"modDial\":-1,\"wheels\":7,\"pearlescentColor\":134,\"modOrnaments\":-1,\"modAerials\":-1,\"tyreSmokeColor\":[255,255,255],\"modHydrolic\":-1,\"modSideSkirt\":-1,\"modExhaust\":-1,\"modRearBumper\":-1,\"plate\":\"XHGTA186\",\"color2\":8,\"modHood\":-1,\"modArmor\":-1,\"modFrontWheels\":-1,\"wheelColor\":156,\"modFrontBumper\":-1,\"model\":2117711508,\"modTank\":-1,\"modBrakes\":-1,\"modShifterLeavers\":-1,\"modXenon\":false,\"modRightFender\":-1,\"modHorns\":-1,\"modTransmission\":-1,\"modSteeringWheel\":-1,\"modDashboard\":-1,\"modBackWheels\":-1,\"modGrille\":-1,\"modAirFilter\":-1,\"neonColor\":[255,0,255],\"modWindows\":-1,\"modEngine\":-1,\"modFender\":-1,\"health\":1000,\"modDoorSpeaker\":-1,\"modVanityPlate\":-1}', 'car', '', 1),
  575. ('steam:1100001122b9aec', 'XHMZP738', '{\"modAPlate\":-1,\"extras\":{\"4\":false,\"1\":true,\"2\":false,\"3\":false},\"plate\":\"XHMZP738\",\"modEngine\":-1,\"modFrontWheels\":-1,\"modTank\":-1,\"modShifterLeavers\":-1,\"modTrunk\":-1,\"color2\":0,\"modWindows\":-1,\"modDashboard\":-1,\"modFender\":-1,\"modRearBumper\":-1,\"neonEnabled\":[false,false,false,false],\"plateIndex\":4,\"dirtLevel\":9.0,\"modTurbo\":false,\"modGrille\":-1,\"modHydrolic\":-1,\"modHorns\":-1,\"modTrimA\":-1,\"modArchCover\":-1,\"modSmokeEnabled\":false,\"modOrnaments\":-1,\"modSpeakers\":-1,\"modSteeringWheel\":-1,\"tyreSmokeColor\":[255,255,255],\"modLivery\":0,\"modAirFilter\":-1,\"modArmor\":-1,\"modPlateHolder\":-1,\"modEngineBlock\":-1,\"neonColor\":[255,0,255],\"modFrontBumper\":-1,\"modRoof\":-1,\"modVanityPlate\":-1,\"modSuspension\":-1,\"modTrimB\":-1,\"health\":1000,\"modBackWheels\":-1,\"modDoorSpeaker\":-1,\"wheelColor\":156,\"model\":-1937164380,\"modHood\":-1,\"wheels\":3,\"modStruts\":-1,\"modBrakes\":-1,\"modSideSkirt\":-1,\"modSpoilers\":-1,\"modXenon\":false,\"modFrame\":-1,\"color1\":0,\"modDial\":-1,\"modTransmission\":-1,\"pearlescentColor\":156,\"windowTint\":-1,\"modAerials\":-1,\"modSeats\":-1,\"modRightFender\":-1,\"modExhaust\":-1}', 'car', 'police', 1),
  576. ('steam:110000103e390a2', 'ZAAZD653', '{\"modAPlate\":-1,\"extras\":{\"4\":false,\"5\":false,\"2\":true,\"3\":false,\"8\":false,\"9\":false,\"6\":false,\"7\":false,\"1\":false},\"plate\":\"ZAAZD653\",\"modDial\":-1,\"modFrontWheels\":-1,\"modTank\":-1,\"modShifterLeavers\":-1,\"modTrunk\":-1,\"color2\":0,\"modWindows\":-1,\"neonEnabled\":[false,false,false,false],\"modSeats\":-1,\"modRearBumper\":-1,\"model\":-1248899570,\"plateIndex\":4,\"dirtLevel\":7.0,\"modHydrolic\":-1,\"modGrille\":-1,\"modTrimB\":-1,\"modHorns\":-1,\"modBrakes\":-1,\"modArchCover\":-1,\"modSmokeEnabled\":false,\"modOrnaments\":-1,\"modSpeakers\":-1,\"modSteeringWheel\":-1,\"modFrame\":-1,\"modEngine\":-1,\"modLivery\":1,\"modDoorSpeaker\":-1,\"modPlateHolder\":-1,\"modStruts\":-1,\"neonColor\":[255,0,255],\"modEngineBlock\":-1,\"modRoof\":-1,\"modVanityPlate\":-1,\"modSuspension\":-1,\"tyreSmokeColor\":[255,255,255],\"modTransmission\":-1,\"modBackWheels\":-1,\"modFrontBumper\":-1,\"wheelColor\":156,\"modTrimA\":-1,\"modFender\":-1,\"wheels\":0,\"modAirFilter\":-1,\"modHood\":-1,\"modSideSkirt\":-1,\"modSpoilers\":-1,\"modDashboard\":-1,\"modTurbo\":false,\"color1\":0,\"modXenon\":false,\"modArmor\":-1,\"pearlescentColor\":156,\"windowTint\":-1,\"modAerials\":-1,\"health\":1000,\"modRightFender\":-1,\"modExhaust\":-1}', 'car', 'police', 1),
  577. ('steam:110000108eb0a3c', 'ZJIFC588', '{\"modEngineBlock\":-1,\"modTrimB\":-1,\"modSteeringWheel\":-1,\"modEngine\":3,\"pearlescentColor\":5,\"modDashboard\":-1,\"modHorns\":-1,\"modFrontWheels\":-1,\"tyreSmokeColor\":[255,255,255],\"windowTint\":-1,\"modFrame\":0,\"modSeats\":-1,\"modShifterLeavers\":-1,\"wheelColor\":88,\"modWindows\":-1,\"modLivery\":0,\"neonEnabled\":[false,false,false,false],\"modAirFilter\":-1,\"modBackWheels\":-1,\"modTrunk\":-1,\"modSideSkirt\":0,\"plateIndex\":0,\"modHydrolic\":-1,\"extras\":[],\"color2\":88,\"modExhaust\":-1,\"dirtLevel\":15.0,\"modAerials\":-1,\"modBrakes\":2,\"modArchCover\":-1,\"neonColor\":[255,0,255],\"modSuspension\":-1,\"modArmor\":4,\"modTank\":-1,\"modGrille\":0,\"modVanityPlate\":-1,\"modTransmission\":2,\"modRightFender\":-1,\"modFrontBumper\":1,\"modSmokeEnabled\":1,\"modTrimA\":-1,\"modRoof\":1,\"modFender\":-1,\"plate\":\"ZJIFC588\",\"modXenon\":1,\"modPlateHolder\":-1,\"modTurbo\":1,\"health\":983,\"model\":624514487,\"modHood\":0,\"modAPlate\":-1,\"modSpeakers\":-1,\"modStruts\":-1,\"color1\":12,\"modDoorSpeaker\":-1,\"modRearBumper\":-1,\"modSpoilers\":0,\"modOrnaments\":-1,\"wheels\":3,\"modDial\":-1}', 'car', '', 1);
  578.  
  579. -- --------------------------------------------------------
  580.  
  581. --
  582. -- Table structure for table `phone_app_chat`
  583. --
  584.  
  585. CREATE TABLE `phone_app_chat` (
  586. `id` int(11) NOT NULL,
  587. `channel` varchar(20) NOT NULL,
  588. `message` varchar(255) NOT NULL,
  589. `time` timestamp NOT NULL DEFAULT current_timestamp()
  590. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  591.  
  592. --
  593. -- Dumping data for table `phone_app_chat`
  594. --
  595.  
  596. INSERT INTO `phone_app_chat` (`id`, `channel`, `message`, `time`) VALUES
  597. (28, 'raceweekend', 'WHATS UP EVERYONE', '2019-08-23 17:48:03'),
  598. (29, 'weed', 'Looking for the location', '2019-08-23 20:11:50'),
  599. (30, 'mechanic', 'wed field is on the alamo sea', '2019-08-24 09:04:59'),
  600. (31, 'darkweb', 'The Weed Field is in Sandy Shores', '2019-08-24 09:44:59');
  601.  
  602. -- --------------------------------------------------------
  603.  
  604. --
  605. -- Table structure for table `phone_calls`
  606. --
  607.  
  608. CREATE TABLE `phone_calls` (
  609. `id` int(11) NOT NULL,
  610. `owner` varchar(10) NOT NULL COMMENT 'Num tel proprio',
  611. `num` varchar(10) NOT NULL COMMENT 'Num reférence du contact',
  612. `incoming` int(11) NOT NULL COMMENT 'Défini si on est à l''origine de l''appels',
  613. `time` timestamp NOT NULL DEFAULT current_timestamp(),
  614. `accepts` int(11) NOT NULL COMMENT 'Appels accepter ou pas'
  615. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  616.  
  617. --
  618. -- Dumping data for table `phone_calls`
  619. --
  620.  
  621. INSERT INTO `phone_calls` (`id`, `owner`, `num`, `incoming`, `time`, `accepts`) VALUES
  622. (122, '447', 'police', 1, '2019-08-23 17:52:25', 0),
  623. (123, '447', '827', 1, '2019-08-23 18:50:09', 1),
  624. (124, '827', '447', 0, '2019-08-23 18:50:09', 1),
  625. (125, '827', '447', 1, '2019-08-23 18:50:33', 1),
  626. (126, '447', '827', 0, '2019-08-23 18:50:33', 1),
  627. (127, '827', '447', 1, '2019-08-23 18:51:13', 1),
  628. (128, '447', '827', 0, '2019-08-23 18:51:13', 1),
  629. (129, '906', '827', 1, '2019-08-24 06:45:43', 1),
  630. (130, '827', '906', 0, '2019-08-24 06:45:43', 1),
  631. (131, '827', '447', 1, '2019-08-24 08:03:32', 0),
  632. (132, '447', '827', 0, '2019-08-24 08:03:32', 0),
  633. (133, '906', '2568589', 1, '2019-08-24 10:41:52', 0),
  634. (134, '906', '2568589', 1, '2019-08-24 10:43:17', 0),
  635. (135, '906', '2568589', 1, '2019-08-24 11:36:55', 0),
  636. (136, '367', '12', 1, '2019-08-24 11:50:09', 0);
  637.  
  638. -- --------------------------------------------------------
  639.  
  640. --
  641. -- Table structure for table `phone_messages`
  642. --
  643.  
  644. CREATE TABLE `phone_messages` (
  645. `id` int(11) NOT NULL,
  646. `transmitter` varchar(10) NOT NULL,
  647. `receiver` varchar(10) NOT NULL,
  648. `message` varchar(255) NOT NULL DEFAULT '0',
  649. `time` timestamp NOT NULL DEFAULT current_timestamp(),
  650. `isRead` int(11) NOT NULL DEFAULT 0,
  651. `owner` int(11) NOT NULL DEFAULT 0
  652. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  653.  
  654. --
  655. -- Dumping data for table `phone_messages`
  656. --
  657.  
  658. INSERT INTO `phone_messages` (`id`, `transmitter`, `receiver`, `message`, `time`, `isRead`, `owner`) VALUES
  659. (107, '906-8228', '827', 'did u get this??', '2019-08-24 06:44:37', 1, 1),
  660. (109, '827', '906', 'wedw', '2019-08-24 06:45:36', 1, 1),
  661. (111, '906', '827', 'How much stuff do u have in your truck?', '2019-08-24 08:20:29', 1, 1),
  662. (113, '827', '906', 'Erm like ingots and stuff? just repairing my truck i will come back', '2019-08-24 08:21:10', 1, 1),
  663. (115, '906', '827', 'ahh ok and yeah how much of that do u have?', '2019-08-24 08:21:25', 1, 1),
  664. (117, '827', '906', 'let me check', '2019-08-24 08:21:47', 1, 1),
  665. (119, '827', '906', '210 Iron 105 Gold 1 Diamon', '2019-08-24 08:22:32', 1, 1),
  666. (121, '827', '906', 'selling gold now', '2019-08-24 08:24:25', 1, 1),
  667. (123, '906', '827', 'ok im selling the copper right now then the server will restart', '2019-08-24 08:24:43', 1, 1),
  668. (125, '827', '906', 'okay', '2019-08-24 08:24:51', 1, 1),
  669. (127, '827', '906', 'You need help?? message me.', '2019-08-24 08:39:37', 1, 1),
  670. (129, '906', '827', 'yeah come to the diamond store they are robbing me lol', '2019-08-24 08:39:57', 1, 1),
  671. (131, '827', '906', 'coming', '2019-08-24 08:40:04', 1, 1),
  672. (133, '827', '906', 'we\'re about get robbed i can feel it lmao', '2019-08-24 08:52:25', 1, 1),
  673. (135, '906', '827', 'right lol', '2019-08-24 08:52:37', 1, 1),
  674. (138, '2568589', '906', 'hello', '2019-08-24 10:38:20', 1, 1),
  675. (140, '256-8589', '827', 'hey its devan', '2019-08-24 10:38:29', 1, 1),
  676. (141, '2568589', '906', 'it\'s tony', '2019-08-24 10:38:48', 1, 1),
  677. (147, '827', '256', 'you near davis', '2019-08-24 11:18:10', 1, 1),
  678. (149, '256', '827', 'GPS: -338.34786987305, -137.46240234375', '2019-08-24 11:18:22', 1, 1),
  679. (151, '256', '827', 'thats where i am at', '2019-08-24 11:18:27', 1, 1),
  680. (153, '827', '256', 'ight could you make a 911 call about a car crash or something?', '2019-08-24 11:18:45', 1, 1),
  681. (155, '256', '827', 'you could? it will route the police to the GPS location', '2019-08-24 11:19:12', 1, 1),
  682. (157, '827', '256', 'I\'m not trying to get the police near me', '2019-08-24 11:19:35', 1, 1),
  683. (159, '256', '827', 'oh are you selling? and need to have a destraction?', '2019-08-24 11:20:30', 1, 1),
  684. (161, '827', '256', 'nvm I\'m good', '2019-08-24 11:21:24', 1, 1),
  685. (163, '256', '827', 'okay', '2019-08-24 11:21:33', 1, 1),
  686. (168, 'police', '181', 'De #822 : test 253.62113952637, -1041.5946044922', '2019-08-24 12:26:36', 1, 0),
  687. (167, 'police', '822', 'De #822 : test 253.62113952637, -1041.5946044922', '2019-08-24 12:26:36', 1, 0),
  688. (166, 'police', '531', 'De #822 : test 253.62113952637, -1041.5946044922', '2019-08-24 12:26:36', 1, 0);
  689.  
  690. -- --------------------------------------------------------
  691.  
  692. --
  693. -- Table structure for table `phone_users_contacts`
  694. --
  695.  
  696. CREATE TABLE `phone_users_contacts` (
  697. `id` int(11) NOT NULL,
  698. `identifier` varchar(60) CHARACTER SET utf8mb4 DEFAULT NULL,
  699. `number` varchar(10) CHARACTER SET utf8mb4 DEFAULT NULL,
  700. `display` varchar(64) CHARACTER SET utf8mb4 NOT NULL DEFAULT '-1'
  701. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  702.  
  703. --
  704. -- Dumping data for table `phone_users_contacts`
  705. --
  706.  
  707. INSERT INTO `phone_users_contacts` (`id`, `identifier`, `number`, `display`) VALUES
  708. (7, 'steam:110000108eb0a3c', '906-8228', 'Tony'),
  709. (8, 'steam:1100001126ba2a9', '827', 'Devin '),
  710. (9, 'steam:1100001126ba2a9', '2568589', 'Johnny Boger'),
  711. (10, 'steam:110000108eb0a3c', '256-8589', 'Jonny');
  712.  
  713. -- --------------------------------------------------------
  714.  
  715. --
  716. -- Table structure for table `playerstattoos`
  717. --
  718.  
  719. CREATE TABLE `playerstattoos` (
  720. `id` int(11) NOT NULL,
  721. `identifier` varchar(255) NOT NULL,
  722. `tattoos` varchar(255) NOT NULL
  723. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  724.  
  725. --
  726. -- Dumping data for table `playerstattoos`
  727. --
  728.  
  729. INSERT INTO `playerstattoos` (`id`, `identifier`, `tattoos`) VALUES
  730. (5, 'steam:110000108eb0a3c', '[]'),
  731. (6, 'steam:110000108bc4ad2', '[]'),
  732. (7, 'steam:110000103e390a2', '[]'),
  733. (8, 'steam:11000011359922c', '[]'),
  734. (9, 'steam:1100001126ba2a9', '[]'),
  735. (10, 'steam:1100001151e08e5', '[]'),
  736. (11, 'Char1:1100001122b9aec', '[]'),
  737. (12, 'steam:11000011867fe42', '[]'),
  738. (14, 'steam:110000105890329', '[]'),
  739. (15, 'steam:11000013d023d27', '[]'),
  740. (16, 'steam:1100001122b9aec', '[]');
  741.  
  742. -- --------------------------------------------------------
  743.  
  744. --
  745. -- Table structure for table `properties`
  746. --
  747.  
  748. CREATE TABLE `properties` (
  749. `id` int(11) NOT NULL,
  750. `name` varchar(255) DEFAULT NULL,
  751. `label` varchar(255) DEFAULT NULL,
  752. `entering` varchar(255) DEFAULT NULL,
  753. `exit` varchar(255) DEFAULT NULL,
  754. `inside` varchar(255) DEFAULT NULL,
  755. `outside` varchar(255) DEFAULT NULL,
  756. `ipls` varchar(255) DEFAULT '[]',
  757. `gateway` varchar(255) DEFAULT NULL,
  758. `is_single` int(11) DEFAULT NULL,
  759. `is_room` int(11) DEFAULT NULL,
  760. `is_gateway` int(11) DEFAULT NULL,
  761. `room_menu` varchar(255) DEFAULT NULL,
  762. `price` int(11) NOT NULL
  763. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  764.  
  765. --
  766. -- Dumping data for table `properties`
  767. --
  768.  
  769. INSERT INTO `properties` (`id`, `name`, `label`, `entering`, `exit`, `inside`, `outside`, `ipls`, `gateway`, `is_single`, `is_room`, `is_gateway`, `room_menu`, `price`) VALUES
  770. (1, 'WhispymoundDrive', '2677 Whispymound Drive', '{\"y\":564.89,\"z\":182.959,\"x\":119.384}', '{\"x\":117.347,\"y\":559.506,\"z\":183.304}', '{\"y\":557.032,\"z\":183.301,\"x\":118.037}', '{\"y\":567.798,\"z\":182.131,\"x\":119.249}', '[]', NULL, 1, 1, 0, '{\"x\":118.748,\"y\":566.573,\"z\":175.697}', 1500000),
  771. (2, 'NorthConkerAvenue2045', '2045 North Conker Avenue', '{\"x\":372.796,\"y\":428.327,\"z\":144.685}', '{\"x\":373.548,\"y\":422.982,\"z\":144.907},', '{\"y\":420.075,\"z\":145.904,\"x\":372.161}', '{\"x\":372.454,\"y\":432.886,\"z\":143.443}', '[]', NULL, 1, 1, 0, '{\"x\":377.349,\"y\":429.422,\"z\":137.3}', 1500000),
  772. (3, 'RichardMajesticApt2', 'Richard Majestic, Apt 2', '{\"y\":-379.165,\"z\":37.961,\"x\":-936.363}', '{\"y\":-365.476,\"z\":113.274,\"x\":-913.097}', '{\"y\":-367.637,\"z\":113.274,\"x\":-918.022}', '{\"y\":-382.023,\"z\":37.961,\"x\":-943.626}', '[]', NULL, 1, 1, 0, '{\"x\":-927.554,\"y\":-377.744,\"z\":112.674}', 1700000),
  773. (4, 'NorthConkerAvenue2044', '2044 North Conker Avenue', '{\"y\":440.8,\"z\":146.702,\"x\":346.964}', '{\"y\":437.456,\"z\":148.394,\"x\":341.683}', '{\"y\":435.626,\"z\":148.394,\"x\":339.595}', '{\"x\":350.535,\"y\":443.329,\"z\":145.764}', '[]', NULL, 1, 1, 0, '{\"x\":337.726,\"y\":436.985,\"z\":140.77}', 1500000),
  774. (5, 'WildOatsDrive', '3655 Wild Oats Drive', '{\"y\":502.696,\"z\":136.421,\"x\":-176.003}', '{\"y\":497.817,\"z\":136.653,\"x\":-174.349}', '{\"y\":495.069,\"z\":136.666,\"x\":-173.331}', '{\"y\":506.412,\"z\":135.0664,\"x\":-177.927}', '[]', NULL, 1, 1, 0, '{\"x\":-174.725,\"y\":493.095,\"z\":129.043}', 1500000),
  775. (6, 'HillcrestAvenue2862', '2862 Hillcrest Avenue', '{\"y\":596.58,\"z\":142.641,\"x\":-686.554}', '{\"y\":591.988,\"z\":144.392,\"x\":-681.728}', '{\"y\":590.608,\"z\":144.392,\"x\":-680.124}', '{\"y\":599.019,\"z\":142.059,\"x\":-689.492}', '[]', NULL, 1, 1, 0, '{\"x\":-680.46,\"y\":588.6,\"z\":136.769}', 1500000),
  776. (7, 'LowEndApartment', 'Appartement de base', '{\"y\":-1078.735,\"z\":28.4031,\"x\":292.528}', '{\"y\":-1007.152,\"z\":-102.002,\"x\":265.845}', '{\"y\":-1002.802,\"z\":-100.008,\"x\":265.307}', '{\"y\":-1078.669,\"z\":28.401,\"x\":296.738}', '[]', NULL, 1, 1, 0, '{\"x\":265.916,\"y\":-999.38,\"z\":-100.008}', 562500),
  777. (8, 'MadWayneThunder', '2113 Mad Wayne Thunder', '{\"y\":454.955,\"z\":96.462,\"x\":-1294.433}', '{\"x\":-1289.917,\"y\":449.541,\"z\":96.902}', '{\"y\":446.322,\"z\":96.899,\"x\":-1289.642}', '{\"y\":455.453,\"z\":96.517,\"x\":-1298.851}', '[]', NULL, 1, 1, 0, '{\"x\":-1287.306,\"y\":455.901,\"z\":89.294}', 1500000),
  778. (9, 'HillcrestAvenue2874', '2874 Hillcrest Avenue', '{\"x\":-853.346,\"y\":696.678,\"z\":147.782}', '{\"y\":690.875,\"z\":151.86,\"x\":-859.961}', '{\"y\":688.361,\"z\":151.857,\"x\":-859.395}', '{\"y\":701.628,\"z\":147.773,\"x\":-855.007}', '[]', NULL, 1, 1, 0, '{\"x\":-858.543,\"y\":697.514,\"z\":144.253}', 1500000),
  779. (10, 'HillcrestAvenue2868', '2868 Hillcrest Avenue', '{\"y\":620.494,\"z\":141.588,\"x\":-752.82}', '{\"y\":618.62,\"z\":143.153,\"x\":-759.317}', '{\"y\":617.629,\"z\":143.153,\"x\":-760.789}', '{\"y\":621.281,\"z\":141.254,\"x\":-750.919}', '[]', NULL, 1, 1, 0, '{\"x\":-762.504,\"y\":618.992,\"z\":135.53}', 1500000),
  780. (11, 'TinselTowersApt12', 'Tinsel Towers, Apt 42', '{\"y\":37.025,\"z\":42.58,\"x\":-618.299}', '{\"y\":58.898,\"z\":97.2,\"x\":-603.301}', '{\"y\":58.941,\"z\":97.2,\"x\":-608.741}', '{\"y\":30.603,\"z\":42.524,\"x\":-620.017}', '[]', NULL, 1, 1, 0, '{\"x\":-622.173,\"y\":54.585,\"z\":96.599}', 1700000),
  781. (12, 'MiltonDrive', 'Milton Drive', '{\"x\":-775.17,\"y\":312.01,\"z\":84.658}', NULL, NULL, '{\"x\":-775.346,\"y\":306.776,\"z\":84.7}', '[]', NULL, 0, 0, 1, NULL, 0),
  782. (13, 'Modern1Apartment', 'Appartement Moderne 1', NULL, '{\"x\":-784.194,\"y\":323.636,\"z\":210.997}', '{\"x\":-779.751,\"y\":323.385,\"z\":210.997}', NULL, '[\"apa_v_mp_h_01_a\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-766.661,\"y\":327.672,\"z\":210.396}', 1300000),
  783. (14, 'Modern2Apartment', 'Appartement Moderne 2', NULL, '{\"x\":-786.8663,\"y\":315.764,\"z\":186.913}', '{\"x\":-781.808,\"y\":315.866,\"z\":186.913}', NULL, '[\"apa_v_mp_h_01_c\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-795.735,\"y\":326.757,\"z\":186.313}', 1300000),
  784. (15, 'Modern3Apartment', 'Appartement Moderne 3', NULL, '{\"x\":-774.012,\"y\":342.042,\"z\":195.686}', '{\"x\":-779.057,\"y\":342.063,\"z\":195.686}', NULL, '[\"apa_v_mp_h_01_b\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-765.386,\"y\":330.782,\"z\":195.08}', 1300000),
  785. (16, 'Mody1Apartment', 'Appartement Mode 1', NULL, '{\"x\":-784.194,\"y\":323.636,\"z\":210.997}', '{\"x\":-779.751,\"y\":323.385,\"z\":210.997}', NULL, '[\"apa_v_mp_h_02_a\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-766.615,\"y\":327.878,\"z\":210.396}', 1300000),
  786. (17, 'Mody2Apartment', 'Appartement Mode 2', NULL, '{\"x\":-786.8663,\"y\":315.764,\"z\":186.913}', '{\"x\":-781.808,\"y\":315.866,\"z\":186.913}', NULL, '[\"apa_v_mp_h_02_c\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-795.297,\"y\":327.092,\"z\":186.313}', 1300000),
  787. (18, 'Mody3Apartment', 'Appartement Mode 3', NULL, '{\"x\":-774.012,\"y\":342.042,\"z\":195.686}', '{\"x\":-779.057,\"y\":342.063,\"z\":195.686}', NULL, '[\"apa_v_mp_h_02_b\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-765.303,\"y\":330.932,\"z\":195.085}', 1300000),
  788. (19, 'Vibrant1Apartment', 'Appartement Vibrant 1', NULL, '{\"x\":-784.194,\"y\":323.636,\"z\":210.997}', '{\"x\":-779.751,\"y\":323.385,\"z\":210.997}', NULL, '[\"apa_v_mp_h_03_a\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-765.885,\"y\":327.641,\"z\":210.396}', 1300000),
  789. (20, 'Vibrant2Apartment', 'Appartement Vibrant 2', NULL, '{\"x\":-786.8663,\"y\":315.764,\"z\":186.913}', '{\"x\":-781.808,\"y\":315.866,\"z\":186.913}', NULL, '[\"apa_v_mp_h_03_c\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-795.607,\"y\":327.344,\"z\":186.313}', 1300000),
  790. (21, 'Vibrant3Apartment', 'Appartement Vibrant 3', NULL, '{\"x\":-774.012,\"y\":342.042,\"z\":195.686}', '{\"x\":-779.057,\"y\":342.063,\"z\":195.686}', NULL, '[\"apa_v_mp_h_03_b\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-765.525,\"y\":330.851,\"z\":195.085}', 1300000),
  791. (22, 'Sharp1Apartment', 'Appartement Persan 1', NULL, '{\"x\":-784.194,\"y\":323.636,\"z\":210.997}', '{\"x\":-779.751,\"y\":323.385,\"z\":210.997}', NULL, '[\"apa_v_mp_h_04_a\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-766.527,\"y\":327.89,\"z\":210.396}', 1300000),
  792. (23, 'Sharp2Apartment', 'Appartement Persan 2', NULL, '{\"x\":-786.8663,\"y\":315.764,\"z\":186.913}', '{\"x\":-781.808,\"y\":315.866,\"z\":186.913}', NULL, '[\"apa_v_mp_h_04_c\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-795.642,\"y\":326.497,\"z\":186.313}', 1300000),
  793. (24, 'Sharp3Apartment', 'Appartement Persan 3', NULL, '{\"x\":-774.012,\"y\":342.042,\"z\":195.686}', '{\"x\":-779.057,\"y\":342.063,\"z\":195.686}', NULL, '[\"apa_v_mp_h_04_b\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-765.503,\"y\":331.318,\"z\":195.085}', 1300000),
  794. (25, 'Monochrome1Apartment', 'Appartement Monochrome 1', NULL, '{\"x\":-784.194,\"y\":323.636,\"z\":210.997}', '{\"x\":-779.751,\"y\":323.385,\"z\":210.997}', NULL, '[\"apa_v_mp_h_05_a\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-766.289,\"y\":328.086,\"z\":210.396}', 1300000),
  795. (26, 'Monochrome2Apartment', 'Appartement Monochrome 2', NULL, '{\"x\":-786.8663,\"y\":315.764,\"z\":186.913}', '{\"x\":-781.808,\"y\":315.866,\"z\":186.913}', NULL, '[\"apa_v_mp_h_05_c\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-795.692,\"y\":326.762,\"z\":186.313}', 1300000),
  796. (27, 'Monochrome3Apartment', 'Appartement Monochrome 3', NULL, '{\"x\":-774.012,\"y\":342.042,\"z\":195.686}', '{\"x\":-779.057,\"y\":342.063,\"z\":195.686}', NULL, '[\"apa_v_mp_h_05_b\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-765.094,\"y\":330.976,\"z\":195.085}', 1300000),
  797. (28, 'Seductive1Apartment', 'Appartement Séduisant 1', NULL, '{\"x\":-784.194,\"y\":323.636,\"z\":210.997}', '{\"x\":-779.751,\"y\":323.385,\"z\":210.997}', NULL, '[\"apa_v_mp_h_06_a\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-766.263,\"y\":328.104,\"z\":210.396}', 1300000),
  798. (29, 'Seductive2Apartment', 'Appartement Séduisant 2', NULL, '{\"x\":-786.8663,\"y\":315.764,\"z\":186.913}', '{\"x\":-781.808,\"y\":315.866,\"z\":186.913}', NULL, '[\"apa_v_mp_h_06_c\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-795.655,\"y\":326.611,\"z\":186.313}', 1300000),
  799. (30, 'Seductive3Apartment', 'Appartement Séduisant 3', NULL, '{\"x\":-774.012,\"y\":342.042,\"z\":195.686}', '{\"x\":-779.057,\"y\":342.063,\"z\":195.686}', NULL, '[\"apa_v_mp_h_06_b\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-765.3,\"y\":331.414,\"z\":195.085}', 1300000),
  800. (31, 'Regal1Apartment', 'Appartement Régal 1', NULL, '{\"x\":-784.194,\"y\":323.636,\"z\":210.997}', '{\"x\":-779.751,\"y\":323.385,\"z\":210.997}', NULL, '[\"apa_v_mp_h_07_a\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-765.956,\"y\":328.257,\"z\":210.396}', 1300000),
  801. (32, 'Regal2Apartment', 'Appartement Régal 2', NULL, '{\"x\":-786.8663,\"y\":315.764,\"z\":186.913}', '{\"x\":-781.808,\"y\":315.866,\"z\":186.913}', NULL, '[\"apa_v_mp_h_07_c\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-795.545,\"y\":326.659,\"z\":186.313}', 1300000),
  802. (33, 'Regal3Apartment', 'Appartement Régal 3', NULL, '{\"x\":-774.012,\"y\":342.042,\"z\":195.686}', '{\"x\":-779.057,\"y\":342.063,\"z\":195.686}', NULL, '[\"apa_v_mp_h_07_b\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-765.087,\"y\":331.429,\"z\":195.123}', 1300000),
  803. (34, 'Aqua1Apartment', 'Appartement Aqua 1', NULL, '{\"x\":-784.194,\"y\":323.636,\"z\":210.997}', '{\"x\":-779.751,\"y\":323.385,\"z\":210.997}', NULL, '[\"apa_v_mp_h_08_a\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-766.187,\"y\":328.47,\"z\":210.396}', 1300000),
  804. (35, 'Aqua2Apartment', 'Appartement Aqua 2', NULL, '{\"x\":-786.8663,\"y\":315.764,\"z\":186.913}', '{\"x\":-781.808,\"y\":315.866,\"z\":186.913}', NULL, '[\"apa_v_mp_h_08_c\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-795.658,\"y\":326.563,\"z\":186.313}', 1300000),
  805. (36, 'Aqua3Apartment', 'Appartement Aqua 3', NULL, '{\"x\":-774.012,\"y\":342.042,\"z\":195.686}', '{\"x\":-779.057,\"y\":342.063,\"z\":195.686}', NULL, '[\"apa_v_mp_h_08_b\"]', 'MiltonDrive', 0, 1, 0, '{\"x\":-765.287,\"y\":331.084,\"z\":195.086}', 1300000),
  806. (37, 'IntegrityWay', '4 Integrity Way', '{\"x\":-47.804,\"y\":-585.867,\"z\":36.956}', NULL, NULL, '{\"x\":-54.178,\"y\":-583.762,\"z\":35.798}', '[]', NULL, 0, 0, 1, NULL, 0),
  807. (38, 'IntegrityWay28', '4 Integrity Way - Apt 28', NULL, '{\"x\":-31.409,\"y\":-594.927,\"z\":79.03}', '{\"x\":-26.098,\"y\":-596.909,\"z\":79.03}', NULL, '[]', 'IntegrityWay', 0, 1, 0, '{\"x\":-11.923,\"y\":-597.083,\"z\":78.43}', 1700000),
  808. (39, 'IntegrityWay30', '4 Integrity Way - Apt 30', NULL, '{\"x\":-17.702,\"y\":-588.524,\"z\":89.114}', '{\"x\":-16.21,\"y\":-582.569,\"z\":89.114}', NULL, '[]', 'IntegrityWay', 0, 1, 0, '{\"x\":-26.327,\"y\":-588.384,\"z\":89.123}', 1700000),
  809. (40, 'DellPerroHeights', 'Dell Perro Heights', '{\"x\":-1447.06,\"y\":-538.28,\"z\":33.74}', NULL, NULL, '{\"x\":-1440.022,\"y\":-548.696,\"z\":33.74}', '[]', NULL, 0, 0, 1, NULL, 0),
  810. (41, 'DellPerroHeightst4', 'Dell Perro Heights - Apt 28', NULL, '{\"x\":-1452.125,\"y\":-540.591,\"z\":73.044}', '{\"x\":-1455.435,\"y\":-535.79,\"z\":73.044}', NULL, '[]', 'DellPerroHeights', 0, 1, 0, '{\"x\":-1467.058,\"y\":-527.571,\"z\":72.443}', 1700000),
  811. (42, 'DellPerroHeightst7', 'Dell Perro Heights - Apt 30', NULL, '{\"x\":-1451.562,\"y\":-523.535,\"z\":55.928}', '{\"x\":-1456.02,\"y\":-519.209,\"z\":55.929}', NULL, '[]', 'DellPerroHeights', 0, 1, 0, '{\"x\":-1457.026,\"y\":-530.219,\"z\":55.937}', 1700000),
  812. (100, 'MedEndApartment1', 'Medium Apartment 1', '{\"y\":3107.56,\"z\":41.49,\"x\":240.6}', '{\"y\":-1012.27,\"z\":-100.2,\"x\":346.49}', '{\"y\":-1000.09,\"z\":-100.2,\"x\":347.06}', '{\"y\":3100.77,\"z\":41.49,\"x\":240.21}', '[]', NULL, 1, 1, 0, '{\"x\":345.3,\"y\":-995.24,\"z\":-100.2}', 500000),
  813. (101, 'MedEndApartment2', 'Medium Apartment 2', '{\"y\":3169.1,\"z\":41.81,\"x\":246.7}', '{\"y\":-1012.27,\"z\":-100.2,\"x\":346.49}', '{\"y\":-1000.09,\"z\":-100.2,\"x\":347.06}', '{\"y\":3163.97,\"z\":41.82,\"x\":245.83}', '[]', NULL, 1, 1, 0, '{\"x\":345.3,\"y\":-995.24,\"z\":-100.2}', 500000),
  814. (102, 'MedEndApartment3', 'Medium Apartment 3', '{\"y\":2667.22,\"z\":39.06,\"x\":980.38}', '{\"y\":-1012.27,\"z\":-100.2,\"x\":346.49}', '{\"y\":-1000.09,\"z\":-100.2,\"x\":347.06}', '{\"y\":2668.77,\"z\":39.06,\"x\":986.38}', '[]', NULL, 1, 1, 0, '{\"x\":345.3,\"y\":-995.24,\"z\":-100.2}', 500000),
  815. (103, 'MedEndApartment4', 'Medium Apartment 4', '{\"y\":3031.08,\"z\":42.89,\"x\":195.85}', '{\"y\":-1012.27,\"z\":-100.2,\"x\":346.49}', '{\"y\":-1000.09,\"z\":-100.2,\"x\":347.06}', '{\"y\":3031.39,\"z\":42.27,\"x\":200.68}', '[]', NULL, 1, 1, 0, '{\"x\":345.3,\"y\":-995.24,\"z\":-100.2}', 500000),
  816. (104, 'MedEndApartment5', 'Medium Apartment 5', '{\"y\":4642.17,\"z\":42.88,\"x\":1724.43}', '{\"y\":-1012.27,\"z\":-100.2,\"x\":346.49}', '{\"y\":-1000.09,\"z\":-100.2,\"x\":347.06}', '{\"y\":4637.34,\"z\":42.31,\"x\":1724.27}', '[]', NULL, 1, 1, 0, '{\"x\":345.3,\"y\":-995.24,\"z\":-100.2}', 500000),
  817. (105, 'MedEndApartment6', 'Medium Apartment 6', '{\"y\":4739.73,\"z\":40.99,\"x\":1664.98}', '{\"y\":-1012.27,\"z\":-100.2,\"x\":346.49}', '{\"y\":-1000.09,\"z\":-100.2,\"x\":347.06}', '{\"y\":4740.93,\"z\":41.08,\"x\":1670.92}', '[]', NULL, 1, 1, 0, '{\"x\":345.3,\"y\":-995.24,\"z\":-100.2}', 500000),
  818. (106, 'MedEndApartment7', 'Medium Apartment 7', '{\"y\":6577.19,\"z\":31.74,\"x\":12.57}', '{\"y\":-1012.27,\"z\":-100.2,\"x\":346.49}', '{\"y\":-1000.09,\"z\":-100.2,\"x\":347.06}', '{\"y\":6572.61,\"z\":31.72,\"x\":16.93}', '[]', NULL, 1, 1, 0, '{\"x\":345.3,\"y\":-995.24,\"z\":-100.2}', 500000),
  819. (107, 'MedEndApartment8', 'Medium Apartment 8', '{\"y\":6190.84,\"z\":30.73,\"x\":-374.31}', '{\"y\":-1012.27,\"z\":-100.2,\"x\":346.49}', '{\"y\":-1000.09,\"z\":-100.2,\"x\":347.06}', '{\"y\":6186.58,\"z\":30.52,\"x\":-372.65}', '[]', NULL, 1, 1, 0, '{\"x\":345.3,\"y\":-995.24,\"z\":-100.2}', 500000),
  820. (108, 'MedEndApartment9', 'Medium Apartment 9', '{\"y\":6597.56,\"z\":30.86,\"x\":-27.06}', '{\"y\":-1012.27,\"z\":-100.2,\"x\":346.49}', '{\"y\":-1000.09,\"z\":-100.2,\"x\":347.06}', '{\"y\":6601.55,\"z\":30.44,\"x\":-30.55}', '[]', NULL, 1, 1, 0, '{\"x\":345.3,\"y\":-995.24,\"z\":-100.2}', 500000),
  821. (109, 'MedEndApartment10', 'Medium Apartment 10', '{\"y\":6340.1,\"z\":28.84,\"x\":-367.33}', '{\"y\":-1012.27,\"z\":-100.2,\"x\":346.49}', '{\"y\":-1000.09,\"z\":-100.2,\"x\":347.06}', '{\"y\":6336.97,\"z\":28.84,\"x\":-371.3}', '[]', NULL, 1, 1, 0, '{\"x\":345.3,\"y\":-995.24,\"z\":-100.2}', 500000);
  822.  
  823. -- --------------------------------------------------------
  824.  
  825. --
  826. -- Table structure for table `rented_vehicles`
  827. --
  828.  
  829. CREATE TABLE `rented_vehicles` (
  830. `vehicle` varchar(60) NOT NULL,
  831. `plate` varchar(12) NOT NULL,
  832. `player_name` varchar(255) NOT NULL,
  833. `base_price` int(11) NOT NULL,
  834. `rent_price` int(11) NOT NULL,
  835. `owner` varchar(22) NOT NULL
  836. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  837.  
  838. -- --------------------------------------------------------
  839.  
  840. --
  841. -- Table structure for table `shops`
  842. --
  843.  
  844. CREATE TABLE `shops` (
  845. `id` int(11) NOT NULL,
  846. `store` varchar(100) NOT NULL,
  847. `item` varchar(100) NOT NULL,
  848. `price` int(11) NOT NULL
  849. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  850.  
  851. --
  852. -- Dumping data for table `shops`
  853. --
  854.  
  855. INSERT INTO `shops` (`id`, `store`, `item`, `price`) VALUES
  856. (1, 'TwentyFourSeven', 'bread', 30),
  857. (2, 'TwentyFourSeven', 'water', 15),
  858. (3, 'RobsLiquor', 'bread', 30),
  859. (4, 'RobsLiquor', 'water', 15),
  860. (5, 'LTDgasoline', 'bread', 30),
  861. (6, 'LTDgasoline', 'water', 15),
  862. (7, 'TwentyFourSeven', 'chocolate', 10),
  863. (8, 'RobsLiquor', 'chocolate', 10),
  864. (9, 'LTDgasoline', 'chocolate', 10),
  865. (10, 'TwentyFourSeven', 'sandwich', 10),
  866. (11, 'RobsLiquor', 'sandwich', 10),
  867. (12, 'LTDgasoline', 'sandwich', 10),
  868. (13, 'TwentyFourSeven', 'hamburger', 15),
  869. (14, 'RobsLiquor', 'hamburger', 15),
  870. (15, 'LTDgasoline', 'hamburger', 15),
  871. (16, 'TwentyFourSeven', 'cupcake', 10),
  872. (17, 'RobsLiquor', 'cupcake', 10),
  873. (18, 'LTDgasoline', 'cupcake', 10),
  874. (19, 'TwentyFourSeven', 'chips', 15),
  875. (20, 'RobsLiquor', 'chips', 15),
  876. (21, 'LTDgasoline', 'chips', 15),
  877. (22, 'TwentyFourSeven', 'cocacola', 15),
  878. (23, 'RobsLiquor', 'cocacola', 15),
  879. (24, 'LTDgasoline', 'cocacola', 15),
  880. (25, 'TwentyFourSeven', 'icetea', 10),
  881. (26, 'RobsLiquor', 'icetea', 10),
  882. (27, 'LTDgasoline', 'icetea', 10),
  883. (28, 'TwentyFourSeven', 'coffe', 10),
  884. (29, 'RobsLiquor', 'coffe', 10),
  885. (30, 'LTDgasoline', 'coffe', 10),
  886. (31, 'TwentyFourSeven', 'milk', 15),
  887. (32, 'RobsLiquor', 'milk', 15),
  888. (33, 'LTDgasoline', 'milk', 15),
  889. (34, 'RobsLiquor', 'cigarett', 15),
  890. (35, 'RobsLiquor', 'lighter', 10),
  891. (36, 'LTDgasoline', 'cigarett', 15),
  892. (37, 'LTDgasoline', 'lighter', 10),
  893. (38, 'TwentyFourSeven', 'cigarett', 15),
  894. (39, 'TwentyFourSeven', 'lighter', 10),
  895. (46, 'Bar', 'beer', 30),
  896. (47, 'Bar', 'wine', 25),
  897. (48, 'Bar', 'vodka', 60),
  898. (49, 'Bar', 'tequila', 40),
  899. (50, 'Bar', 'whisky', 50),
  900. (51, 'Bar', 'cigarett', 30),
  901. (52, 'Bar', 'lighter', 25),
  902. (53, 'Disco', 'beer', 30),
  903. (54, 'Disco', 'wine', 25),
  904. (55, 'Disco', 'vodka', 60),
  905. (56, 'Disco', 'tequila', 40),
  906. (57, 'Disco', 'whisky', 50),
  907. (58, 'Disco', 'gintonic', 70),
  908. (59, 'Disco', 'absinthe', 100),
  909. (60, 'Disco', 'champagne', 150),
  910. (61, 'Disco', 'cigarett', 30),
  911. (62, 'Disco', 'lighter', 25),
  912. (63, 'TwentyFourSeven', 'lockpick', 10000),
  913. (64, 'LTDgasoline', 'lockpick', 10000),
  914. (65, 'RobsLiquor', 'lockpick', 10000),
  915. (66, 'TwentyFourSeven', 'scratchoff', 1);
  916.  
  917. -- --------------------------------------------------------
  918.  
  919. --
  920. -- Table structure for table `society_moneywash`
  921. --
  922.  
  923. CREATE TABLE `society_moneywash` (
  924. `id` int(11) NOT NULL,
  925. `identifier` varchar(60) NOT NULL,
  926. `society` varchar(60) NOT NULL,
  927. `amount` int(11) NOT NULL
  928. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  929.  
  930. -- --------------------------------------------------------
  931.  
  932. --
  933. -- Table structure for table `trunk_inventory`
  934. --
  935.  
  936. CREATE TABLE `trunk_inventory` (
  937. `id` int(11) NOT NULL,
  938. `plate` varchar(8) NOT NULL,
  939. `data` text NOT NULL,
  940. `owned` int(11) NOT NULL
  941. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  942.  
  943. --
  944. -- Dumping data for table `trunk_inventory`
  945. --
  946.  
  947. INSERT INTO `trunk_inventory` (`id`, `plate`, `data`, `owned`) VALUES
  948. (7, 'PFFXK231', '{\"weapons\":[{\"name\":\"WEAPON_MICROSMG\",\"label\":\"Micro SMG\",\"ammo\":1000},{\"name\":\"WEAPON_PISTOL\",\"label\":\"Pistol\",\"ammo\":1000}]}', 1),
  949. (8, 'XHGTA186', '{\"weapons\":[{\"name\":\"WEAPON_PUMPSHOTGUN\",\"label\":\"Pump shotgun\",\"ammo\":20}]}', 1),
  950. (9, 'ADZGF405', '{}', 1),
  951. (13, 'ZJIFC588', '{\"coffre\":[{\"name\":\"marijuana\",\"count\":6}]}', 1),
  952. (20, 'WHLCN636', '{}', 1),
  953. (21, 'IQOQE723', '{}', 1);
  954.  
  955. -- --------------------------------------------------------
  956.  
  957. --
  958. -- Table structure for table `twitter_accounts`
  959. --
  960.  
  961. CREATE TABLE `twitter_accounts` (
  962. `id` int(11) NOT NULL,
  963. `username` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '0',
  964. `password` varchar(50) COLLATE utf8mb4_bin NOT NULL DEFAULT '0',
  965. `avatar_url` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL
  966. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
  967.  
  968. --
  969. -- Dumping data for table `twitter_accounts`
  970. --
  971.  
  972. INSERT INTO `twitter_accounts` (`id`, `username`, `password`, `avatar_url`) VALUES
  973. (39, 'Harris_', 'James140', 'https://i.imgur.com/BPIeIOW.png'),
  974. (40, 'Devanl', 'jackass508', NULL),
  975. (41, 'jinjav6', 'reeree', 'https://i.imgur.com/BycSmuf'),
  976. (42, 'Anthony Price', '1234567', NULL),
  977. (43, 'Jacob', 'kopsop2006', NULL);
  978.  
  979. -- --------------------------------------------------------
  980.  
  981. --
  982. -- Table structure for table `twitter_likes`
  983. --
  984.  
  985. CREATE TABLE `twitter_likes` (
  986. `id` int(11) NOT NULL,
  987. `authorId` int(11) DEFAULT NULL,
  988. `tweetId` int(11) DEFAULT NULL
  989. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
  990.  
  991. --
  992. -- Dumping data for table `twitter_likes`
  993. --
  994.  
  995. INSERT INTO `twitter_likes` (`id`, `authorId`, `tweetId`) VALUES
  996. (138, 39, 171),
  997. (139, 41, 180),
  998. (140, 41, 179);
  999.  
  1000. -- --------------------------------------------------------
  1001.  
  1002. --
  1003. -- Table structure for table `twitter_tweets`
  1004. --
  1005.  
  1006. CREATE TABLE `twitter_tweets` (
  1007. `id` int(11) NOT NULL,
  1008. `authorId` int(11) NOT NULL,
  1009. `realUser` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  1010. `message` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL,
  1011. `time` timestamp NOT NULL DEFAULT current_timestamp(),
  1012. `likes` int(11) NOT NULL DEFAULT 0
  1013. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  1014.  
  1015. --
  1016. -- Dumping data for table `twitter_tweets`
  1017. --
  1018.  
  1019. INSERT INTO `twitter_tweets` (`id`, `authorId`, `realUser`, `message`, `time`, `likes`) VALUES
  1020. (171, 40, 'steam:110000108eb0a3c', 'Meow meow', '2019-08-23 17:46:49', 1),
  1021. (172, 39, 'steam:110000108bc4ad2', '@Devanl Ou', '2019-08-23 17:47:08', 0),
  1022. (173, 39, 'steam:110000108bc4ad2', 'With a feline looking man', '2019-08-23 18:12:21', 0),
  1023. (174, 40, 'steam:110000108eb0a3c', 'Where\'s everyone at :D', '2019-08-23 18:40:40', 0),
  1024. (175, 40, 'steam:110000108eb0a3c', '@Harris_ 827 is my number', '2019-08-23 18:41:20', 0),
  1025. (176, 39, 'steam:110000108bc4ad2', 'Kitten', '2019-08-23 19:31:58', 0),
  1026. (177, 39, 'steam:110000108bc4ad2', 'New R34', '2019-08-23 19:39:47', 0),
  1027. (178, 39, 'steam:110000108bc4ad2', 'Guys who hide behind a mask, will be shot by Purple Diablos', '2019-08-23 20:10:02', 0),
  1028. (179, 41, 'steam:110000103e390a2', 'hey i found the wed farm', '2019-08-24 09:03:18', 1),
  1029. (180, 41, 'steam:110000103e390a2', 'yeeeeeet', '2019-08-24 09:04:08', 1),
  1030. (181, 42, 'steam:1100001126ba2a9', 'I\'m looking to sell some high grade weed for a good price, send me some offers', '2019-08-24 11:19:17', 0),
  1031. (182, 43, 'steam:11000011867fe42', 'selling a nice ballar hit my up dor more info', '2019-08-24 11:19:18', 0),
  1032. (183, 40, 'steam:110000108eb0a3c', '@Jacob How much we talking for the baller?', '2019-08-24 11:19:42', 0),
  1033. (184, 42, 'steam:1100001126ba2a9', '@Jacob How Fella, i would like to come check it out', '2019-08-24 11:19:58', 0),
  1034. (185, 43, 'steam:11000011867fe42', '@Devanl lets say 10k', '2019-08-24 11:20:02', 0),
  1035. (186, 43, 'steam:11000011867fe42', '@Anthony Price', '2019-08-24 11:20:17', 0),
  1036. (187, 43, 'steam:11000011867fe42', '@Jacob yes the price its suv', '2019-08-24 11:20:34', 0),
  1037. (188, 40, 'steam:110000108eb0a3c', '@Jacob Where are you located at?', '2019-08-24 11:20:50', 0),
  1038. (189, 43, 'steam:11000011867fe42', '@Devanl fleeca bank in ls at the pd', '2019-08-24 11:21:07', 0),
  1039. (190, 42, 'steam:1100001126ba2a9', '@Jacob We\'ll be there in a second he\'s driving', '2019-08-24 11:21:33', 0),
  1040. (191, 41, 'steam:110000103e390a2', 'the lspd are looking for a guy on a bike with a green body suit if you see him call us imidiately please.', '2019-08-24 11:54:30', 0);
  1041.  
  1042. -- --------------------------------------------------------
  1043.  
  1044. --
  1045. -- Table structure for table `users`
  1046. --
  1047.  
  1048. CREATE TABLE `users` (
  1049. `identifier` varchar(50) COLLATE utf8mb4_bin NOT NULL,
  1050. `license` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
  1051. `money` int(11) DEFAULT NULL,
  1052. `name` varchar(50) COLLATE utf8mb4_bin DEFAULT '',
  1053. `skin` longtext COLLATE utf8mb4_bin DEFAULT NULL,
  1054. `job` varchar(50) COLLATE utf8mb4_bin DEFAULT 'unemployed',
  1055. `job_grade` int(11) DEFAULT 0,
  1056. `loadout` longtext COLLATE utf8mb4_bin DEFAULT NULL,
  1057. `position` varchar(36) COLLATE utf8mb4_bin DEFAULT NULL,
  1058. `bank` int(11) DEFAULT NULL,
  1059. `permission_level` int(11) DEFAULT NULL,
  1060. `group` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
  1061. `phone_number` int(11) DEFAULT NULL,
  1062. `is_dead` tinyint(1) DEFAULT 0,
  1063. `firstname` varchar(50) COLLATE utf8mb4_bin DEFAULT '',
  1064. `lastname` varchar(50) COLLATE utf8mb4_bin DEFAULT '',
  1065. `dateofbirth` varchar(25) COLLATE utf8mb4_bin DEFAULT '',
  1066. `sex` varchar(10) COLLATE utf8mb4_bin DEFAULT '',
  1067. `height` varchar(5) COLLATE utf8mb4_bin DEFAULT '',
  1068. `jail` int(11) NOT NULL DEFAULT 0,
  1069. `last_property` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
  1070. `status` longtext COLLATE utf8mb4_bin DEFAULT NULL,
  1071. `lastpos` varchar(255) COLLATE utf8mb4_bin DEFAULT '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'
  1072. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
  1073.  
  1074. --
  1075. -- Dumping data for table `users`
  1076. --
  1077.  
  1078. INSERT INTO `users` (`identifier`, `license`, `money`, `name`, `skin`, `job`, `job_grade`, `loadout`, `position`, `bank`, `permission_level`, `group`, `phone_number`, `is_dead`, `firstname`, `lastname`, `dateofbirth`, `sex`, `height`, `jail`, `last_property`, `status`, `lastpos`) VALUES
  1079. ('Char1:1100001122b9aec', 'license:66f54673228193be7b46ece71cf85b35375aa576', 4134, 'Savaa', '{\"tshirt_1\":15,\"complexion_2\":0,\"blemishes_1\":0,\"shoes_1\":12,\"eyebrows_2\":0,\"ears_2\":0,\"torso_2\":5,\"eyebrows_1\":0,\"chain_1\":0,\"bodyb_2\":0,\"beard_2\":10,\"watches_2\":0,\"hair_2\":0,\"eyebrows_3\":0,\"beard_4\":0,\"bproof_2\":0,\"helmet_1\":51,\"makeup_4\":0,\"eyebrows_4\":0,\"hair_color_1\":4,\"chest_3\":0,\"bracelets_1\":-1,\"skin\":0,\"chest_1\":0,\"blush_1\":0,\"blemishes_2\":0,\"lipstick_1\":0,\"moles_1\":0,\"beard_1\":0,\"bracelets_2\":0,\"bodyb_1\":0,\"pants_2\":2,\"mask_2\":0,\"makeup_1\":0,\"makeup_2\":0,\"sun_1\":0,\"lipstick_4\":0,\"lipstick_3\":0,\"sex\":0,\"glasses_2\":4,\"ears_1\":-1,\"decals_1\":0,\"pants_1\":78,\"watches_1\":-1,\"bproof_1\":0,\"moles_2\":0,\"hair_color_2\":0,\"chain_2\":0,\"mask_1\":0,\"arms\":31,\"shoes_2\":7,\"bags_1\":0,\"glasses_1\":5,\"hair_1\":10,\"age_2\":0,\"chest_2\":0,\"blush_2\":0,\"arms_2\":0,\"complexion_1\":0,\"bags_2\":0,\"blush_3\":0,\"age_1\":0,\"torso_1\":262,\"face\":44,\"beard_3\":0,\"eye_color\":0,\"lipstick_2\":0,\"decals_2\":0,\"helmet_2\":0,\"makeup_3\":0,\"sun_2\":0,\"tshirt_2\":0}', 'mechanic', 0, '[{\"name\":\"WEAPON_PISTOL\",\"label\":\"Pistol\",\"ammo\":998,\"components\":[\"clip_default\"]}]', '{\"x\":-48.8,\"z\":29.2,\"y\":-1741.5}', 7626, 0, 'user', 256, 0, 'Johnny', 'Boga', '1995/9/25', 'm', '155', 0, NULL, '[{\"name\":\"hunger\",\"val\":267300,\"percent\":26.73},{\"name\":\"thirst\",\"val\":450475,\"percent\":45.0475},{\"name\":\"drunk\",\"val\":0,\"percent\":0.0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'),
  1080. ('steam:110000103e390a2', 'license:91b275fc6d03932cc58af42a4c1204808db7a061', 6712, 'jinjav6', '{\"blush_3\":0,\"chest_3\":0,\"makeup_1\":0,\"blemishes_2\":0,\"chest_2\":0,\"skin\":0,\"bags_2\":0,\"hair_color_1\":10,\"decals_2\":0,\"glasses_1\":3,\"bodyb_1\":0,\"chain_2\":0,\"makeup_3\":0,\"ears_1\":-1,\"lipstick_1\":0,\"mask_2\":0,\"sex\":0,\"eyebrows_1\":0,\"lipstick_2\":0,\"eyebrows_3\":0,\"beard_2\":0,\"age_2\":0,\"complexion_1\":0,\"lipstick_3\":0,\"shoes_1\":1,\"pants_1\":4,\"face\":0,\"helmet_1\":-1,\"mask_1\":0,\"arms\":1,\"makeup_4\":0,\"helmet_2\":0,\"bproof_2\":0,\"glasses_2\":0,\"tshirt_1\":29,\"moles_2\":0,\"bags_1\":0,\"blush_1\":0,\"beard_3\":0,\"lipstick_4\":0,\"arms_2\":0,\"beard_1\":0,\"ears_2\":0,\"moles_1\":0,\"sun_1\":0,\"pants_2\":0,\"torso_1\":4,\"watches_1\":-1,\"watches_2\":0,\"makeup_2\":0,\"decals_1\":0,\"blush_2\":0,\"shoes_2\":0,\"eyebrows_4\":0,\"bracelets_1\":-1,\"hair_1\":2,\"hair_color_2\":0,\"bproof_1\":0,\"eye_color\":0,\"hair_2\":0,\"complexion_2\":0,\"age_1\":0,\"chest_1\":0,\"tshirt_2\":0,\"eyebrows_2\":0,\"blemishes_1\":0,\"beard_4\":0,\"sun_2\":0,\"bodyb_2\":0,\"torso_2\":0,\"bracelets_2\":0,\"chain_1\":1}', 'police', 0, '[{\"name\":\"WEAPON_KNIFE\",\"ammo\":0,\"label\":\"Knife\",\"components\":[]},{\"name\":\"WEAPON_PISTOL\",\"ammo\":983,\"label\":\"Pistol\",\"components\":[\"clip_default\",\"flashlight\"]},{\"name\":\"WEAPON_MICROSMG\",\"ammo\":1997,\"label\":\"Micro SMG\",\"components\":[\"clip_default\",\"flashlight\",\"scope\"]},{\"name\":\"WEAPON_SMG\",\"ammo\":1997,\"label\":\"SMG\",\"components\":[\"clip_default\",\"flashlight\",\"scope\"]},{\"name\":\"WEAPON_BULLPUPSHOTGUN\",\"ammo\":2000,\"label\":\"Bullpup shotgun\",\"components\":[\"flashlight\",\"grip\"]},{\"name\":\"WEAPON_CARBINERIFLE\",\"ammo\":997,\"label\":\"Carbine rifle\",\"components\":[\"clip_default\"]},{\"name\":\"WEAPON_AUTOSHOTGUN\",\"ammo\":2000,\"label\":\"Auto shotgun\",\"components\":[]},{\"name\":\"WEAPON_FLASHLIGHT\",\"ammo\":0,\"label\":\"Flashlight\",\"components\":[]}]', '{\"x\":218.5,\"z\":30.8,\"y\":-776.2}', 26960, 0, 'user', 181, 0, 'Jack ', 'Jacky', '1981/8/30', 'm', '180', 0, NULL, '[{\"name\":\"hunger\",\"val\":458700,\"percent\":45.87},{\"name\":\"thirst\",\"val\":903875,\"percent\":90.3875},{\"name\":\"drunk\",\"val\":0,\"percent\":0.0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'),
  1081. ('steam:110000105890329', 'license:5f22c5f76ce908a913f35510e24d93b2a0ee391f', 0, 'catloafy', NULL, 'unemployed', 0, '[{\"name\":\"WEAPON_CARBINERIFLE\",\"label\":\"Carbine rifle\",\"ammo\":30,\"components\":[\"clip_default\"]}]', '{\"x\":832.3,\"z\":29.8,\"y\":-2080.5}', 300, 0, 'user', 345, 0, 'Catloaf', 'Of Meow', '1998', 'm', '167', 0, NULL, '[{\"name\":\"hunger\",\"val\":740300,\"percent\":74.03},{\"name\":\"thirst\",\"val\":805225,\"percent\":80.5225},{\"name\":\"drunk\",\"val\":0,\"percent\":0.0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'),
  1082. ('steam:110000108bc4ad2', 'license:ac45129067622d33472529c468f3b3b0175378a0', 8579, 'James Harris', '{\"blush_3\":0,\"chest_3\":0,\"makeup_1\":0,\"blemishes_2\":0,\"chest_2\":0,\"torso_1\":70,\"bags_2\":0,\"hair_color_1\":8,\"decals_2\":0,\"glasses_1\":5,\"bodyb_1\":0,\"chain_2\":0,\"makeup_2\":0,\"ears_1\":-1,\"lipstick_1\":0,\"mask_2\":0,\"complexion_2\":0,\"eyebrows_1\":0,\"lipstick_2\":0,\"eyebrows_3\":0,\"beard_2\":6,\"age_2\":0,\"complexion_1\":0,\"lipstick_3\":0,\"shoes_1\":4,\"pants_1\":26,\"hair_2\":5,\"helmet_1\":-1,\"mask_1\":0,\"arms\":0,\"makeup_4\":0,\"helmet_2\":0,\"bproof_2\":0,\"glasses_2\":0,\"tshirt_1\":32,\"moles_2\":0,\"bags_1\":0,\"age_1\":0,\"beard_3\":0,\"lipstick_4\":0,\"arms_2\":0,\"beard_1\":3,\"ears_2\":0,\"moles_1\":0,\"sun_1\":1,\"pants_2\":1,\"bproof_1\":0,\"watches_1\":-1,\"watches_2\":0,\"beard_4\":0,\"decals_1\":0,\"blush_2\":0,\"shoes_2\":2,\"eyebrows_4\":0,\"skin\":6,\"hair_1\":10,\"hair_color_2\":1,\"bracelets_1\":-1,\"eye_color\":0,\"sex\":0,\"torso_2\":1,\"makeup_3\":0,\"chest_1\":0,\"blush_1\":0,\"sun_2\":0,\"blemishes_1\":0,\"eyebrows_2\":0,\"tshirt_2\":0,\"bodyb_2\":0,\"face\":4,\"bracelets_2\":0,\"chain_1\":0}', 'unemployed', 0, '[{\"ammo\":1000,\"name\":\"WEAPON_FIREEXTINGUISHER\",\"label\":\"Fire extinguisher\",\"components\":[]}]', '{\"z\":34.2,\"x\":1724.1,\"y\":3715.7}', 45050, 0, 'user', 447, 0, 'James', 'Harris', '1996-03-14', 'm', '189', 0, NULL, '[{\"name\":\"hunger\",\"val\":158200,\"percent\":15.82},{\"name\":\"thirst\",\"val\":368650,\"percent\":36.865},{\"name\":\"drunk\",\"val\":0,\"percent\":0.0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'),
  1083. ('steam:110000108eb0a3c', 'license:8ea7c586f8653071c23672da73b2f2095496c13b', 1810967, 'ScaredykatTL[TTV]', '{\"arms\":1,\"eye_color\":0,\"glasses_1\":0,\"lipstick_2\":0,\"eyebrows_2\":0,\"blush_2\":0,\"tshirt_2\":2,\"blush_3\":0,\"ears_2\":0,\"arms_2\":0,\"beard_3\":0,\"glasses_2\":0,\"blemishes_1\":0,\"mask_1\":17,\"bodyb_2\":0,\"bags_2\":0,\"face\":0,\"watches_2\":0,\"moles_2\":0,\"eyebrows_4\":0,\"bracelets_2\":0,\"makeup_3\":0,\"chain_2\":0,\"decals_2\":0,\"sex\":0,\"torso_1\":10,\"ears_1\":-1,\"bproof_2\":0,\"eyebrows_3\":0,\"helmet_2\":0,\"beard_1\":0,\"bodyb_1\":0,\"tshirt_1\":13,\"decals_1\":0,\"sun_2\":0,\"beard_2\":0,\"chain_1\":0,\"skin\":0,\"beard_4\":0,\"age_2\":0,\"chest_2\":0,\"makeup_1\":0,\"pants_1\":13,\"bproof_1\":0,\"complexion_1\":0,\"shoes_1\":2,\"eyebrows_1\":0,\"chest_1\":0,\"mask_2\":0,\"pants_2\":0,\"hair_color_2\":0,\"watches_1\":-1,\"hair_1\":4,\"hair_2\":0,\"lipstick_4\":0,\"sun_1\":0,\"helmet_1\":-1,\"makeup_2\":0,\"bags_1\":0,\"blush_1\":0,\"makeup_4\":0,\"shoes_2\":0,\"age_1\":0,\"blemishes_2\":0,\"lipstick_3\":0,\"chest_3\":0,\"bracelets_1\":-1,\"hair_color_1\":0,\"torso_2\":4,\"lipstick_1\":0,\"complexion_2\":0,\"moles_1\":0}', 'gopostal', 0, '[{\"ammo\":0,\"name\":\"WEAPON_KNIFE\",\"label\":\"Knife\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_NIGHTSTICK\",\"label\":\"Nightstick\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_HAMMER\",\"label\":\"Hammer\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_BAT\",\"label\":\"Bat\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_GOLFCLUB\",\"label\":\"Golf club\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_CROWBAR\",\"label\":\"Crow bar\",\"components\":[]},{\"ammo\":9997,\"name\":\"WEAPON_PISTOL\",\"label\":\"Pistol\",\"components\":[\"clip_default\"]},{\"ammo\":9997,\"name\":\"WEAPON_COMBATPISTOL\",\"label\":\"Combat pistol\",\"components\":[\"clip_default\"]},{\"ammo\":9997,\"name\":\"WEAPON_APPISTOL\",\"label\":\"AP pistol\",\"components\":[\"clip_default\"]},{\"ammo\":9997,\"name\":\"WEAPON_PISTOL50\",\"label\":\"Pistol .50\",\"components\":[\"clip_default\"]},{\"ammo\":9997,\"name\":\"WEAPON_REVOLVER\",\"label\":\"Heavy revolver\",\"components\":[]},{\"ammo\":9997,\"name\":\"WEAPON_SNSPISTOL\",\"label\":\"Sns pistol\",\"components\":[\"clip_default\"]},{\"ammo\":9997,\"name\":\"WEAPON_HEAVYPISTOL\",\"label\":\"Heavy pistol\",\"components\":[\"clip_default\"]},{\"ammo\":9997,\"name\":\"WEAPON_VINTAGEPISTOL\",\"label\":\"Vintage pistol\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_MICROSMG\",\"label\":\"Micro SMG\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_SMG\",\"label\":\"SMG\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_ASSAULTSMG\",\"label\":\"Assault SMG\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_MINISMG\",\"label\":\"Mini smg\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_MACHINEPISTOL\",\"label\":\"Machine pistol\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_COMBATPDW\",\"label\":\"Combat pdw\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_PUMPSHOTGUN\",\"label\":\"Pump shotgun\",\"components\":[]},{\"ammo\":9999,\"name\":\"WEAPON_SAWNOFFSHOTGUN\",\"label\":\"Sawed off shotgun\",\"components\":[]},{\"ammo\":9999,\"name\":\"WEAPON_ASSAULTSHOTGUN\",\"label\":\"Assault shotgun\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_BULLPUPSHOTGUN\",\"label\":\"Bullpup shotgun\",\"components\":[]},{\"ammo\":9999,\"name\":\"WEAPON_HEAVYSHOTGUN\",\"label\":\"Heavy shotgun\",\"components\":[\"clip_default\"]},{\"ammo\":9726,\"name\":\"WEAPON_ASSAULTRIFLE\",\"label\":\"Assault rifle\",\"components\":[\"clip_default\"]},{\"ammo\":9726,\"name\":\"WEAPON_CARBINERIFLE\",\"label\":\"Carbine rifle\",\"components\":[\"clip_default\"]},{\"ammo\":9726,\"name\":\"WEAPON_ADVANCEDRIFLE\",\"label\":\"Advanced rifle\",\"components\":[\"clip_default\"]},{\"ammo\":9726,\"name\":\"WEAPON_SPECIALCARBINE\",\"label\":\"Special carbine\",\"components\":[\"clip_default\"]},{\"ammo\":9726,\"name\":\"WEAPON_BULLPUPRIFLE\",\"label\":\"Bullpup rifle\",\"components\":[\"clip_default\"]},{\"ammo\":9726,\"name\":\"WEAPON_COMPACTRIFLE\",\"label\":\"Compact rifle\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_MG\",\"label\":\"MG\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_COMBATMG\",\"label\":\"Combat MG\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_GUSENBERG\",\"label\":\"Gusenberg sweeper\",\"components\":[\"clip_default\"]},{\"ammo\":9999,\"name\":\"WEAPON_SNIPERRIFLE\",\"label\":\"Sniper rifle\",\"components\":[\"scope\"]},{\"ammo\":9999,\"name\":\"WEAPON_HEAVYSNIPER\",\"label\":\"Heavy sniper\",\"components\":[\"scope_advanced\"]},{\"ammo\":9999,\"name\":\"WEAPON_MARKSMANRIFLE\",\"label\":\"Marksman rifle\",\"components\":[\"clip_default\",\"scope\"]},{\"ammo\":20,\"name\":\"WEAPON_GRENADELAUNCHER\",\"label\":\"Grenade launcher\",\"components\":[]},{\"ammo\":20,\"name\":\"WEAPON_RPG\",\"label\":\"Rocket launcher\",\"components\":[]},{\"ammo\":9999,\"name\":\"WEAPON_MINIGUN\",\"label\":\"Minigun\",\"components\":[]},{\"ammo\":25,\"name\":\"WEAPON_GRENADE\",\"label\":\"Grenade\",\"components\":[]},{\"ammo\":25,\"name\":\"WEAPON_STICKYBOMB\",\"label\":\"Sticky bomb\",\"components\":[]},{\"ammo\":25,\"name\":\"WEAPON_SMOKEGRENADE\",\"label\":\"Smoke grenade\",\"components\":[]},{\"ammo\":25,\"name\":\"WEAPON_BZGAS\",\"label\":\"Bz gas\",\"components\":[]},{\"ammo\":25,\"name\":\"WEAPON_MOLOTOV\",\"label\":\"Molotov cocktail\",\"components\":[]},{\"ammo\":2000,\"name\":\"WEAPON_FIREEXTINGUISHER\",\"label\":\"Fire extinguisher\",\"components\":[]},{\"ammo\":4500,\"name\":\"WEAPON_PETROLCAN\",\"label\":\"Jerrycan\",\"components\":[]},{\"ammo\":1,\"name\":\"WEAPON_BALL\",\"label\":\"Ball\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_BOTTLE\",\"label\":\"Bottle\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_DAGGER\",\"label\":\"Dagger\",\"components\":[]},{\"ammo\":20,\"name\":\"WEAPON_FIREWORK\",\"label\":\"Firework\",\"components\":[]},{\"ammo\":9999,\"name\":\"WEAPON_MUSKET\",\"label\":\"Musket\",\"components\":[]},{\"ammo\":9999,\"name\":\"WEAPON_STUNGUN\",\"label\":\"Taser\",\"components\":[]},{\"ammo\":10,\"name\":\"WEAPON_HOMINGLAUNCHER\",\"label\":\"Homing launcher\",\"components\":[]},{\"ammo\":5,\"name\":\"WEAPON_PROXMINE\",\"label\":\"Proximity mine\",\"components\":[]},{\"ammo\":10,\"name\":\"WEAPON_SNOWBALL\",\"label\":\"Snow ball\",\"components\":[]},{\"ammo\":20,\"name\":\"WEAPON_FLAREGUN\",\"label\":\"Flaregun\",\"components\":[]},{\"ammo\":9997,\"name\":\"WEAPON_MARKSMANPISTOL\",\"label\":\"Marksman pistol\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_KNUCKLE\",\"label\":\"Knuckledusters\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_HATCHET\",\"label\":\"Hatchet\",\"components\":[]},{\"ammo\":20,\"name\":\"WEAPON_RAILGUN\",\"label\":\"Railgun\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_MACHETE\",\"label\":\"Machete\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_SWITCHBLADE\",\"label\":\"Switchblade\",\"components\":[]},{\"ammo\":9999,\"name\":\"WEAPON_DBSHOTGUN\",\"label\":\"Double barrel shotgun\",\"components\":[]},{\"ammo\":9999,\"name\":\"WEAPON_AUTOSHOTGUN\",\"label\":\"Auto shotgun\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_BATTLEAXE\",\"label\":\"Battle axe\",\"components\":[]},{\"ammo\":20,\"name\":\"WEAPON_COMPACTLAUNCHER\",\"label\":\"Compact launcher\",\"components\":[]},{\"ammo\":10,\"name\":\"WEAPON_PIPEBOMB\",\"label\":\"Pipe bomb\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_POOLCUE\",\"label\":\"Pool cue\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_WRENCH\",\"label\":\"Pipe wrench\",\"components\":[]},{\"ammo\":0,\"name\":\"WEAPON_FLASHLIGHT\",\"label\":\"Flashlight\",\"components\":[]},{\"ammo\":25,\"name\":\"WEAPON_FLARE\",\"label\":\"Flare gun\",\"components\":[]},{\"ammo\":9997,\"name\":\"WEAPON_DOUBLEACTION\",\"label\":\"Double-Action Revolver\",\"components\":[]}]', '{\"x\":1289.6,\"y\":3627.2,\"z\":33.0}', 192626647, 0, 'superadmin', 827, 0, 'Devan', 'Lucas', '1994-10-10', 'm', '180', 0, NULL, '[{\"name\":\"hunger\",\"val\":319800,\"percent\":31.98},{\"name\":\"thirst\",\"val\":489850,\"percent\":48.985},{\"name\":\"drunk\",\"val\":0,\"percent\":0.0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'),
  1084. ('steam:1100001122b9aec', 'license:66f54673228193be7b46ece71cf85b35375aa576', 1463, 'Savaa', '{\"arms\":0,\"complexion_2\":0,\"blemishes_1\":0,\"shoes_1\":0,\"eyebrows_2\":0,\"ears_2\":0,\"torso_2\":0,\"eyebrows_1\":0,\"chain_1\":0,\"bodyb_2\":0,\"beard_2\":0,\"watches_2\":0,\"hair_2\":0,\"eyebrows_3\":0,\"beard_4\":0,\"bproof_2\":0,\"helmet_1\":-1,\"makeup_4\":0,\"eyebrows_4\":0,\"hair_color_1\":0,\"chest_3\":0,\"bracelets_1\":-1,\"skin\":0,\"chest_1\":0,\"blush_1\":0,\"blemishes_2\":0,\"eye_color\":0,\"moles_1\":0,\"beard_1\":0,\"bracelets_2\":0,\"bodyb_1\":0,\"pants_2\":0,\"glasses_1\":0,\"makeup_1\":0,\"makeup_2\":0,\"hair_1\":10,\"moles_2\":0,\"lipstick_3\":0,\"sex\":0,\"glasses_2\":0,\"blush_2\":0,\"decals_1\":0,\"pants_1\":0,\"beard_3\":0,\"decals_2\":0,\"face\":44,\"shoes_2\":0,\"mask_1\":0,\"watches_1\":-1,\"tshirt_1\":15,\"chest_2\":0,\"tshirt_2\":0,\"mask_2\":0,\"torso_1\":0,\"bags_1\":0,\"hair_color_2\":0,\"lipstick_4\":0,\"arms_2\":0,\"complexion_1\":0,\"makeup_3\":0,\"blush_3\":0,\"age_1\":0,\"lipstick_1\":0,\"ears_1\":-1,\"sun_1\":0,\"chain_2\":0,\"lipstick_2\":0,\"age_2\":0,\"helmet_2\":0,\"bproof_1\":0,\"sun_2\":0,\"bags_2\":0}', 'police', 0, '[{\"components\":[],\"name\":\"WEAPON_NIGHTSTICK\",\"ammo\":0,\"label\":\"Nightstick\"},{\"components\":[\"clip_default\",\"flashlight\"],\"name\":\"WEAPON_COMBATPISTOL\",\"ammo\":995,\"label\":\"Combat pistol\"},{\"components\":[\"flashlight\"],\"name\":\"WEAPON_PUMPSHOTGUN\",\"ammo\":1019,\"label\":\"Pump shotgun\"},{\"components\":[\"clip_default\",\"flashlight\",\"scope\",\"grip\"],\"name\":\"WEAPON_CARBINERIFLE\",\"ammo\":1029,\"label\":\"Carbine rifle\"},{\"components\":[],\"name\":\"WEAPON_STUNGUN\",\"ammo\":999,\"label\":\"Taser\"},{\"components\":[],\"name\":\"WEAPON_FLASHLIGHT\",\"ammo\":0,\"label\":\"Flashlight\"}]', '{\"z\":28.6,\"x\":442.3,\"y\":-1013.4}', 1400, 0, 'user', 822, 0, 'Hardy', 'Harr', '1995/9/25', 'm', '155', 0, NULL, '[{\"percent\":62.81,\"name\":\"hunger\",\"val\":628100},{\"percent\":72.1075,\"name\":\"thirst\",\"val\":721075},{\"percent\":0.0,\"name\":\"drunk\",\"val\":0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'),
  1085. ('steam:1100001126ba2a9', 'license:07e84fc22db2348a77d3f230d0226cc7b77b3e26', 9302, '[Civ-12] Anthony Price', NULL, 'gopostal', 0, '[{\"ammo\":9963,\"name\":\"WEAPON_COMBATPISTOL\",\"components\":[\"clip_default\",\"flashlight\"],\"label\":\"Combat pistol\"},{\"ammo\":9999,\"name\":\"WEAPON_PUMPSHOTGUN\",\"components\":[\"flashlight\"],\"label\":\"Pump shotgun\"},{\"ammo\":9999,\"name\":\"WEAPON_CARBINERIFLE\",\"components\":[\"clip_default\",\"flashlight\",\"scope\",\"grip\"],\"label\":\"Carbine rifle\"},{\"ammo\":9999,\"name\":\"WEAPON_STUNGUN\",\"components\":[],\"label\":\"Taser\"}]', '{\"x\":1286.0,\"y\":3630.0,\"z\":34.0}', -7427, 0, 'user', 906, 0, 'Anthony ', 'Price', '1980/02/26', 'm', '140', 0, NULL, '[{\"name\":\"hunger\",\"val\":455300,\"percent\":45.53},{\"name\":\"thirst\",\"val\":455725,\"percent\":45.5725},{\"name\":\"drunk\",\"val\":0,\"percent\":0.0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'),
  1086. ('steam:11000011359922c', 'license:0c8a47cedcdf628b8515de8752fced3338da59fd', 4324, 'Yeetus fetus', '{\"bodyb_1\":0,\"glasses_2\":0,\"shoes_1\":0,\"lipstick_4\":0,\"bracelets_1\":-1,\"hair_1\":13,\"watches_1\":-1,\"pants_2\":0,\"chain_2\":0,\"lipstick_2\":0,\"mask_2\":0,\"eyebrows_1\":0,\"eyebrows_3\":0,\"age_1\":0,\"blush_1\":0,\"blush_3\":0,\"glasses_1\":0,\"arms_2\":0,\"makeup_2\":0,\"chest_3\":0,\"torso_2\":2,\"bodyb_2\":0,\"mask_1\":0,\"chest_2\":0,\"makeup_1\":0,\"makeup_4\":0,\"age_2\":0,\"hair_color_2\":0,\"hair_2\":0,\"helmet_1\":-1,\"complexion_1\":0,\"decals_2\":0,\"tshirt_1\":0,\"beard_2\":0,\"ears_1\":-1,\"eyebrows_2\":0,\"pants_1\":0,\"beard_4\":0,\"ears_2\":0,\"tshirt_2\":0,\"hair_color_1\":0,\"bags_2\":0,\"decals_1\":0,\"eye_color\":0,\"chain_1\":0,\"arms\":0,\"face\":0,\"sun_2\":0,\"bags_1\":0,\"shoes_2\":0,\"beard_3\":0,\"bracelets_2\":0,\"chest_1\":0,\"bproof_2\":0,\"blemishes_1\":0,\"moles_1\":0,\"watches_2\":0,\"bproof_1\":0,\"moles_2\":0,\"blemishes_2\":0,\"lipstick_3\":0,\"sun_1\":0,\"blush_2\":0,\"eyebrows_4\":0,\"torso_1\":0,\"complexion_2\":0,\"skin\":0,\"helmet_2\":0,\"makeup_3\":0,\"sex\":0,\"lipstick_1\":0,\"beard_1\":0}', 'police', 0, '[]', '{\"x\":-66.1,\"z\":26.1,\"y\":-1102.9}', 64234, 0, 'user', 531, 0, 'Bob', 'Baile', '2018/12/12', 'm', '200', 0, NULL, '[{\"name\":\"hunger\",\"val\":67000,\"percent\":6.7},{\"name\":\"thirst\",\"val\":390250,\"percent\":39.025},{\"name\":\"drunk\",\"val\":0,\"percent\":0.0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'),
  1087. ('steam:1100001151e08e5', 'license:f6622601c66d9e91e1272078a6e8fa489ba1df9c', 0, 'TechGamerOffcail', '{\"eyebrows_2\":0,\"chain_2\":0,\"bproof_1\":0,\"arms_2\":0,\"bodyb_1\":0,\"eye_color\":0,\"eyebrows_3\":0,\"eyebrows_1\":0,\"face\":0,\"makeup_4\":0,\"chest_3\":0,\"bags_1\":45,\"blush_2\":0,\"torso_2\":2,\"torso_1\":3,\"ears_1\":-1,\"complexion_1\":0,\"blush_3\":0,\"mask_2\":3,\"bags_2\":0,\"glasses_1\":3,\"beard_1\":0,\"bracelets_2\":0,\"beard_3\":0,\"lipstick_2\":0,\"blemishes_2\":0,\"sun_2\":0,\"helmet_1\":-1,\"decals_2\":0,\"sun_1\":0,\"bracelets_1\":-1,\"blush_1\":0,\"lipstick_1\":0,\"beard_4\":0,\"pants_1\":76,\"lipstick_4\":0,\"mask_1\":58,\"complexion_2\":0,\"moles_2\":0,\"ears_2\":0,\"hair_color_2\":0,\"hair_1\":3,\"shoes_1\":1,\"glasses_2\":0,\"helmet_2\":0,\"arms\":17,\"age_1\":0,\"bodyb_2\":0,\"tshirt_2\":2,\"watches_2\":0,\"bproof_2\":0,\"beard_2\":0,\"makeup_2\":0,\"lipstick_3\":0,\"moles_1\":0,\"decals_1\":0,\"makeup_1\":0,\"chest_1\":0,\"age_2\":0,\"chain_1\":0,\"hair_color_1\":0,\"eyebrows_4\":0,\"shoes_2\":0,\"pants_2\":0,\"tshirt_1\":43,\"watches_1\":4,\"sex\":0,\"hair_2\":0,\"makeup_3\":0,\"chest_2\":0,\"blemishes_1\":0,\"skin\":4}', 'miner', 0, '[{\"label\":\"Pump shotgun\",\"ammo\":9999,\"components\":[],\"name\":\"WEAPON_PUMPSHOTGUN\"}]', '{\"z\":32.1,\"y\":-2006.3,\"x\":1072.3}', 990, 0, 'user', 113, 0, 'Jose', 'Rodriguez', '1983-07-30', 'm', '200', 0, NULL, '[{\"name\":\"hunger\",\"percent\":76.71,\"val\":767100},{\"name\":\"thirst\",\"percent\":82.5325,\"val\":825325},{\"name\":\"drunk\",\"percent\":0.0,\"val\":0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'),
  1088. ('steam:11000011867fe42', 'license:8b4343d0fadf889d1e930bb4e73d82b5c43ff4d0', 1000, 'S-366 | J. Smoke', '{\"tshirt_1\":4,\"complexion_2\":0,\"blemishes_1\":0,\"shoes_1\":10,\"eyebrows_2\":0,\"ears_2\":0,\"torso_2\":0,\"eyebrows_1\":0,\"chain_1\":0,\"bodyb_2\":0,\"chest_2\":0,\"watches_2\":0,\"hair_2\":0,\"eyebrows_3\":0,\"beard_4\":0,\"bproof_2\":0,\"helmet_1\":-1,\"makeup_4\":0,\"eyebrows_4\":0,\"hair_color_1\":0,\"shoes_2\":0,\"bracelets_1\":-1,\"skin\":0,\"chest_1\":0,\"blush_1\":0,\"blemishes_2\":0,\"eye_color\":2,\"moles_1\":0,\"beard_1\":0,\"bracelets_2\":0,\"bags_1\":0,\"pants_2\":0,\"glasses_1\":0,\"makeup_1\":0,\"makeup_2\":0,\"hair_1\":1,\"moles_2\":0,\"lipstick_3\":0,\"sex\":0,\"glasses_2\":0,\"ears_1\":-1,\"decals_1\":0,\"pants_1\":10,\"decals_2\":0,\"lipstick_4\":0,\"lipstick_1\":0,\"beard_3\":0,\"mask_1\":0,\"mask_2\":0,\"sun_1\":0,\"arms\":1,\"torso_1\":4,\"bodyb_1\":0,\"watches_1\":-1,\"chest_3\":0,\"hair_color_2\":0,\"tshirt_2\":0,\"age_2\":0,\"complexion_1\":0,\"bags_2\":0,\"blush_3\":0,\"age_1\":0,\"bproof_1\":3,\"blush_2\":0,\"beard_2\":0,\"chain_2\":0,\"lipstick_2\":0,\"arms_2\":0,\"helmet_2\":0,\"makeup_3\":0,\"sun_2\":0,\"face\":0}', 'unemployed', 0, '[{\"name\":\"WEAPON_COMBATPISTOL\",\"ammo\":9981,\"label\":\"Combat pistol\",\"components\":[\"clip_default\"]},{\"name\":\"WEAPON_ASSAULTRIFLE\",\"ammo\":9934,\"label\":\"Assault rifle\",\"components\":[\"clip_default\"]}]', '{\"x\":415.3,\"z\":29.2,\"y\":-1031.4}', 250, 0, 'user', 367, 0, 'Sem', 'Jackob', '1999', 'm', '200', 0, NULL, '[{\"name\":\"hunger\",\"val\":770100,\"percent\":77.01},{\"name\":\"thirst\",\"val\":827575,\"percent\":82.7575},{\"name\":\"drunk\",\"val\":0,\"percent\":0.0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}'),
  1089. ('steam:11000013d023d27', 'license:8b90b9a606520ab0ad39bc5d13b2b5c1375555ad', 0, 'Ksixv', '{\"tshirt_1\":0,\"complexion_2\":0,\"blemishes_1\":0,\"shoes_1\":0,\"eyebrows_2\":0,\"ears_2\":0,\"torso_2\":0,\"eyebrows_1\":0,\"chain_1\":0,\"bodyb_2\":0,\"beard_2\":0,\"watches_2\":0,\"hair_2\":0,\"eyebrows_3\":0,\"beard_4\":0,\"bproof_2\":0,\"helmet_1\":-1,\"makeup_4\":0,\"eyebrows_4\":0,\"hair_color_1\":0,\"shoes_2\":0,\"bracelets_1\":-1,\"skin\":0,\"chest_1\":0,\"blush_1\":0,\"blemishes_2\":0,\"lipstick_1\":0,\"moles_1\":0,\"beard_1\":0,\"bracelets_2\":0,\"tshirt_2\":0,\"pants_2\":0,\"glasses_1\":0,\"makeup_1\":0,\"makeup_2\":0,\"hair_1\":0,\"moles_2\":0,\"lipstick_3\":0,\"sex\":1,\"glasses_2\":0,\"ears_1\":-1,\"decals_1\":0,\"pants_1\":0,\"decals_2\":0,\"bags_1\":0,\"hair_color_2\":0,\"watches_1\":-1,\"chain_2\":0,\"lipstick_4\":0,\"mask_1\":0,\"eye_color\":0,\"beard_3\":0,\"blush_2\":0,\"arms\":0,\"bodyb_1\":0,\"chest_3\":0,\"mask_2\":0,\"arms_2\":0,\"complexion_1\":0,\"makeup_3\":0,\"blush_3\":0,\"age_1\":0,\"sun_1\":0,\"face\":0,\"age_2\":0,\"torso_1\":0,\"lipstick_2\":0,\"chest_2\":0,\"helmet_2\":0,\"bags_2\":0,\"sun_2\":0,\"bproof_1\":0}', 'unemployed', 0, '[]', '{\"x\":195.1,\"z\":30.7,\"y\":-933.5}', 50, 0, 'user', 722, 0, 'Carl', 'Peters', '2000406', 'm', '150', 0, NULL, '[{\"name\":\"hunger\",\"val\":959000,\"percent\":95.9},{\"name\":\"thirst\",\"val\":969250,\"percent\":96.925},{\"name\":\"drunk\",\"val\":0,\"percent\":0.0}]', '{-887.48388671875, -2311.68872070313, -3.50776553153992, 142.503463745117}');
  1090.  
  1091. -- --------------------------------------------------------
  1092.  
  1093. --
  1094. -- Table structure for table `user_accounts`
  1095. --
  1096.  
  1097. CREATE TABLE `user_accounts` (
  1098. `id` int(11) NOT NULL,
  1099. `identifier` varchar(22) NOT NULL,
  1100. `name` varchar(50) NOT NULL,
  1101. `money` double NOT NULL DEFAULT 0
  1102. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  1103.  
  1104. --
  1105. -- Dumping data for table `user_accounts`
  1106. --
  1107.  
  1108. INSERT INTO `user_accounts` (`id`, `identifier`, `name`, `money`) VALUES
  1109. (6, 'steam:110000108eb0a3c', 'black_money', 1225),
  1110. (7, 'steam:110000108bc4ad2', 'black_money', 0),
  1111. (8, 'steam:110000103e390a2', 'black_money', 0),
  1112. (9, 'steam:11000011359922c', 'black_money', 0),
  1113. (10, 'steam:1100001126ba2a9', 'black_money', 525),
  1114. (11, 'steam:1100001151e08e5', 'black_money', 0),
  1115. (12, 'Char1:1100001122b9aec', 'black_money', 2625),
  1116. (13, 'steam:11000011867fe42', 'black_money', 0),
  1117. (15, 'steam:110000105890329', 'black_money', 0),
  1118. (16, 'steam:11000013d023d27', 'black_money', 0),
  1119. (17, 'steam:1100001122b9aec', 'black_money', 0);
  1120.  
  1121. -- --------------------------------------------------------
  1122.  
  1123. --
  1124. -- Table structure for table `user_contacts`
  1125. --
  1126.  
  1127. CREATE TABLE `user_contacts` (
  1128. `id` int(11) NOT NULL,
  1129. `identifier` varchar(22) NOT NULL,
  1130. `name` varchar(100) NOT NULL,
  1131. `number` int(11) NOT NULL
  1132. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  1133.  
  1134. -- --------------------------------------------------------
  1135.  
  1136. --
  1137. -- Table structure for table `user_inventory`
  1138. --
  1139.  
  1140. CREATE TABLE `user_inventory` (
  1141. `id` int(11) NOT NULL,
  1142. `identifier` varchar(22) NOT NULL,
  1143. `item` varchar(50) NOT NULL,
  1144. `count` int(11) NOT NULL
  1145. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  1146.  
  1147. --
  1148. -- Dumping data for table `user_inventory`
  1149. --
  1150.  
  1151. INSERT INTO `user_inventory` (`id`, `identifier`, `item`, `count`) VALUES
  1152. (108, 'steam:110000139b9b3a7', 'bolchips', 0),
  1153. (109, 'steam:110000139b9b3a7', 'lockpick', 0),
  1154. (110, 'steam:110000139b9b3a7', 'stockrim', 0),
  1155. (111, 'steam:110000139b9b3a7', 'metreshooter', 0),
  1156. (112, 'steam:110000139b9b3a7', 'essence', 0),
  1157. (113, 'steam:110000139b9b3a7', 'clothe', 0),
  1158. (114, 'steam:110000139b9b3a7', 'cupcake', 0),
  1159. (115, 'steam:110000139b9b3a7', 'highradio', 0),
  1160. (116, 'steam:110000139b9b3a7', 'energy', 0),
  1161. (117, 'steam:110000139b9b3a7', 'marijuana', 0),
  1162. (118, 'steam:110000139b9b3a7', 'fixkit', 0),
  1163. (119, 'steam:110000139b9b3a7', 'battery', 0),
  1164. (120, 'steam:110000139b9b3a7', 'blowpipe', 0),
  1165. (121, 'steam:110000139b9b3a7', 'airbag', 0),
  1166. (122, 'steam:110000139b9b3a7', 'golem', 0),
  1167. (123, 'steam:110000139b9b3a7', 'jager', 0),
  1168. (124, 'steam:110000139b9b3a7', 'fabric', 0),
  1169. (125, 'steam:110000139b9b3a7', 'gold', 0),
  1170. (126, 'steam:110000139b9b3a7', 'chips', 0),
  1171. (127, 'steam:110000139b9b3a7', 'jusfruit', 0),
  1172. (128, 'steam:110000139b9b3a7', 'petrol', 0),
  1173. (129, 'steam:110000139b9b3a7', 'bandage', 0),
  1174. (130, 'steam:110000139b9b3a7', 'jagerbomb', 0),
  1175. (131, 'steam:110000139b9b3a7', 'gazbottle', 0),
  1176. (132, 'steam:110000139b9b3a7', 'bread', 0),
  1177. (133, 'steam:110000139b9b3a7', 'rhumcoca', 0),
  1178. (134, 'steam:110000139b9b3a7', 'fish', 0),
  1179. (135, 'steam:110000139b9b3a7', 'tequila', 0),
  1180. (136, 'steam:110000139b9b3a7', 'cocacola', 0),
  1181. (137, 'steam:110000139b9b3a7', 'copper', 0),
  1182. (138, 'steam:110000139b9b3a7', 'rhum', 0),
  1183. (139, 'steam:110000139b9b3a7', 'bolcacahuetes', 0),
  1184. (140, 'steam:110000139b9b3a7', 'ice', 0),
  1185. (141, 'steam:110000139b9b3a7', 'lowradio', 0),
  1186. (142, 'steam:110000139b9b3a7', 'medikit', 0),
  1187. (143, 'steam:110000139b9b3a7', 'mojito', 0),
  1188. (144, 'steam:110000139b9b3a7', 'whiskycoca', 0),
  1189. (145, 'steam:110000139b9b3a7', 'packaged_chicken', 0),
  1190. (146, 'steam:110000139b9b3a7', 'limonade', 0),
  1191. (147, 'steam:110000139b9b3a7', 'water', 0),
  1192. (148, 'steam:110000139b9b3a7', 'yusuf', 0),
  1193. (149, 'steam:110000139b9b3a7', 'wool', 0),
  1194. (150, 'steam:110000139b9b3a7', 'wood', 0),
  1195. (151, 'steam:110000139b9b3a7', 'alive_chicken', 0),
  1196. (152, 'steam:110000139b9b3a7', 'lighter', 0),
  1197. (153, 'steam:110000139b9b3a7', 'drpepper', 0),
  1198. (154, 'steam:110000139b9b3a7', 'teqpaf', 0),
  1199. (155, 'steam:110000139b9b3a7', 'vodkaenergy', 0),
  1200. (156, 'steam:110000139b9b3a7', 'whisky', 0),
  1201. (157, 'steam:110000139b9b3a7', 'Wine', 0),
  1202. (158, 'steam:110000139b9b3a7', 'hamburger', 0),
  1203. (159, 'steam:110000139b9b3a7', 'vodka', 0),
  1204. (160, 'steam:110000139b9b3a7', 'fixtool', 0),
  1205. (161, 'steam:110000139b9b3a7', 'washed_stone', 0),
  1206. (162, 'steam:110000139b9b3a7', 'carokit', 0),
  1207. (163, 'steam:110000139b9b3a7', 'chocolate', 0),
  1208. (164, 'steam:110000139b9b3a7', 'gintonic', 0),
  1209. (165, 'steam:110000139b9b3a7', 'slaughtered_chicken', 0),
  1210. (166, 'steam:110000139b9b3a7', 'stone', 0),
  1211. (167, 'steam:110000139b9b3a7', 'champagne', 0),
  1212. (168, 'steam:110000139b9b3a7', 'soda', 0),
  1213. (169, 'steam:110000139b9b3a7', 'jagercerbere', 0),
  1214. (170, 'steam:110000139b9b3a7', 'scratchoff_used', 0),
  1215. (171, 'steam:110000139b9b3a7', 'vodkafruit', 0),
  1216. (172, 'steam:110000139b9b3a7', 'saucisson', 0),
  1217. (173, 'steam:110000139b9b3a7', 'sandwich', 0),
  1218. (174, 'steam:110000139b9b3a7', 'rhumfruit', 0),
  1219. (175, 'steam:110000139b9b3a7', 'petrol_raffin', 0),
  1220. (176, 'steam:110000139b9b3a7', 'iron', 0),
  1221. (177, 'steam:110000139b9b3a7', 'coffe', 0),
  1222. (178, 'steam:110000139b9b3a7', 'bolpistache', 0),
  1223. (179, 'steam:110000139b9b3a7', 'bolnoixcajou', 0),
  1224. (180, 'steam:110000139b9b3a7', 'packaged_plank', 0),
  1225. (181, 'steam:110000139b9b3a7', 'carotool', 0),
  1226. (182, 'steam:110000139b9b3a7', 'mixapero', 0),
  1227. (183, 'steam:110000139b9b3a7', 'milk', 0),
  1228. (184, 'steam:110000139b9b3a7', 'cigarett', 0),
  1229. (185, 'steam:110000139b9b3a7', 'absinthe', 0),
  1230. (186, 'steam:110000139b9b3a7', 'cannabis', 0),
  1231. (187, 'steam:110000139b9b3a7', 'menthe', 0),
  1232. (188, 'steam:110000139b9b3a7', 'martini', 0),
  1233. (189, 'steam:110000139b9b3a7', 'beer', 0),
  1234. (190, 'steam:110000139b9b3a7', 'cutted_wood', 0),
  1235. (191, 'steam:110000139b9b3a7', 'diamond', 0),
  1236. (192, 'steam:110000139b9b3a7', 'highrim', 0),
  1237. (193, 'steam:110000139b9b3a7', 'icetea', 0),
  1238. (194, 'steam:110000139b9b3a7', 'scratchoff', 0),
  1239. (195, 'steam:110000139b9b3a7', 'grapperaisin', 0),
  1240. (284, 'steam:110000108eb0a3c', 'slaughtered_chicken', 0),
  1241. (285, 'steam:110000108eb0a3c', 'petrol', 0),
  1242. (286, 'steam:110000108eb0a3c', 'fish', 0),
  1243. (287, 'steam:110000108eb0a3c', 'mojito', 0),
  1244. (288, 'steam:110000108eb0a3c', 'marijuana', 0),
  1245. (289, 'steam:110000108eb0a3c', 'grapperaisin', 0),
  1246. (290, 'steam:110000108eb0a3c', 'jagerbomb', 0),
  1247. (291, 'steam:110000108eb0a3c', 'bandage', 0),
  1248. (292, 'steam:110000108eb0a3c', 'cutted_wood', 0),
  1249. (293, 'steam:110000108eb0a3c', 'fabric', 0),
  1250. (294, 'steam:110000108eb0a3c', 'cocacola', 6),
  1251. (295, 'steam:110000108eb0a3c', 'lockpick', 0),
  1252. (296, 'steam:110000108eb0a3c', 'jagercerbere', 0),
  1253. (297, 'steam:110000108eb0a3c', 'airbag', 0),
  1254. (298, 'steam:110000108eb0a3c', 'highrim', 0),
  1255. (299, 'steam:110000108eb0a3c', 'blowpipe', 0),
  1256. (300, 'steam:110000108eb0a3c', 'copper', 0),
  1257. (301, 'steam:110000108eb0a3c', 'chips', 0),
  1258. (302, 'steam:110000108eb0a3c', 'water', 15),
  1259. (303, 'steam:110000108eb0a3c', 'hamburger', 0),
  1260. (304, 'steam:110000108eb0a3c', 'washed_stone', 0),
  1261. (305, 'steam:110000108eb0a3c', 'gold', 0),
  1262. (306, 'steam:110000108eb0a3c', 'cigarett', 0),
  1263. (307, 'steam:110000108eb0a3c', 'jager', 0),
  1264. (308, 'steam:110000108eb0a3c', 'carokit', 0),
  1265. (309, 'steam:110000108eb0a3c', 'packaged_plank', 0),
  1266. (310, 'steam:110000108eb0a3c', 'gazbottle', 0),
  1267. (311, 'steam:110000108eb0a3c', 'coffe', 0),
  1268. (312, 'steam:110000108eb0a3c', 'bolnoixcajou', 0),
  1269. (313, 'steam:110000108eb0a3c', 'clothe', 0),
  1270. (314, 'steam:110000108eb0a3c', 'stone', 0),
  1271. (315, 'steam:110000108eb0a3c', 'cupcake', 0),
  1272. (316, 'steam:110000108eb0a3c', 'jusfruit', 0),
  1273. (317, 'steam:110000108eb0a3c', 'icetea', 0),
  1274. (318, 'steam:110000108eb0a3c', 'menthe', 0),
  1275. (319, 'steam:110000108eb0a3c', 'fixkit', 0),
  1276. (320, 'steam:110000108eb0a3c', 'martini', 0),
  1277. (321, 'steam:110000108eb0a3c', 'fixtool', 0),
  1278. (322, 'steam:110000108eb0a3c', 'energy', 0),
  1279. (323, 'steam:110000108eb0a3c', 'golem', 0),
  1280. (324, 'steam:110000108eb0a3c', 'battery', 0),
  1281. (325, 'steam:110000108eb0a3c', 'wood', 0),
  1282. (326, 'steam:110000108eb0a3c', 'ice', 0),
  1283. (327, 'steam:110000108eb0a3c', 'wool', 0),
  1284. (328, 'steam:110000108eb0a3c', 'rhumcoca', 0),
  1285. (329, 'steam:110000108eb0a3c', 'scratchoff', 0),
  1286. (330, 'steam:110000108eb0a3c', 'limonade', 0),
  1287. (331, 'steam:110000108eb0a3c', 'beer', 0),
  1288. (332, 'steam:110000108eb0a3c', 'teqpaf', 0),
  1289. (333, 'steam:110000108eb0a3c', 'whiskycoca', 0),
  1290. (334, 'steam:110000108eb0a3c', 'whisky', 0),
  1291. (335, 'steam:110000108eb0a3c', 'milk', 0),
  1292. (336, 'steam:110000108eb0a3c', 'saucisson', 0),
  1293. (337, 'steam:110000108eb0a3c', 'vodka', 0),
  1294. (338, 'steam:110000108eb0a3c', 'tequila', 0),
  1295. (339, 'steam:110000108eb0a3c', 'bolpistache', 0),
  1296. (340, 'steam:110000108eb0a3c', 'soda', 0),
  1297. (341, 'steam:110000108eb0a3c', 'absinthe', 0),
  1298. (342, 'steam:110000108eb0a3c', 'medikit', 0),
  1299. (343, 'steam:110000108eb0a3c', 'vodkaenergy', 0),
  1300. (344, 'steam:110000108eb0a3c', 'sandwich', 5),
  1301. (345, 'steam:110000108eb0a3c', 'diamond', 0),
  1302. (346, 'steam:110000108eb0a3c', 'rhumfruit', 0),
  1303. (347, 'steam:110000108eb0a3c', 'metreshooter', 0),
  1304. (348, 'steam:110000108eb0a3c', 'Wine', 0),
  1305. (349, 'steam:110000108eb0a3c', 'rhum', 0),
  1306. (350, 'steam:110000108eb0a3c', 'gintonic', 0),
  1307. (351, 'steam:110000108eb0a3c', 'alive_chicken', 0),
  1308. (352, 'steam:110000108eb0a3c', 'bolchips', 0),
  1309. (353, 'steam:110000108eb0a3c', 'petrol_raffin', 0),
  1310. (354, 'steam:110000108eb0a3c', 'packaged_chicken', 0),
  1311. (355, 'steam:110000108eb0a3c', 'carotool', 0),
  1312. (356, 'steam:110000108eb0a3c', 'mixapero', 0),
  1313. (357, 'steam:110000108eb0a3c', 'bolcacahuetes', 0),
  1314. (358, 'steam:110000108eb0a3c', 'vodkafruit', 0),
  1315. (359, 'steam:110000108eb0a3c', 'highradio', 0),
  1316. (360, 'steam:110000108eb0a3c', 'cannabis', 0),
  1317. (361, 'steam:110000108eb0a3c', 'scratchoff_used', 2),
  1318. (362, 'steam:110000108eb0a3c', 'lowradio', 0),
  1319. (363, 'steam:110000108eb0a3c', 'essence', 0),
  1320. (364, 'steam:110000108eb0a3c', 'lighter', 0),
  1321. (365, 'steam:110000108eb0a3c', 'stockrim', 0),
  1322. (366, 'steam:110000108eb0a3c', 'chocolate', 0),
  1323. (367, 'steam:110000108eb0a3c', 'bread', 0),
  1324. (368, 'steam:110000108eb0a3c', 'iron', 0),
  1325. (369, 'steam:110000108eb0a3c', 'champagne', 0),
  1326. (370, 'steam:110000108eb0a3c', 'yusuf', 0),
  1327. (371, 'steam:110000108eb0a3c', 'drpepper', 0),
  1328. (372, 'steam:110000108eb0a3c', 'raspberry', 0),
  1329. (373, 'steam:110000108eb0a3c', 'c4_bank', 0),
  1330. (374, 'steam:110000108eb0a3c', 'blowtorch', 0),
  1331. (375, 'steam:110000108bc4ad2', 'grapperaisin', 0),
  1332. (376, 'steam:110000108bc4ad2', 'vodkafruit', 0),
  1333. (377, 'steam:110000108bc4ad2', 'alive_chicken', 0),
  1334. (378, 'steam:110000108bc4ad2', 'hamburger', 0),
  1335. (379, 'steam:110000108bc4ad2', 'gold', 0),
  1336. (380, 'steam:110000108bc4ad2', 'wood', 0),
  1337. (381, 'steam:110000108bc4ad2', 'packaged_chicken', 0),
  1338. (382, 'steam:110000108bc4ad2', 'cutted_wood', 0),
  1339. (383, 'steam:110000108bc4ad2', 'gintonic', 0),
  1340. (384, 'steam:110000108bc4ad2', 'gazbottle', 0),
  1341. (385, 'steam:110000108bc4ad2', 'chocolate', 0),
  1342. (386, 'steam:110000108bc4ad2', 'highrim', 0),
  1343. (387, 'steam:110000108bc4ad2', 'bolnoixcajou', 0),
  1344. (388, 'steam:110000108bc4ad2', 'carokit', 0),
  1345. (389, 'steam:110000108bc4ad2', 'champagne', 0),
  1346. (390, 'steam:110000108bc4ad2', 'golem', 0),
  1347. (391, 'steam:110000108bc4ad2', 'marijuana', 0),
  1348. (392, 'steam:110000108bc4ad2', 'vodka', 0),
  1349. (393, 'steam:110000108bc4ad2', 'slaughtered_chicken', 0),
  1350. (394, 'steam:110000108bc4ad2', 'essence', 0),
  1351. (395, 'steam:110000108bc4ad2', 'scratchoff', 0),
  1352. (396, 'steam:110000108bc4ad2', 'cannabis', 0),
  1353. (397, 'steam:110000108bc4ad2', 'wool', 0),
  1354. (398, 'steam:110000108bc4ad2', 'airbag', 0),
  1355. (399, 'steam:110000108bc4ad2', 'bread', 0),
  1356. (400, 'steam:110000108bc4ad2', 'whiskycoca', 0),
  1357. (401, 'steam:110000108bc4ad2', 'battery', 0),
  1358. (402, 'steam:110000108bc4ad2', 'menthe', 0),
  1359. (403, 'steam:110000108bc4ad2', 'martini', 0),
  1360. (404, 'steam:110000108bc4ad2', 'jager', 0),
  1361. (405, 'steam:110000108bc4ad2', 'coffe', 0),
  1362. (406, 'steam:110000108bc4ad2', 'metreshooter', 0),
  1363. (407, 'steam:110000108bc4ad2', 'petrol_raffin', 0),
  1364. (408, 'steam:110000108bc4ad2', 'ice', 0),
  1365. (409, 'steam:110000108bc4ad2', 'cocacola', 0),
  1366. (410, 'steam:110000108bc4ad2', 'icetea', 0),
  1367. (411, 'steam:110000108bc4ad2', 'lowradio', 0),
  1368. (412, 'steam:110000108bc4ad2', 'Wine', 0),
  1369. (413, 'steam:110000108bc4ad2', 'vodkaenergy', 0),
  1370. (414, 'steam:110000108bc4ad2', 'c4_bank', 0),
  1371. (415, 'steam:110000108bc4ad2', 'washed_stone', 0),
  1372. (416, 'steam:110000108bc4ad2', 'raspberry', 0),
  1373. (417, 'steam:110000108bc4ad2', 'fixkit', 0),
  1374. (418, 'steam:110000108bc4ad2', 'stone', 0),
  1375. (419, 'steam:110000108bc4ad2', 'blowtorch', 0),
  1376. (420, 'steam:110000108bc4ad2', 'beer', 0),
  1377. (421, 'steam:110000108bc4ad2', 'mojito', 0),
  1378. (422, 'steam:110000108bc4ad2', 'stockrim', 0),
  1379. (423, 'steam:110000108bc4ad2', 'soda', 0),
  1380. (424, 'steam:110000108bc4ad2', 'jusfruit', 0),
  1381. (425, 'steam:110000108bc4ad2', 'yusuf', 0),
  1382. (426, 'steam:110000108bc4ad2', 'highradio', 0),
  1383. (427, 'steam:110000108bc4ad2', 'saucisson', 0),
  1384. (428, 'steam:110000108bc4ad2', 'sandwich', 0),
  1385. (429, 'steam:110000108bc4ad2', 'rhumfruit', 0),
  1386. (430, 'steam:110000108bc4ad2', 'medikit', 0),
  1387. (431, 'steam:110000108bc4ad2', 'bolcacahuetes', 0),
  1388. (432, 'steam:110000108bc4ad2', 'packaged_plank', 0),
  1389. (433, 'steam:110000108bc4ad2', 'diamond', 0),
  1390. (434, 'steam:110000108bc4ad2', 'drpepper', 0),
  1391. (435, 'steam:110000108bc4ad2', 'rhumcoca', 0),
  1392. (436, 'steam:110000108bc4ad2', 'jagercerbere', 0),
  1393. (437, 'steam:110000108bc4ad2', 'teqpaf', 0),
  1394. (438, 'steam:110000108bc4ad2', 'chips', 0),
  1395. (439, 'steam:110000108bc4ad2', 'water', 0),
  1396. (440, 'steam:110000108bc4ad2', 'petrol', 0),
  1397. (441, 'steam:110000108bc4ad2', 'limonade', 0),
  1398. (442, 'steam:110000108bc4ad2', 'fixtool', 0),
  1399. (443, 'steam:110000108bc4ad2', 'cupcake', 0),
  1400. (444, 'steam:110000108bc4ad2', 'copper', 0),
  1401. (445, 'steam:110000108bc4ad2', 'energy', 0),
  1402. (446, 'steam:110000108bc4ad2', 'cigarett', 0),
  1403. (447, 'steam:110000108bc4ad2', 'blowpipe', 0),
  1404. (448, 'steam:110000108bc4ad2', 'iron', 0),
  1405. (449, 'steam:110000108bc4ad2', 'mixapero', 0),
  1406. (450, 'steam:110000108bc4ad2', 'lighter', 0),
  1407. (451, 'steam:110000108bc4ad2', 'fabric', 0),
  1408. (452, 'steam:110000108bc4ad2', 'bandage', 0),
  1409. (453, 'steam:110000108bc4ad2', 'milk', 0),
  1410. (454, 'steam:110000108bc4ad2', 'jagerbomb', 0),
  1411. (455, 'steam:110000108bc4ad2', 'whisky', 0),
  1412. (456, 'steam:110000108bc4ad2', 'tequila', 0),
  1413. (457, 'steam:110000108bc4ad2', 'lockpick', 0),
  1414. (458, 'steam:110000108bc4ad2', 'clothe', 0),
  1415. (459, 'steam:110000108bc4ad2', 'carotool', 0),
  1416. (460, 'steam:110000108bc4ad2', 'fish', 0),
  1417. (461, 'steam:110000108bc4ad2', 'scratchoff_used', 0),
  1418. (462, 'steam:110000108bc4ad2', 'absinthe', 0),
  1419. (463, 'steam:110000108bc4ad2', 'bolchips', 0),
  1420. (464, 'steam:110000108bc4ad2', 'bolpistache', 0),
  1421. (465, 'steam:110000108bc4ad2', 'rhum', 0),
  1422. (466, 'steam:110000103e390a2', 'grapperaisin', 0),
  1423. (467, 'steam:110000103e390a2', 'vodkafruit', 0),
  1424. (468, 'steam:110000103e390a2', 'alive_chicken', 0),
  1425. (469, 'steam:110000103e390a2', 'hamburger', 0),
  1426. (470, 'steam:110000103e390a2', 'gold', 0),
  1427. (471, 'steam:110000103e390a2', 'wood', 0),
  1428. (472, 'steam:110000103e390a2', 'packaged_chicken', 0),
  1429. (473, 'steam:110000103e390a2', 'cutted_wood', 0),
  1430. (474, 'steam:110000103e390a2', 'gintonic', 0),
  1431. (475, 'steam:110000103e390a2', 'gazbottle', 0),
  1432. (476, 'steam:110000103e390a2', 'chocolate', 0),
  1433. (477, 'steam:110000103e390a2', 'highrim', 0),
  1434. (478, 'steam:110000103e390a2', 'bolnoixcajou', 0),
  1435. (479, 'steam:110000103e390a2', 'carokit', 0),
  1436. (480, 'steam:110000103e390a2', 'champagne', 0),
  1437. (481, 'steam:110000103e390a2', 'golem', 0),
  1438. (482, 'steam:110000103e390a2', 'marijuana', 0),
  1439. (483, 'steam:110000103e390a2', 'vodka', 0),
  1440. (484, 'steam:110000103e390a2', 'slaughtered_chicken', 0),
  1441. (485, 'steam:110000103e390a2', 'essence', 0),
  1442. (486, 'steam:110000103e390a2', 'scratchoff', 0),
  1443. (487, 'steam:110000103e390a2', 'cannabis', 0),
  1444. (488, 'steam:110000103e390a2', 'wool', 0),
  1445. (489, 'steam:110000103e390a2', 'airbag', 0),
  1446. (490, 'steam:110000103e390a2', 'bread', 0),
  1447. (491, 'steam:110000103e390a2', 'whiskycoca', 0),
  1448. (492, 'steam:110000103e390a2', 'battery', 0),
  1449. (493, 'steam:110000103e390a2', 'menthe', 0),
  1450. (494, 'steam:110000103e390a2', 'martini', 0),
  1451. (495, 'steam:110000103e390a2', 'jager', 0),
  1452. (496, 'steam:110000103e390a2', 'coffe', 10),
  1453. (497, 'steam:110000103e390a2', 'metreshooter', 0),
  1454. (498, 'steam:110000103e390a2', 'petrol_raffin', 0),
  1455. (499, 'steam:110000103e390a2', 'ice', 0),
  1456. (500, 'steam:110000103e390a2', 'cocacola', 0),
  1457. (501, 'steam:110000103e390a2', 'icetea', 0),
  1458. (502, 'steam:110000103e390a2', 'lowradio', 0),
  1459. (503, 'steam:110000103e390a2', 'Wine', 0),
  1460. (504, 'steam:110000103e390a2', 'vodkaenergy', 0),
  1461. (505, 'steam:110000103e390a2', 'c4_bank', 0),
  1462. (506, 'steam:110000103e390a2', 'washed_stone', 0),
  1463. (507, 'steam:110000103e390a2', 'raspberry', 0),
  1464. (508, 'steam:110000103e390a2', 'fixkit', 0),
  1465. (509, 'steam:110000103e390a2', 'stone', 0),
  1466. (510, 'steam:110000103e390a2', 'blowtorch', 0),
  1467. (511, 'steam:110000103e390a2', 'beer', 0),
  1468. (512, 'steam:110000103e390a2', 'mojito', 0),
  1469. (513, 'steam:110000103e390a2', 'stockrim', 0),
  1470. (514, 'steam:110000103e390a2', 'soda', 0),
  1471. (515, 'steam:110000103e390a2', 'jusfruit', 0),
  1472. (516, 'steam:110000103e390a2', 'yusuf', 0),
  1473. (517, 'steam:110000103e390a2', 'highradio', 0),
  1474. (518, 'steam:110000103e390a2', 'saucisson', 0),
  1475. (519, 'steam:110000103e390a2', 'sandwich', 9),
  1476. (520, 'steam:110000103e390a2', 'rhumfruit', 0),
  1477. (521, 'steam:110000103e390a2', 'medikit', 0),
  1478. (522, 'steam:110000103e390a2', 'bolcacahuetes', 0),
  1479. (523, 'steam:110000103e390a2', 'packaged_plank', 0),
  1480. (524, 'steam:110000103e390a2', 'diamond', 0),
  1481. (525, 'steam:110000103e390a2', 'drpepper', 0),
  1482. (526, 'steam:110000103e390a2', 'rhumcoca', 0),
  1483. (527, 'steam:110000103e390a2', 'jagercerbere', 0),
  1484. (528, 'steam:110000103e390a2', 'teqpaf', 0),
  1485. (529, 'steam:110000103e390a2', 'chips', 0),
  1486. (530, 'steam:110000103e390a2', 'water', 0),
  1487. (531, 'steam:110000103e390a2', 'petrol', 0),
  1488. (532, 'steam:110000103e390a2', 'limonade', 0),
  1489. (533, 'steam:110000103e390a2', 'fixtool', 0),
  1490. (534, 'steam:110000103e390a2', 'cupcake', 0),
  1491. (535, 'steam:110000103e390a2', 'copper', 0),
  1492. (536, 'steam:110000103e390a2', 'energy', 0),
  1493. (537, 'steam:110000103e390a2', 'cigarett', 6),
  1494. (538, 'steam:110000103e390a2', 'blowpipe', 0),
  1495. (539, 'steam:110000103e390a2', 'iron', 0),
  1496. (540, 'steam:110000103e390a2', 'mixapero', 0),
  1497. (541, 'steam:110000103e390a2', 'lighter', 1),
  1498. (542, 'steam:110000103e390a2', 'fabric', 0),
  1499. (543, 'steam:110000103e390a2', 'bandage', 0),
  1500. (544, 'steam:110000103e390a2', 'milk', 0),
  1501. (545, 'steam:110000103e390a2', 'jagerbomb', 0),
  1502. (546, 'steam:110000103e390a2', 'whisky', 0),
  1503. (547, 'steam:110000103e390a2', 'tequila', 0),
  1504. (548, 'steam:110000103e390a2', 'lockpick', 0),
  1505. (549, 'steam:110000103e390a2', 'clothe', 0),
  1506. (550, 'steam:110000103e390a2', 'carotool', 0),
  1507. (551, 'steam:110000103e390a2', 'fish', 0),
  1508. (552, 'steam:110000103e390a2', 'scratchoff_used', 90),
  1509. (553, 'steam:110000103e390a2', 'absinthe', 0),
  1510. (554, 'steam:110000103e390a2', 'bolchips', 0),
  1511. (555, 'steam:110000103e390a2', 'bolpistache', 0),
  1512. (556, 'steam:110000103e390a2', 'rhum', 0),
  1513. (557, 'steam:11000011359922c', 'golem', 0),
  1514. (558, 'steam:11000011359922c', 'airbag', 0),
  1515. (559, 'steam:11000011359922c', 'energy', 0),
  1516. (560, 'steam:11000011359922c', 'champagne', 0),
  1517. (561, 'steam:11000011359922c', 'menthe', 0),
  1518. (562, 'steam:11000011359922c', 'jagercerbere', 0),
  1519. (563, 'steam:11000011359922c', 'carokit', 0),
  1520. (564, 'steam:11000011359922c', 'rhum', 0),
  1521. (565, 'steam:11000011359922c', 'cupcake', 0),
  1522. (566, 'steam:11000011359922c', 'medikit', 0),
  1523. (567, 'steam:11000011359922c', 'essence', 0),
  1524. (568, 'steam:11000011359922c', 'whiskycoca', 0),
  1525. (569, 'steam:11000011359922c', 'lowradio', 0),
  1526. (570, 'steam:11000011359922c', 'gintonic', 0),
  1527. (571, 'steam:11000011359922c', 'battery', 0),
  1528. (572, 'steam:11000011359922c', 'packaged_chicken', 0),
  1529. (573, 'steam:11000011359922c', 'vodka', 0),
  1530. (574, 'steam:11000011359922c', 'iron', 0),
  1531. (575, 'steam:11000011359922c', 'bolpistache', 0),
  1532. (576, 'steam:11000011359922c', 'fixkit', 0),
  1533. (577, 'steam:11000011359922c', 'rhumcoca', 0),
  1534. (578, 'steam:11000011359922c', 'bandage', 0),
  1535. (579, 'steam:11000011359922c', 'icetea', 0),
  1536. (580, 'steam:11000011359922c', 'copper', 0),
  1537. (581, 'steam:11000011359922c', 'bolcacahuetes', 0),
  1538. (582, 'steam:11000011359922c', 'jusfruit', 0),
  1539. (583, 'steam:11000011359922c', 'fish', 0),
  1540. (584, 'steam:11000011359922c', 'bread', 0),
  1541. (585, 'steam:11000011359922c', 'wood', 0),
  1542. (586, 'steam:11000011359922c', 'cocacola', 0),
  1543. (587, 'steam:11000011359922c', 'cannabis', 5),
  1544. (588, 'steam:11000011359922c', 'milk', 0),
  1545. (589, 'steam:11000011359922c', 'jager', 0),
  1546. (590, 'steam:11000011359922c', 'fixtool', 0),
  1547. (591, 'steam:11000011359922c', 'blowtorch', 0),
  1548. (592, 'steam:11000011359922c', 'yusuf', 0),
  1549. (593, 'steam:11000011359922c', 'drpepper', 0),
  1550. (594, 'steam:11000011359922c', 'wool', 0),
  1551. (595, 'steam:11000011359922c', 'Wine', 0),
  1552. (596, 'steam:11000011359922c', 'lockpick', 0),
  1553. (597, 'steam:11000011359922c', 'whisky', 0),
  1554. (598, 'steam:11000011359922c', 'ice', 0),
  1555. (599, 'steam:11000011359922c', 'water', 0),
  1556. (600, 'steam:11000011359922c', 'stone', 0),
  1557. (601, 'steam:11000011359922c', 'vodkafruit', 0),
  1558. (602, 'steam:11000011359922c', 'stockrim', 0),
  1559. (603, 'steam:11000011359922c', 'tequila', 0),
  1560. (604, 'steam:11000011359922c', 'teqpaf', 0),
  1561. (605, 'steam:11000011359922c', 'martini', 0),
  1562. (606, 'steam:11000011359922c', 'petrol_raffin', 0),
  1563. (607, 'steam:11000011359922c', 'washed_stone', 0),
  1564. (608, 'steam:11000011359922c', 'vodkaenergy', 0),
  1565. (609, 'steam:11000011359922c', 'soda', 0),
  1566. (610, 'steam:11000011359922c', 'c4_bank', 0),
  1567. (611, 'steam:11000011359922c', 'slaughtered_chicken', 0),
  1568. (612, 'steam:11000011359922c', 'metreshooter', 0),
  1569. (613, 'steam:11000011359922c', 'scratchoff_used', 0),
  1570. (614, 'steam:11000011359922c', 'clothe', 0),
  1571. (615, 'steam:11000011359922c', 'diamond', 0),
  1572. (616, 'steam:11000011359922c', 'hamburger', 0),
  1573. (617, 'steam:11000011359922c', 'alive_chicken', 0),
  1574. (618, 'steam:11000011359922c', 'scratchoff', 0),
  1575. (619, 'steam:11000011359922c', 'saucisson', 0),
  1576. (620, 'steam:11000011359922c', 'grapperaisin', 0),
  1577. (621, 'steam:11000011359922c', 'sandwich', 0),
  1578. (622, 'steam:11000011359922c', 'coffe', 0),
  1579. (623, 'steam:11000011359922c', 'rhumfruit', 0),
  1580. (624, 'steam:11000011359922c', 'raspberry', 0),
  1581. (625, 'steam:11000011359922c', 'marijuana', 0),
  1582. (626, 'steam:11000011359922c', 'highradio', 0),
  1583. (627, 'steam:11000011359922c', 'limonade', 0),
  1584. (628, 'steam:11000011359922c', 'petrol', 0),
  1585. (629, 'steam:11000011359922c', 'highrim', 0),
  1586. (630, 'steam:11000011359922c', 'gazbottle', 0),
  1587. (631, 'steam:11000011359922c', 'bolchips', 0),
  1588. (632, 'steam:11000011359922c', 'lighter', 0),
  1589. (633, 'steam:11000011359922c', 'absinthe', 0),
  1590. (634, 'steam:11000011359922c', 'blowpipe', 0),
  1591. (635, 'steam:11000011359922c', 'packaged_plank', 0),
  1592. (636, 'steam:11000011359922c', 'mojito', 0),
  1593. (637, 'steam:11000011359922c', 'jagerbomb', 0),
  1594. (638, 'steam:11000011359922c', 'mixapero', 0),
  1595. (639, 'steam:11000011359922c', 'beer', 0),
  1596. (640, 'steam:11000011359922c', 'carotool', 0),
  1597. (641, 'steam:11000011359922c', 'gold', 0),
  1598. (642, 'steam:11000011359922c', 'bolnoixcajou', 0),
  1599. (643, 'steam:11000011359922c', 'cigarett', 0),
  1600. (644, 'steam:11000011359922c', 'cutted_wood', 0),
  1601. (645, 'steam:11000011359922c', 'fabric', 0),
  1602. (646, 'steam:11000011359922c', 'chips', 0),
  1603. (647, 'steam:11000011359922c', 'chocolate', 0),
  1604. (648, 'steam:1100001126ba2a9', 'alive_chicken', 0),
  1605. (649, 'steam:1100001126ba2a9', 'gintonic', 0),
  1606. (650, 'steam:1100001126ba2a9', 'washed_stone', 0),
  1607. (651, 'steam:1100001126ba2a9', 'teqpaf', 0),
  1608. (652, 'steam:1100001126ba2a9', 'jager', 0),
  1609. (653, 'steam:1100001126ba2a9', 'whisky', 0),
  1610. (654, 'steam:1100001126ba2a9', 'cigarett', 0),
  1611. (655, 'steam:1100001126ba2a9', 'fixkit', 0),
  1612. (656, 'steam:1100001126ba2a9', 'cutted_wood', 0),
  1613. (657, 'steam:1100001126ba2a9', 'iron', 0),
  1614. (658, 'steam:1100001126ba2a9', 'fixtool', 0),
  1615. (659, 'steam:1100001126ba2a9', 'limonade', 0),
  1616. (660, 'steam:1100001126ba2a9', 'gold', 0),
  1617. (661, 'steam:1100001126ba2a9', 'hamburger', 0),
  1618. (662, 'steam:1100001126ba2a9', 'marijuana', 2),
  1619. (663, 'steam:1100001126ba2a9', 'carokit', 0),
  1620. (664, 'steam:1100001126ba2a9', 'packaged_chicken', 0),
  1621. (665, 'steam:1100001126ba2a9', 'slaughtered_chicken', 0),
  1622. (666, 'steam:1100001126ba2a9', 'carotool', 0),
  1623. (667, 'steam:1100001126ba2a9', 'stone', 0),
  1624. (668, 'steam:1100001126ba2a9', 'rhum', 0),
  1625. (669, 'steam:1100001126ba2a9', 'wood', 0),
  1626. (670, 'steam:1100001126ba2a9', 'drpepper', 0),
  1627. (671, 'steam:1100001126ba2a9', 'clothe', 0),
  1628. (672, 'steam:1100001126ba2a9', 'saucisson', 0),
  1629. (673, 'steam:1100001126ba2a9', 'yusuf', 0),
  1630. (674, 'steam:1100001126ba2a9', 'bolpistache', 0),
  1631. (675, 'steam:1100001126ba2a9', 'wool', 0),
  1632. (676, 'steam:1100001126ba2a9', 'Wine', 0),
  1633. (677, 'steam:1100001126ba2a9', 'blowpipe', 0),
  1634. (678, 'steam:1100001126ba2a9', 'bandage', 0),
  1635. (679, 'steam:1100001126ba2a9', 'vodkafruit', 0),
  1636. (680, 'steam:1100001126ba2a9', 'whiskycoca', 0),
  1637. (681, 'steam:1100001126ba2a9', 'lockpick', 0),
  1638. (682, 'steam:1100001126ba2a9', 'water', 7),
  1639. (683, 'steam:1100001126ba2a9', 'raspberry', 0),
  1640. (684, 'steam:1100001126ba2a9', 'menthe', 0),
  1641. (685, 'steam:1100001126ba2a9', 'vodkaenergy', 0),
  1642. (686, 'steam:1100001126ba2a9', 'vodka', 0),
  1643. (687, 'steam:1100001126ba2a9', 'tequila', 0),
  1644. (688, 'steam:1100001126ba2a9', 'stockrim', 0),
  1645. (689, 'steam:1100001126ba2a9', 'fish', 0),
  1646. (690, 'steam:1100001126ba2a9', 'scratchoff_used', 0),
  1647. (691, 'steam:1100001126ba2a9', 'champagne', 0),
  1648. (692, 'steam:1100001126ba2a9', 'soda', 0),
  1649. (693, 'steam:1100001126ba2a9', 'battery', 0),
  1650. (694, 'steam:1100001126ba2a9', 'scratchoff', 0),
  1651. (695, 'steam:1100001126ba2a9', 'blowtorch', 0),
  1652. (696, 'steam:1100001126ba2a9', 'ice', 0),
  1653. (697, 'steam:1100001126ba2a9', 'jagerbomb', 0),
  1654. (698, 'steam:1100001126ba2a9', 'martini', 0),
  1655. (699, 'steam:1100001126ba2a9', 'icetea', 0),
  1656. (700, 'steam:1100001126ba2a9', 'rhumfruit', 0),
  1657. (701, 'steam:1100001126ba2a9', 'chips', 0),
  1658. (702, 'steam:1100001126ba2a9', 'cocacola', 0),
  1659. (703, 'steam:1100001126ba2a9', 'rhumcoca', 0),
  1660. (704, 'steam:1100001126ba2a9', 'petrol_raffin', 0),
  1661. (705, 'steam:1100001126ba2a9', 'grapperaisin', 0),
  1662. (706, 'steam:1100001126ba2a9', 'airbag', 0),
  1663. (707, 'steam:1100001126ba2a9', 'fabric', 0),
  1664. (708, 'steam:1100001126ba2a9', 'copper', 0),
  1665. (709, 'steam:1100001126ba2a9', 'cannabis', -2),
  1666. (710, 'steam:1100001126ba2a9', 'golem', 0),
  1667. (711, 'steam:1100001126ba2a9', 'packaged_plank', 0),
  1668. (712, 'steam:1100001126ba2a9', 'gazbottle', 0),
  1669. (713, 'steam:1100001126ba2a9', 'c4_bank', 0),
  1670. (714, 'steam:1100001126ba2a9', 'absinthe', 0),
  1671. (715, 'steam:1100001126ba2a9', 'sandwich', 0),
  1672. (716, 'steam:1100001126ba2a9', 'bolchips', 0),
  1673. (717, 'steam:1100001126ba2a9', 'lowradio', 0),
  1674. (718, 'steam:1100001126ba2a9', 'highradio', 0),
  1675. (719, 'steam:1100001126ba2a9', 'energy', 0),
  1676. (720, 'steam:1100001126ba2a9', 'bolcacahuetes', 0),
  1677. (721, 'steam:1100001126ba2a9', 'petrol', 0),
  1678. (722, 'steam:1100001126ba2a9', 'milk', 0),
  1679. (723, 'steam:1100001126ba2a9', 'diamond', 0),
  1680. (724, 'steam:1100001126ba2a9', 'metreshooter', 0),
  1681. (725, 'steam:1100001126ba2a9', 'bread', 5),
  1682. (726, 'steam:1100001126ba2a9', 'mixapero', 0),
  1683. (727, 'steam:1100001126ba2a9', 'medikit', 0),
  1684. (728, 'steam:1100001126ba2a9', 'jusfruit', 0),
  1685. (729, 'steam:1100001126ba2a9', 'mojito', 0),
  1686. (730, 'steam:1100001126ba2a9', 'lighter', 0),
  1687. (731, 'steam:1100001126ba2a9', 'coffe', 0),
  1688. (732, 'steam:1100001126ba2a9', 'chocolate', 0),
  1689. (733, 'steam:1100001126ba2a9', 'jagercerbere', 0),
  1690. (734, 'steam:1100001126ba2a9', 'beer', 0),
  1691. (735, 'steam:1100001126ba2a9', 'highrim', 0),
  1692. (736, 'steam:1100001126ba2a9', 'essence', 0),
  1693. (737, 'steam:1100001126ba2a9', 'bolnoixcajou', 0),
  1694. (738, 'steam:1100001126ba2a9', 'cupcake', 0),
  1695. (739, 'steam:1100001151e08e5', 'alive_chicken', 0),
  1696. (740, 'steam:1100001151e08e5', 'gintonic', 0),
  1697. (741, 'steam:1100001151e08e5', 'washed_stone', 0),
  1698. (742, 'steam:1100001151e08e5', 'teqpaf', 0),
  1699. (743, 'steam:1100001151e08e5', 'jager', 0),
  1700. (744, 'steam:1100001151e08e5', 'whisky', 0),
  1701. (745, 'steam:1100001151e08e5', 'cigarett', 0),
  1702. (746, 'steam:1100001151e08e5', 'fixkit', 0),
  1703. (747, 'steam:1100001151e08e5', 'cutted_wood', 0),
  1704. (748, 'steam:1100001151e08e5', 'iron', 42),
  1705. (749, 'steam:1100001151e08e5', 'fixtool', 0),
  1706. (750, 'steam:1100001151e08e5', 'limonade', 0),
  1707. (751, 'steam:1100001151e08e5', 'gold', 21),
  1708. (752, 'steam:1100001151e08e5', 'hamburger', 0),
  1709. (753, 'steam:1100001151e08e5', 'marijuana', 0),
  1710. (754, 'steam:1100001151e08e5', 'carokit', 0),
  1711. (755, 'steam:1100001151e08e5', 'packaged_chicken', 0),
  1712. (756, 'steam:1100001151e08e5', 'slaughtered_chicken', 0),
  1713. (757, 'steam:1100001151e08e5', 'carotool', 0),
  1714. (758, 'steam:1100001151e08e5', 'stone', 0),
  1715. (759, 'steam:1100001151e08e5', 'rhum', 0),
  1716. (760, 'steam:1100001151e08e5', 'wood', 0),
  1717. (761, 'steam:1100001151e08e5', 'drpepper', 0),
  1718. (762, 'steam:1100001151e08e5', 'clothe', 0),
  1719. (763, 'steam:1100001151e08e5', 'saucisson', 0),
  1720. (764, 'steam:1100001151e08e5', 'yusuf', 0),
  1721. (765, 'steam:1100001151e08e5', 'bolpistache', 0),
  1722. (766, 'steam:1100001151e08e5', 'wool', 0),
  1723. (767, 'steam:1100001151e08e5', 'Wine', 0),
  1724. (768, 'steam:1100001151e08e5', 'blowpipe', 0),
  1725. (769, 'steam:1100001151e08e5', 'bandage', 0),
  1726. (770, 'steam:1100001151e08e5', 'vodkafruit', 0),
  1727. (771, 'steam:1100001151e08e5', 'whiskycoca', 0),
  1728. (772, 'steam:1100001151e08e5', 'lockpick', 0),
  1729. (773, 'steam:1100001151e08e5', 'water', 0),
  1730. (774, 'steam:1100001151e08e5', 'raspberry', 0),
  1731. (775, 'steam:1100001151e08e5', 'menthe', 0),
  1732. (776, 'steam:1100001151e08e5', 'vodkaenergy', 0),
  1733. (777, 'steam:1100001151e08e5', 'vodka', 0),
  1734. (778, 'steam:1100001151e08e5', 'tequila', 0),
  1735. (779, 'steam:1100001151e08e5', 'stockrim', 0),
  1736. (780, 'steam:1100001151e08e5', 'fish', 0),
  1737. (781, 'steam:1100001151e08e5', 'scratchoff_used', 0),
  1738. (782, 'steam:1100001151e08e5', 'champagne', 0),
  1739. (783, 'steam:1100001151e08e5', 'soda', 0),
  1740. (784, 'steam:1100001151e08e5', 'battery', 0),
  1741. (785, 'steam:1100001151e08e5', 'scratchoff', 0),
  1742. (786, 'steam:1100001151e08e5', 'blowtorch', 0),
  1743. (787, 'steam:1100001151e08e5', 'ice', 0),
  1744. (788, 'steam:1100001151e08e5', 'jagerbomb', 0),
  1745. (789, 'steam:1100001151e08e5', 'martini', 0),
  1746. (790, 'steam:1100001151e08e5', 'icetea', 0),
  1747. (791, 'steam:1100001151e08e5', 'rhumfruit', 0),
  1748. (792, 'steam:1100001151e08e5', 'chips', 0),
  1749. (793, 'steam:1100001151e08e5', 'cocacola', 0),
  1750. (794, 'steam:1100001151e08e5', 'rhumcoca', 0),
  1751. (795, 'steam:1100001151e08e5', 'petrol_raffin', 0),
  1752. (796, 'steam:1100001151e08e5', 'grapperaisin', 0),
  1753. (797, 'steam:1100001151e08e5', 'airbag', 0),
  1754. (798, 'steam:1100001151e08e5', 'fabric', 0),
  1755. (799, 'steam:1100001151e08e5', 'copper', 56),
  1756. (800, 'steam:1100001151e08e5', 'cannabis', 0),
  1757. (801, 'steam:1100001151e08e5', 'golem', 0),
  1758. (802, 'steam:1100001151e08e5', 'packaged_plank', 0),
  1759. (803, 'steam:1100001151e08e5', 'gazbottle', 0),
  1760. (804, 'steam:1100001151e08e5', 'c4_bank', 0),
  1761. (805, 'steam:1100001151e08e5', 'absinthe', 0),
  1762. (806, 'steam:1100001151e08e5', 'sandwich', 0),
  1763. (807, 'steam:1100001151e08e5', 'bolchips', 0),
  1764. (808, 'steam:1100001151e08e5', 'lowradio', 0),
  1765. (809, 'steam:1100001151e08e5', 'highradio', 0),
  1766. (810, 'steam:1100001151e08e5', 'energy', 0),
  1767. (811, 'steam:1100001151e08e5', 'bolcacahuetes', 0),
  1768. (812, 'steam:1100001151e08e5', 'petrol', 0),
  1769. (813, 'steam:1100001151e08e5', 'milk', 0),
  1770. (814, 'steam:1100001151e08e5', 'diamond', 0),
  1771. (815, 'steam:1100001151e08e5', 'metreshooter', 0),
  1772. (816, 'steam:1100001151e08e5', 'bread', 0),
  1773. (817, 'steam:1100001151e08e5', 'mixapero', 0),
  1774. (818, 'steam:1100001151e08e5', 'medikit', 0),
  1775. (819, 'steam:1100001151e08e5', 'jusfruit', 0),
  1776. (820, 'steam:1100001151e08e5', 'mojito', 0),
  1777. (821, 'steam:1100001151e08e5', 'lighter', 0),
  1778. (822, 'steam:1100001151e08e5', 'coffe', 0),
  1779. (823, 'steam:1100001151e08e5', 'chocolate', 0),
  1780. (824, 'steam:1100001151e08e5', 'jagercerbere', 0),
  1781. (825, 'steam:1100001151e08e5', 'beer', 0),
  1782. (826, 'steam:1100001151e08e5', 'highrim', 0),
  1783. (827, 'steam:1100001151e08e5', 'essence', 0),
  1784. (828, 'steam:1100001151e08e5', 'bolnoixcajou', 0),
  1785. (829, 'steam:1100001151e08e5', 'cupcake', 0),
  1786. (830, 'Char1:1100001122b9aec', 'carokit', 0),
  1787. (831, 'Char1:1100001122b9aec', 'marijuana', 0),
  1788. (832, 'Char1:1100001122b9aec', 'metreshooter', 0),
  1789. (833, 'Char1:1100001122b9aec', 'ice', 0),
  1790. (834, 'Char1:1100001122b9aec', 'chocolate', 0),
  1791. (835, 'Char1:1100001122b9aec', 'blowtorch', 0),
  1792. (836, 'Char1:1100001122b9aec', 'energy', 0),
  1793. (837, 'Char1:1100001122b9aec', 'absinthe', 0),
  1794. (838, 'Char1:1100001122b9aec', 'packaged_chicken', 0),
  1795. (839, 'Char1:1100001122b9aec', 'chips', 0),
  1796. (840, 'Char1:1100001122b9aec', 'slaughtered_chicken', 0),
  1797. (841, 'Char1:1100001122b9aec', 'milk', 0),
  1798. (842, 'Char1:1100001122b9aec', 'highrim', 0),
  1799. (843, 'Char1:1100001122b9aec', 'rhumfruit', 0),
  1800. (844, 'Char1:1100001122b9aec', 'jagercerbere', 0),
  1801. (845, 'Char1:1100001122b9aec', 'cannabis', 0),
  1802. (846, 'Char1:1100001122b9aec', 'bolpistache', 0),
  1803. (847, 'Char1:1100001122b9aec', 'tequila', 0),
  1804. (848, 'Char1:1100001122b9aec', 'stockrim', 0),
  1805. (849, 'Char1:1100001122b9aec', 'packaged_plank', 0),
  1806. (850, 'Char1:1100001122b9aec', 'medikit', 0),
  1807. (851, 'Char1:1100001122b9aec', 'martini', 0),
  1808. (852, 'Char1:1100001122b9aec', 'bolchips', 0),
  1809. (853, 'Char1:1100001122b9aec', 'mixapero', 0),
  1810. (854, 'Char1:1100001122b9aec', 'saucisson', 0),
  1811. (855, 'Char1:1100001122b9aec', 'golem', 0),
  1812. (856, 'Char1:1100001122b9aec', 'airbag', 0),
  1813. (857, 'Char1:1100001122b9aec', 'petrol', 0),
  1814. (858, 'Char1:1100001122b9aec', 'stone', 0),
  1815. (859, 'Char1:1100001122b9aec', 'water', 0),
  1816. (860, 'Char1:1100001122b9aec', 'rhumcoca', 0),
  1817. (861, 'Char1:1100001122b9aec', 'highradio', 0),
  1818. (862, 'Char1:1100001122b9aec', 'lighter', 0),
  1819. (863, 'Char1:1100001122b9aec', 'jagerbomb', 0),
  1820. (864, 'Char1:1100001122b9aec', 'hamburger', 0),
  1821. (865, 'Char1:1100001122b9aec', 'wood', 0),
  1822. (866, 'Char1:1100001122b9aec', 'fish', 0),
  1823. (867, 'Char1:1100001122b9aec', 'Wine', 0),
  1824. (868, 'Char1:1100001122b9aec', 'whiskycoca', 0),
  1825. (869, 'Char1:1100001122b9aec', 'icetea', 0),
  1826. (870, 'Char1:1100001122b9aec', 'whisky', 0),
  1827. (871, 'Char1:1100001122b9aec', 'carotool', 0),
  1828. (872, 'Char1:1100001122b9aec', 'washed_stone', 0),
  1829. (873, 'Char1:1100001122b9aec', 'scratchoff_used', 0),
  1830. (874, 'Char1:1100001122b9aec', 'cutted_wood', 0),
  1831. (875, 'Char1:1100001122b9aec', 'rhum', 0),
  1832. (876, 'Char1:1100001122b9aec', 'vodkaenergy', 0),
  1833. (877, 'Char1:1100001122b9aec', 'vodka', 0),
  1834. (878, 'Char1:1100001122b9aec', 'beer', 0),
  1835. (879, 'Char1:1100001122b9aec', 'soda', 0),
  1836. (880, 'Char1:1100001122b9aec', 'limonade', 0),
  1837. (881, 'Char1:1100001122b9aec', 'battery', 0),
  1838. (882, 'Char1:1100001122b9aec', 'teqpaf', 0),
  1839. (883, 'Char1:1100001122b9aec', 'cocacola', 0),
  1840. (884, 'Char1:1100001122b9aec', 'vodkafruit', 0),
  1841. (885, 'Char1:1100001122b9aec', 'sandwich', 0),
  1842. (886, 'Char1:1100001122b9aec', 'blowpipe', 0),
  1843. (887, 'Char1:1100001122b9aec', 'clothe', 0),
  1844. (888, 'Char1:1100001122b9aec', 'gold', 0),
  1845. (889, 'Char1:1100001122b9aec', 'jusfruit', 0),
  1846. (890, 'Char1:1100001122b9aec', 'raspberry', 0),
  1847. (891, 'Char1:1100001122b9aec', 'petrol_raffin', 0),
  1848. (892, 'Char1:1100001122b9aec', 'bolcacahuetes', 0),
  1849. (893, 'Char1:1100001122b9aec', 'menthe', 0),
  1850. (894, 'Char1:1100001122b9aec', 'c4_bank', 0),
  1851. (895, 'Char1:1100001122b9aec', 'cigarett', 0),
  1852. (896, 'Char1:1100001122b9aec', 'fabric', 0),
  1853. (897, 'Char1:1100001122b9aec', 'wool', 0),
  1854. (898, 'Char1:1100001122b9aec', 'bread', 0),
  1855. (899, 'Char1:1100001122b9aec', 'fixtool', 0),
  1856. (900, 'Char1:1100001122b9aec', 'copper', 0),
  1857. (901, 'Char1:1100001122b9aec', 'grapperaisin', 0),
  1858. (902, 'Char1:1100001122b9aec', 'mojito', 0),
  1859. (903, 'Char1:1100001122b9aec', 'drpepper', 0),
  1860. (904, 'Char1:1100001122b9aec', 'cupcake', 0),
  1861. (905, 'Char1:1100001122b9aec', 'iron', 0),
  1862. (906, 'Char1:1100001122b9aec', 'fixkit', 0),
  1863. (907, 'Char1:1100001122b9aec', 'lowradio', 0),
  1864. (908, 'Char1:1100001122b9aec', 'essence', 0),
  1865. (909, 'Char1:1100001122b9aec', 'diamond', 0),
  1866. (910, 'Char1:1100001122b9aec', 'bandage', 0),
  1867. (911, 'Char1:1100001122b9aec', 'coffe', 0),
  1868. (912, 'Char1:1100001122b9aec', 'champagne', 0),
  1869. (913, 'Char1:1100001122b9aec', 'lockpick', 0),
  1870. (914, 'Char1:1100001122b9aec', 'gintonic', 0),
  1871. (915, 'Char1:1100001122b9aec', 'jager', 0),
  1872. (916, 'Char1:1100001122b9aec', 'gazbottle', 0),
  1873. (917, 'Char1:1100001122b9aec', 'scratchoff', 0),
  1874. (918, 'Char1:1100001122b9aec', 'bolnoixcajou', 0),
  1875. (919, 'Char1:1100001122b9aec', 'alive_chicken', 0),
  1876. (920, 'Char1:1100001122b9aec', 'yusuf', 0),
  1877. (921, 'steam:11000011867fe42', 'carokit', 0),
  1878. (922, 'steam:11000011867fe42', 'marijuana', 0),
  1879. (923, 'steam:11000011867fe42', 'metreshooter', 0),
  1880. (924, 'steam:11000011867fe42', 'chocolate', 0),
  1881. (925, 'steam:11000011867fe42', 'ice', 0),
  1882. (926, 'steam:11000011867fe42', 'blowtorch', 0),
  1883. (927, 'steam:11000011867fe42', 'energy', 0),
  1884. (928, 'steam:11000011867fe42', 'absinthe', 0),
  1885. (929, 'steam:11000011867fe42', 'packaged_chicken', 0),
  1886. (930, 'steam:11000011867fe42', 'chips', 0),
  1887. (931, 'steam:11000011867fe42', 'slaughtered_chicken', 0),
  1888. (932, 'steam:11000011867fe42', 'milk', 0),
  1889. (933, 'steam:11000011867fe42', 'highrim', 0),
  1890. (934, 'steam:11000011867fe42', 'rhumfruit', 0),
  1891. (935, 'steam:11000011867fe42', 'jagercerbere', 0),
  1892. (936, 'steam:11000011867fe42', 'cannabis', 0),
  1893. (937, 'steam:11000011867fe42', 'bolpistache', 0),
  1894. (938, 'steam:11000011867fe42', 'tequila', 0),
  1895. (939, 'steam:11000011867fe42', 'stockrim', 0),
  1896. (940, 'steam:11000011867fe42', 'packaged_plank', 0),
  1897. (941, 'steam:11000011867fe42', 'medikit', 0),
  1898. (942, 'steam:11000011867fe42', 'martini', 0),
  1899. (943, 'steam:11000011867fe42', 'bolchips', 0),
  1900. (944, 'steam:11000011867fe42', 'mixapero', 0),
  1901. (945, 'steam:11000011867fe42', 'saucisson', 0),
  1902. (946, 'steam:11000011867fe42', 'golem', 0),
  1903. (947, 'steam:11000011867fe42', 'airbag', 0),
  1904. (948, 'steam:11000011867fe42', 'petrol', 0),
  1905. (949, 'steam:11000011867fe42', 'stone', 0),
  1906. (950, 'steam:11000011867fe42', 'water', 0),
  1907. (951, 'steam:11000011867fe42', 'rhumcoca', 0),
  1908. (952, 'steam:11000011867fe42', 'highradio', 0),
  1909. (953, 'steam:11000011867fe42', 'lighter', 0),
  1910. (954, 'steam:11000011867fe42', 'jagerbomb', 0),
  1911. (955, 'steam:11000011867fe42', 'hamburger', 0),
  1912. (956, 'steam:11000011867fe42', 'wood', 0),
  1913. (957, 'steam:11000011867fe42', 'fish', 0),
  1914. (958, 'steam:11000011867fe42', 'Wine', 0),
  1915. (959, 'steam:11000011867fe42', 'whiskycoca', 0),
  1916. (960, 'steam:11000011867fe42', 'icetea', 0),
  1917. (961, 'steam:11000011867fe42', 'whisky', 0),
  1918. (962, 'steam:11000011867fe42', 'carotool', 0),
  1919. (963, 'steam:11000011867fe42', 'washed_stone', 0),
  1920. (964, 'steam:11000011867fe42', 'scratchoff_used', 0),
  1921. (965, 'steam:11000011867fe42', 'cutted_wood', 0),
  1922. (966, 'steam:11000011867fe42', 'rhum', 0),
  1923. (967, 'steam:11000011867fe42', 'vodkaenergy', 0),
  1924. (968, 'steam:11000011867fe42', 'vodka', 0),
  1925. (969, 'steam:11000011867fe42', 'beer', 0),
  1926. (970, 'steam:11000011867fe42', 'soda', 0),
  1927. (971, 'steam:11000011867fe42', 'limonade', 0),
  1928. (972, 'steam:11000011867fe42', 'battery', 0),
  1929. (973, 'steam:11000011867fe42', 'teqpaf', 0),
  1930. (974, 'steam:11000011867fe42', 'vodkafruit', 0),
  1931. (975, 'steam:11000011867fe42', 'cocacola', 0),
  1932. (976, 'steam:11000011867fe42', 'sandwich', 0),
  1933. (977, 'steam:11000011867fe42', 'blowpipe', 0),
  1934. (978, 'steam:11000011867fe42', 'clothe', 0),
  1935. (979, 'steam:11000011867fe42', 'gold', 0),
  1936. (980, 'steam:11000011867fe42', 'jusfruit', 0),
  1937. (981, 'steam:11000011867fe42', 'raspberry', 0),
  1938. (982, 'steam:11000011867fe42', 'petrol_raffin', 0),
  1939. (983, 'steam:11000011867fe42', 'bolcacahuetes', 0),
  1940. (984, 'steam:11000011867fe42', 'menthe', 0),
  1941. (985, 'steam:11000011867fe42', 'c4_bank', 0),
  1942. (986, 'steam:11000011867fe42', 'cigarett', 0),
  1943. (987, 'steam:11000011867fe42', 'fabric', 0),
  1944. (988, 'steam:11000011867fe42', 'wool', 0),
  1945. (989, 'steam:11000011867fe42', 'bread', 0),
  1946. (990, 'steam:11000011867fe42', 'fixtool', 0),
  1947. (991, 'steam:11000011867fe42', 'copper', 0),
  1948. (992, 'steam:11000011867fe42', 'grapperaisin', 0),
  1949. (993, 'steam:11000011867fe42', 'mojito', 0),
  1950. (994, 'steam:11000011867fe42', 'drpepper', 0),
  1951. (995, 'steam:11000011867fe42', 'cupcake', 0),
  1952. (996, 'steam:11000011867fe42', 'iron', 0),
  1953. (997, 'steam:11000011867fe42', 'fixkit', 0),
  1954. (998, 'steam:11000011867fe42', 'lowradio', 0),
  1955. (999, 'steam:11000011867fe42', 'essence', 0),
  1956. (1000, 'steam:11000011867fe42', 'diamond', 0),
  1957. (1001, 'steam:11000011867fe42', 'bandage', 0),
  1958. (1002, 'steam:11000011867fe42', 'coffe', 0),
  1959. (1003, 'steam:11000011867fe42', 'champagne', 0),
  1960. (1004, 'steam:11000011867fe42', 'lockpick', 0),
  1961. (1005, 'steam:11000011867fe42', 'gintonic', 0),
  1962. (1006, 'steam:11000011867fe42', 'jager', 0),
  1963. (1007, 'steam:11000011867fe42', 'gazbottle', 0),
  1964. (1008, 'steam:11000011867fe42', 'scratchoff', 0),
  1965. (1009, 'steam:11000011867fe42', 'bolnoixcajou', 0),
  1966. (1010, 'steam:11000011867fe42', 'alive_chicken', 0),
  1967. (1011, 'steam:11000011867fe42', 'yusuf', 0),
  1968. (1103, 'steam:110000105890329', 'carokit', 0),
  1969. (1104, 'steam:110000105890329', 'marijuana', 0),
  1970. (1105, 'steam:110000105890329', 'metreshooter', 0),
  1971. (1106, 'steam:110000105890329', 'ice', 0),
  1972. (1107, 'steam:110000105890329', 'chocolate', 0),
  1973. (1108, 'steam:110000105890329', 'blowtorch', 0),
  1974. (1109, 'steam:110000105890329', 'energy', 0),
  1975. (1110, 'steam:110000105890329', 'absinthe', 0),
  1976. (1111, 'steam:110000105890329', 'packaged_chicken', 0),
  1977. (1112, 'steam:110000105890329', 'chips', 0),
  1978. (1113, 'steam:110000105890329', 'slaughtered_chicken', 0),
  1979. (1114, 'steam:110000105890329', 'milk', 0),
  1980. (1115, 'steam:110000105890329', 'highrim', 0),
  1981. (1116, 'steam:110000105890329', 'rhumfruit', 0),
  1982. (1117, 'steam:110000105890329', 'jagercerbere', 0),
  1983. (1118, 'steam:110000105890329', 'cannabis', 0),
  1984. (1119, 'steam:110000105890329', 'bolpistache', 0),
  1985. (1120, 'steam:110000105890329', 'tequila', 0),
  1986. (1121, 'steam:110000105890329', 'stockrim', 0),
  1987. (1122, 'steam:110000105890329', 'packaged_plank', 0),
  1988. (1123, 'steam:110000105890329', 'medikit', 0),
  1989. (1124, 'steam:110000105890329', 'martini', 0),
  1990. (1125, 'steam:110000105890329', 'bolchips', 0),
  1991. (1126, 'steam:110000105890329', 'mixapero', 0),
  1992. (1127, 'steam:110000105890329', 'saucisson', 0),
  1993. (1128, 'steam:110000105890329', 'golem', 0),
  1994. (1129, 'steam:110000105890329', 'airbag', 0),
  1995. (1130, 'steam:110000105890329', 'petrol', 0),
  1996. (1131, 'steam:110000105890329', 'stone', 0),
  1997. (1132, 'steam:110000105890329', 'water', 0),
  1998. (1133, 'steam:110000105890329', 'rhumcoca', 0),
  1999. (1134, 'steam:110000105890329', 'highradio', 0),
  2000. (1135, 'steam:110000105890329', 'lighter', 0),
  2001. (1136, 'steam:110000105890329', 'jagerbomb', 0),
  2002. (1137, 'steam:110000105890329', 'hamburger', 0),
  2003. (1138, 'steam:110000105890329', 'wood', 0),
  2004. (1139, 'steam:110000105890329', 'fish', 0),
  2005. (1140, 'steam:110000105890329', 'Wine', 0),
  2006. (1141, 'steam:110000105890329', 'whiskycoca', 0),
  2007. (1142, 'steam:110000105890329', 'icetea', 0),
  2008. (1143, 'steam:110000105890329', 'whisky', 0),
  2009. (1144, 'steam:110000105890329', 'carotool', 0),
  2010. (1145, 'steam:110000105890329', 'washed_stone', 0),
  2011. (1146, 'steam:110000105890329', 'scratchoff_used', 0),
  2012. (1147, 'steam:110000105890329', 'cutted_wood', 0),
  2013. (1148, 'steam:110000105890329', 'rhum', 0),
  2014. (1149, 'steam:110000105890329', 'vodkaenergy', 0),
  2015. (1150, 'steam:110000105890329', 'vodka', 0),
  2016. (1151, 'steam:110000105890329', 'beer', 0),
  2017. (1152, 'steam:110000105890329', 'soda', 0),
  2018. (1153, 'steam:110000105890329', 'limonade', 0),
  2019. (1154, 'steam:110000105890329', 'battery', 0),
  2020. (1155, 'steam:110000105890329', 'teqpaf', 0),
  2021. (1156, 'steam:110000105890329', 'vodkafruit', 0),
  2022. (1157, 'steam:110000105890329', 'cocacola', 0),
  2023. (1158, 'steam:110000105890329', 'sandwich', 0),
  2024. (1159, 'steam:110000105890329', 'blowpipe', 0),
  2025. (1160, 'steam:110000105890329', 'clothe', 0),
  2026. (1161, 'steam:110000105890329', 'gold', 0),
  2027. (1162, 'steam:110000105890329', 'jusfruit', 0),
  2028. (1163, 'steam:110000105890329', 'raspberry', 0),
  2029. (1164, 'steam:110000105890329', 'petrol_raffin', 0),
  2030. (1165, 'steam:110000105890329', 'bolcacahuetes', 0),
  2031. (1166, 'steam:110000105890329', 'menthe', 0),
  2032. (1167, 'steam:110000105890329', 'c4_bank', 0),
  2033. (1168, 'steam:110000105890329', 'cigarett', 0),
  2034. (1169, 'steam:110000105890329', 'fabric', 0),
  2035. (1170, 'steam:110000105890329', 'wool', 0),
  2036. (1171, 'steam:110000105890329', 'bread', 0),
  2037. (1172, 'steam:110000105890329', 'fixtool', 0),
  2038. (1173, 'steam:110000105890329', 'copper', 0),
  2039. (1174, 'steam:110000105890329', 'grapperaisin', 0),
  2040. (1175, 'steam:110000105890329', 'mojito', 0),
  2041. (1176, 'steam:110000105890329', 'drpepper', 0),
  2042. (1177, 'steam:110000105890329', 'cupcake', 0),
  2043. (1178, 'steam:110000105890329', 'iron', 0),
  2044. (1179, 'steam:110000105890329', 'fixkit', 0),
  2045. (1180, 'steam:110000105890329', 'lowradio', 0),
  2046. (1181, 'steam:110000105890329', 'essence', 0),
  2047. (1182, 'steam:110000105890329', 'diamond', 0),
  2048. (1183, 'steam:110000105890329', 'bandage', 0),
  2049. (1184, 'steam:110000105890329', 'coffe', 0),
  2050. (1185, 'steam:110000105890329', 'champagne', 0),
  2051. (1186, 'steam:110000105890329', 'lockpick', 0),
  2052. (1187, 'steam:110000105890329', 'gintonic', 0),
  2053. (1188, 'steam:110000105890329', 'jager', 0),
  2054. (1189, 'steam:110000105890329', 'gazbottle', 0),
  2055. (1190, 'steam:110000105890329', 'scratchoff', 0),
  2056. (1191, 'steam:110000105890329', 'bolnoixcajou', 0),
  2057. (1192, 'steam:110000105890329', 'alive_chicken', 0),
  2058. (1193, 'steam:110000105890329', 'yusuf', 0),
  2059. (1194, 'steam:11000013d023d27', 'carokit', 0),
  2060. (1195, 'steam:11000013d023d27', 'marijuana', 0),
  2061. (1196, 'steam:11000013d023d27', 'metreshooter', 0),
  2062. (1197, 'steam:11000013d023d27', 'chocolate', 0),
  2063. (1198, 'steam:11000013d023d27', 'ice', 0),
  2064. (1199, 'steam:11000013d023d27', 'blowtorch', 0),
  2065. (1200, 'steam:11000013d023d27', 'energy', 0),
  2066. (1201, 'steam:11000013d023d27', 'absinthe', 0),
  2067. (1202, 'steam:11000013d023d27', 'packaged_chicken', 0),
  2068. (1203, 'steam:11000013d023d27', 'chips', 0),
  2069. (1204, 'steam:11000013d023d27', 'slaughtered_chicken', 0),
  2070. (1205, 'steam:11000013d023d27', 'milk', 0),
  2071. (1206, 'steam:11000013d023d27', 'highrim', 0),
  2072. (1207, 'steam:11000013d023d27', 'rhumfruit', 0),
  2073. (1208, 'steam:11000013d023d27', 'jagercerbere', 0),
  2074. (1209, 'steam:11000013d023d27', 'cannabis', 0),
  2075. (1210, 'steam:11000013d023d27', 'bolpistache', 0),
  2076. (1211, 'steam:11000013d023d27', 'tequila', 0),
  2077. (1212, 'steam:11000013d023d27', 'stockrim', 0),
  2078. (1213, 'steam:11000013d023d27', 'packaged_plank', 0),
  2079. (1214, 'steam:11000013d023d27', 'medikit', 0),
  2080. (1215, 'steam:11000013d023d27', 'martini', 0),
  2081. (1216, 'steam:11000013d023d27', 'bolchips', 0),
  2082. (1217, 'steam:11000013d023d27', 'mixapero', 0),
  2083. (1218, 'steam:11000013d023d27', 'saucisson', 0),
  2084. (1219, 'steam:11000013d023d27', 'golem', 0),
  2085. (1220, 'steam:11000013d023d27', 'airbag', 0),
  2086. (1221, 'steam:11000013d023d27', 'petrol', 0),
  2087. (1222, 'steam:11000013d023d27', 'stone', 0),
  2088. (1223, 'steam:11000013d023d27', 'water', 0),
  2089. (1224, 'steam:11000013d023d27', 'rhumcoca', 0),
  2090. (1225, 'steam:11000013d023d27', 'highradio', 0),
  2091. (1226, 'steam:11000013d023d27', 'lighter', 0),
  2092. (1227, 'steam:11000013d023d27', 'jagerbomb', 0),
  2093. (1228, 'steam:11000013d023d27', 'hamburger', 0),
  2094. (1229, 'steam:11000013d023d27', 'wood', 0),
  2095. (1230, 'steam:11000013d023d27', 'fish', 0),
  2096. (1231, 'steam:11000013d023d27', 'Wine', 0),
  2097. (1232, 'steam:11000013d023d27', 'whiskycoca', 0),
  2098. (1233, 'steam:11000013d023d27', 'icetea', 0),
  2099. (1234, 'steam:11000013d023d27', 'whisky', 0),
  2100. (1235, 'steam:11000013d023d27', 'carotool', 0),
  2101. (1236, 'steam:11000013d023d27', 'washed_stone', 0),
  2102. (1237, 'steam:11000013d023d27', 'scratchoff_used', 0),
  2103. (1238, 'steam:11000013d023d27', 'cutted_wood', 0),
  2104. (1239, 'steam:11000013d023d27', 'rhum', 0),
  2105. (1240, 'steam:11000013d023d27', 'vodkaenergy', 0),
  2106. (1241, 'steam:11000013d023d27', 'vodka', 0),
  2107. (1242, 'steam:11000013d023d27', 'beer', 0),
  2108. (1243, 'steam:11000013d023d27', 'soda', 0),
  2109. (1244, 'steam:11000013d023d27', 'limonade', 0),
  2110. (1245, 'steam:11000013d023d27', 'battery', 0),
  2111. (1246, 'steam:11000013d023d27', 'vodkafruit', 0),
  2112. (1247, 'steam:11000013d023d27', 'teqpaf', 0),
  2113. (1248, 'steam:11000013d023d27', 'cocacola', 0),
  2114. (1249, 'steam:11000013d023d27', 'sandwich', 0),
  2115. (1250, 'steam:11000013d023d27', 'blowpipe', 0),
  2116. (1251, 'steam:11000013d023d27', 'clothe', 0),
  2117. (1252, 'steam:11000013d023d27', 'gold', 0),
  2118. (1253, 'steam:11000013d023d27', 'jusfruit', 0),
  2119. (1254, 'steam:11000013d023d27', 'raspberry', 0),
  2120. (1255, 'steam:11000013d023d27', 'petrol_raffin', 0),
  2121. (1256, 'steam:11000013d023d27', 'bolcacahuetes', 0),
  2122. (1257, 'steam:11000013d023d27', 'menthe', 0),
  2123. (1258, 'steam:11000013d023d27', 'c4_bank', 0),
  2124. (1259, 'steam:11000013d023d27', 'cigarett', 0),
  2125. (1260, 'steam:11000013d023d27', 'fabric', 0),
  2126. (1261, 'steam:11000013d023d27', 'wool', 0),
  2127. (1262, 'steam:11000013d023d27', 'bread', 0),
  2128. (1263, 'steam:11000013d023d27', 'fixtool', 0),
  2129. (1264, 'steam:11000013d023d27', 'copper', 0),
  2130. (1265, 'steam:11000013d023d27', 'grapperaisin', 0),
  2131. (1266, 'steam:11000013d023d27', 'mojito', 0),
  2132. (1267, 'steam:11000013d023d27', 'drpepper', 0),
  2133. (1268, 'steam:11000013d023d27', 'cupcake', 0),
  2134. (1269, 'steam:11000013d023d27', 'iron', 0),
  2135. (1270, 'steam:11000013d023d27', 'fixkit', 0),
  2136. (1271, 'steam:11000013d023d27', 'lowradio', 0),
  2137. (1272, 'steam:11000013d023d27', 'essence', 0),
  2138. (1273, 'steam:11000013d023d27', 'diamond', 0),
  2139. (1274, 'steam:11000013d023d27', 'bandage', 0),
  2140. (1275, 'steam:11000013d023d27', 'coffe', 0),
  2141. (1276, 'steam:11000013d023d27', 'champagne', 0),
  2142. (1277, 'steam:11000013d023d27', 'lockpick', 0),
  2143. (1278, 'steam:11000013d023d27', 'gintonic', 0),
  2144. (1279, 'steam:11000013d023d27', 'jager', 0),
  2145. (1280, 'steam:11000013d023d27', 'gazbottle', 0),
  2146. (1281, 'steam:11000013d023d27', 'scratchoff', 0),
  2147. (1282, 'steam:11000013d023d27', 'bolnoixcajou', 0),
  2148. (1283, 'steam:11000013d023d27', 'alive_chicken', 0),
  2149. (1284, 'steam:11000013d023d27', 'yusuf', 0),
  2150. (1285, 'steam:1100001122b9aec', 'carokit', 0),
  2151. (1286, 'steam:1100001122b9aec', 'marijuana', 0),
  2152. (1287, 'steam:1100001122b9aec', 'chocolate', 0),
  2153. (1288, 'steam:1100001122b9aec', 'ice', 0),
  2154. (1289, 'steam:1100001122b9aec', 'metreshooter', 0),
  2155. (1290, 'steam:1100001122b9aec', 'blowtorch', 0),
  2156. (1291, 'steam:1100001122b9aec', 'energy', 0),
  2157. (1292, 'steam:1100001122b9aec', 'absinthe', 0),
  2158. (1293, 'steam:1100001122b9aec', 'packaged_chicken', 0),
  2159. (1294, 'steam:1100001122b9aec', 'chips', 0),
  2160. (1295, 'steam:1100001122b9aec', 'slaughtered_chicken', 0),
  2161. (1296, 'steam:1100001122b9aec', 'milk', 0),
  2162. (1297, 'steam:1100001122b9aec', 'highrim', 0),
  2163. (1298, 'steam:1100001122b9aec', 'rhumfruit', 0),
  2164. (1299, 'steam:1100001122b9aec', 'jagercerbere', 0),
  2165. (1300, 'steam:1100001122b9aec', 'cannabis', 0),
  2166. (1301, 'steam:1100001122b9aec', 'bolpistache', 0),
  2167. (1302, 'steam:1100001122b9aec', 'tequila', 0),
  2168. (1303, 'steam:1100001122b9aec', 'stockrim', 0),
  2169. (1304, 'steam:1100001122b9aec', 'packaged_plank', 0),
  2170. (1305, 'steam:1100001122b9aec', 'medikit', 0),
  2171. (1306, 'steam:1100001122b9aec', 'martini', 0),
  2172. (1307, 'steam:1100001122b9aec', 'bolchips', 0),
  2173. (1308, 'steam:1100001122b9aec', 'mixapero', 0),
  2174. (1309, 'steam:1100001122b9aec', 'saucisson', 0),
  2175. (1310, 'steam:1100001122b9aec', 'golem', 0),
  2176. (1311, 'steam:1100001122b9aec', 'airbag', 0),
  2177. (1312, 'steam:1100001122b9aec', 'petrol', 0),
  2178. (1313, 'steam:1100001122b9aec', 'stone', 0),
  2179. (1314, 'steam:1100001122b9aec', 'water', 0),
  2180. (1315, 'steam:1100001122b9aec', 'rhumcoca', 0),
  2181. (1316, 'steam:1100001122b9aec', 'highradio', 0),
  2182. (1317, 'steam:1100001122b9aec', 'lighter', 0),
  2183. (1318, 'steam:1100001122b9aec', 'jagerbomb', 0),
  2184. (1319, 'steam:1100001122b9aec', 'hamburger', 0),
  2185. (1320, 'steam:1100001122b9aec', 'wood', 0),
  2186. (1321, 'steam:1100001122b9aec', 'fish', 0),
  2187. (1322, 'steam:1100001122b9aec', 'Wine', 0),
  2188. (1323, 'steam:1100001122b9aec', 'whiskycoca', 0),
  2189. (1324, 'steam:1100001122b9aec', 'icetea', 0),
  2190. (1325, 'steam:1100001122b9aec', 'whisky', 0),
  2191. (1326, 'steam:1100001122b9aec', 'carotool', 0),
  2192. (1327, 'steam:1100001122b9aec', 'washed_stone', 0),
  2193. (1328, 'steam:1100001122b9aec', 'scratchoff_used', 0),
  2194. (1329, 'steam:1100001122b9aec', 'cutted_wood', 0),
  2195. (1330, 'steam:1100001122b9aec', 'rhum', 0),
  2196. (1331, 'steam:1100001122b9aec', 'vodkaenergy', 0),
  2197. (1332, 'steam:1100001122b9aec', 'vodka', 0),
  2198. (1333, 'steam:1100001122b9aec', 'beer', 0),
  2199. (1334, 'steam:1100001122b9aec', 'soda', 0),
  2200. (1335, 'steam:1100001122b9aec', 'limonade', 0),
  2201. (1336, 'steam:1100001122b9aec', 'battery', 0),
  2202. (1337, 'steam:1100001122b9aec', 'teqpaf', 0),
  2203. (1338, 'steam:1100001122b9aec', 'vodkafruit', 0),
  2204. (1339, 'steam:1100001122b9aec', 'cocacola', 0),
  2205. (1340, 'steam:1100001122b9aec', 'sandwich', 0),
  2206. (1341, 'steam:1100001122b9aec', 'blowpipe', 0),
  2207. (1342, 'steam:1100001122b9aec', 'clothe', 0),
  2208. (1343, 'steam:1100001122b9aec', 'gold', 0),
  2209. (1344, 'steam:1100001122b9aec', 'jusfruit', 0),
  2210. (1345, 'steam:1100001122b9aec', 'raspberry', 0),
  2211. (1346, 'steam:1100001122b9aec', 'petrol_raffin', 0),
  2212. (1347, 'steam:1100001122b9aec', 'bolcacahuetes', 0),
  2213. (1348, 'steam:1100001122b9aec', 'menthe', 0),
  2214. (1349, 'steam:1100001122b9aec', 'c4_bank', 0),
  2215. (1350, 'steam:1100001122b9aec', 'cigarett', 0),
  2216. (1351, 'steam:1100001122b9aec', 'fabric', 0),
  2217. (1352, 'steam:1100001122b9aec', 'wool', 0),
  2218. (1353, 'steam:1100001122b9aec', 'bread', 0),
  2219. (1354, 'steam:1100001122b9aec', 'fixtool', 0),
  2220. (1355, 'steam:1100001122b9aec', 'copper', 0),
  2221. (1356, 'steam:1100001122b9aec', 'grapperaisin', 0),
  2222. (1357, 'steam:1100001122b9aec', 'mojito', 0),
  2223. (1358, 'steam:1100001122b9aec', 'drpepper', 0),
  2224. (1359, 'steam:1100001122b9aec', 'cupcake', 0),
  2225. (1360, 'steam:1100001122b9aec', 'iron', 0),
  2226. (1361, 'steam:1100001122b9aec', 'fixkit', 0),
  2227. (1362, 'steam:1100001122b9aec', 'lowradio', 0),
  2228. (1363, 'steam:1100001122b9aec', 'essence', 0),
  2229. (1364, 'steam:1100001122b9aec', 'diamond', 0),
  2230. (1365, 'steam:1100001122b9aec', 'bandage', 0),
  2231. (1366, 'steam:1100001122b9aec', 'coffe', 0),
  2232. (1367, 'steam:1100001122b9aec', 'champagne', 0),
  2233. (1368, 'steam:1100001122b9aec', 'lockpick', 0),
  2234. (1369, 'steam:1100001122b9aec', 'gintonic', 0),
  2235. (1370, 'steam:1100001122b9aec', 'jager', 0),
  2236. (1371, 'steam:1100001122b9aec', 'gazbottle', 0),
  2237. (1372, 'steam:1100001122b9aec', 'scratchoff', 0),
  2238. (1373, 'steam:1100001122b9aec', 'bolnoixcajou', 0),
  2239. (1374, 'steam:1100001122b9aec', 'alive_chicken', 0),
  2240. (1375, 'steam:1100001122b9aec', 'yusuf', 0);
  2241.  
  2242. -- --------------------------------------------------------
  2243.  
  2244. --
  2245. -- Table structure for table `user_lastcharacter`
  2246. --
  2247.  
  2248. CREATE TABLE `user_lastcharacter` (
  2249. `steamid` varchar(255) NOT NULL,
  2250. `charid` int(11) NOT NULL
  2251. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2252.  
  2253. --
  2254. -- Dumping data for table `user_lastcharacter`
  2255. --
  2256.  
  2257. INSERT INTO `user_lastcharacter` (`steamid`, `charid`) VALUES
  2258. ('steam:110000108eb0a3c', 1),
  2259. ('steam:110000108bc4ad2', 1),
  2260. ('steam:110000103e390a2', 1),
  2261. ('steam:11000011359922c', 1),
  2262. ('steam:1100001126ba2a9', 1),
  2263. ('steam:1100001151e08e5', 1),
  2264. ('steam:11000011867fe42', 1),
  2265. ('steam:1100001122b9aec', 2),
  2266. ('steam:110000105890329', 2),
  2267. ('steam:11000013d023d27', 1);
  2268.  
  2269. -- --------------------------------------------------------
  2270.  
  2271. --
  2272. -- Table structure for table `user_licenses`
  2273. --
  2274.  
  2275. CREATE TABLE `user_licenses` (
  2276. `id` int(11) NOT NULL,
  2277. `type` varchar(60) NOT NULL,
  2278. `owner` varchar(60) NOT NULL
  2279. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2280.  
  2281. -- --------------------------------------------------------
  2282.  
  2283. --
  2284. -- Table structure for table `vehicles`
  2285. --
  2286.  
  2287. CREATE TABLE `vehicles` (
  2288. `name` varchar(60) NOT NULL,
  2289. `model` varchar(60) NOT NULL,
  2290. `price` int(11) NOT NULL,
  2291. `category` varchar(60) DEFAULT NULL
  2292. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2293.  
  2294. --
  2295. -- Dumping data for table `vehicles`
  2296. --
  2297.  
  2298. INSERT INTO `vehicles` (`name`, `model`, `price`, `category`) VALUES
  2299. ('2016 Dodge Charger', '16charger', 56000, 'Addon'),
  2300. ('2018 Ford F350 Dually', '18f350ds', 75250, 'Addon'),
  2301. ('2017 Bugatti Chiron', '2017chiron', 2600000, 'Addon'),
  2302. ('2019 Bugatti Chiron', '2019chiron', 3000000, 'Addon'),
  2303. ('Audi A8', 'a8audi', 83800, 'Addon'),
  2304. ('Adder', 'adder', 900000, 'super'),
  2305. ('Akuma', 'AKUMA', 7500, 'motorcycles'),
  2306. ('Alpha', 'alpha', 60000, 'sports'),
  2307. ('Mercades AMG GTS', 'amggts2016', 100000, 'Addon'),
  2308. ('Ardent', 'ardent', 1150000, 'sportsclassics'),
  2309. ('Asea', 'asea', 5500, 'sedans'),
  2310. ('Autarch', 'autarch', 1955000, 'super'),
  2311. ('Avarus', 'avarus', 18000, 'motorcycles'),
  2312. ('Lamborghini Aventador', 'aventador', 420000, 'Addon'),
  2313. ('Bagger', 'bagger', 13500, 'motorcycles'),
  2314. ('Baller', 'baller2', 40000, 'suvs'),
  2315. ('Baller Sport', 'baller3', 60000, 'suvs'),
  2316. ('Banshee', 'banshee', 70000, 'sports'),
  2317. ('Banshee 900R', 'banshee2', 255000, 'super'),
  2318. ('Bati 801', 'bati', 12000, 'motorcycles'),
  2319. ('Bati 801RR', 'bati2', 19000, 'motorcycles'),
  2320. ('Bugatti Divo', 'bdivo', 5900000, 'Addon'),
  2321. ('Bestia GTS', 'bestiagts', 55000, 'sports'),
  2322. ('BF400', 'bf400', 6500, 'motorcycles'),
  2323. ('Bf Injection', 'bfinjection', 16000, 'offroad'),
  2324. ('Bifta', 'bifta', 12000, 'offroad'),
  2325. ('Bison', 'bison', 45000, 'vans'),
  2326. ('Blade', 'blade', 15000, 'muscle'),
  2327. ('Blazer', 'blazer', 6500, 'offroad'),
  2328. ('Blazer Sport', 'blazer4', 8500, 'offroad'),
  2329. ('blazer5', 'blazer5', 1755600, 'offroad'),
  2330. ('Blista', 'blista', 8000, 'compacts'),
  2331. ('BMX (velo)', 'bmx', 160, 'motorcycles'),
  2332. ('Bobcat XL', 'bobcatxl', 32000, 'vans'),
  2333. ('Brawler', 'brawler', 45000, 'offroad'),
  2334. ('Brioso R/A', 'brioso', 18000, 'compacts'),
  2335. ('Subaru BRZ RB', 'brzrbv3', 35795, 'Addon'),
  2336. ('Btype', 'btype', 62000, 'sportsclassics'),
  2337. ('Btype Hotroad', 'btype2', 155000, 'sportsclassics'),
  2338. ('Btype Luxe', 'btype3', 85000, 'sportsclassics'),
  2339. ('Buccaneer', 'buccaneer', 18000, 'muscle'),
  2340. ('Buccaneer Rider', 'buccaneer2', 24000, 'muscle'),
  2341. ('Buffalo', 'buffalo', 12000, 'sports'),
  2342. ('Buffalo S', 'buffalo2', 20000, 'sports'),
  2343. ('Bullet', 'bullet', 90000, 'super'),
  2344. ('Burrito', 'burrito3', 19000, 'vans'),
  2345. ('Camper', 'camper', 42000, 'vans'),
  2346. ('Carbonizzare', 'carbonizzare', 75000, 'sports'),
  2347. ('Carbon RS', 'carbonrs', 18000, 'motorcycles'),
  2348. ('Casco', 'casco', 30000, 'sportsclassics'),
  2349. ('Cavalcade', 'cavalcade2', 55000, 'suvs'),
  2350. ('2014 Dodge Charger', 'charger', 48000, 'Addon'),
  2351. ('2016 Dodge Charger', 'charger16', 75000, 'Addon'),
  2352. ('Cheetah', 'cheetah', 375000, 'super'),
  2353. ('Chimera', 'chimera', 38000, 'motorcycles'),
  2354. ('Chino', 'chino', 15000, 'muscle'),
  2355. ('Chino Luxe', 'chino2', 19000, 'muscle'),
  2356. ('Cliffhanger', 'cliffhanger', 9500, 'motorcycles'),
  2357. ('Cognoscenti Cabrio', 'cogcabrio', 55000, 'coupes'),
  2358. ('Cognoscenti', 'cognoscenti', 55000, 'sedans'),
  2359. ('Comet', 'comet2', 65000, 'sports'),
  2360. ('Comet 5', 'comet5', 1145000, 'sports'),
  2361. ('Contender', 'contender', 70000, 'suvs'),
  2362. ('Coquette', 'coquette', 65000, 'sports'),
  2363. ('Coquette Classic', 'coquette2', 40000, 'sportsclassics'),
  2364. ('Coquette BlackFin', 'coquette3', 55000, 'muscle'),
  2365. ('2019 Corvette ZR1', 'corvettezr1', 140000, 'Addon'),
  2366. ('Cruiser (velo)', 'cruiser', 510, 'motorcycles'),
  2367. ('Cyclone', 'cyclone', 1890000, 'super'),
  2368. ('Daemon', 'daemon', 11500, 'motorcycles'),
  2369. ('Daemon High', 'daemon2', 13500, 'motorcycles'),
  2370. ('Defiler', 'defiler', 9800, 'motorcycles'),
  2371. ('Deluxo', 'deluxo', 4721500, 'sportsclassics'),
  2372. ('Jeep Demon Hawk', 'demonhawk', 86000, 'Addon'),
  2373. ('Devel Sixteen', 'develsix', 1800000, 'Addon'),
  2374. ('Dominator', 'dominator', 35000, 'muscle'),
  2375. ('Double T', 'double', 28000, 'motorcycles'),
  2376. ('Dubsta', 'dubsta', 45000, 'suvs'),
  2377. ('Dubsta Luxuary', 'dubsta2', 60000, 'suvs'),
  2378. ('Bubsta 6x6', 'dubsta3', 120000, 'offroad'),
  2379. ('Dukes', 'dukes', 28000, 'muscle'),
  2380. ('Dune Buggy', 'dune', 8000, 'offroad'),
  2381. ('Elegy', 'elegy2', 38500, 'sports'),
  2382. ('Emperor', 'emperor', 8500, 'sedans'),
  2383. ('Enduro', 'enduro', 5500, 'motorcycles'),
  2384. ('Entity XF', 'entityxf', 425000, 'super'),
  2385. ('Esskey', 'esskey', 4200, 'motorcycles'),
  2386. ('Exemplar', 'exemplar', 32000, 'coupes'),
  2387. ('Chevy Camaro Exor', 'exor', 120000, 'Addon'),
  2388. ('2006 Chevy Silverado', 'ext06', 25000, 'Addon'),
  2389. ('F620', 'f620', 40000, 'coupes'),
  2390. ('Ferrari 812', 'f812', 363730, 'Addon'),
  2391. ('Faction', 'faction', 20000, 'muscle'),
  2392. ('Faction Rider', 'faction2', 30000, 'muscle'),
  2393. ('Faction XL', 'faction3', 40000, 'muscle'),
  2394. ('Faggio', 'faggio', 1900, 'motorcycles'),
  2395. ('Vespa', 'faggio2', 2800, 'motorcycles'),
  2396. ('Felon', 'felon', 42000, 'coupes'),
  2397. ('Felon GT', 'felon2', 55000, 'coupes'),
  2398. ('Feltzer', 'feltzer2', 55000, 'sports'),
  2399. ('Stirling GT', 'feltzer3', 65000, 'sportsclassics'),
  2400. ('Fixter (velo)', 'fixter', 225, 'motorcycles'),
  2401. ('FMJ', 'fmj', 185000, 'super'),
  2402. ('Fhantom', 'fq2', 17000, 'suvs'),
  2403. ('Jaguar F Type', 'ftype', 62000, 'Addon'),
  2404. ('Fugitive', 'fugitive', 12000, 'sedans'),
  2405. ('Furore GT', 'furoregt', 45000, 'sports'),
  2406. ('Fusilade', 'fusilade', 40000, 'sports'),
  2407. ('Ferrari Fxxk', 'fxxk', 3000000, 'Addon'),
  2408. ('Gargoyle', 'gargoyle', 16500, 'motorcycles'),
  2409. ('Gauntlet', 'gauntlet', 30000, 'muscle'),
  2410. ('Gang Burrito', 'gburrito', 45000, 'vans'),
  2411. ('Burrito', 'gburrito2', 29000, 'vans'),
  2412. ('Glendale', 'glendale', 6500, 'sedans'),
  2413. ('GMC Sierra', 'gmcs', 60000, 'Addon'),
  2414. ('Grabger', 'granger', 50000, 'suvs'),
  2415. ('Gresley', 'gresley', 47500, 'suvs'),
  2416. ('GT 500', 'gt500', 785000, 'sportsclassics'),
  2417. ('Guardian', 'guardian', 45000, 'offroad'),
  2418. ('Hakuchou', 'hakuchou', 31000, 'motorcycles'),
  2419. ('Hakuchou Sport', 'hakuchou2', 55000, 'motorcycles'),
  2420. ('Dodge hellcat', 'hellcat', 66000, 'Addon'),
  2421. ('Hermes', 'hermes', 535000, 'muscle'),
  2422. ('Hexer', 'hexer', 12000, 'motorcycles'),
  2423. ('Hotknife', 'hotknife', 125000, 'muscle'),
  2424. ('Huntley S', 'huntley', 40000, 'suvs'),
  2425. ('Hustler', 'hustler', 625000, 'muscle'),
  2426. ('Infernus', 'infernus', 180000, 'super'),
  2427. ('Innovation', 'innovation', 23500, 'motorcycles'),
  2428. ('Intruder', 'intruder', 7500, 'sedans'),
  2429. ('Issi', 'issi2', 10000, 'compacts'),
  2430. ('Jackal', 'jackal', 38000, 'coupes'),
  2431. ('Jester', 'jester', 65000, 'sports'),
  2432. ('Jester(Racecar)', 'jester2', 135000, 'sports'),
  2433. ('Journey', 'journey', 6500, 'vans'),
  2434. ('Kamacho', 'kamacho', 345000, 'offroad'),
  2435. ('Khamelion', 'khamelion', 38000, 'sports'),
  2436. ('Kuruma', 'kuruma', 30000, 'sports'),
  2437. ('Ferrari LaFerrari', 'laferrari', 1500000, 'Addon'),
  2438. ('Landstalker', 'landstalker', 35000, 'suvs'),
  2439. ('LB 750sv', 'lb750sv', 495000, 'Addon'),
  2440. ('RE-7B', 'le7b', 325000, 'super'),
  2441. ('Lynx', 'lynx', 40000, 'sports'),
  2442. ('Mamba', 'mamba', 70000, 'sports'),
  2443. ('Manana', 'manana', 12800, 'sportsclassics'),
  2444. ('Manchez', 'manchez', 5300, 'motorcycles'),
  2445. ('Massacro', 'massacro', 65000, 'sports'),
  2446. ('Massacro(Racecar)', 'massacro2', 130000, 'sports'),
  2447. ('Mesa', 'mesa', 16000, 'suvs'),
  2448. ('Mesa Trail', 'mesa3', 40000, 'suvs'),
  2449. ('Minivan', 'minivan', 13000, 'vans'),
  2450. ('Monroe', 'monroe', 55000, 'sportsclassics'),
  2451. ('The Liberator', 'monster', 210000, 'offroad'),
  2452. ('Moonbeam', 'moonbeam', 18000, 'vans'),
  2453. ('Moonbeam Rider', 'moonbeam2', 35000, 'vans'),
  2454. ('Mclaren 720', 'MV720', 285000, 'Addon'),
  2455. ('Nemesis', 'nemesis', 5800, 'motorcycles'),
  2456. ('Neon', 'neon', 1500000, 'sports'),
  2457. ('Nightblade', 'nightblade', 35000, 'motorcycles'),
  2458. ('Nightshade', 'nightshade', 65000, 'muscle'),
  2459. ('9F', 'ninef', 65000, 'sports'),
  2460. ('9F Cabrio', 'ninef2', 80000, 'sports'),
  2461. ('Omnis', 'omnis', 35000, 'sports'),
  2462. ('Oppressor', 'oppressor', 3524500, 'super'),
  2463. ('Oracle XS', 'oracle2', 35000, 'coupes'),
  2464. ('Osiris', 'osiris', 160000, 'super'),
  2465. ('Panto', 'panto', 10000, 'compacts'),
  2466. ('Paradise', 'paradise', 19000, 'vans'),
  2467. ('Pariah', 'pariah', 1420000, 'sports'),
  2468. ('Patriot', 'patriot', 55000, 'suvs'),
  2469. ('PCJ-600', 'pcj', 6200, 'motorcycles'),
  2470. ('Penumbra', 'penumbra', 28000, 'sports'),
  2471. ('Pfister', 'pfister811', 85000, 'super'),
  2472. ('Phoenix', 'phoenix', 12500, 'muscle'),
  2473. ('Picador', 'picador', 18000, 'muscle'),
  2474. ('Pigalle', 'pigalle', 20000, 'sportsclassics'),
  2475. ('Prairie', 'prairie', 12000, 'compacts'),
  2476. ('Premier', 'premier', 8000, 'sedans'),
  2477. ('Primo Custom', 'primo2', 14000, 'sedans'),
  2478. ('X80 Proto', 'prototipo', 2500000, 'super'),
  2479. ('Radius', 'radi', 29000, 'suvs'),
  2480. ('raiden', 'raiden', 1375000, 'sports'),
  2481. ('Rapid GT', 'rapidgt', 35000, 'sports'),
  2482. ('Rapid GT Convertible', 'rapidgt2', 45000, 'sports'),
  2483. ('Rapid GT3', 'rapidgt3', 885000, 'sportsclassics'),
  2484. ('2017 Ford Raptor', 'raptor2017', 53000, 'Addon'),
  2485. ('Reaper', 'reaper', 150000, 'super'),
  2486. ('Rebel', 'rebel2', 35000, 'offroad'),
  2487. ('Regina', 'regina', 5000, 'sedans'),
  2488. ('Retinue', 'retinue', 615000, 'sportsclassics'),
  2489. ('Revolter', 'revolter', 1610000, 'sports'),
  2490. ('riata', 'riata', 380000, 'offroad'),
  2491. ('Rocoto', 'rocoto', 45000, 'suvs'),
  2492. ('2016 Range Rover svr', 'rsvr16', 141000, 'Addon'),
  2493. ('Ruffian', 'ruffian', 6800, 'motorcycles'),
  2494. ('Ruiner 2', 'ruiner2', 5745600, 'muscle'),
  2495. ('Rumpo', 'rumpo', 15000, 'vans'),
  2496. ('Rumpo Trail', 'rumpo3', 19500, 'vans'),
  2497. ('Sabre Turbo', 'sabregt', 20000, 'muscle'),
  2498. ('Sabre GT', 'sabregt2', 25000, 'muscle'),
  2499. ('Sanchez', 'sanchez', 5300, 'motorcycles'),
  2500. ('Sanchez Sport', 'sanchez2', 5300, 'motorcycles'),
  2501. ('Sanctus', 'sanctus', 25000, 'motorcycles'),
  2502. ('Sandking', 'sandking', 55000, 'offroad'),
  2503. ('Savestra', 'savestra', 990000, 'sportsclassics'),
  2504. ('SC 1', 'sc1', 1603000, 'super'),
  2505. ('Schafter', 'schafter2', 25000, 'sedans'),
  2506. ('Schafter V12', 'schafter3', 50000, 'sports'),
  2507. ('Scorcher (velo)', 'scorcher', 280, 'motorcycles'),
  2508. ('Seminole', 'seminole', 25000, 'suvs'),
  2509. ('Mclaren Senna', 'senna', 1450000, 'Addon'),
  2510. ('Sentinel', 'sentinel', 32000, 'coupes'),
  2511. ('Sentinel XS', 'sentinel2', 40000, 'coupes'),
  2512. ('Sentinel3', 'sentinel3', 650000, 'sports'),
  2513. ('Seven 70', 'seven70', 39500, 'sports'),
  2514. ('ETR1', 'sheava', 220000, 'super'),
  2515. ('Shotaro Concept', 'shotaro', 320000, 'motorcycles'),
  2516. ('Nissan Skyline', 'skyline', 84000, 'Addon'),
  2517. ('Slam Van', 'slamvan3', 11500, 'muscle'),
  2518. ('Sovereign', 'sovereign', 22000, 'motorcycles'),
  2519. ('Stinger', 'stinger', 80000, 'sportsclassics'),
  2520. ('Stinger GT', 'stingergt', 75000, 'sportsclassics'),
  2521. ('Streiter', 'streiter', 500000, 'sports'),
  2522. ('Stretch', 'stretch', 90000, 'sedans'),
  2523. ('Stromberg', 'stromberg', 3185350, 'sports'),
  2524. ('Sultan', 'sultan', 15000, 'sports'),
  2525. ('Sultan RS', 'sultanrs', 65000, 'super'),
  2526. ('Super Diamond', 'superd', 130000, 'sedans'),
  2527. ('Surano', 'surano', 50000, 'sports'),
  2528. ('Surfer', 'surfer', 12000, 'vans'),
  2529. ('T20', 't20', 300000, 'super'),
  2530. ('Tailgater', 'tailgater', 30000, 'sedans'),
  2531. ('Tampa', 'tampa', 16000, 'muscle'),
  2532. ('Drift Tampa', 'tampa2', 80000, 'sports'),
  2533. ('Thrust', 'thrust', 24000, 'motorcycles'),
  2534. ('2017 Nissan Titan', 'titan17', 50000, 'Addon'),
  2535. ('Tri bike (velo)', 'tribike3', 520, 'motorcycles'),
  2536. ('Trophy Truck', 'trophytruck', 60000, 'offroad'),
  2537. ('Trophy Truck Limited', 'trophytruck2', 80000, 'offroad'),
  2538. ('Tropos', 'tropos', 40000, 'sports'),
  2539. ('Turismo R', 'turismor', 350000, 'super'),
  2540. ('Tyrus', 'tyrus', 600000, 'super'),
  2541. ('Vacca', 'vacca', 120000, 'super'),
  2542. ('Vader', 'vader', 7200, 'motorcycles'),
  2543. ('Verlierer', 'verlierer2', 70000, 'sports'),
  2544. ('Vigero', 'vigero', 12500, 'muscle'),
  2545. ('Virgo', 'virgo', 14000, 'muscle'),
  2546. ('Viseris', 'viseris', 875000, 'sportsclassics'),
  2547. ('Visione', 'visione', 2250000, 'super'),
  2548. ('Voltic', 'voltic', 90000, 'super'),
  2549. ('Voltic 2', 'voltic2', 3830400, 'super'),
  2550. ('Voodoo', 'voodoo', 7200, 'muscle'),
  2551. ('Vortex', 'vortex', 9800, 'motorcycles'),
  2552. ('Warrener', 'warrener', 4000, 'sedans'),
  2553. ('Washington', 'washington', 9000, 'sedans'),
  2554. ('Windsor', 'windsor', 95000, 'coupes'),
  2555. ('Windsor Drop', 'windsor2', 125000, 'coupes'),
  2556. ('Woflsbane', 'wolfsbane', 9000, 'motorcycles'),
  2557. ('XLS', 'xls', 32000, 'suvs'),
  2558. ('Yosemite', 'yosemite', 485000, 'muscle'),
  2559. ('Youga', 'youga', 10800, 'vans'),
  2560. ('Youga Luxuary', 'youga2', 14500, 'vans'),
  2561. ('Z190', 'z190', 900000, 'sportsclassics'),
  2562. ('Zentorno', 'zentorno', 1500000, 'super'),
  2563. ('Zion', 'zion', 36000, 'coupes'),
  2564. ('Zion Cabrio', 'zion2', 45000, 'coupes'),
  2565. ('2017 Camaro ZL1', 'zl12017', 62135, 'Addon'),
  2566. ('Zombie', 'zombiea', 9500, 'motorcycles'),
  2567. ('Zombie Luxuary', 'zombieb', 12000, 'motorcycles'),
  2568. ('Z-Type', 'ztype', 220000, 'sportsclassics');
  2569.  
  2570. -- --------------------------------------------------------
  2571.  
  2572. --
  2573. -- Table structure for table `vehicle_categories`
  2574. --
  2575.  
  2576. CREATE TABLE `vehicle_categories` (
  2577. `name` varchar(60) NOT NULL,
  2578. `label` varchar(60) NOT NULL
  2579. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2580.  
  2581. --
  2582. -- Dumping data for table `vehicle_categories`
  2583. --
  2584.  
  2585. INSERT INTO `vehicle_categories` (`name`, `label`) VALUES
  2586. ('Addon', 'Addon'),
  2587. ('compacts', 'Compacts'),
  2588. ('coupes', 'Coupés'),
  2589. ('motorcycles', 'Motos'),
  2590. ('muscle', 'Muscle'),
  2591. ('offroad', 'Off Road'),
  2592. ('sedans', 'Sedans'),
  2593. ('sports', 'Sports'),
  2594. ('sportsclassics', 'Sports Classics'),
  2595. ('super', 'Super'),
  2596. ('suvs', 'SUVs'),
  2597. ('vans', 'Vans');
  2598.  
  2599. -- --------------------------------------------------------
  2600.  
  2601. --
  2602. -- Table structure for table `vehicle_sold`
  2603. --
  2604.  
  2605. CREATE TABLE `vehicle_sold` (
  2606. `client` varchar(50) NOT NULL,
  2607. `model` varchar(50) NOT NULL,
  2608. `plate` varchar(50) NOT NULL,
  2609. `soldby` varchar(50) NOT NULL,
  2610. `date` varchar(50) NOT NULL
  2611. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2612.  
  2613. -- --------------------------------------------------------
  2614.  
  2615. --
  2616. -- Table structure for table `weashops`
  2617. --
  2618.  
  2619. CREATE TABLE `weashops` (
  2620. `id` int(11) NOT NULL,
  2621. `zone` varchar(255) NOT NULL,
  2622. `item` varchar(255) NOT NULL,
  2623. `price` int(11) NOT NULL
  2624. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2625.  
  2626. --
  2627. -- Dumping data for table `weashops`
  2628. --
  2629.  
  2630. INSERT INTO `weashops` (`id`, `zone`, `item`, `price`) VALUES
  2631. (1, 'GunShop', 'WEAPON_PISTOL', 300),
  2632. (2, 'BlackWeashop', 'WEAPON_PISTOL', 500),
  2633. (3, 'GunShop', 'WEAPON_FLASHLIGHT', 60),
  2634. (4, 'BlackWeashop', 'WEAPON_FLASHLIGHT', 70),
  2635. (5, 'GunShop', 'WEAPON_MACHETE', 90),
  2636. (6, 'BlackWeashop', 'WEAPON_MACHETE', 110),
  2637. (7, 'GunShop', 'WEAPON_NIGHTSTICK', 150),
  2638. (8, 'BlackWeashop', 'WEAPON_NIGHTSTICK', 150),
  2639. (9, 'GunShop', 'WEAPON_BAT', 100),
  2640. (10, 'BlackWeashop', 'WEAPON_BAT', 100),
  2641. (11, 'GunShop', 'WEAPON_STUNGUN', 50),
  2642. (12, 'BlackWeashop', 'WEAPON_STUNGUN', 50),
  2643. (13, 'GunShop', 'WEAPON_MICROSMG', 1400),
  2644. (14, 'BlackWeashop', 'WEAPON_MICROSMG', 1700),
  2645. (15, 'GunShop', 'WEAPON_PUMPSHOTGUN', 3400),
  2646. (16, 'BlackWeashop', 'WEAPON_PUMPSHOTGUN', 3500),
  2647. (17, 'GunShop', 'WEAPON_ASSAULTRIFLE', 10000),
  2648. (18, 'BlackWeashop', 'WEAPON_ASSAULTRIFLE', 11000),
  2649. (19, 'GunShop', 'WEAPON_SPECIALCARBINE', 15000),
  2650. (20, 'BlackWeashop', 'WEAPON_SPECIALCARBINE', 16500),
  2651. (21, 'GunShop', 'WEAPON_SNIPERRIFLE', 22000),
  2652. (22, 'BlackWeashop', 'WEAPON_SNIPERRIFLE', 24000),
  2653. (23, 'GunShop', 'WEAPON_FIREWORK', 18000),
  2654. (24, 'BlackWeashop', 'WEAPON_FIREWORK', 20000),
  2655. (25, 'GunShop', 'WEAPON_GRENADE', 500),
  2656. (26, 'BlackWeashop', 'WEAPON_GRENADE', 650),
  2657. (27, 'GunShop', 'WEAPON_BZGAS', 200),
  2658. (28, 'BlackWeashop', 'WEAPON_BZGAS', 350),
  2659. (29, 'GunShop', 'WEAPON_FIREEXTINGUISHER', 100),
  2660. (30, 'BlackWeashop', 'WEAPON_FIREEXTINGUISHER', 100),
  2661. (31, 'GunShop', 'WEAPON_BALL', 50),
  2662. (32, 'BlackWeashop', 'WEAPON_BALL', 50),
  2663. (33, 'GunShop', 'WEAPON_SMOKEGRENADE', 100),
  2664. (34, 'BlackWeashop', 'WEAPON_SMOKEGRENADE', 100),
  2665. (35, 'BlackWeashop', 'WEAPON_APPISTOL', 1100),
  2666. (36, 'BlackWeashop', 'WEAPON_CARBINERIFLE', 12000),
  2667. (37, 'BlackWeashop', 'WEAPON_HEAVYSNIPER', 30000),
  2668. (38, 'BlackWeashop', 'WEAPON_MINIGUN', 45000),
  2669. (39, 'BlackWeashop', 'WEAPON_RAILGUN', 50000),
  2670. (40, 'BlackWeashop', 'WEAPON_STICKYBOMB', 500);
  2671.  
  2672. --
  2673. -- Indexes for dumped tables
  2674. --
  2675.  
  2676. --
  2677. -- Indexes for table `addon_account`
  2678. --
  2679. ALTER TABLE `addon_account`
  2680. ADD PRIMARY KEY (`name`);
  2681.  
  2682. --
  2683. -- Indexes for table `addon_account_data`
  2684. --
  2685. ALTER TABLE `addon_account_data`
  2686. ADD PRIMARY KEY (`id`),
  2687. ADD UNIQUE KEY `index_addon_account_data_account_name_owner` (`account_name`,`owner`),
  2688. ADD KEY `index_addon_account_data_account_name` (`account_name`);
  2689.  
  2690. --
  2691. -- Indexes for table `addon_inventory`
  2692. --
  2693. ALTER TABLE `addon_inventory`
  2694. ADD PRIMARY KEY (`name`);
  2695.  
  2696. --
  2697. -- Indexes for table `addon_inventory_items`
  2698. --
  2699. ALTER TABLE `addon_inventory_items`
  2700. ADD PRIMARY KEY (`id`),
  2701. ADD KEY `index_addon_inventory_items_inventory_name_name` (`inventory_name`,`name`),
  2702. ADD KEY `index_addon_inventory_items_inventory_name_name_owner` (`inventory_name`,`name`,`owner`),
  2703. ADD KEY `index_addon_inventory_inventory_name` (`inventory_name`);
  2704.  
  2705. --
  2706. -- Indexes for table `billing`
  2707. --
  2708. ALTER TABLE `billing`
  2709. ADD PRIMARY KEY (`id`);
  2710.  
  2711. --
  2712. -- Indexes for table `cardealer_vehicles`
  2713. --
  2714. ALTER TABLE `cardealer_vehicles`
  2715. ADD PRIMARY KEY (`id`);
  2716.  
  2717. --
  2718. -- Indexes for table `characters`
  2719. --
  2720. ALTER TABLE `characters`
  2721. ADD PRIMARY KEY (`id`);
  2722.  
  2723. --
  2724. -- Indexes for table `datastore`
  2725. --
  2726. ALTER TABLE `datastore`
  2727. ADD PRIMARY KEY (`name`);
  2728.  
  2729. --
  2730. -- Indexes for table `datastore_data`
  2731. --
  2732. ALTER TABLE `datastore_data`
  2733. ADD PRIMARY KEY (`id`),
  2734. ADD UNIQUE KEY `index_datastore_data_name_owner` (`name`,`owner`),
  2735. ADD KEY `index_datastore_data_name` (`name`);
  2736.  
  2737. --
  2738. -- Indexes for table `fine_types`
  2739. --
  2740. ALTER TABLE `fine_types`
  2741. ADD PRIMARY KEY (`id`);
  2742.  
  2743. --
  2744. -- Indexes for table `glovebox_inventory`
  2745. --
  2746. ALTER TABLE `glovebox_inventory`
  2747. ADD PRIMARY KEY (`id`),
  2748. ADD UNIQUE KEY `plate` (`plate`);
  2749.  
  2750. --
  2751. -- Indexes for table `impounded_vehicles`
  2752. --
  2753. ALTER TABLE `impounded_vehicles`
  2754. ADD PRIMARY KEY (`id`),
  2755. ADD KEY `owner` (`owner`),
  2756. ADD KEY `plate` (`plate`);
  2757.  
  2758. --
  2759. -- Indexes for table `items`
  2760. --
  2761. ALTER TABLE `items`
  2762. ADD PRIMARY KEY (`name`);
  2763.  
  2764. --
  2765. -- Indexes for table `jobs`
  2766. --
  2767. ALTER TABLE `jobs`
  2768. ADD PRIMARY KEY (`name`);
  2769.  
  2770. --
  2771. -- Indexes for table `job_grades`
  2772. --
  2773. ALTER TABLE `job_grades`
  2774. ADD PRIMARY KEY (`id`);
  2775.  
  2776. --
  2777. -- Indexes for table `licenses`
  2778. --
  2779. ALTER TABLE `licenses`
  2780. ADD PRIMARY KEY (`type`);
  2781.  
  2782. --
  2783. -- Indexes for table `owned_properties`
  2784. --
  2785. ALTER TABLE `owned_properties`
  2786. ADD PRIMARY KEY (`id`);
  2787.  
  2788. --
  2789. -- Indexes for table `owned_vehicles`
  2790. --
  2791. ALTER TABLE `owned_vehicles`
  2792. ADD PRIMARY KEY (`plate`);
  2793.  
  2794. --
  2795. -- Indexes for table `phone_app_chat`
  2796. --
  2797. ALTER TABLE `phone_app_chat`
  2798. ADD PRIMARY KEY (`id`);
  2799.  
  2800. --
  2801. -- Indexes for table `phone_calls`
  2802. --
  2803. ALTER TABLE `phone_calls`
  2804. ADD PRIMARY KEY (`id`);
  2805.  
  2806. --
  2807. -- Indexes for table `phone_messages`
  2808. --
  2809. ALTER TABLE `phone_messages`
  2810. ADD PRIMARY KEY (`id`);
  2811.  
  2812. --
  2813. -- Indexes for table `phone_users_contacts`
  2814. --
  2815. ALTER TABLE `phone_users_contacts`
  2816. ADD PRIMARY KEY (`id`);
  2817.  
  2818. --
  2819. -- Indexes for table `playerstattoos`
  2820. --
  2821. ALTER TABLE `playerstattoos`
  2822. ADD PRIMARY KEY (`id`);
  2823.  
  2824. --
  2825. -- Indexes for table `properties`
  2826. --
  2827. ALTER TABLE `properties`
  2828. ADD PRIMARY KEY (`id`);
  2829.  
  2830. --
  2831. -- Indexes for table `rented_vehicles`
  2832. --
  2833. ALTER TABLE `rented_vehicles`
  2834. ADD PRIMARY KEY (`plate`);
  2835.  
  2836. --
  2837. -- Indexes for table `shops`
  2838. --
  2839. ALTER TABLE `shops`
  2840. ADD PRIMARY KEY (`id`);
  2841.  
  2842. --
  2843. -- Indexes for table `society_moneywash`
  2844. --
  2845. ALTER TABLE `society_moneywash`
  2846. ADD PRIMARY KEY (`id`);
  2847.  
  2848. --
  2849. -- Indexes for table `trunk_inventory`
  2850. --
  2851. ALTER TABLE `trunk_inventory`
  2852. ADD PRIMARY KEY (`id`),
  2853. ADD UNIQUE KEY `plate` (`plate`);
  2854.  
  2855. --
  2856. -- Indexes for table `twitter_accounts`
  2857. --
  2858. ALTER TABLE `twitter_accounts`
  2859. ADD PRIMARY KEY (`id`),
  2860. ADD UNIQUE KEY `username` (`username`);
  2861.  
  2862. --
  2863. -- Indexes for table `twitter_likes`
  2864. --
  2865. ALTER TABLE `twitter_likes`
  2866. ADD PRIMARY KEY (`id`),
  2867. ADD KEY `FK_twitter_likes_twitter_accounts` (`authorId`),
  2868. ADD KEY `FK_twitter_likes_twitter_tweets` (`tweetId`);
  2869.  
  2870. --
  2871. -- Indexes for table `twitter_tweets`
  2872. --
  2873. ALTER TABLE `twitter_tweets`
  2874. ADD PRIMARY KEY (`id`),
  2875. ADD KEY `FK_twitter_tweets_twitter_accounts` (`authorId`);
  2876.  
  2877. --
  2878. -- Indexes for table `users`
  2879. --
  2880. ALTER TABLE `users`
  2881. ADD PRIMARY KEY (`identifier`),
  2882. ADD UNIQUE KEY `index_users_phone_number` (`phone_number`);
  2883.  
  2884. --
  2885. -- Indexes for table `user_accounts`
  2886. --
  2887. ALTER TABLE `user_accounts`
  2888. ADD PRIMARY KEY (`id`);
  2889.  
  2890. --
  2891. -- Indexes for table `user_contacts`
  2892. --
  2893. ALTER TABLE `user_contacts`
  2894. ADD PRIMARY KEY (`id`),
  2895. ADD KEY `index_user_contacts_identifier_name_number` (`identifier`,`name`,`number`);
  2896.  
  2897. --
  2898. -- Indexes for table `user_inventory`
  2899. --
  2900. ALTER TABLE `user_inventory`
  2901. ADD PRIMARY KEY (`id`);
  2902.  
  2903. --
  2904. -- Indexes for table `user_licenses`
  2905. --
  2906. ALTER TABLE `user_licenses`
  2907. ADD PRIMARY KEY (`id`);
  2908.  
  2909. --
  2910. -- Indexes for table `vehicles`
  2911. --
  2912. ALTER TABLE `vehicles`
  2913. ADD PRIMARY KEY (`model`);
  2914.  
  2915. --
  2916. -- Indexes for table `vehicle_categories`
  2917. --
  2918. ALTER TABLE `vehicle_categories`
  2919. ADD PRIMARY KEY (`name`);
  2920.  
  2921. --
  2922. -- Indexes for table `vehicle_sold`
  2923. --
  2924. ALTER TABLE `vehicle_sold`
  2925. ADD PRIMARY KEY (`plate`);
  2926.  
  2927. --
  2928. -- Indexes for table `weashops`
  2929. --
  2930. ALTER TABLE `weashops`
  2931. ADD PRIMARY KEY (`id`);
  2932.  
  2933. --
  2934. -- AUTO_INCREMENT for dumped tables
  2935. --
  2936.  
  2937. --
  2938. -- AUTO_INCREMENT for table `addon_account_data`
  2939. --
  2940. ALTER TABLE `addon_account_data`
  2941. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
  2942.  
  2943. --
  2944. -- AUTO_INCREMENT for table `addon_inventory_items`
  2945. --
  2946. ALTER TABLE `addon_inventory_items`
  2947. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  2948.  
  2949. --
  2950. -- AUTO_INCREMENT for table `billing`
  2951. --
  2952. ALTER TABLE `billing`
  2953. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  2954.  
  2955. --
  2956. -- AUTO_INCREMENT for table `cardealer_vehicles`
  2957. --
  2958. ALTER TABLE `cardealer_vehicles`
  2959. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  2960.  
  2961. --
  2962. -- AUTO_INCREMENT for table `characters`
  2963. --
  2964. ALTER TABLE `characters`
  2965. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
  2966.  
  2967. --
  2968. -- AUTO_INCREMENT for table `datastore_data`
  2969. --
  2970. ALTER TABLE `datastore_data`
  2971. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
  2972.  
  2973. --
  2974. -- AUTO_INCREMENT for table `fine_types`
  2975. --
  2976. ALTER TABLE `fine_types`
  2977. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53;
  2978.  
  2979. --
  2980. -- AUTO_INCREMENT for table `glovebox_inventory`
  2981. --
  2982. ALTER TABLE `glovebox_inventory`
  2983. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
  2984.  
  2985. --
  2986. -- AUTO_INCREMENT for table `impounded_vehicles`
  2987. --
  2988. ALTER TABLE `impounded_vehicles`
  2989. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  2990.  
  2991. --
  2992. -- AUTO_INCREMENT for table `job_grades`
  2993. --
  2994. ALTER TABLE `job_grades`
  2995. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;
  2996.  
  2997. --
  2998. -- AUTO_INCREMENT for table `owned_properties`
  2999. --
  3000. ALTER TABLE `owned_properties`
  3001. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
  3002.  
  3003. --
  3004. -- AUTO_INCREMENT for table `phone_app_chat`
  3005. --
  3006. ALTER TABLE `phone_app_chat`
  3007. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;
  3008.  
  3009. --
  3010. -- AUTO_INCREMENT for table `phone_calls`
  3011. --
  3012. ALTER TABLE `phone_calls`
  3013. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=137;
  3014.  
  3015. --
  3016. -- AUTO_INCREMENT for table `phone_messages`
  3017. --
  3018. ALTER TABLE `phone_messages`
  3019. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=169;
  3020.  
  3021. --
  3022. -- AUTO_INCREMENT for table `phone_users_contacts`
  3023. --
  3024. ALTER TABLE `phone_users_contacts`
  3025. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
  3026.  
  3027. --
  3028. -- AUTO_INCREMENT for table `playerstattoos`
  3029. --
  3030. ALTER TABLE `playerstattoos`
  3031. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
  3032.  
  3033. --
  3034. -- AUTO_INCREMENT for table `properties`
  3035. --
  3036. ALTER TABLE `properties`
  3037. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=110;
  3038.  
  3039. --
  3040. -- AUTO_INCREMENT for table `shops`
  3041. --
  3042. ALTER TABLE `shops`
  3043. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=67;
  3044.  
  3045. --
  3046. -- AUTO_INCREMENT for table `society_moneywash`
  3047. --
  3048. ALTER TABLE `society_moneywash`
  3049. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  3050.  
  3051. --
  3052. -- AUTO_INCREMENT for table `trunk_inventory`
  3053. --
  3054. ALTER TABLE `trunk_inventory`
  3055. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
  3056.  
  3057. --
  3058. -- AUTO_INCREMENT for table `twitter_accounts`
  3059. --
  3060. ALTER TABLE `twitter_accounts`
  3061. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;
  3062.  
  3063. --
  3064. -- AUTO_INCREMENT for table `twitter_likes`
  3065. --
  3066. ALTER TABLE `twitter_likes`
  3067. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=141;
  3068.  
  3069. --
  3070. -- AUTO_INCREMENT for table `twitter_tweets`
  3071. --
  3072. ALTER TABLE `twitter_tweets`
  3073. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=192;
  3074.  
  3075. --
  3076. -- AUTO_INCREMENT for table `user_accounts`
  3077. --
  3078. ALTER TABLE `user_accounts`
  3079. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
  3080.  
  3081. --
  3082. -- AUTO_INCREMENT for table `user_contacts`
  3083. --
  3084. ALTER TABLE `user_contacts`
  3085. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  3086.  
  3087. --
  3088. -- AUTO_INCREMENT for table `user_inventory`
  3089. --
  3090. ALTER TABLE `user_inventory`
  3091. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1376;
  3092.  
  3093. --
  3094. -- AUTO_INCREMENT for table `user_licenses`
  3095. --
  3096. ALTER TABLE `user_licenses`
  3097. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  3098.  
  3099. --
  3100. -- AUTO_INCREMENT for table `weashops`
  3101. --
  3102. ALTER TABLE `weashops`
  3103. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41;
  3104.  
  3105. --
  3106. -- Constraints for dumped tables
  3107. --
  3108.  
  3109. --
  3110. -- Constraints for table `twitter_likes`
  3111. --
  3112. ALTER TABLE `twitter_likes`
  3113. ADD CONSTRAINT `FK_twitter_likes_twitter_accounts` FOREIGN KEY (`authorId`) REFERENCES `twitter_accounts` (`id`),
  3114. ADD CONSTRAINT `FK_twitter_likes_twitter_tweets` FOREIGN KEY (`tweetId`) REFERENCES `twitter_tweets` (`id`) ON DELETE CASCADE;
  3115.  
  3116. --
  3117. -- Constraints for table `twitter_tweets`
  3118. --
  3119. ALTER TABLE `twitter_tweets`
  3120. ADD CONSTRAINT `FK_twitter_tweets_twitter_accounts` FOREIGN KEY (`authorId`) REFERENCES `twitter_accounts` (`id`);
  3121. COMMIT;
  3122.  
  3123. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  3124. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  3125. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement