· 7 years ago · Feb 23, 2019, 03:30 PM
1-- phpMyAdmin SQL Dump
2-- version 4.2.12deb2+deb8u4
3-- http://www.phpmyadmin.net
4--
5-- Host: localhost
6-- Erstellungszeit: 23. Feb 2019 um 16:23
7-- Server Version: 10.0.38-MariaDB-0+deb8u1
8-- PHP-Version: 5.6.40-0+deb8u1
9
10SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11SET time_zone = "+00:00";
12
13
14/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17/*!40101 SET NAMES utf8 */;
18
19--
20-- Datenbank: `exile`
21--
22
23-- --------------------------------------------------------
24
25--
26-- Tabellenstruktur für Tabelle `account`
27--
28
29CREATE TABLE IF NOT EXISTS `account` (
30 `uid` varchar(32) NOT NULL,
31 `clan_id` int(11) unsigned DEFAULT NULL,
32 `name` varchar(64) NOT NULL,
33 `score` int(11) NOT NULL DEFAULT '0',
34 `kills` int(11) unsigned NOT NULL DEFAULT '0',
35 `deaths` int(11) unsigned NOT NULL DEFAULT '0',
36 `locker` int(11) NOT NULL DEFAULT '0',
37 `first_connect_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
38 `last_connect_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
39 `last_disconnect_at` datetime DEFAULT NULL,
40 `total_connections` int(11) unsigned NOT NULL DEFAULT '1',
41 `whitelisted` int(1) unsigned NOT NULL DEFAULT '0'
42) ENGINE=InnoDB DEFAULT CHARSET=utf8;
43
44--
45-- Daten für Tabelle `account`
46--
47
48INSERT INTO `account` (`uid`, `clan_id`, `name`, `score`, `kills`, `deaths`, `locker`, `first_connect_at`, `last_connect_at`, `last_disconnect_at`, `total_connections`, `whitelisted`) VALUES
49('76561198040322880', 1, 'Snagg Pepper', 41269, 0, 17, 99069400, '2019-02-17 01:09:30', '2019-02-21 22:26:18', '2019-02-21 21:55:14', 32, 0),
50('76561198088733718', 1, 'Zen Zamora', 69475, 1, 19, 254178, '2019-02-17 16:22:45', '2019-02-21 22:24:04', '2019-02-21 21:54:57', 30, 0),
51('76561198089886093', 2, 'Jason Bull', 17635, 2, 8, 99256, '2019-02-18 16:02:42', '2019-02-21 22:55:55', '2019-02-21 18:56:45', 13, 0),
52('76561198133314927', 1, 'Dr. Leon Koch', 10114, 0, 15, 1266, '2019-02-17 01:31:54', '2019-02-20 18:28:50', '2019-02-20 19:09:58', 19, 0),
53('76561198150621451', 2, 'Roberto Nello', 55784, 0, 2, 269727, '2019-02-20 02:12:12', '2019-02-21 22:23:30', '2019-02-21 19:18:46', 8, 0),
54('76561198162261359', 1, 'Peter Koch', 18447, 0, 4, 42448, '2019-02-17 01:10:53', '2019-02-21 22:19:27', '2019-02-17 19:16:17', 8, 0),
55('DMS_PersistentVehicle', NULL, 'DMS_PersistentVehicle', 0, 0, 0, 0, '2019-02-17 01:09:33', '2019-02-17 01:09:33', NULL, 1, 0);
56
57-- --------------------------------------------------------
58
59--
60-- Tabellenstruktur für Tabelle `clan`
61--
62
63CREATE TABLE IF NOT EXISTS `clan` (
64`id` int(11) unsigned NOT NULL,
65 `name` varchar(64) NOT NULL,
66 `leader_uid` varchar(32) NOT NULL,
67 `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
68) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
69
70--
71-- Daten für Tabelle `clan`
72--
73
74INSERT INTO `clan` (`id`, `name`, `leader_uid`, `created_at`) VALUES
75(1, 'Talha', '76561198040322880', '2019-02-17 01:32:10'),
76(2, 'Cosa Nostra', '76561198089886093', '2019-02-21 16:18:06');
77
78-- --------------------------------------------------------
79
80--
81-- Tabellenstruktur für Tabelle `clan_map_marker`
82--
83
84CREATE TABLE IF NOT EXISTS `clan_map_marker` (
85`id` int(11) unsigned NOT NULL,
86 `clan_id` int(11) unsigned NOT NULL,
87 `markerType` tinyint(4) NOT NULL DEFAULT '-1',
88 `positionArr` text NOT NULL,
89 `color` varchar(255) NOT NULL,
90 `icon` varchar(255) NOT NULL,
91 `iconSize` float unsigned NOT NULL,
92 `label` varchar(255) NOT NULL,
93 `labelSize` float unsigned NOT NULL
94) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
95
96--
97-- Daten für Tabelle `clan_map_marker`
98--
99
100INSERT INTO `clan_map_marker` (`id`, `clan_id`, `markerType`, `positionArr`, `color`, `icon`, `iconSize`, `label`, `labelSize`) VALUES
101(1, 1, 0, '[7915.23,7720.53]', '[0.866667,0.14902,0.14902,1]', 'a3\\ui_f\\data\\map\\markers\\system\\dummy_ca.paa', 24.4004, 'Sikerim Weeden stinkt', 0.181601);
102
103-- --------------------------------------------------------
104
105--
106-- Tabellenstruktur für Tabelle `construction`
107--
108
109CREATE TABLE IF NOT EXISTS `construction` (
110`id` int(11) unsigned NOT NULL,
111 `class` varchar(64) NOT NULL,
112 `account_uid` varchar(32) NOT NULL,
113 `spawned_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
114 `position_x` double NOT NULL DEFAULT '0',
115 `position_y` double NOT NULL DEFAULT '0',
116 `position_z` double NOT NULL DEFAULT '0',
117 `direction_x` double NOT NULL DEFAULT '0',
118 `direction_y` double NOT NULL DEFAULT '0',
119 `direction_z` double NOT NULL DEFAULT '0',
120 `up_x` double NOT NULL DEFAULT '0',
121 `up_y` double NOT NULL DEFAULT '0',
122 `up_z` double NOT NULL DEFAULT '0',
123 `is_locked` tinyint(1) NOT NULL DEFAULT '0',
124 `pin_code` varchar(6) NOT NULL DEFAULT '000000',
125 `damage` tinyint(1) unsigned DEFAULT '0',
126 `territory_id` int(11) unsigned DEFAULT NULL,
127 `last_updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
128 `deleted_at` datetime DEFAULT NULL
129) ENGINE=InnoDB AUTO_INCREMENT=784 DEFAULT CHARSET=utf8;
130
131--
132-- Daten für Tabelle `construction`
133--
134
135INSERT INTO `construction` (`id`, `class`, `account_uid`, `spawned_at`, `position_x`, `position_y`, `position_z`, `direction_x`, `direction_y`, `direction_z`, `up_x`, `up_y`, `up_z`, `is_locked`, `pin_code`, `damage`, `territory_id`, `last_updated_at`, `deleted_at`) VALUES
136(3, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 02:51:06', 4694.0654297, 10623.730469, -0.00305176, -0.0300346, 0.999549, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:26:44', NULL),
137(4, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 02:53:29', 4705.987793, 10623.540039, 0.00143433, 0.0280905, 0.999605, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:26:47', NULL),
138(6, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 02:54:03', 4694.516113, 10620.443359, -0.00255361, -0.0312385, 0.999512, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 02:54:03', NULL),
139(7, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 02:54:18', 4691.343262, 10620.560547, -0.0110569, 0.999185, 0.0403646, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:12:18', NULL),
140(8, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 02:54:34', 4700.43457, 10620.556641, -0.00372314, 0.99998, 0.00627211, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 02:54:34', NULL),
141(13, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 02:56:25', 4691.569336, 10614.579102, 0.0225011, -0.9994, -0.0346257, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 00:41:53', NULL),
142(14, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 02:56:45', 4691.6875, 10603.0722656, 0.00143433, 0.999565, 0.0294991, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:25:19', NULL),
143(17, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 02:59:25', 4691.976074, 10597.172852, 0.0162964, -0.998075, -0.0620115, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:12:12', NULL),
144(19, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:00:26', 4700.605957, 10614.65918, 0.00143433, -0.0324429, 0.999474, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:00:26', NULL),
145(20, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:01:27', 4706.337402, 10620.512695, 0.00143433, 0.0119978, 0.999928, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:01:27', NULL),
146(27, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:03:35', 4706.522461, 10614.595703, 0.00286865, 0.999996, 0.00269349, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:03:35', NULL),
147(28, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:03:52', 4706.463867, 10608.742188, 0.00143433, -0.999846, 0.0175572, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:03:52', NULL),
148(29, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:04:11', 4695.227051, 10594.383789, 0.000957698, 0.0391818, -0.999232, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:26:25', NULL),
149(30, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:04:22', 4701.192383, 10594.824219, 0.00143433, 0.0697477, -0.997565, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:26:26', NULL),
150(33, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 03:05:27', 4694.820312, 10602.729492, 0.0199199, 0.0216721, -0.999765, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:12:08', NULL),
151(34, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:05:37', 4700.808105, 10602.797852, -0.00158691, 0.999812, 0.0193977, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:05:37', NULL),
152(35, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:05:46', 4706.594727, 10602.90918, -0.000152588, 0, 0.000326471, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:05:46', NULL),
153(37, 'Exile_Construction_WoodDrawBridge_Reinforced_Static', '76561198040322880', '2019-02-17 03:06:19', 4707.137207, 10595.152344, 0.00128174, 0.0220978, -0.999756, 0, 0, 0, 1, -1, '1404', 0, 1, '2019-02-20 17:02:08', NULL),
154(39, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:07:03', 4712.171387, 10620.370117, 0.00286865, 0.999992, 0.00388975, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:07:03', NULL),
155(40, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:07:13', 4711.994141, 10623.447266, 0.00430298, 0.0156646, 0.999877, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:26:49', NULL),
156(42, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:07:37', 4712.369629, 10614.379883, 0.00430298, 0.00028983, -0, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:07:37', NULL),
157(43, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:07:46', 4715.0854492, 10614.388672, 0.0057373, 0.999998, 0.00193234, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:27:43', NULL),
158(44, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:08:57', 4712.420898, 10608.371094, 0.00286865, 0.99993, -0.0117923, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:08:57', NULL),
159(45, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:09:08', 4715.0639648, 10608.438477, 0.00430298, 0.999988, -0.00494935, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:27:49', NULL),
160(46, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:09:24', 4712.396484, 10602.428711, 0.00430298, -0.0176376, -0.999844, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:09:24', NULL),
161(47, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:09:32', 4715.0991211, 10602.495117, 0.0057373, 0.999997, 0.00228603, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:28:06', NULL),
162(48, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:09:45', 4712.23584, 10598.161133, 0.0057373, -0.0261483, -0.999658, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:09:45', NULL),
163(49, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:09:59', 4715.0756836, 10597.915039, 0.00717163, 0.999997, -0.00241081, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:28:10', NULL),
164(53, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 03:10:55', 4706.727051, 10598.0205078, 0.00128174, 0.0134918, -0.999909, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:49:06', NULL),
165(54, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:11:29', 4712.182617, 10595.217773, 0.00717163, -0.00738122, -0.999973, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:26:29', NULL),
166(55, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 03:11:45', 4695.0673828, 10597.455078, 2.773605, -0.999431, -0.0337303, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:17:14', NULL),
167(56, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 03:12:16', 4701.114746, 10597.786133, 2.749847, 0.0580539, -0.998313, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:14:24', NULL),
168(57, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:14:21', 4700.957031, 10597.853516, -0.000152588, 0.0176215, -0.999845, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:14:21', NULL),
169(58, 'Exile_Construction_WoodFloor_Static', '76561198040322880', '2019-02-17 03:14:32', 4695.0629883, 10597.65332, 0.0207469, 0.0216252, -0.999766, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-17 03:14:32', NULL),
170(61, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:27:33', 4689.200195, 10593.486328, 0.00143433, 0.231982, -0.97272, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 22:41:26', NULL),
171(63, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:34:26', 4715.0654297, 10620.329102, 0.00430298, 0.999858, 0.0168223, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:27:08', NULL),
172(66, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:37:46', 4669.600586, 10589.0908203, 0.00143433, -0.253788, 0.96726, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 22:45:03', NULL),
173(67, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:38:31', 4688.269043, 10623.404297, -0.00106794, -0.112921, 0.993604, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:39:54', NULL),
174(68, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:38:40', 4682.307617, 10622.739258, 0.00143433, -0.110303, 0.993898, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:25:47', NULL),
175(69, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:39:05', 4676.411133, 10622.170898, 0.00143433, -0.108726, 0.994072, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 18:46:43', NULL),
176(71, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:39:31', 4674.991211, 10622.00292969, 0.00143433, -0.105347, 0.994435, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:25:45', NULL),
177(74, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 03:40:51', 4661.254395, 10616.427734, 0.00143433, -0.967472, -0.252977, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:52:01', NULL),
178(76, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 03:49:35', 4479, 10877, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 03:49:35', NULL),
179(77, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 03:49:45', 4483, 10873, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 03:49:45', NULL),
180(78, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 03:49:55', 4475, 10881, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 03:49:55', NULL),
181(79, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 03:50:05', 4479, 10885, 0.00000062939, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 03:50:05', NULL),
182(80, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 03:50:14', 4483, 10881, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 03:50:14', NULL),
183(81, 'Exile_Construction_WorkBench_Static', '76561198162261359', '2019-02-17 03:50:20', 4480.594727, 10877.967773, 0.23637, -0.692287, -0.721622, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 03:50:20', NULL),
184(82, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 03:50:53', 4487, 10877, -0.00000062939, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 03:50:53', NULL),
185(84, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 11:27:35', 4712.184082, 10598.161133, 2.752716, 0.999672, -0.0256067, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:14:48', NULL),
186(85, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 11:27:50', 4712.155762, 10603.950195, 2.75415, 0.00809219, 0.999967, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:14:52', NULL),
187(86, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 11:28:07', 4712.172363, 10609.782227, 2.755585, -0.00362569, 0.999993, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:15:08', NULL),
188(87, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 11:32:08', 4666.175293, 10591.329102, 0.00143433, -0.983893, -0.178759, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 00:38:34', NULL),
189(89, 'Exile_Construction_WoodGate_Reinforced_Static', '76561198040322880', '2019-02-17 11:33:05', 4665.216309, 10597.175781, 0.00143433, -0.988533, -0.151007, 0, 0, 0, 1, -1, '1404', 0, 1, '2019-02-20 17:33:49', NULL),
190(90, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 11:33:17', 4664.358398, 10603.106445, 0.00143433, -0.97865, -0.205533, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:33:53', NULL),
191(91, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 11:33:29', 4663.208984, 10609.0283203, 0.00143433, -0.978543, -0.206041, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:40:01', NULL),
192(92, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 11:34:08', 4662.299316, 10612.852539, 0.00143433, -0.95977, -0.280787, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:52:18', NULL),
193(93, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 15:36:06', 4479, 10869, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 15:36:06', NULL),
194(94, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 15:36:15', 4475, 10873, 0.00000062939, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 15:36:15', NULL),
195(95, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 15:36:24', 4471, 10877, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 15:36:24', NULL),
196(99, 'Exile_Construction_WoodDrawBridge_Static', '76561198162261359', '2019-02-17 15:43:43', 4469, 10875, 0.25, -0.707107, -0.707107, 0, 0, 0, 1, 0, '2712', 0, 2, '2019-02-21 22:21:24', NULL),
197(104, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 15:46:40', 4481, 10867, 0.25, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 15:46:40', NULL),
198(105, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 15:46:42', 4701.0800781, 10594.779297, 2.999023, -0.0367533, 0.999324, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:29:32', NULL),
199(106, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 15:46:53', 4485, 10871, 0.25, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 15:46:53', NULL),
200(107, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 15:46:59', 4695.101562, 10594.451172, 3.00172949, -0.0249549, 0.999689, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 00:44:09', NULL),
201(108, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 15:47:32', 4489, 10875, 0.25, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 15:47:32', NULL),
202(109, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 15:47:48', 4489, 10879, 0.250008, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 15:47:48', NULL),
203(112, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 15:48:42', 4706.318848, 10603.786133, 2.755585, -0.99992, 0.0126659, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:14:50', NULL),
204(135, 'Exile_Construction_WoodFloorPort_Static', '76561198162261359', '2019-02-17 16:46:34', 4483, 10873, 3, -0.707107, -0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:46:34', NULL),
205(137, 'Exile_Construction_WoodStairs_Static', '76561198162261359', '2019-02-17 16:47:16', 4483, 10873, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:47:16', NULL),
206(138, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 16:47:34', 4479, 10869, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:47:34', NULL),
207(139, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 16:47:41', 4692.180664, 10597.271484, 3.0322628, -0.998898, -0.0469436, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:28:30', NULL),
208(140, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 16:47:49', 4487, 10877, 2.999992, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:47:49', NULL),
209(141, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 16:48:15', 4706.38623, 10609.693359, 2.757019, 0.0111882, 0.999937, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:15:06', NULL),
210(142, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 16:48:29', 4712.127441, 10595.15332, 3.00415039, -0.0105277, -0.999945, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:14:17', NULL),
211(143, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 16:48:47', 4475, 10873, 0.00000362939, 0.707107, -0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:48:47', NULL),
212(145, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 16:49:06', 4479, 10877, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:49:06', NULL),
213(146, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 16:49:50', 4715.0712891, 10598.206055, 3.00271606, 0.999811, -0.0194277, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:14:15', NULL),
214(147, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 16:49:59', 4483, 10881, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:49:59', NULL),
215(148, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 16:50:13', 4715.0561523, 10604.110352, 3.00558472, 0.999967, -0.00813325, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:14:13', NULL),
216(149, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 16:50:37', 4715.159668, 10610.0410156, 3.00701904, 0.999747, -0.0224779, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:13:57', NULL),
217(150, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 16:50:51', 4712.108398, 10615.598633, 2.757019, -0.011725, 0.999931, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:15:11', NULL),
218(151, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 16:51:09', 4706.457031, 10615.49707, 2.758453, 0.0123642, 0.999924, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:15:10', NULL),
219(152, 'Exile_Construction_WoodWallHalf_Static', '76561198162261359', '2019-02-17 16:51:11', 4473, 10875, 2.999992, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:51:11', NULL),
220(154, 'Exile_Construction_WoodWallHalf_Static', '76561198162261359', '2019-02-17 16:51:39', 4477, 10879, 3, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:51:39', NULL),
221(155, 'Exile_Construction_WoodWallHalf_Static', '76561198162261359', '2019-02-17 16:51:58', 4481, 10883, 3, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:51:58', NULL),
222(156, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 16:51:58', 4712.0234375, 10620.342773, 2.758453, -0.0218892, 0.99976, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:15:35', NULL),
223(157, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 16:52:14', 4715.0805664, 10615.942383, 3.00845337, 0.999562, 0.0295989, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:13:55', NULL),
224(158, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 16:52:30', 4714.976074, 10620.461914, 3.0098877, 0.999811, 0.0194173, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:13:53', NULL),
225(159, 'Exile_Construction_PortableGenerator_Static', '76561198162261359', '2019-02-17 16:52:37', 4489, 10876, 0.25, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:52:37', NULL),
226(160, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-17 16:53:16', 4706.652832, 10620.480469, 2.759888, 0.0358614, 0.999357, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:15:37', NULL),
227(161, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 16:53:30', 4485, 10883, 0.25, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:53:30', NULL),
228(162, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 16:53:34', 4711.842773, 10623.458008, 3.0098877, 0.0294594, 0.999566, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:13:51', NULL),
229(163, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 16:53:36', 4481, 10887, 0.25, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:53:36', NULL),
230(165, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-17 16:54:27', 4705.804199, 10623.613281, 3.011322, 0.0279223, 0.99961, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:13:35', NULL),
231(169, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 16:59:06', 4473, 10871, 0.25, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 16:59:06', NULL),
232(171, 'Exile_Construction_WoodDoor_Static', '76561198162261359', '2019-02-17 16:59:27', 4477, 10867, 0.25, 0.707107, 0.707107, 0, 0, 0, 1, 0, '2712', 0, 2, '2019-02-17 17:00:43', NULL),
233(175, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 18:42:39', 4475, 10889, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:42:39', NULL),
234(176, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 18:42:48', 4471, 10885, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:42:48', NULL),
235(177, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 18:43:03', 4467, 10881, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:43:03', NULL),
236(178, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 18:43:22', 4471, 10893, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:43:22', NULL),
237(179, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 18:43:29', 4467, 10889, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:43:29', NULL),
238(180, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 18:43:37', 4463, 10885, 0, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:43:37', NULL),
239(181, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 18:44:33', 4477, 10891, 0.25, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:44:33', NULL),
240(182, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 18:44:44', 4473, 10895, 0.25, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:44:44', NULL),
241(183, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 18:45:02', 4469, 10895, 0.25, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:45:02', NULL),
242(184, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 18:45:13', 4465, 10891, 0.25, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:45:13', NULL),
243(185, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 18:45:33', 4465, 10879, 0.249992, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:45:33', NULL),
244(186, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 18:45:41', 4461, 10883, 0.25, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:45:41', NULL),
245(187, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 18:45:49', 4461, 10887, 0.25, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 18:45:49', NULL),
246(188, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:02:20', 4487, 10885, 2.999992, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:02:20', NULL),
247(189, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:02:33', 4483, 10889, 3, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:02:33', NULL),
248(190, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:02:58', 4479, 10893, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:02:58', NULL),
249(191, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:03:09', 4475, 10897, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:03:09', NULL),
250(192, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:03:21', 4471, 10901, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:03:21', NULL),
251(193, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:03:55', 4467, 10897, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:03:55', NULL),
252(194, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:04:04', 4463, 10893, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:04:04', NULL),
253(195, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:04:14', 4459, 10889, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:04:14', NULL),
254(196, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:04:27', 4491, 10881, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:04:27', NULL),
255(197, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:04:51', 4475, 10873, 0.00000362939, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:04:51', NULL),
256(198, 'Exile_Construction_WoodWallHalf_Static', '76561198162261359', '2019-02-17 19:06:48', 4481, 10887, 3, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:06:48', NULL),
257(199, 'Exile_Construction_WoodWallHalf_Static', '76561198162261359', '2019-02-17 19:07:02', 4477, 10891, 3, -0.707107, -0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:07:02', NULL),
258(200, 'Exile_Construction_WoodWallHalf_Static', '76561198162261359', '2019-02-17 19:07:16', 4473, 10895, 3, -0.707107, -0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:07:16', NULL),
259(201, 'Exile_Construction_WoodWallHalf_Static', '76561198162261359', '2019-02-17 19:07:52', 4469, 10895, 3, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:07:52', NULL),
260(202, 'Exile_Construction_WoodWallHalf_Static', '76561198162261359', '2019-02-17 19:08:04', 4465, 10891, 3, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:08:04', NULL),
261(203, 'Exile_Construction_WoodWallHalf_Static', '76561198162261359', '2019-02-17 19:08:14', 4461, 10887, 3, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:08:14', NULL),
262(204, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 19:09:58', 4469, 10875, 3.25, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:09:58', NULL),
263(206, 'Exile_Construction_WoodWall_Static', '76561198162261359', '2019-02-17 19:13:43', 4489, 10887, 3.25, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:13:43', NULL),
264(207, 'Exile_Construction_WoodFloorPort_Static', '76561198162261359', '2019-02-17 19:14:08', 4491, 10881, 6, 0.707107, -0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:14:08', NULL),
265(208, 'Exile_Construction_WoodFloor_Static', '76561198162261359', '2019-02-17 19:14:22', 4487, 10885, 5.999992, 0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:14:22', NULL),
266(209, 'Exile_Construction_WoodStairs_Static', '76561198162261359', '2019-02-17 19:14:38', 4491, 10881, 3, -0.707107, 0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:14:38', NULL),
267(210, 'Exile_Construction_WoodGate_Static', '76561198162261359', '2019-02-17 19:15:39', 4470, 10852, 0, 0.707107, -0.707107, 0, 0, 0, 1, 0, '000000', 0, 2, '2019-02-17 19:15:39', NULL),
268(256, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-17 20:25:13', 3972.138672, 11638.582031, 0.248544, -0.998406, 0.0564418, 0, 0, 0, 1, 0, '000000', 0, 4, '2019-02-17 20:25:13', NULL),
269(257, 'Exile_Construction_WorkBench_Static', '76561198088733718', '2019-02-17 20:25:51', 3970.45459, 11638.640625, 0.477931, -0.997588, 0.0694126, 0, 0, 0, 1, 0, '000000', 0, 4, '2019-02-17 20:25:51', NULL),
270(262, 'Exile_Construction_ConcreteWindowHatch_Static', '76561198040322880', '2019-02-17 23:16:53', 4706.826172, 10595.0566406, 3.00271606, 0.0679666, -0.997688, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:39:14', NULL),
271(263, 'Exile_Construction_WoodWallHalf_Reinforced_Static', '76561198040322880', '2019-02-17 23:17:42', 4703.591797, 10603.874023, 3.00701904, -0.999293, 0.0375888, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 18:45:50', NULL),
272(264, 'Exile_Construction_WoodWallHalf_Reinforced_Static', '76561198040322880', '2019-02-17 23:17:55', 4700.607422, 10600.605469, 3.00128174, -0.058461, 0.99829, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:49:37', NULL),
273(271, 'Exile_Construction_WoodWallHalf_Reinforced_Static', '76561198088733718', '2019-02-18 16:16:13', 4703.69043, 10609.772461, 3.00845337, -0.999999, -0.00159644, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:31:37', NULL),
274(275, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-18 16:18:37', 4699.900879, 10623.705078, 3.0127563, 0.0204405, 0.999791, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:13:28', NULL),
275(276, 'Exile_Construction_PortableGenerator_Static', '76561198088733718', '2019-02-18 16:19:32', 4699.477539, 10608.827148, 0.246979, 0.99998, -0.0062697, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:19:32', NULL),
276(278, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198040322880', '2019-02-18 16:23:21', 4694.616699, 10614.905273, 2.779831, 0.0398279, -0.999207, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:15:44', NULL),
277(284, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 16:27:22', 4712.372559, 10604.0537109, 5.757019, 0.999561, -0.0296177, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:27:22', NULL),
278(285, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 16:27:39', 4712.42041, 10610.0634766, 5.758453, 0.9998, -0.0199964, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:27:39', NULL),
279(288, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 16:28:45', 4712.304688, 10620.541992, 5.761322, 0.999987, -0.00515606, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:28:45', NULL),
280(290, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 16:29:40', 4712.298828, 10615.958984, 5.759888, -0.00419836, 0.999991, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:29:40', NULL),
281(291, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-18 16:29:46', 4694.00634766, 10623.59082, 3.0257874, -0.0462242, 0.998931, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 13:29:05', NULL),
282(292, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-18 16:32:05', 4691.317871, 10620.6875, 3.0375464, -0.999588, -0.0286878, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:12:29', NULL),
283(293, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-18 16:32:21', 4691.524414, 10614.726562, 3.0455322, -0.999517, -0.0310833, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:13:20', NULL),
284(295, 'Exile_Construction_WoodWallHalf_Reinforced_Static', '76561198088733718', '2019-02-18 16:35:12', 4703.592285, 10615.638672, 3.0098877, -0.999999, -0.00124739, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:50:32', NULL),
285(300, 'Exile_Construction_WoodStairs_Static', '76561198088733718', '2019-02-18 16:47:04', 4688.460449, 10595.0654297, -0.248566, -0.202761, 0.979228, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:47:04', NULL),
286(301, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-18 16:47:17', 4715.230469, 10591.977539, 0.00143433, 0.998242, 0.0592669, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:47:17', NULL),
287(304, 'Exile_Construction_WoodStairs_Static', '76561198088733718', '2019-02-18 16:47:48', 4686.295898, 10621.586914, -0.254311, 0.0838122, -0.996482, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:47:48', NULL),
288(305, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-18 16:47:52', 4715.625, 10586.100586, 0.00143433, 0.997795, 0.0663747, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:47:52', NULL),
289(306, 'Exile_Construction_WoodStairs_Static', '76561198088733718', '2019-02-18 16:48:03', 4666.229492, 10601.951172, -0.248566, 0.985944, 0.167077, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:48:03', NULL),
290(307, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-18 16:48:14', 4715.992188, 10580.211914, 0.00143433, 0.998755, 0.0498868, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:48:14', NULL),
291(308, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-18 16:48:37', 4714.301758, 10574.905273, -0.00341797, 0.779911, -0.62589, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 16:48:37', NULL),
292(312, 'Exile_Construction_SandBags_Long_Static', '76561198133314927', '2019-02-18 18:07:32', 2184.327393, 11897.595703, -0.0915698, -0.89054, 0.454906, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 18:07:32', NULL),
293(313, 'Exile_Construction_FloodLight_Static', '76561198133314927', '2019-02-18 18:08:42', 2189.855957, 11878.890625, -0.157446, 0.955698, 0.29435, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 18:08:42', NULL),
294(314, 'Exile_Construction_PortableGenerator_Static', '76561198133314927', '2019-02-18 18:08:48', 2191.585205, 11878.767578, 0.068076, 0.936617, -0.350354, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 18:08:48', NULL),
295(315, 'Exile_Construction_FloodLight_Static', '76561198133314927', '2019-02-18 18:09:23', 2196.0239258, 11899.849609, -0.0255141, -0.47662, -0.879109, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 18:09:23', NULL),
296(316, 'Exile_Construction_FloodLight_Static', '76561198133314927', '2019-02-18 18:09:38', 2198.506104, 11900.349609, -0.113925, 0.596028, -0.802964, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 18:09:38', NULL),
297(317, 'Exile_Construction_PortableGenerator_Static', '76561198133314927', '2019-02-18 18:09:52', 2198.218994, 11898.570312, -0.0579408, 0.998822, 0.0485196, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 18:09:52', NULL),
298(318, 'Exile_Construction_WorkBench_Static', '76561198133314927', '2019-02-18 18:10:47', 2201.709229, 11882.362305, 0.121057, 0.949541, -0.313642, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 18:10:47', NULL),
299(321, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:52:34', 4706.365723, 10620.828125, 5.759888, 0.0323816, 0.999476, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:52:34', NULL),
300(324, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:53:46', 4706.439941, 10603.74707, 5.755585, -0.0196071, 0.999808, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:53:46', NULL),
301(326, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:54:20', 4700.489746, 10597.759766, 5.752716, 0.999994, -0.00333802, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:54:20', NULL),
302(327, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:54:47', 4695.185547, 10597.314453, 5.77517, 0.0331343, -0.999451, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:54:47', NULL),
303(328, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:55:19', 4700.463867, 10620.710938, 5.775787, 0.999918, -0.0128351, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:55:19', NULL),
304(329, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:55:34', 4694.459473, 10620.631836, 5.776597, -0.0145114, 0.999895, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:55:34', NULL),
305(330, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:56:41', 4694.911133, 10603.333984, 5.77543, -0.0462723, 0.998929, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:56:41', NULL),
306(331, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:57:01', 4694.694824, 10609.303711, 5.766409, -0.0315908, 0.999501, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:57:01', NULL),
307(332, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:57:26', 4694.620605, 10614.920898, 5.782711, 0.0232942, -0.999729, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:57:26', NULL),
308(333, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:58:23', 4700.498535, 10614.772461, 5.761749, 0.0086985, -0.999962, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:58:23', NULL),
309(334, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198088733718', '2019-02-18 19:58:51', 4706.845215, 10597.977539, 2.876282, 0.999422, 0.0339918, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:17:17', NULL),
310(335, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:59:40', 4700.689453, 10603.736328, 5.751282, -0.0324143, 0.999475, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:59:40', NULL),
311(337, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 19:59:55', 4700.301758, 10609.200195, 5.758453, -0.999205, -0.0398706, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 19:59:55', NULL),
312(339, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:01:27', 2197.81543, 11875.203125, -0.153413, -0.314376, -0.949299, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:01:27', NULL),
313(340, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:01:39', 2192.119629, 11877.0898438, -0.307063, -0.314392, -0.949293, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:01:39', NULL),
314(342, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:01:53', 2201.448486, 11877.0283203, -0.252564, 0.949293, -0.314392, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:01:53', NULL),
315(344, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:02:46', 2203.334961, 11882.723633, -0.666713, 0.94928, -0.314433, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:02:46', NULL),
316(345, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:03:06', 2205.221436, 11888.418945, -1.0630895, 0.94928, -0.314433, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:03:06', NULL),
317(349, 'Exile_Construction_WoodGate_Static', '76561198133314927', '2019-02-18 20:04:21', 2186.423828, 11878.976562, -0.378066, 0.314392, 0.949293, 0, 0, 0, 1, 0, '2580', 0, 5, '2019-02-20 18:13:09', NULL),
318(350, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:04:47', 2180.728027, 11880.863281, -0.401459, 0.314392, 0.949293, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:04:47', NULL),
319(351, 'Exile_Construction_WoodWindow_Static', '76561198133314927', '2019-02-18 20:05:04', 2178.902588, 11884.496094, -0.602067, -0.949293, 0.314392, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:05:04', NULL),
320(352, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:12:28', 2180.789062, 11890.191406, -0.999598, -0.94928, 0.314432, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:12:28', NULL),
321(353, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:12:49', 2182.675537, 11895.886719, -1.331527, -0.94928, 0.314432, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:12:49', NULL),
322(354, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:13:18', 2184.562012, 11901.582031, -1.60594, -0.94928, 0.314432, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:13:18', NULL),
323(355, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:13:56', 2182.675537, 11895.886719, 1.668503, -0.94928, 0.314432, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:13:56', NULL),
324(356, 'Exile_Construction_WoodFloorPort_Static', '76561198133314927', '2019-02-18 20:16:49', 2198.719238, 11877.932617, 2.651105, 0.314432, 0.94928, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:16:49', NULL),
325(357, 'Exile_Construction_CampFire_Static', '76561198133314927', '2019-02-18 20:18:30', 2185.998291, 11898.140625, -0.108897, -0.842162, 0.539224, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:18:30', NULL),
326(358, 'Exile_Construction_WaterBarrel_Static', '76561198133314927', '2019-02-18 20:18:43', 2202.427002, 11898.199219, -0.138132, 0.948657, 0.316305, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:18:43', NULL),
327(360, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:20:37', 2184.562012, 11901.582031, 1.394091, -0.94928, 0.314432, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:20:37', NULL),
328(362, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:21:32', 2180.789062, 11890.191406, 2.000432491, -0.94928, 0.314432, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:21:32', NULL),
329(363, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:22:17', 2205.221436, 11888.418945, 1.936941, 0.94928, -0.314433, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:22:17', NULL),
330(366, 'Exile_Construction_WoodStairs_Static', '76561198133314927', '2019-02-18 20:28:45', 2198.719238, 11877.932617, -0.098895, -0.314454, -0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:28:45', NULL),
331(368, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:31:36', 2203.334961, 11882.723633, 2.333317, 0.94928, -0.314433, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:31:36', NULL),
332(369, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:32:02', 2201.448486, 11877.0283203, 2.747467, 0.94928, -0.314433, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:32:02', NULL),
333(371, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:32:44', 2197.81543, 11875.203125, 2.846617, 0.314432, 0.94928, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:32:44', NULL),
334(372, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:32:55', 2192.119873, 11877.0898438, 2.692968, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:32:55', NULL),
335(373, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:33:58', 2186.423828, 11878.976562, 2.621964, 0.314392, 0.949293, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:33:58', NULL),
336(374, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:34:14', 2180.728027, 11880.863281, 2.598572, 0.314392, 0.949293, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:34:14', NULL),
337(375, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:34:28', 2178.902588, 11884.496094, 2.397964, -0.94928, 0.314432, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:34:28', NULL),
338(377, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:37:27', 2207.10791, 11894.114258, 1.541826, 0.94928, -0.314433, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:37:27', NULL),
339(378, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:37:38', 2207.10791, 11894.114258, -1.458266, 0.94928, -0.314433, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:37:38', NULL),
340(379, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:38:18', 2208.994385, 11899.80957, 1.139369, 0.94928, -0.314433, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:38:18', NULL),
341(380, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:39:50', 2186.448486, 11907.277344, 1.148273, -0.94928, 0.314432, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:39:50', NULL),
342(381, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:40:02', 2186.448486, 11907.277344, -1.851818, -0.94928, 0.314432, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:40:02', NULL),
343(384, 'Exile_Construction_HBarrier5_Static', '76561198133314927', '2019-02-18 20:42:01', 2194.15332, 11911.139648, -0.123465, -0.661462, 0.749979, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:42:01', NULL),
344(386, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:45:51', 2207.169189, 11903.442383, 1.0111747, 0.314432, 0.94928, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:45:51', NULL),
345(387, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:46:07', 2207.169189, 11903.442383, -1.988703, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:46:07', NULL),
346(388, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:46:32', 2201.473633, 11905.329102, 1.096459, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:46:32', NULL),
347(389, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-18 20:46:53', 2201.473633, 11905.329102, -1.90351, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:46:53', NULL),
348(390, 'Exile_Construction_WoodDoor_Static', '76561198133314927', '2019-02-18 20:47:17', 2195.739014, 11907.275391, -0.161347, 0.326958, 0.945039, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:47:17', NULL),
349(391, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:49:03', 2200.605713, 11883.62793, 2.258668, -0.314432, -0.94928, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:49:03', NULL),
350(392, 'Exile_Construction_WoodStairs_Static', '76561198133314927', '2019-02-18 20:49:21', 2200.605713, 11883.62793, 2.508668, -0.314454, -0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:49:21', NULL),
351(394, 'Exile_Construction_WoodFloorPort_Static', '76561198133314927', '2019-02-18 20:50:51', 2200.605713, 11883.62793, 5.258668, 0.314432, 0.94928, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:50:51', NULL),
352(395, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:51:02', 2202.492432, 11889.323242, 4.900222, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:51:02', NULL),
353(396, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:52:18', 2204.37915, 11895.0185547, 4.54006, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:52:18', NULL),
354(397, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:52:26', 2206.265869, 11900.713867, 4.187363, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:52:26', NULL),
355(398, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:52:33', 2200.570312, 11902.600586, 4.240832, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:52:33', NULL),
356(400, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:52:41', 2194.874756, 11904.487305, 4.239806, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:52:41', NULL),
357(401, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:52:49', 2189.179199, 11906.374023, 4.195419, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:52:49', NULL),
358(402, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:54:18', 2187.29248, 11900.678711, 4.436999, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:54:18', NULL),
359(403, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:54:26', 2185.405762, 11894.983398, 4.704012, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:54:26', NULL),
360(404, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:54:33', 2183.519043, 11889.288086, 5.0220623, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:54:33', NULL),
361(405, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:54:40', 2181.632324, 11883.592773, 5.403119, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:54:40', NULL),
362(406, 'Exile_Construction_WoodFloor_Static', '76561198133314927', '2019-02-18 20:54:47', 2187.327881, 11881.706055, 5.428481, 0.314453, 0.949273, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-18 20:54:47', NULL),
363(407, 'Exile_Construction_WoodDrawBridge_Reinforced_Static', '76561198088733718', '2019-02-18 21:00:14', 4697.966309, 10597.517578, 2.862885, 0.998811, 0.0487515, 0, 0, 0, 1, -1, '1404', 0, 1, '2019-02-20 23:45:20', NULL),
364(409, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-18 22:18:39', 4700.528809, 10608.750977, -0.00302124, 0.999827, 0.0186079, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 22:18:39', NULL),
365(410, 'Exile_Construction_ConcreteFloor_Static', '76561198088733718', '2019-02-18 22:19:31', 4694.712891, 10608.626953, 0.0116339, -0.999758, -0.0220171, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 22:19:31', NULL),
366(412, 'Exile_Construction_SandBags_Long_Static', '76561198088733718', '2019-02-18 23:22:47', 4672.765625, 10629.00488281, 0.00143433, 0.180407, 0.983592, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 23:22:47', NULL),
367(413, 'Exile_Construction_CampFire_Static', '76561198088733718', '2019-02-18 23:56:22', 4690.0786133, 10601.753906, 0.00387573, -0.0285411, -0.999593, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-18 23:56:22', NULL),
368(414, 'Exile_Construction_HBarrier5_Static', '76561198088733718', '2019-02-19 17:44:08', 4662.0185547, 10624.786133, 0.00143433, -0.71473, 0.699401, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 17:44:08', NULL),
369(416, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-19 23:09:41', 4709.643066, 10571.52832, 0.0178601, 0.35612, -0.93444, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:09:41', NULL),
370(417, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-19 23:09:53', 4704.0195312, 10569.661133, 0.00399131, 0.267075, -0.963676, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:09:53', NULL),
371(418, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-19 23:10:31', 4698.176758, 10568.417969, 0.00143433, -0.146878, 0.989155, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:10:31', NULL),
372(419, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-19 23:11:00', 4692.355469, 10567.621094, 0.00143433, 0.122797, -0.992432, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:11:00', NULL),
373(421, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-19 23:11:52', 4673.930176, 10564.382812, 0.00143433, 0.184795, -0.982777, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:11:52', NULL),
374(422, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-19 23:12:13', 4668.660645, 10565.800781, 0.00143433, -0.655437, -0.75525, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:12:13', NULL),
375(423, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-19 23:12:59', 4666.271484, 10570.792969, 0.00143433, -0.998637, -0.0522009, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:12:59', NULL),
376(424, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-19 23:13:13', 4665.895996, 10576.705078, 0.00143433, -0.996887, -0.0788494, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:13:13', NULL),
377(425, 'Exile_Construction_WoodWall_Static', '76561198040322880', '2019-02-19 23:13:29', 4665.421875, 10582.589844, 0.00143433, -0.996745, -0.0806147, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:13:29', NULL),
378(428, 'Exile_Construction_WoodWall_Static', '76561198088733718', '2019-02-19 23:15:37', 4685.532227, 10566.548828, 0.00143433, 0.162149, -0.986766, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:15:37', NULL);
379INSERT INTO `construction` (`id`, `class`, `account_uid`, `spawned_at`, `position_x`, `position_y`, `position_z`, `direction_x`, `direction_y`, `direction_z`, `up_x`, `up_y`, `up_z`, `is_locked`, `pin_code`, `damage`, `territory_id`, `last_updated_at`, `deleted_at`) VALUES
380(429, 'Exile_Construction_WoodWall_Static', '76561198088733718', '2019-02-19 23:16:15', 4689.40918, 10567.21875, 0.00143433, 0.170335, -0.985386, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-19 23:16:15', NULL),
381(431, 'Exile_Construction_ConcreteDoor_Static', '76561198088733718', '2019-02-20 00:41:22', 4700.0600586, 10623.620117, 0.247711, 0.0461282, 0.998936, 0, 0, 0, 1, -1, '1404', 0, 1, '2019-02-20 22:55:21', NULL),
382(434, 'Exile_Construction_ConcreteDoorway_Static', '76561198040322880', '2019-02-20 00:43:29', 4695.210449, 10594.441406, 2.774681, 0.0380421, -0.999276, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 00:43:29', NULL),
383(435, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-20 00:46:40', 4683.964844, 10592.317383, 0.00143433, 0.19731, -0.980341, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 00:46:40', NULL),
384(437, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-20 00:47:17', 4680.473145, 10591.462891, 0.00143433, 0.278441, -0.960453, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 00:47:17', NULL),
385(444, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-20 15:41:39', 6536.989258, 5616.619141, -0.310076, -0.203365, 0.979103, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-20 15:41:39', NULL),
386(445, 'Exile_Construction_WoodGate_Static', '76561198150621451', '2019-02-20 15:43:30', 6530.75, 5569.80957, 0.157125, -0.132275, 0.991213, 0, 0, 0, 1, 0, '2152', 0, 6, '2019-02-21 17:39:01', NULL),
387(446, 'Exile_Construction_FloodLight_Static', '76561198088733718', '2019-02-20 17:17:48', 4702.589355, 10618.0546875, 3.0117493, 0.250638, 0.968081, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:17:48', NULL),
388(448, 'Exile_Construction_FloodLight_Static', '76561198088733718', '2019-02-20 17:20:15', 4688.391113, 10622.90332, 0.00448689, 0.51994, -0.854203, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:20:15', NULL),
389(449, 'Exile_Construction_FloodLight_Static', '76561198088733718', '2019-02-20 17:20:49', 4664.97168, 10604.102539, 0.251434, 0.958484, 0.285147, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:20:49', NULL),
390(451, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198088733718', '2019-02-20 17:22:22', 4663.411133, 10619.97168, 0.00143433, -0.211914, 0.977288, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:51:59', NULL),
391(452, 'Exile_Construction_FloodLight_Static', '76561198088733718', '2019-02-20 17:23:06', 4663.499512, 10613.0292969, 0.251434, 0.992351, -0.123452, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:23:06', NULL),
392(453, 'Exile_Construction_FloodLight_Static', '76561198088733718', '2019-02-20 17:28:57', 4667.55127, 10591.0449219, 0.251434, 0.632549, 0.77452, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:28:57', NULL),
393(457, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-20 17:30:18', 4706.30127, 10609.342773, 5.759888, 0.999652, 0.0263888, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:30:18', NULL),
394(458, 'Exile_Construction_WoodFloor_Static', '76561198088733718', '2019-02-20 17:30:28', 4706.256348, 10615.0576172, 5.763184, 0.999914, 0.0131412, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:30:28', NULL),
395(459, 'Exile_Construction_FloodLight_Static', '76561198088733718', '2019-02-20 17:31:22', 4693.239746, 10595.183594, 5.0314741, 0.721403, 0.692515, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:31:22', NULL),
396(460, 'Exile_Construction_FloodLight_Static', '76561198088733718', '2019-02-20 17:31:37', 4714.516602, 10595.869141, 4.758667, -0.751876, 0.659305, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:31:37', NULL),
397(461, 'Exile_Construction_FloodLight_Static', '76561198088733718', '2019-02-20 17:31:51', 4714.753906, 10623.136719, 4.512756, -0.644532, -0.764578, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:31:51', NULL),
398(462, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198088733718', '2019-02-20 17:32:14', 4706.465332, 10597.975586, 5.694519, -0.99975, -0.0223632, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:50:38', NULL),
399(463, 'Exile_Construction_WorkBench_Static', '76561198088733718', '2019-02-20 17:34:47', 4688.253418, 10602.111328, 0.00143433, 0.999761, 0.0218807, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:34:47', NULL),
400(464, 'Exile_Construction_WoodSupport_Static', '76561198133314927', '2019-02-20 17:38:54', 2198.827881, 11887.0234375, -0.914547, 0.932334, -0.361597, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-20 17:38:54', NULL),
401(465, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198040322880', '2019-02-20 17:50:59', 4665.639648, 10588.339844, 0.00143433, 0.987598, -0.157004, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 17:51:01', NULL),
402(466, 'Exile_Construction_WoodWallHalf_Static', '76561198133314927', '2019-02-20 18:44:21', 2195.739014, 11907.275391, 2.838714, 0.326965, 0.945036, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-20 18:44:21', NULL),
403(468, 'Exile_Construction_ConcreteGate_Static', '76561198040322880', '2019-02-20 18:46:26', 4669.200195, 10621.352539, 0.00143433, -0.184858, 0.982765, 0, 0, 0, 1, -1, '1404', 0, 1, '2019-02-21 20:51:12', NULL),
404(469, 'Exile_Construction_ConcreteDoorway_Static', '76561198040322880', '2019-02-20 18:47:34', 4700.819824, 10594.744141, 3.00128174, 0.026492, -0.999649, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 18:47:34', NULL),
405(471, 'Exile_Construction_WoodWall_Static', '76561198133314927', '2019-02-20 18:49:40', 2190.081543, 11909.102539, -1.925688, -0.314432, -0.94928, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-20 18:49:40', NULL),
406(472, 'Exile_Construction_WoodWindow_Static', '76561198133314927', '2019-02-20 18:49:53', 2190.081543, 11909.102539, 1.0743735, -0.314432, -0.94928, 0, 0, 0, 1, 0, '000000', 0, 5, '2019-02-20 18:49:53', NULL),
407(473, 'Exile_Construction_ConcreteDrawBridge_Static', '76561198088733718', '2019-02-20 21:30:12', 4691.865723, 10608.75293, 0.0667728, 0.999997, 0.00249477, 0, 0, 0, 1, 0, '1404', 0, 1, '2019-02-21 22:42:04', NULL),
408(474, 'Exile_Construction_ConcreteGate_Static', '76561198088733718', '2019-02-20 21:32:38', 4675.0332031, 10590.192383, 0.00143433, 0.156381, -0.987697, 0, 0, 0, 1, 0, '1404', 0, 1, '2019-02-21 22:44:34', NULL),
409(475, 'Exile_Construction_ConcreteGate_Static', '76561198088733718', '2019-02-20 21:33:11', 4679.699707, 10565.444336, 0.00143433, 0.184042, -0.982918, 0, 0, 0, 1, -1, '1404', 0, 1, '2019-02-21 22:45:49', NULL),
410(476, 'Exile_Construction_HBarrier5_Static', '76561198088733718', '2019-02-20 21:33:42', 4668.97998, 10584.381836, -0.248566, 0.639103, -0.769121, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:33:42', NULL),
411(479, 'Exile_Construction_ConcreteFloorHatch_Static', '76561198088733718', '2019-02-20 21:35:06', 4700.743164, 10620.767578, 2.736328, -0.999972, -0.00749914, 0, 0, 0, 1, -1, '1404', 0, 1, '2019-02-20 22:23:37', NULL),
412(480, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198088733718', '2019-02-20 21:35:59', 4702.244629, 10624.338867, -0.502289, 0.607135, 0.794598, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:35:59', NULL),
413(481, 'Exile_Construction_WoodStairs_Static', '76561198088733718', '2019-02-20 21:36:42', 4701.218262, 10620.794922, -0.253723, -0.999568, 0.0293771, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:36:42', NULL),
414(482, 'Exile_Construction_WoodFloor_Reinforced_Static', '76561198088733718', '2019-02-20 21:38:36', 4694.739746, 10620.740234, 2.802571, -0.0152909, 0.999883, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:38:45', NULL),
415(484, 'Exile_Construction_ConcreteFloorHatch_Static', '76561198088733718', '2019-02-20 21:41:22', 4694.854492, 10602.500977, 2.772703, 0.0108687, -0.999941, 0, 0, 0, 1, -1, '1404', 0, 1, '2019-02-21 00:37:16', NULL),
416(485, 'Exile_Construction_ConcreteLadderHatch_Static', '76561198088733718', '2019-02-20 21:42:13', 4712.235352, 10598.0185547, 5.77771, -0.0034135, 0.999994, 0, 0, 0, 1, -1, '1404', 0, 1, '2019-02-20 21:42:28', NULL),
417(488, 'Exile_Construction_ConcreteStairs_Static', '76561198088733718', '2019-02-20 21:44:15', 4694.765625, 10602.401367, -0.402062, -0.00899905, 0.99996, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:44:15', NULL),
418(491, 'Exile_Construction_WoodWallHalf_Reinforced_Static', '76561198088733718', '2019-02-20 21:47:16', 4697.704102, 10602.755859, 2.974944, -0.999991, -0.00425861, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:49:31', NULL),
419(492, 'Exile_Construction_WoodWallHalf_Reinforced_Static', '76561198088733718', '2019-02-20 21:47:35', 4694.803223, 10605.333008, 2.994503, 0.0121287, -0.999926, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:49:34', NULL),
420(493, 'Exile_Construction_ConcreteWindowHatch_Static', '76561198088733718', '2019-02-20 21:48:26', 4691.874023, 10603.164062, 3.0312805, -0.998797, -0.0490345, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:48:32', NULL),
421(494, 'Exile_Construction_WoodWallHalf_Reinforced_Static', '76561198088733718', '2019-02-20 21:50:14', 4700.467773, 10617.882812, 2.66275, -0.017393, -0.999849, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:50:17', NULL),
422(495, 'Exile_Construction_SandBags_Corner_Static', '76561198088733718', '2019-02-20 21:51:25', 4688.827637, 10613.245117, -0.000636786, -0.751586, -0.659635, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 21:51:25', NULL),
423(496, 'Exile_Construction_WoodWallHalf_Reinforced_Static', '76561198088733718', '2019-02-20 22:18:28', 4697.480469, 10615.0224609, 2.674347, 0.999903, 0.013949, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 22:18:28', NULL),
424(497, 'Exile_Construction_WoodWallHalf_Reinforced_Static', '76561198088733718', '2019-02-20 22:18:46', 4694.679199, 10612.0703125, 2.680947, 0.0120574, -0.999927, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 22:18:46', NULL),
425(499, 'Exile_Construction_SandBags_Corner_Static', '76561198088733718', '2019-02-20 22:19:49', 4712.476074, 10597.28418, 2.927704, -0.988825, -0.149082, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 22:19:49', NULL),
426(500, 'Exile_Construction_ConcreteFloor_Static', '76561198088733718', '2019-02-20 22:34:45', 4694.708008, 10614.618164, 0.00935558, -0.999704, -0.0243449, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 22:34:45', NULL),
427(501, 'Exile_Construction_WoodWall_Reinforced_Static', '76561198088733718', '2019-02-20 23:11:59', 4691.707031, 10608.805664, 3.194947, 0.999905, 0.0137535, 0, 0, 0, 1, 0, '000000', 0, 1, '2019-02-20 23:11:59', NULL),
428(503, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-20 23:51:22', 6530.75, 5569.80957, 3.157125, -0.132263, 0.991215, 0, 0, 0, 1, 0, '2152', 0, 6, '2019-02-21 17:39:31', NULL),
429(504, 'Exile_Construction_WorkBench_Static', '76561198150621451', '2019-02-20 23:54:12', 6555.434082, 5596.100586, 0.252533, 0.999677, -0.0253996, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-20 23:54:12', NULL),
430(505, 'Exile_Construction_WoodWallHalf_Static', '76561198089886093', '2019-02-20 23:55:36', 6548.335449, 5596.953125, 3.283478, 0.999939, -0.0110487, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-20 23:55:36', NULL),
431(506, 'Exile_Construction_WoodDoor_Static', '76561198089886093', '2019-02-20 23:57:46', 6548.328613, 5596.967773, 0.279358, 0.999947, 0.010303, 0, 0, 0, 1, 0, '4862', 0, 6, '2019-02-21 17:38:46', NULL),
432(507, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:00:51', 6531.114746, 5615.398926, 0.494718, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:00:51', NULL),
433(508, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:01:12', 6525.240234, 5614.178711, 1.464162, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:01:12', NULL),
434(509, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:01:39', 6519.365723, 5612.958496, 2.347604, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:01:39', NULL),
435(510, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:01:53', 6519.365723, 5612.958496, -0.652396, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:01:53', NULL),
436(511, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:02:05', 6525.240234, 5614.178711, -1.535838, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:02:05', NULL),
437(512, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:02:19', 6531.114746, 5615.398926, -2.505282, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:02:19', NULL),
438(515, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:03:58', 6552.578613, 5571.831543, -0.0772287, 0.983498, 0.18092, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:03:58', NULL),
439(516, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:04:09', 6553.663574, 5565.930664, 0.664494, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:04:09', NULL),
440(517, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:04:42', 6553.663574, 5565.930664, -2.335475, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:04:42', NULL),
441(519, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:06:29', 6552.578613, 5571.831543, -3.0771983, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:06:29', NULL),
442(520, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:06:37', 6519.82666, 5582.330078, -0.541879, -0.999998, 0.00207854, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:06:37', NULL),
443(522, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:07:10', 6530.75, 5569.80957, 6.157125, -0.132263, 0.991215, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:07:10', NULL),
444(523, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:10:19', 6518.858887, 5588.0390625, -1.249578, -0.946716, -0.32207, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:10:19', NULL),
445(524, 'Exile_Construction_WoodDoor_Static', '76561198089886093', '2019-02-21 01:11:20', 6551.344727, 5600.0761719, 11.833405, 0.772868, 0.634567, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:11:20', NULL),
446(526, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:14:35', 6519.82666, 5582.330078, 2.458121, -1, 0.000000088762, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:14:35', NULL),
447(527, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:14:47', 6518.858887, 5588.0390625, 1.750392, -0.946716, -0.322069, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:14:47', NULL),
448(528, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:15:22', 6515.556641, 5592.555176, 1.694818, -0.595222, -0.803561, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:15:22', NULL),
449(529, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:16:06', 6552.578613, 5571.831543, 2.922802, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:16:06', NULL),
450(530, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:18:50', 6553.663574, 5565.930664, 3.664525, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:18:50', NULL),
451(531, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:19:30', 6555.28125, 5579.919434, 1.675233, 0.695247, -0.718771, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:19:30', NULL),
452(532, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:19:54', 6559.272461, 5584.0458984, 2.135392, 0.695247, -0.718771, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:19:54', NULL),
453(533, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:20:11', 6562.629883, 5587.598633, 2.289977, 0.695247, -0.718771, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:20:11', NULL),
454(536, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:21:02', 6536.989258, 5616.619141, 2.689924, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:21:02', NULL),
455(537, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:21:47', 6551.756836, 5561.283691, 2.43544, 0.576417, -0.817156, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:21:47', NULL),
456(538, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:23:08', 6542.86377, 5617.839355, 2.296519, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:23:08', NULL),
457(539, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:23:25', 6531.114746, 5615.398926, 3.494718, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:23:25', NULL),
458(540, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:23:32', 6551.756836, 5561.283691, 5.435441, 0.576416, -0.817156, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:23:32', NULL),
459(541, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:23:37', 6525.240234, 5614.178711, 4.464162, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:23:37', NULL),
460(542, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:23:48', 6519.365723, 5612.958496, 5.347604, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:23:48', NULL),
461(543, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:23:59', 6553.663574, 5565.930664, 6.664555, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:23:59', NULL),
462(544, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:24:25', 6552.578613, 5571.831543, 5.922832, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:24:25', NULL),
463(545, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:26:15', 6547.484863, 5562.097168, 4.955774, -0.803909, -0.594752, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:26:15', NULL),
464(546, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:26:37', 6547.484863, 5562.097168, 7.955774, -0.803894, -0.594772, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:26:37', NULL),
465(547, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:26:59', 6551.756836, 5561.283691, 8.43544, 0.576416, -0.817156, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:26:59', NULL),
466(548, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:27:24', 6547.484863, 5562.097168, 10.955774, -0.803894, -0.594772, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:27:24', NULL),
467(553, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:31:46', 6551.756836, 5561.283691, 11.43544, 0.576416, -0.817156, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:31:46', NULL),
468(554, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:32:01', 6543.916016, 5566.92041, 8.83831, -0.803894, -0.594772, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:32:01', NULL),
469(555, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:32:16', 6543.916016, 5566.92041, 5.83828, -0.803894, -0.594772, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:32:16', NULL),
470(556, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:32:36', 6553.663574, 5565.930664, 9.664586, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:32:36', NULL),
471(557, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:32:46', 6552.578613, 5571.831543, 8.922863, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:32:46', NULL),
472(558, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:32:52', 6552.578613, 5571.831543, 11.922894, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:32:52', NULL),
473(559, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:33:10', 6553.663574, 5565.930664, 12.664617, 0.983521, 0.180797, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:33:10', NULL),
474(560, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:33:14', 6543.916016, 5566.92041, 11.83828, -0.803894, -0.594772, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:33:14', NULL),
475(561, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:33:46', 6543.916016, 5566.92041, 2.838249, -0.803894, -0.594772, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:33:46', NULL),
476(562, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:34:49', 6518.858887, 5588.0390625, 4.750361, -0.946716, -0.322069, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:34:49', NULL),
477(563, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:35:06', 6519.82666, 5582.330078, 5.458121, -1, 0.000000088762, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:35:06', NULL),
478(564, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:35:46', 6515.556641, 5592.555176, 4.694787, -0.595215, -0.803566, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:35:46', NULL),
479(565, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:36:26', 6542.86377, 5617.839355, -0.703481, -0.203368, 0.979102, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:36:26', NULL),
480(566, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:37:00', 6547.0893555, 5620.916504, -0.142434, 0.879262, -0.476339, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:37:00', NULL),
481(567, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:37:11', 6547.0893555, 5620.916504, 2.857566, 0.879273, -0.476319, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:37:11', NULL),
482(570, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:38:50', 6569.945801, 5603.835449, -0.924987, -0.983959, 0.178397, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:38:50', NULL),
483(571, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:39:02', 6568.875, 5597.931641, -0.956967, -0.983948, 0.178458, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:39:02', NULL),
484(572, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:39:11', 6569.945801, 5603.835449, 2.0749824, -0.983948, 0.178458, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:39:11', NULL),
485(573, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:39:54', 6567.716309, 5608.065918, -0.366107, -0.451891, -0.892073, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:39:54', NULL),
486(574, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:40:08', 6567.716309, 5608.065918, 2.633893, -0.451905, -0.892066, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:40:08', NULL),
487(575, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:40:29', 6567.28125, 5608.333984, -0.201235, -0.448033, -0.894017, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:40:29', NULL),
488(576, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:40:45', 6567.28125, 5608.333984, 2.798765, -0.44806, -0.894004, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:40:45', NULL),
489(577, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:41:03', 6568.875, 5597.931641, 2.0430021, -0.983948, 0.178458, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:41:03', NULL),
490(578, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:41:08', 6569.945801, 5603.835449, 5.0749516, -0.983948, 0.178458, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:41:08', NULL),
491(580, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:42:05', 6568.875, 5597.931641, 5.0429716, -0.983948, 0.178458, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:42:05', NULL),
492(581, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-21 01:45:36', 6529.381348, 5581.181152, 0.509363, -0.109402, 0.993998, 0, 0, 0, 1, 0, '5145', 0, 6, '2019-02-21 17:39:01', NULL),
493(582, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-21 01:45:45', 6529.381348, 5581.181152, 3.509363, -0.109375, 0.994001, 0, 0, 0, 1, 0, '5145', 0, 6, '2019-02-21 17:39:16', NULL),
494(583, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:45:55', 6529.381348, 5581.181152, 6.509363, -0.109375, 0.994001, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:45:55', NULL),
495(594, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 01:55:12', 6540.921875, 5571.0141602, 9.214843, -0.822898, -0.568189, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:55:12', NULL),
496(595, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:55:37', 6540.921875, 5571.0141602, 12.214843, -0.822876, -0.56822, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:55:37', NULL),
497(596, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:55:59', 6536.585938, 5572.171387, 9.148862, 0.404849, -0.914383, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:55:59', NULL),
498(597, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 01:56:11', 6536.585938, 5572.171387, 12.148862, 0.404846, -0.914385, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 01:56:11', NULL),
499(615, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 02:05:13', 6524.887207, 5572.870605, 11.527469, -0.994708, -0.102745, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:05:13', NULL),
500(616, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 02:06:43', 6524.477051, 5577.050293, 11.576684, 0.995882, 0.0906593, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:06:43', NULL),
501(620, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:08:43', 6525.183105, 5570.0107422, 9.0707741, -0.102905, 0.994691, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:08:43', NULL),
502(621, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:09:01', 6531.151367, 5570.62793, 8.995266, -0.102905, 0.994691, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:09:01', NULL),
503(622, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 02:09:27', 6530.855469, 5573.488281, 11.671545, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:09:27', NULL),
504(625, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 02:10:15', 6530.452637, 5577.592285, 12.110399, -0.995911, -0.0903431, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:10:15', NULL),
505(631, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:13:36', 6524.217285, 5579.913574, 9.128805, 0.0903324, -0.995912, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:13:36', NULL),
506(632, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:14:02', 6530.192871, 5580.455566, 9.403048, -0.0903325, 0.995912, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:14:02', NULL),
507(633, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:14:37', 6522.0273438, 5572.574707, 11.936919, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:14:37', NULL),
508(634, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:14:49', 6530.192871, 5580.455566, 12.403017, -0.0903425, 0.995911, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:14:49', NULL),
509(635, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:14:49', 6521.61377, 5576.790527, 11.695695, 0.995911, 0.0903436, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:14:49', NULL),
510(637, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:16:06', 6521.61377, 5576.790527, 8.695664, 0.995911, 0.0903436, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:16:06', NULL),
511(641, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:18:17', 6522.0273438, 5572.574707, 8.936919, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:18:17', NULL),
512(642, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-21 02:21:38', 6525.183105, 5570.0107422, 12.0707436, 0.102917, -0.99469, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:21:38', NULL),
513(643, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:21:43', 6524.217285, 5579.913574, 12.128805, -0.0903425, 0.995911, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:21:43', NULL),
514(644, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-21 02:21:56', 6531.151367, 5570.628418, 11.995185, 0.102917, -0.99469, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:21:56', NULL),
515(645, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:23:38', 6533.715332, 5573.78418, 11.481337, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:23:38', NULL),
516(646, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:23:46', 6533.715332, 5573.78418, 14.481367, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:23:46', NULL),
517(648, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:24:04', 6531.151367, 5570.628418, 14.995185, 0.102905, -0.994691, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:24:04', NULL),
518(649, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:24:19', 6525.183105, 5570.0107422, 15.0707741, 0.102905, -0.994691, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:24:19', NULL),
519(650, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:24:43', 6522.0273438, 5572.574707, 14.936919, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:24:43', NULL),
520(651, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:25:25', 6521.61377, 5576.790527, 14.695664, 0.995911, 0.0903436, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:25:25', NULL),
521(652, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:25:34', 6524.217285, 5579.913574, 15.128805, -0.0903325, 0.995912, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:25:34', NULL),
522(653, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:25:44', 6530.192871, 5580.455566, 15.403017, -0.0903325, 0.995912, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:25:44', NULL),
523(654, 'Exile_Construction_WoodDoor_Static', '76561198150621451', '2019-02-21 02:26:01', 6533.315918, 5577.852051, 11.828807, -0.995911, -0.0903431, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:26:01', NULL),
524(655, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 02:26:11', 6533.315918, 5577.852051, 14.828807, -0.995911, -0.0903431, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:26:11', NULL),
525(656, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 02:27:31', 6524.887207, 5572.870605, 17.77747, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:27:31', NULL),
526(658, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 02:27:55', 6530.855469, 5573.488281, 17.921576, -0.994691, -0.102905, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:27:55', NULL),
527(660, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:28:23', 6533.715332, 5573.78418, 8.481367, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:28:23', NULL),
528(661, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:28:32', 6533.315918, 5577.852051, 8.828807, -0.995911, -0.0903431, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:28:32', NULL),
529(662, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:31:12', 6536.168457, 5580.997559, 11.39683, -0.0903325, 0.995912, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:31:12', NULL),
530(663, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:31:27', 6536.168457, 5580.997559, 8.39686, -0.0903325, 0.995912, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:31:27', NULL),
531(664, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:31:54', 6536.168457, 5580.997559, 14.39686, -0.0903325, 0.995912, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:31:54', NULL),
532(665, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 02:34:34', 6536.428223, 5578.134277, 17.51195, -0.995911, -0.0903431, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:34:34', NULL),
533(667, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 02:35:49', 6536.82373, 5574.105957, 17.0936432, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:35:49', NULL),
534(668, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 02:38:04', 6536.606445, 5572.214355, 13.908493, 0.399362, -0.916793, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 02:38:04', NULL),
535(671, 'Exile_Construction_WoodDoor_Static', '76561198150621451', '2019-02-21 15:19:51', 6533.150879, 5573.774414, 0.29397, 0.993604, 0.112916, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 15:19:51', NULL),
536(682, 'Exile_Construction_WoodFloorPort_Static', '76561198089886093', '2019-02-21 15:32:09', 6530.452637, 5577.592285, 18.360369, 0.995912, 0.0903324, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 15:32:09', NULL),
537(683, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 15:32:28', 6524.477051, 5577.050293, 17.826622, 0.995911, 0.0903436, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 15:32:28', NULL),
538(684, 'Exile_Construction_WoodStairs_Static', '76561198150621451', '2019-02-21 15:34:30', 6530.742188, 5577.62207, 15.258349, -0.995054, -0.0993346, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 15:34:30', NULL),
539(685, 'Exile_Construction_WoodStairs_Static', '76561198150621451', '2019-02-21 15:35:28', 6527.628906, 5577.311035, 12.241781, -0.994816, -0.101686, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 15:35:28', NULL),
540(692, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 16:29:59', 6530.192871, 5580.455566, 18.652987, -0.0903425, 0.995911, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:29:59', NULL),
541(693, 'Exile_Construction_WoodGate_Static', '76561198150621451', '2019-02-21 16:31:25', 6525.183105, 5570.0107422, 18.320744, 0.102917, -0.99469, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:31:25', NULL),
542(694, 'Exile_Construction_WoodGate_Static', '76561198150621451', '2019-02-21 16:31:43', 6531.151367, 5570.628418, 18.245214, 0.102917, -0.99469, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:31:43', NULL),
543(695, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-21 16:31:49', 6522.0273438, 5572.574707, 18.186918, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:31:49', NULL),
544(696, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-21 16:31:57', 6521.61377, 5576.790527, 17.945633, -0.995911, -0.0903431, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:31:57', NULL),
545(697, 'Exile_Construction_WoodGate_Static', '76561198150621451', '2019-02-21 16:31:59', 6537.119629, 5571.246094, 17.130568, 0.102917, -0.99469, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:31:59', NULL),
546(698, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-21 16:32:06', 6524.217285, 5579.913574, 18.378744, -0.0903425, 0.995911, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:32:06', NULL),
547(699, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-21 16:32:16', 6536.168457, 5580.997559, 17.646799, -0.0903425, 0.995911, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:32:16', NULL),
548(700, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-21 16:32:23', 6539.291504, 5578.394043, 17.617876, 0.995911, 0.090343, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:32:23', NULL),
549(702, 'Exile_Construction_WoodGate_Static', '76561198089886093', '2019-02-21 16:32:39', 6539.683594, 5574.401855, 17.137074, 0.99469, 0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:32:39', NULL),
550(703, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 16:35:23', 6536.428223, 5578.134277, 20.761919, 0.995911, 0.0903436, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:35:23', NULL),
551(704, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 16:35:35', 6536.82373, 5574.105957, 20.343613, 0.99469, 0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:35:35', NULL),
552(705, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 16:36:00', 6530.452637, 5577.592285, 21.610338, 0.995912, 0.0903324, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:36:00', NULL),
553(706, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 16:36:12', 6524.477051, 5577.050293, 21.076622, 0.995912, 0.0903324, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:36:12', NULL),
554(707, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 16:36:25', 6524.887207, 5572.870605, 21.0274696, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:36:25', NULL),
555(708, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 16:36:49', 6530.855469, 5573.488281, 21.171606, -0.994691, -0.102905, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:36:49', NULL),
556(715, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 16:44:26', 6536.428223, 5578.134277, 11.26198, -0.995911, -0.0903431, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:44:26', NULL),
557(717, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 16:45:33', 6536.0546875, 5574.267578, -500, -0.0537035, 0.998557, 0, 0, 0, 1, 0, '000000', 0, NULL, '2019-02-21 16:45:33', NULL),
558(719, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 16:47:29', 6536.82373, 5574.105957, 10.843612, -0.99469, -0.102917, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:47:29', NULL),
559(720, 'Exile_Construction_WoodWallHalf_Static', '76561198089886093', '2019-02-21 16:49:21', 6539.273438, 5578.475098, 10.121204, 0.995529, 0.0944602, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:49:21', NULL),
560(721, 'Exile_Construction_WoodWallHalf_Static', '76561198089886093', '2019-02-21 16:49:58', 6539.661133, 5574.550293, 9.66034, -0.994739, -0.102444, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:49:58', NULL),
561(722, 'Exile_Construction_WoodWallHalf_Static', '76561198089886093', '2019-02-21 16:50:15', 6539.663086, 5574.55957, 8.912878, -0.994739, -0.102444, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:50:15', NULL),
562(723, 'Exile_Construction_WoodStairs_Static', '76561198150621451', '2019-02-21 16:51:53', 6541.154785, 5575.742188, 7.874152, 0.996647, 0.0818188, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:51:53', NULL),
563(724, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 16:53:05', 6542.745605, 5576.999512, 7.404087, 0.141857, -0.989887, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:53:05', NULL),
564(725, 'Exile_Construction_WoodWallHalf_Static', '76561198089886093', '2019-02-21 16:53:17', 6543.15332, 5574.153809, 7.400014, 0.141846, -0.989889, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:53:17', NULL),
565(727, 'Exile_Construction_WoodStairs_Static', '76561198150621451', '2019-02-21 16:54:08', 6542.834961, 5581.625488, 3.954736, -0.138169, 0.990409, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:54:08', NULL),
566(728, 'Exile_Construction_WoodStairs_Static', '76561198150621451', '2019-02-21 16:54:40', 6542.399902, 5584.819824, 0.104426, -0.132832, 0.991139, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:54:40', NULL),
567(729, 'Exile_Construction_WoodWallHalf_Static', '76561198150621451', '2019-02-21 16:55:35', 6545.591309, 5577.407227, 7.114955, 0.989889, 0.141846, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:55:35', NULL),
568(730, 'Exile_Construction_SandBags_Long_Static', '76561198089886093', '2019-02-21 16:57:03', 6539.146484, 5579.714355, 11.391248, 0.994708, 0.102739, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 16:57:03', NULL),
569(735, 'Exile_Construction_CampFire_Static', '76561198089886093', '2019-02-21 17:06:16', 6548.541992, 5590.00488281, 0.242148, 0.999311, -0.0371039, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:06:16', NULL),
570(737, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 17:09:52', 6551.188477, 5596.926758, 14.775421, -0.999992, 0.00398207, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:09:52', NULL),
571(738, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 17:10:23', 6551.216309, 5600.362305, 14.783417, -0.999868, 0.0162456, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:10:23', NULL),
572(740, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 17:13:26', 6554.705078, 5600.17334, 14.78653, 0.0180164, 0.999838, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:13:26', NULL),
573(741, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 17:14:25', 6553.00341797, 5594.898438, 11.886435, -0.997835, 0.0657708, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:14:25', NULL),
574(742, 'Exile_Construction_WoodStairs_Static', '76561198150621451', '2019-02-21 17:17:24', 6550.258789, 5600.203125, 18.231964, 0.0117236, -0.999931, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:17:24', NULL),
575(743, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:17:31', 6550.140137, 5604.80127, 21.172516, -0.000904862, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:17:31', NULL),
576(744, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:17:42', 6556.140137, 5604.806641, 21.146667, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:17:42', NULL),
577(745, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:17:51', 6556.145508, 5598.806641, 21.172516, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:17:51', NULL),
578(746, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:18:00', 6556.150879, 5592.806641, 21.321939, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:18:00', NULL),
579(747, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:18:09', 6550.150879, 5592.80127, 21.34321, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:18:09', NULL),
580(748, 'Exile_Construction_WoodFloorPort_Static', '76561198150621451', '2019-02-21 17:19:23', 6550.163086, 5600.22168, 21.17395, 0.00273648, -0.999996, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:19:23', NULL),
581(749, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:19:42', 6550.179688, 5594.22168, 21.271729, 0.00274601, -0.999996, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:19:42', NULL),
582(751, 'Exile_Construction_WoodDoor_Static', '76561198089886093', '2019-02-21 17:22:24', 6550.155273, 5603.0966797, 21.42395, -0.0027464, 0.999996, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:22:24', NULL),
583(759, 'Exile_Construction_WoodWall_Static', '76561198089886093', '2019-02-21 17:24:40', 6553.0380859, 5600.229492, 21.42395, -0.999996, -0.00274609, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:24:40', NULL),
584(761, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 17:25:06', 6547.288086, 5600.213867, 21.463987, 0.999996, 0.00274618, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:25:06', NULL),
585(762, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:25:19', 6550.163086, 5600.229492, 24.42395, 0, 1, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:25:19', NULL),
586(763, 'Exile_Construction_WoodWall_Static', '76561198150621451', '2019-02-21 17:25:30', 6550.170898, 5597.34668, 21.42395, 0.00274601, -0.999996, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:25:30', NULL),
587(764, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:26:10', 6562.140137, 5604.812012, 21.0112305, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:26:10', NULL),
588(765, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:26:18', 6568.140137, 5604.817383, 20.796085, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:26:18', NULL),
589(766, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:26:25', 6562.145508, 5598.812012, 21.172516, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:26:25', NULL),
590(767, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:26:36', 6568.145508, 5598.817383, 20.75703, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:26:36', NULL),
591(768, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:27:56', 6562.150879, 5592.812012, 21.243868, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:27:56', NULL),
592(769, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 17:27:57', 6568.150879, 5592.817383, 21.326097, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:27:57', NULL),
593(770, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 17:28:32', 6562.134766, 5610.812012, 20.795431, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:28:32', NULL),
594(771, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:28:33', 6568.134766, 5610.817383, 20.87281, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:28:33', NULL),
595(772, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:28:41', 6568.129395, 5616.817383, 21.148037, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:28:41', NULL),
596(773, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 17:28:45', 6556.134766, 5610.806641, 20.976555, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:28:45', NULL),
597(774, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:28:49', 6568.124023, 5622.817383, 21.829956, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:28:49', NULL),
598(775, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 17:29:05', 6550.134766, 5610.80127, 21.13908, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:29:05', NULL),
599(776, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 17:29:16', 6550.129395, 5616.80127, 20.667648, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:29:16', NULL),
600(777, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:34:10', 6556.129395, 5616.806641, 20.698637, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:34:10', NULL),
601(778, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:34:16', 6562.129395, 5616.812012, 20.687077, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:34:16', NULL),
602(779, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:34:23', 6562.124023, 5622.812012, 20.824926, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:34:23', NULL),
603(780, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:34:30', 6556.124023, 5622.806641, 20.448736, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:34:30', NULL),
604(781, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:34:36', 6550.124023, 5622.80127, 20.134396, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:34:36', NULL),
605(782, 'Exile_Construction_WoodFloor_Static', '76561198089886093', '2019-02-21 17:34:50', 6574.124023, 5622.822754, 23.954575, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:34:50', NULL),
606(783, 'Exile_Construction_WoodFloor_Static', '76561198150621451', '2019-02-21 17:34:55', 6574.150879, 5592.822754, 22.340363, -0.000915829, 0, 0, 0, 0, 1, 0, '000000', 0, 6, '2019-02-21 17:34:55', NULL);
607
608-- --------------------------------------------------------
609
610--
611-- Tabellenstruktur für Tabelle `container`
612--
613
614CREATE TABLE IF NOT EXISTS `container` (
615`id` int(11) unsigned NOT NULL,
616 `class` varchar(64) NOT NULL,
617 `spawned_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
618 `account_uid` varchar(32) DEFAULT NULL,
619 `is_locked` tinyint(1) NOT NULL DEFAULT '0',
620 `position_x` double NOT NULL DEFAULT '0',
621 `position_y` double NOT NULL DEFAULT '0',
622 `position_z` double NOT NULL DEFAULT '0',
623 `direction_x` double NOT NULL DEFAULT '0',
624 `direction_y` double NOT NULL DEFAULT '0',
625 `direction_z` double NOT NULL DEFAULT '0',
626 `up_x` double NOT NULL DEFAULT '0',
627 `up_y` double NOT NULL DEFAULT '0',
628 `up_z` double NOT NULL DEFAULT '1',
629 `cargo_items` text NOT NULL,
630 `cargo_magazines` text NOT NULL,
631 `cargo_weapons` text NOT NULL,
632 `cargo_container` text NOT NULL,
633 `last_updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
634 `pin_code` varchar(6) NOT NULL DEFAULT '000000',
635 `territory_id` int(11) unsigned DEFAULT NULL,
636 `deleted_at` datetime DEFAULT NULL,
637 `money` int(11) unsigned NOT NULL DEFAULT '0',
638 `abandoned` datetime DEFAULT NULL
639) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
640
641--
642-- Daten für Tabelle `container`
643--
644
645INSERT INTO `container` (`id`, `class`, `spawned_at`, `account_uid`, `is_locked`, `position_x`, `position_y`, `position_z`, `direction_x`, `direction_y`, `direction_z`, `up_x`, `up_y`, `up_z`, `cargo_items`, `cargo_magazines`, `cargo_weapons`, `cargo_container`, `last_updated_at`, `pin_code`, `territory_id`, `deleted_at`, `money`, `abandoned`) VALUES
646(5, 'Exile_Container_Storagecrate', '2019-02-17 03:17:16', '76561198040322880', -1, 4695.357422, 10595.289062, 0.271444, -0.00406201, -0.999992, 0, 0, 0, 1, '[[],[]]', '[["Exile_Item_Vishpirin",1],["Exile_Item_WoodStairsKit",1],["Exile_Item_Foolbox",1],["Exile_Item_MetalScrews",1],["Exile_Item_Foolbox",1],["Exile_Item_MetalScrews",1]]', '[]', '[]', '2019-02-20 00:40:55', '0000', 1, NULL, 0, NULL),
647(10, 'Exile_Container_CamoTent', '2019-02-17 22:59:27', '76561198088733718', -1, 3973.591553, 11639.103516, 0.420126, 0.0907325, 0.995875, 0, 0, 0, 1, '[[],[]]', '[["Exile_Item_Handsaw",1],["11Rnd_45ACP_Mag",11],["11Rnd_45ACP_Mag",11]]', '[]', '[]', '2019-02-17 23:00:18', '0000', 4, NULL, 0, NULL),
648(11, 'Exile_Container_Safe', '2019-02-18 14:21:08', '76561198040322880', -1, 4692.856934, 10594.951172, 3.0305705, 0.883818, -0.46783, 0, 0, 0, 1, '[["muzzle_snds_B_khk_F","bipod_02_F_hex","acc_flashlight","optic_Hamr_khk_F","H_HelmetSpecB_paint1","O_NVGoggles_urb_F","G_Bandanna_aviator"],[1,1,1,1,1,1,1]]', '[["5Rnd_127x108_Mag",5],["5Rnd_127x108_Mag",5],["5Rnd_127x108_Mag",5],["5Rnd_127x108_Mag",5],["5Rnd_127x108_Mag",5],["5Rnd_127x108_Mag",5],["5Rnd_127x108_Mag",5],["5Rnd_127x108_Mag",5],["20Rnd_762x51_Mag",20],["20Rnd_762x51_Mag",20],["Exile_Item_Handsaw",1],["Exile_Item_DuctTape",1],["Exile_Item_DuctTape",1],["Exile_Item_Vishpirin",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["20Rnd_762x51_Mag",20],["20Rnd_762x51_Mag",20],["20Rnd_762x51_Mag",20],["20Rnd_762x51_Mag",20],["20Rnd_762x51_Mag",17],["Exile_Item_CanOpener",1],["Exile_Item_Wrench",1],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK",5],["20Rnd_762x51_Mag",20],["20Rnd_762x51_Mag",20],["Exile_Magazine_30Rnd_762x39_AK",30],["Exile_Magazine_30Rnd_762x39_AK",30],["Exile_Magazine_30Rnd_762x39_AK",30]]', '[["srifle_GM6_camo_F","","","",[],""],["srifle_DMR_03_woodland_F","","","",[],""],["Exile_Weapon_ksvk","","","optic_LRPS",["Exile_Magazine_5Rnd_127x108_APDS_KSVK",4],""],["Exile_Weapon_AKS_Gold","","","",[],""]]', '[["V_PlateCarrierIAGL_oli",[],[],[[],[]]],["U_O_FullGhillie_ard",[],[],[[],[]]],["B_ViperHarness_hex_F",[],[],[[],[]]]]', '2019-02-21 00:37:31', '1997', 1, NULL, 0, NULL),
649(13, 'Exile_Container_CamoTent', '2019-02-18 16:18:34', '76561198088733718', -1, 4713.595703, 10621.787109, 0.252869, 0.999661, 0.0260262, 0, 0, 0, 1, '[["muzzle_snds_B_khk_F","optic_AMS_khk"],[1,1]]', '[["Exile_Item_Beer",1],["Exile_Item_InstaDoc",1],["Exile_Item_CanOpener",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_CordlessScrewdriver",1],["Exile_Item_OilCanister",1],["Exile_Item_FuelCanisterFull",20]]', '[]', '[]', '2019-02-20 23:46:20', '0000', 1, NULL, 0, NULL),
650(14, 'Exile_Container_CamoTent', '2019-02-18 16:18:53', '76561198088733718', -1, 4713.812012, 10618.837891, 0.252869, 0.999903, -0.0139412, 0, 0, 0, 1, '[["Exile_Headgear_GasMask","I_UavTerminal"],[1,1]]', '[["Exile_Item_WoodGateKit",1],["Exile_Item_Codelock",1],["Exile_Item_WaterCanisterDirtyWater",1],["Exile_Magazine_Swing",969]]', '[["Exile_Melee_Axe","","","",[],""]]', '[]', '2019-02-20 23:46:35', '0000', 1, NULL, 0, NULL),
651(15, 'Exile_Container_Safe', '2019-02-18 17:08:00', '76561198088733718', -1, 4694.980469, 10595.0205078, 2.922626, 0.999507, 0.0313838, 0, 0, 0, 1, '[["optic_Arco_blk_F","O_NVGoggles_urb_F","G_B_Diving","optic_SOS","muzzle_snds_H"],[1,2,1,1,1]]', '[["Exile_Item_Beer",1],["Exile_Item_Bandage",1],["Exile_Item_Pliers",1],["Exile_Item_MetalScrews",1],["Exile_Item_WoodWallHalfKit",1],["SmokeShellOrange",1],["Exile_Item_CanOpener",1],["Exile_Item_Matches",10],["Exile_Item_PlasticBottleEmpty",1],["Exile_Item_Bandage",1],["Exile_Item_PlasticBottleEmpty",1],["Exile_Item_Bandage",1],["Exile_Item_PlasticBottleEmpty",1],["Exile_Item_PlasticBottleEmpty",1],["Exile_Item_Beer",1],["Exile_Item_PlasticBottleEmpty",1],["Exile_Item_CanOpener",1],["30Rnd_65x39_caseless_mag",13],["30Rnd_65x39_caseless_mag",12],["Exile_Item_Vishpirin",1],["Exile_Item_Vishpirin",1],["Exile_Item_Vishpirin",1],["Exile_Item_Vishpirin",1],["Exile_Item_Vishpirin",1],["30Rnd_65x39_caseless_mag",30],["Exile_Item_FireExtinguisher",1],["30Rnd_65x39_caseless_mag",20],["Exile_Item_WoodLog",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_Handsaw",1],["7Rnd_408_Mag",2],["Exile_Item_CanOpener",1],["Exile_Item_CanOpener",1],["Exile_Magazine_Swing",999],["Exile_Item_Grinder",1],["Exile_Item_Codelock",1],["Exile_Item_Codelock",1],["Exile_Item_Codelock",1],["Exile_Item_Codelock",1],["10Rnd_93x64_DMR_05_Mag",3],["Exile_Item_GloriousKnakworst_Cooked",1],["Exile_Item_GloriousKnakworst_Cooked",1],["Exile_Item_Beer",1],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_5Rnd_127x108_APDS_KSVK_Bullet_Cam_Mag",5],["Exile_Magazine_Swoosh",991]]', '[["arifle_MX_Black_F","","","",[],""],["Exile_Melee_Axe","","","",[],""],["Exile_Melee_Axe","","","",[],""],["Exile_Weapon_ksvk","","","optic_LRPS",[],""],["Exile_Melee_SledgeHammer","","","",[],""]]', '[["U_B_Wetsuit",[],[],[[],[]]],["V_RebreatherB",[],[],[[],[]]],["B_Carryall_oli",[],[],[[],[]]],["B_Bergen_hex_F",[],[],[[],[]]]]', '2019-02-20 23:46:05', '7965', 1, NULL, 0, NULL),
652(19, 'Exile_Container_CamoTent', '2019-02-18 20:14:07', '76561198133314927', -1, 2185.238525, 11892.328125, 0.031396, -0.999682, 0.0252168, 0, 0, 0, 1, '[[],[]]', '[["Exile_Item_WoodStairsKit",1],["Exile_Item_WoodStairsKit",1]]', '[]', '[["O_HMG_01_support_high_F",[],[],[[],[]]]]', '2019-02-20 18:48:39', '0000', 5, NULL, 0, NULL),
653(20, 'Exile_Container_CamoTent', '2019-02-18 20:14:19', '76561198133314927', -1, 2203.573486, 11890.435547, -0.0475561, 0.998609, 0.0527328, 0, 0, 0, 1, '[[],[]]', '[["Exile_Item_CamoTentKit",1],["Exile_Item_WoodGateKit",1],["Exile_Item_WoodWallKit",1]]', '[]', '[["O_HMG_01_high_weapon_F",[],[],[[],[]]]]', '2019-02-20 18:50:45', '0000', 5, NULL, 0, NULL),
654(21, 'Exile_Container_Safe', '2019-02-20 17:39:26', '76561198133314927', -1, 2200.816162, 11902.962891, -0.237908, -0.894261, -0.447546, 0, 0, 0, 1, '[[],[]]', '[]', '[["Exile_Melee_Axe","","","",["Exile_Magazine_Swing",999],""]]', '[]', '2019-02-20 17:40:24', '5885', 5, NULL, 0, NULL),
655(23, 'Exile_Container_Storagecrate', '2019-02-21 15:48:13', '76561198150621451', -1, 6551.830566, 5600.532715, 0.230103, -0.999998, 0.00178243, 0, 0, 0, 1, '[[],[]]', '[["Exile_Item_WoodDoorwayKit",1],["Exile_Item_WoodDoorwayKit",1],["Exile_Item_WoodDoorwayKit",1],["Exile_Item_WoodDoorKit",1],["Exile_Item_WoodDoorwayKit",1],["Exile_Item_WoodDoorwayKit",1],["Exile_Item_WoodDoorwayKit",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodPlank",1],["Exile_Item_WoodDoorKit",1],["Exile_Item_WoodStairsKit",1],["Exile_Item_WoodStairsKit",1]]', '[]', '[]', '2019-02-21 20:50:42', '0000', 6, NULL, 0, NULL),
656(24, 'Exile_Container_Storagecrate', '2019-02-21 15:48:18', '76561198089886093', -1, 6552.875488, 5600.553223, 0.230103, 0.999952, 0.00984708, 0, 0, 0, 1, '[[],[]]', '[["Exile_Item_WoodStairsKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodWallHalfKit",1],["Exile_Item_WoodWallHalfKit",1],["Exile_Item_WoodWallHalfKit",1],["Exile_Item_WoodWallHalfKit",1],["Exile_Item_WoodPlank",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_Handsaw",1]]', '[]', '[]', '2019-02-21 20:50:27', '0000', 6, NULL, 0, NULL);
657
658-- --------------------------------------------------------
659
660--
661-- Tabellenstruktur für Tabelle `infistar_logs`
662--
663
664CREATE TABLE IF NOT EXISTS `infistar_logs` (
665`id` int(11) NOT NULL,
666 `servername` text,
667 `logname` text,
668 `logentry` text,
669 `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
670) ENGINE=InnoDB DEFAULT CHARSET=utf8;
671
672-- --------------------------------------------------------
673
674--
675-- Tabellenstruktur für Tabelle `player`
676--
677
678CREATE TABLE IF NOT EXISTS `player` (
679`id` int(11) unsigned NOT NULL,
680 `name` varchar(64) NOT NULL,
681 `account_uid` varchar(32) NOT NULL,
682 `money` int(11) unsigned NOT NULL DEFAULT '0',
683 `damage` double unsigned NOT NULL DEFAULT '0',
684 `hunger` double unsigned NOT NULL DEFAULT '100',
685 `thirst` double unsigned NOT NULL DEFAULT '100',
686 `alcohol` double unsigned NOT NULL DEFAULT '0',
687 `temperature` double NOT NULL DEFAULT '37',
688 `wetness` double unsigned NOT NULL DEFAULT '0',
689 `oxygen_remaining` double unsigned NOT NULL DEFAULT '1',
690 `bleeding_remaining` double unsigned NOT NULL DEFAULT '0',
691 `hitpoints` varchar(1024) NOT NULL DEFAULT '[]',
692 `direction` double NOT NULL DEFAULT '0',
693 `position_x` double NOT NULL DEFAULT '0',
694 `position_y` double NOT NULL DEFAULT '0',
695 `position_z` double NOT NULL DEFAULT '0',
696 `spawned_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
697 `assigned_items` text NOT NULL,
698 `backpack` varchar(64) NOT NULL,
699 `backpack_items` text NOT NULL,
700 `backpack_magazines` text NOT NULL,
701 `backpack_weapons` text NOT NULL,
702 `current_weapon` varchar(64) NOT NULL,
703 `goggles` varchar(64) NOT NULL,
704 `handgun_items` text NOT NULL,
705 `handgun_weapon` varchar(64) NOT NULL,
706 `headgear` varchar(64) NOT NULL,
707 `binocular` varchar(64) NOT NULL,
708 `loaded_magazines` text NOT NULL,
709 `primary_weapon` varchar(64) NOT NULL,
710 `primary_weapon_items` text NOT NULL,
711 `secondary_weapon` varchar(64) NOT NULL,
712 `secondary_weapon_items` text NOT NULL,
713 `uniform` varchar(64) NOT NULL,
714 `uniform_items` text NOT NULL,
715 `uniform_magazines` text NOT NULL,
716 `uniform_weapons` text NOT NULL,
717 `vest` varchar(64) NOT NULL,
718 `vest_items` text NOT NULL,
719 `vest_magazines` text NOT NULL,
720 `vest_weapons` text NOT NULL,
721 `last_updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
722) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8;
723
724--
725-- Daten für Tabelle `player`
726--
727
728INSERT INTO `player` (`id`, `name`, `account_uid`, `money`, `damage`, `hunger`, `thirst`, `alcohol`, `temperature`, `wetness`, `oxygen_remaining`, `bleeding_remaining`, `hitpoints`, `direction`, `position_x`, `position_y`, `position_z`, `spawned_at`, `assigned_items`, `backpack`, `backpack_items`, `backpack_magazines`, `backpack_weapons`, `current_weapon`, `goggles`, `handgun_items`, `handgun_weapon`, `headgear`, `binocular`, `loaded_magazines`, `primary_weapon`, `primary_weapon_items`, `secondary_weapon`, `secondary_weapon_items`, `uniform`, `uniform_items`, `uniform_magazines`, `uniform_weapons`, `vest`, `vest_items`, `vest_magazines`, `vest_weapons`, `last_updated_at`) VALUES
729(15, 'Peter Koch', '76561198162261359', 250, 0, 57.552879, 38.0738602, 0, 36.994987, 0, 1, 0, '[["face_hub",0],["neck",0],["head",0],["pelvis",0],["spine1",0],["spine2",0],["spine3",0],["body",0],["arms",0],["head_hit",0],["hand_r",0],["body",0]]', 5.228359, 4466.706055, 10856.359375, 0.00143433, '2019-02-17 16:38:47', '["ItemMap","ItemCompass","Exile_Item_XM8","ItemRadio","O_NVGoggles_urb_F","Rangefinder"]', 'B_Carryall_cbr', '[]', '[["Exile_Item_MetalPole",1],["Exile_Item_MetalPole",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodDoorKit",1],["Exile_Item_WoodDoorKit",1]]', '[]', 'LMG_Zafir_F', 'G_Sport_Red', '["","","",""]', '', 'H_HelmetSpecB_paint1', 'Rangefinder', '[["LMG_Zafir_F","150Rnd_762x54_Box_Tracer",115,"LMG_Zafir_F"],["Exile_Melee_Axe","Exile_Magazine_Swing",963,"Exile_Melee_Axe"]]', 'LMG_Zafir_F', '["","","optic_DMS",""]', 'Exile_Melee_Axe', '["","","",""]', 'U_I_FullGhillie_lsh', '[]', '[["Exile_Item_PlasticBottleCoffee",1],["Exile_Item_PlasticBottleCoffee",1],["Exile_Item_CanOpener",1],["Exile_Item_PlasticBottleFreshWater",1],["Exile_Item_CatFood_Cooked",1],["Exile_Item_PowerDrink",1],["Exile_Item_PlasticBottleCoffee",1],["Exile_Item_PlasticBottleFreshWater",1],["Exile_Item_PlasticBottleEmpty",1]]', '[]', 'V_PlateCarrierH_CTRG', '[]', '[["Exile_Item_Surstromming_Cooked",1],["Exile_Item_PlasticBottleCoffee",1],["Exile_Item_PlasticBottleCoffee",1],["Exile_Item_PlasticBottleCoffee",1],["Exile_Item_PlasticBottleFreshWater",1],["Exile_Item_CatFood_Cooked",1],["Exile_Item_Handsaw",1],["Exile_Item_EMRE",1],["Exile_Item_EnergyDrink",1],["Exile_Item_InstaDoc",1],["Exile_Item_EnergyDrink",1],["Exile_Item_InstaDoc",1],["Exile_Item_CatFood_Cooked",1],["Exile_Item_WoodPlank",1]]', '[]', '2019-02-21 22:55:07'),
730(76, 'Snagg Pepper', '76561198040322880', 30626, 0.015748, 65.182709, 44.829147, 0, 37, 0, 1, 0, '[["face_hub",0.015748],["neck",0.015748],["head",0.015748],["pelvis",0.015748],["spine1",0.015748],["spine2",0.015748],["spine3",0.015748],["body",0.015748],["arms",0.015748],["head_hit",0.015748],["hand_r",0.015748],["body",0.015748]]', 256.998779, 4468.78125, 10858.0830078, 0.00143433, '2019-02-20 14:03:32', '["ItemMap","ItemCompass","Exile_Item_XM8","ItemRadio","O_NVGoggles_ghex_F","Rangefinder"]', 'B_Carryall_oli', '[["optic_Nightstalker",1]]', '[["Exile_Magazine_10Rnd_127x99_m107",10],["Exile_Magazine_10Rnd_127x99_m107",10],["Exile_Magazine_10Rnd_127x99_m107",10],["Exile_Magazine_10Rnd_127x99_m107",10],["Exile_Magazine_10Rnd_127x99_m107",10],["Exile_Magazine_10Rnd_127x99_m107",9]]', '[]', '', 'G_Balaclava_TI_G_blk_F', '["","","",""]', 'Exile_Weapon_Taurus', 'H_HelmetB_TI_tna_F', 'Rangefinder', '[["Exile_Weapon_m107","Exile_Magazine_10Rnd_127x99_m107",8,"Exile_Weapon_m107"]]', 'Exile_Weapon_m107', '["","","optic_Hamr_khk_F",""]', '', '["","","",""]', 'U_O_FullGhillie_ard', '[["optic_LRPS",1]]', '[["Exile_Item_Vishpirin",1],["Exile_Item_Beer",1],["Exile_Item_Matches",4],["Exile_Magazine_10Rnd_127x99_m107",2],["Exile_Magazine_10Rnd_127x99_m107",5]]', '[]', 'V_PlateCarrierIAGL_oli', '[]', '[["Exile_Item_PowerDrink",1],["Exile_Magazine_10Rnd_127x99_m107",10],["Exile_Magazine_10Rnd_127x99_m107",10]]', '[]', '2019-02-21 22:56:37'),
731(80, 'Dr. Leon Koch', '76561198133314927', 0, 0.212598, 65.073288, 47.203457, 0, 37, 0, 1, 0, '[["face_hub",0.212598],["neck",0.212598],["head",0.212598],["pelvis",0.212598],["spine1",0.212598],["spine2",0.212598],["spine3",0.212598],["body",0.212598],["arms",0.212598],["head_hit",0.212598],["hand_r",0.212598],["body",0.212598]]', 84.934067, 2360.17627, 11539.317383, 0.00313066, '2019-02-20 18:38:15', '["ItemMap","ItemCompass","Exile_Item_XM8","ItemRadio","Rangefinder"]', 'B_Carryall_mcamo', '[]', '[["Exile_Item_EMRE",1],["Exile_Item_PowerDrink",1],["Exile_Item_PowerDrink",1],["Exile_Item_PlasticBottleFreshWater",1]]', '[]', '', 'G_Aviator', '["","","",""]', '', 'H_PilotHelmetFighter_I', 'Rangefinder', '[["srifle_DMR_02_F","10Rnd_338_Mag",2,"srifle_DMR_02_F"]]', 'srifle_DMR_02_F', '["muzzle_snds_338_green","acc_flashlight","optic_LRPS","bipod_01_F_blk"]', '', '["","","",""]', 'U_I_FullGhillie_sard', '[]', '[["Exile_Item_PlasticBottleEmpty",1],["Exile_Item_PlasticBottleEmpty",1],["10Rnd_338_Mag",10],["10Rnd_338_Mag",10],["10Rnd_338_Mag",10],["Exile_Item_PlasticBottleEmpty",1]]', '[]', 'V_PlateCarrierGL_rgr', '[["optic_NVS",1]]', '[["10Rnd_338_Mag",10],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_PlasticBottleFreshWater",1],["Exile_Item_PlasticBottleFreshWater",1],["Exile_Item_EMRE",1]]', '[]', '2019-02-20 19:09:58'),
732(82, 'Roberto Nello', '76561198150621451', 17930, 0, 62.94471, 86.652855, 0, 36.989243, 0, 1, 0, '[["face_hub",0],["neck",0],["head",0],["pelvis",0],["spine1",0],["spine2",0],["spine3",0],["body",0],["arms",0],["head_hit",0],["hand_r",0],["body",0]]', 164.439865, 11751.548828, 5657.525391, 1.134048, '2019-02-21 01:14:06', '["ItemMap","ItemCompass","Exile_Item_XM8","ItemRadio","ItemGPS","NVGoggles","Rangefinder"]', 'B_Bergen_tna_F', '[]', '[["Exile_Item_SafeKit",1],["Exile_Item_SafeKit",1]]', '[]', '', 'G_Bandanna_aviator', '["","","",""]', '', 'H_CrewHelmetHeli_B', 'Rangefinder', '[["srifle_GM6_ghex_F","5Rnd_127x108_APDS_Mag",5,"srifle_GM6_ghex_F"],["Exile_Melee_SledgeHammer","Exile_Magazine_Swoosh",999,"Exile_Melee_SledgeHammer"]]', 'srifle_GM6_ghex_F', '["","","optic_LRPS_ghex_F",""]', 'Exile_Melee_SledgeHammer', '["","","",""]', 'U_I_FullGhillie_lsh', '[]', '[["Exile_Item_EMRE",1],["Exile_Item_EMRE",1],["Exile_Item_PlasticBottleCoffee",1],["Exile_Item_PlasticBottleCoffee",1]]', '[]', 'V_PlateCarrierGL_tna_F', '[]', '[["5Rnd_127x108_APDS_Mag",5],["5Rnd_127x108_APDS_Mag",5],["5Rnd_127x108_APDS_Mag",5],["5Rnd_127x108_APDS_Mag",5],["5Rnd_127x108_APDS_Mag",5],["5Rnd_127x108_APDS_Mag",5],["5Rnd_127x108_APDS_Mag",5],["5Rnd_127x108_APDS_Mag",5]]', '[]', '2019-02-21 22:57:24'),
733(83, 'Jason Bull', '76561198089886093', 1270, 0, 96.0504837, 94.256699, 0, 36.938908, 0, 1, 0, '[["face_hub",0],["neck",0],["head",0],["pelvis",0],["spine1",0],["spine2",0],["spine3",0],["body",0],["arms",0],["head_hit",0],["hand_r",0],["body",0]]', 286.0546265, 11411.484375, 10177.575195, 0.00102545, '2019-02-21 16:57:32', '["ItemMap","ItemCompass","Exile_Item_XM8","ItemRadio","ItemGPS","Rangefinder"]', 'B_Bergen_mcamo_F', '[]', '[["Exile_Item_CanOpener",1],["Exile_Item_Handsaw",1],["Exile_Item_DuctTape",1]]', '[]', 'MMG_02_black_F', 'G_Balaclava_TI_G_blk_F', '["","","",""]', '', 'H_PilotHelmetFighter_I', 'Rangefinder', '[["MMG_02_black_F","130Rnd_338_Mag",130,"MMG_02_black_F"],["Exile_Melee_Axe","Exile_Magazine_Swing",999,"Exile_Melee_Axe"]]', 'MMG_02_black_F', '["muzzle_snds_338_black","acc_pointer_IR","optic_AMS","bipod_01_F_blk"]', 'Exile_Melee_Axe', '["","","",""]', 'U_B_FullGhillie_ard', '[]', '[["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1]]', '[]', 'V_PlateCarrierGL_mtp', '[]', '[["130Rnd_338_Mag",130],["Exile_Item_GloriousKnakworst_Cooked",1],["Exile_Item_GloriousKnakworst_Cooked",1],["Exile_Item_PlasticBottleCoffee",1],["Exile_Item_PlasticBottleCoffee",1],["130Rnd_338_Mag",130]]', '[]', '2019-02-21 22:56:37'),
734(84, 'Zen Zamora', '76561198088733718', 2232, 0, 67.505966, 50.767883, 0, 37, 0, 1, 0, '[["face_hub",0],["neck",0],["head",0],["pelvis",0],["spine1",0],["spine2",0],["spine3",0],["body",0],["arms",0],["head_hit",0],["hand_r",0],["body",0]]', 137.961624, 4665.398438, 10639.825195, 13.447052, '2019-02-21 20:59:05', '["ItemMap","ItemCompass","Exile_Item_XM8","ItemRadio","I_UavTerminal","Rangefinder"]', 'B_Bergen_hex_F', '[]', '[["10Rnd_93x64_DMR_05_Mag",10],["10Rnd_93x64_DMR_05_Mag",10],["10Rnd_93x64_DMR_05_Mag",10],["10Rnd_93x64_DMR_05_Mag",10],["10Rnd_93x64_DMR_05_Mag",10],["10Rnd_93x64_DMR_05_Mag",3],["10Rnd_93x64_DMR_05_Mag",10],["10Rnd_93x64_DMR_05_Mag",10],["10Rnd_93x64_DMR_05_Mag",10],["Exile_Item_Beer",1],["Exile_Item_Beer",1],["Exile_Item_Beer",1],["Exile_Item_EMRE",1],["Exile_Item_EMRE",1],["Exile_Item_SausageGravy_Cooked",1],["Exile_Item_CanOpener",1],["Exile_Item_InstaDoc",1]]', '[]', 'srifle_DMR_05_blk_F', 'G_Balaclava_TI_G_tna_F', '["","","",""]', '', 'H_PilotHelmetFighter_I', 'Rangefinder', '[["srifle_DMR_05_blk_F","10Rnd_93x64_DMR_05_Mag",10,"srifle_DMR_05_blk_F"]]', 'srifle_DMR_05_blk_F', '["muzzle_snds_93mmg","acc_flashlight","optic_LRPS","bipod_02_F_blk"]', '', '["","","",""]', 'U_I_FullGhillie_lsh', '[]', '[["Exile_Item_Knife",1],["Exile_Item_Beer",1],["Exile_Item_CatFood_Cooked",1],["Exile_Item_PlasticBottleCoffee",1],["Exile_Item_CanOpener",1],["Exile_Item_CanOpener",1],["Exile_Item_PowerDrink",1],["Exile_Magazine_Swing",999]]', '[]', 'V_PlateCarrierGL_blk', '[["optic_Nightstalker",1]]', '[["Exile_Item_EMRE",1],["Exile_Item_EMRE",1],["Exile_Item_PowerDrink",1],["Exile_Item_PowerDrink",1],["Exile_Item_PowerDrink",1]]', '[["Exile_Melee_Axe",1]]', '2019-02-21 22:54:37');
735
736-- --------------------------------------------------------
737
738--
739-- Tabellenstruktur für Tabelle `player_history`
740--
741
742CREATE TABLE IF NOT EXISTS `player_history` (
743`id` int(11) unsigned NOT NULL,
744 `account_uid` varchar(32) NOT NULL,
745 `name` varchar(64) NOT NULL,
746 `died_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
747 `position_x` double NOT NULL,
748 `position_y` double NOT NULL,
749 `position_z` double NOT NULL
750) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8;
751
752--
753-- Daten für Tabelle `player_history`
754--
755
756INSERT INTO `player_history` (`id`, `account_uid`, `name`, `died_at`, `position_x`, `position_y`, `position_z`) VALUES
757(1, '76561198040322880', '[PRPG]Snagg Pepper', '2019-02-17 01:12:42', 1714.24, 4023.82, 0.0015564),
758(2, '76561198133314927', 'Dr. Leon Koch', '2019-02-17 02:28:36', 11649, 9997.71, 0.00436783),
759(3, '76561198040322880', '[PRPG]Snagg Pepper', '2019-02-17 03:30:09', 4072.33, 10426.1, 0.00146484),
760(4, '76561198133314927', 'Dr. Leon Koch', '2019-02-17 03:32:22', 4848.75, 9706.04, 0.00143433),
761(5, '76561198133314927', 'Dr. Leon Koch', '2019-02-17 03:45:33', 2785.15, 9013.95, 0.00137329),
762(6, '76561198162261359', 'Peter Koch', '2019-02-17 15:48:54', 4483.95, 10883.2, 0.00143433),
763(7, '76561198162261359', 'Peter Koch', '2019-02-17 15:49:59', 4989.96, 12524.3, 1000),
764(8, '76561198162261359', 'Peter Koch', '2019-02-17 16:06:30', 9431.29, 8655.07, 2.43707),
765(9, '76561198040322880', 'Snagg Pepper', '2019-02-17 16:06:43', 9460.66, 8704.56, 1.00681),
766(10, '76561198162261359', 'Peter Koch', '2019-02-17 16:38:13', 8129.51, 8979.54, 5.74899),
767(11, '76561198162261359', 'Peter Koch', '2019-02-17 16:38:33', 9847.85, 9064.77, 1000.03),
768(12, '76561198040322880', 'Snagg Pepper', '2019-02-17 18:40:32', 5098.1, 9545.37, 4.7514),
769(13, '76561198133314927', 'Dr. Leon Koch', '2019-02-17 18:40:59', 5106.34, 9541.29, 0.00146484),
770(14, '76561198133314927', 'Dr. Leon Koch', '2019-02-17 18:45:45', 5079.09, 9512.03, 2.42352),
771(15, '76561198133314927', 'Dr. Leon Koch', '2019-02-17 19:17:30', 5095.6, 9499.51, 0.00143433),
772(16, '76561198133314927', 'Dr. Leon Koch', '2019-02-17 19:18:50', 6192.61, 7475.41, 0.00146484),
773(17, '76561198040322880', 'Snagg Pepper', '2019-02-17 19:26:26', 8928.1, 11207.4, 1.58684),
774(18, '76561198088733718', 'Zen Zamora', '2019-02-17 19:26:26', 8934.14, 11211, 1.70084),
775(19, '76561198088733718', 'Zen Zamora', '2019-02-17 21:21:05', 8663.07, 7095.29, 0.00164795),
776(20, '76561198088733718', 'Zen Zamora', '2019-02-17 21:42:25', 2793.57, 8999.06, 0.00143433),
777(21, '76561198088733718', 'Zen Zamora', '2019-02-17 21:50:41', 2798.43, 8998.3, 0.00143433),
778(22, '76561198088733718', 'Zen Zamora', '2019-02-17 21:50:58', 5319.6, 12263.8, 1000.01),
779(23, '76561198088733718', 'Zen Zamora', '2019-02-17 21:55:29', 2797.4, 9008.95, 0.00143433),
780(24, '76561198088733718', 'Zen Zamora', '2019-02-17 21:57:23', 4901.57, 11051.2, 1.0304),
781(25, '76561198088733718', 'Zen Zamora', '2019-02-17 22:03:34', 2793.38, 8999.91, 0.00143433),
782(26, '76561198088733718', 'Zen Zamora', '2019-02-17 22:09:33', 2793.57, 8999.28, 0.00143433),
783(27, '76561198040322880', 'Snagg Pepper', '2019-02-17 22:47:05', 4671.02, 10625.2, 2.08081),
784(28, '76561198040322880', 'Snagg Pepper', '2019-02-17 22:51:57', 4666.2, 10610.6, 0.00143433),
785(29, '76561198133314927', 'Dr. Leon Koch', '2019-02-18 13:58:18', 8124.67, 8849.13, 3.39819),
786(30, '76561198133314927', 'Dr. Leon Koch', '2019-02-18 14:51:27', 3396.26, 11723, 0.885559),
787(31, '76561198133314927', 'Dr. Leon Koch', '2019-02-18 15:10:50', 6556.01, 5600.78, 19.9206),
788(32, '76561198133314927', 'Dr. Leon Koch', '2019-02-18 15:17:01', 6556.14, 5598.11, 0.00143433),
789(33, '76561198089886093', 'Branan', '2019-02-18 16:17:38', 7060.74, 5753.93, 2.44464),
790(34, '76561198133314927', 'Dr. Leon Koch', '2019-02-18 16:38:20', 5093.38, 9520.97, 0.00149536),
791(35, '76561198133314927', 'Dr. Leon Koch', '2019-02-18 19:15:34', 2200.61, 4855.67, 110.778),
792(36, '76561198133314927', 'Dr. Leon Koch', '2019-02-18 19:29:29', 2707.84, 2094.43, -2.82241),
793(37, '76561198040322880', 'Snagg Pepper', '2019-02-18 19:29:49', 2768.06, 2116.11, 0.00212479),
794(38, '76561198040322880', 'Snagg Pepper', '2019-02-18 19:30:58', 6708.21, 2817.98, 0.00143862),
795(39, '76561198040322880', 'Snagg Pepper', '2019-02-18 19:36:43', 2658.73, 2136, -1.56681),
796(40, '76561198150621451', 'Roberto Nello', '2019-02-18 21:34:55', 9039.94, 6113.47, 0.00119019),
797(41, '76561198089886093', 'Branan', '2019-02-18 21:35:21', 9008.6, 6131.76, 0.00189209),
798(42, '76561198150621451', 'Roberto Nello', '2019-02-18 21:54:12', 3356.44, 4751.75, 0.00210571),
799(43, '76561198088733718', 'Zen Zamora', '2019-02-18 21:55:42', 3234.08, 4904.5, 0.00135803),
800(44, '76561198133314927', 'Dr. Leon Koch', '2019-02-18 21:57:21', 3966.38, 15380.1, 3.97467),
801(45, '76561198133314927', 'Dr. Leon Koch', '2019-02-18 22:02:02', 4855.07, 12932.6, 0.945435),
802(46, '76561198040322880', 'Snagg Pepper', '2019-02-18 23:05:37', 4494.33, 2440.11, 0.00144911),
803(47, '76561198040322880', 'Snagg Pepper', '2019-02-18 23:08:33', 5290.41, 8051.55, 1.41928),
804(48, '76561198088733718', 'Zen Zamora', '2019-02-18 23:08:36', 5285.49, 8053.05, 0.928345),
805(49, '76561198088733718', 'Zen Zamora', '2019-02-18 23:24:54', 4742.22, 10878.9, 23.4814),
806(50, '76561198040322880', 'Snagg Pepper', '2019-02-18 23:24:55', 4739.93, 10883.7, 24.1319),
807(51, '76561198088733718', 'Zen Zamora', '2019-02-18 23:25:12', 6543.67, 7451.19, 0.00137329),
808(52, '76561198088733718', 'Zen Zamora', '2019-02-19 10:19:19', 1233.51, 3923.04, 0.00170898),
809(53, '76561198088733718', 'Zen Zamora', '2019-02-19 18:54:16', 4682.08, 10606.6, 2.134),
810(54, '76561198088733718', 'Zen Zamora', '2019-02-19 23:08:23', 4742.85, 10455.5, 7.03183),
811(55, '76561198133314927', 'Dr. Leon Koch', '2019-02-19 23:09:02', 5773.72, 14492.9, -0.0176392),
812(56, '76561198150621451', 'Roberto Nello', '2019-02-19 23:14:35', 8030.86, 8713.95, 152.032),
813(57, '76561198089886093', 'Branan', '2019-02-19 23:36:06', 4082.31, 6019.13, 3.1835),
814(58, '76561198088733718', 'Zen Zamora', '2019-02-20 00:46:05', 4692.01, 10595.7, -0.276978),
815(59, '76561198040322880', 'Snagg Pepper', '2019-02-20 01:10:56', 6550.39, 5601.08, 19.9225),
816(60, '76561198088733718', 'Zen Zamora', '2019-02-20 01:11:00', 6549.72, 5595.58, 16.9597),
817(61, '76561198040322880', 'Snagg Pepper', '2019-02-20 01:11:30', 6247.98, 7692.62, 0),
818(62, '76561198150621451', 'Roberto Nello', '2019-02-20 01:55:28', 9610.53, 8771.31, 0.000976562),
819(63, '76561198089886093', 'Branan', '2019-02-20 13:52:15', 10300.2, 8042.28, 0.00172424),
820(64, '76561198040322880', 'Snagg Pepper', '2019-02-20 13:54:48', 10216.5, 8123.14, 0.00187683),
821(65, '76561198089886093', 'Branan', '2019-02-20 13:58:00', 10268.6, 7891.59, 0.932999),
822(66, '76561198040322880', 'Snagg Pepper', '2019-02-20 13:58:01', 10267.6, 7888.4, 1.37),
823(67, '76561198040322880', 'Snagg Pepper', '2019-02-20 14:03:14', 10269.8, 7911.19, 0.00187683),
824(68, '76561198089886093', 'Branan', '2019-02-20 14:20:15', 8467.46, 11147.1, 0.00135803),
825(69, '76561198089886093', 'Branan', '2019-02-20 14:28:43', 8502.12, 11278.7, 0.00143433),
826(70, '76561198150621451', 'D O P E', '2019-02-20 15:45:32', 3887.97, 15692, 0.0205078),
827(71, '76561198133314927', 'Dr. Leon Koch', '2019-02-20 18:37:24', 2207.98, 11696.4, 0.696228),
828(72, '76561198088733718', 'Zen Zamora', '2019-02-20 21:52:58', 4673, 10597.2, 0.00143433),
829(73, '76561198150621451', 'Roberto Nello', '2019-02-21 01:13:26', 6557.66, 5603.59, 0.00146484),
830(74, '76561198089886093', 'Branan', '2019-02-21 16:57:11', 6546.29, 5574.31, 0.00143433),
831(75, '76561198088733718', 'Zen Zamora', '2019-02-21 20:58:53', 5583.78, 8152.69, 0.00158691);
832
833-- --------------------------------------------------------
834
835--
836-- Tabellenstruktur für Tabelle `territory`
837--
838
839CREATE TABLE IF NOT EXISTS `territory` (
840`id` int(11) unsigned NOT NULL,
841 `owner_uid` varchar(32) NOT NULL,
842 `name` varchar(64) NOT NULL,
843 `position_x` double NOT NULL,
844 `position_y` double NOT NULL,
845 `position_z` double NOT NULL,
846 `radius` double NOT NULL,
847 `level` int(11) NOT NULL,
848 `flag_texture` varchar(255) NOT NULL,
849 `flag_stolen` tinyint(1) NOT NULL DEFAULT '0',
850 `flag_stolen_by_uid` varchar(32) DEFAULT NULL,
851 `flag_stolen_at` datetime DEFAULT NULL,
852 `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
853 `last_paid_at` datetime DEFAULT CURRENT_TIMESTAMP,
854 `xm8_protectionmoney_notified` tinyint(1) NOT NULL DEFAULT '0',
855 `build_rights` varchar(640) NOT NULL DEFAULT '0',
856 `moderators` varchar(320) NOT NULL DEFAULT '0',
857 `deleted_at` datetime DEFAULT NULL
858) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
859
860--
861-- Daten für Tabelle `territory`
862--
863
864INSERT INTO `territory` (`id`, `owner_uid`, `name`, `position_x`, `position_y`, `position_z`, `radius`, `level`, `flag_texture`, `flag_stolen`, `flag_stolen_by_uid`, `flag_stolen_at`, `created_at`, `last_paid_at`, `xm8_protectionmoney_notified`, `build_rights`, `moderators`, `deleted_at`) VALUES
865(1, '76561198040322880', 'PutinSikerimAMK', 4700.34375, 10606.0136719, -0.0170898, 120, 8, 'exile_assets\\texture\\flag\\flag_country_ru_co.paa', 0, NULL, NULL, '2019-02-17 01:36:57', '2019-02-19 23:30:43', 0, '["76561198040322880","76561198162261359","76561198088733718"]', '["76561198040322880"]', NULL),
866(2, '76561198162261359', 'Talha Town', 4478.871582, 10876.438477, -0.00201416, 60, 4, 'exile_assets\\texture\\flag\\flag_misc_dickbutt_co.paa', 0, NULL, NULL, '2019-02-17 01:37:40', '2019-02-19 23:30:39', 0, '["76561198162261359","76561198040322880"]', '["76561198162261359","76561198040322880"]', NULL),
867(3, '76561198133314927', 'The greater Reich', 5099.0429688, 9492.655273, -0.154242, 45, 3, 'exile_assets\\texture\\flag\\flag_misc_nuclear_co.paa', 0, NULL, NULL, '2019-02-17 02:44:50', '2019-02-17 19:43:26', 0, '["76561198133314927"]', '["76561198133314927"]', NULL),
868(4, '76561198088733718', 'I bims-Land', 3971.741943, 11638.676758, 0.187586, 30, 2, 'exile_assets\\texture\\flag\\flag_misc_trololol_co.paa', 0, NULL, NULL, '2019-02-17 20:24:59', '2019-02-17 22:52:56', 0, '["76561198088733718"]', '["76561198088733718"]', NULL),
869(5, '76561198133314927', 'Kaiserreich Deutschland', 2196.583008, 11889.882812, -0.018701, 45, 3, 'exile_assets\\texture\\flag\\flag_country_de_co.paa', 0, NULL, NULL, '2019-02-18 18:04:10', '2019-02-18 18:04:10', 0, '["76561198133314927"]', '["76561198133314927"]', NULL),
870(6, '76561198150621451', 'You all suck', 6554.0878906, 5598.0786133, 0.228058, 105, 7, 'exile_assets\\texture\\flag\\flag_misc_willbeeaten_co.paa', 0, NULL, NULL, '2019-02-20 15:33:24', '2019-02-21 16:17:41', 0, '["76561198150621451","76561198089886093"]', '["76561198150621451"]', NULL);
871
872-- --------------------------------------------------------
873
874--
875-- Tabellenstruktur für Tabelle `vehicle`
876--
877
878CREATE TABLE IF NOT EXISTS `vehicle` (
879`id` int(11) unsigned NOT NULL,
880 `class` varchar(64) NOT NULL,
881 `spawned_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
882 `account_uid` varchar(32) DEFAULT NULL,
883 `is_locked` tinyint(1) NOT NULL DEFAULT '0',
884 `fuel` double unsigned NOT NULL DEFAULT '0',
885 `damage` double unsigned NOT NULL DEFAULT '0',
886 `hitpoints` text NOT NULL,
887 `position_x` double NOT NULL DEFAULT '0',
888 `position_y` double NOT NULL DEFAULT '0',
889 `position_z` double NOT NULL DEFAULT '0',
890 `direction_x` double NOT NULL DEFAULT '0',
891 `direction_y` double NOT NULL DEFAULT '0',
892 `direction_z` double NOT NULL DEFAULT '0',
893 `up_x` double NOT NULL DEFAULT '0',
894 `up_y` double NOT NULL DEFAULT '0',
895 `up_z` double NOT NULL DEFAULT '1',
896 `cargo_items` text NOT NULL,
897 `cargo_magazines` text NOT NULL,
898 `cargo_weapons` text NOT NULL,
899 `cargo_container` text NOT NULL,
900 `last_updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
901 `pin_code` varchar(6) NOT NULL DEFAULT '000000',
902 `deleted_at` datetime DEFAULT NULL,
903 `money` int(11) unsigned NOT NULL DEFAULT '0',
904 `vehicle_texture` text NOT NULL,
905 `territory_id` int(11) unsigned DEFAULT NULL,
906 `nickname` varchar(64) NOT NULL DEFAULT ''
907) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8;
908
909--
910-- Daten für Tabelle `vehicle`
911--
912
913INSERT INTO `vehicle` (`id`, `class`, `spawned_at`, `account_uid`, `is_locked`, `fuel`, `damage`, `hitpoints`, `position_x`, `position_y`, `position_z`, `direction_x`, `direction_y`, `direction_z`, `up_x`, `up_y`, `up_z`, `cargo_items`, `cargo_magazines`, `cargo_weapons`, `cargo_container`, `last_updated_at`, `pin_code`, `deleted_at`, `money`, `vehicle_texture`, `territory_id`, `nickname`) VALUES
914(1, 'Exile_Car_HMMWV_UNA_Green', '2019-02-17 01:31:05', '76561198040322880', -1, 0.982472, 0, '[["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitlfwheel",0],["hitlbwheel",0],["hitrfwheel",0],["hitrbwheel",0],["hitfuel",0],["hitengine",0],["hitbody",0],["hitrglass",0],["hitlglass",0],["hitglass5",0],["hitglass6",0],["hitlmwheel",0],["hitlf2wheel",0],["hitrmwheel",0],["hitrf2wheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#light_l",0],["#light_l",0],["#light_r",0],["#light_r",0]]', 4694.228516, 10589.410156, -0.0204693, 0.0124958, -0.999897, -0.00710022, -0.00239084, -0.00713063, 0.999972, '[[],[]]', '[["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorPortKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodPlank",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodPlank",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodWallKit",1]]', '[]', '[]', '2019-02-21 00:37:46', '1404', NULL, 0, '', NULL, ''),
915(3, 'Exile_Chopper_Huey_Green', '2019-02-17 02:46:30', '76561198162261359', -1, 0.626792, 0, '[["hithull",0],["hitengine",0.011811],["hitavionics",0.0314961],["hitvrotor",0],["hithrotor",0],["hitglass1",0.177165],["hitglass2",0.015748],["hitglass3",0],["hitglass4",0.0944882],["hitglass5",0],["hitglass6",0.0826772],["hitglass7",0.011811],["hitfuel",0],["hitmissiles",0],["hitrglass",0],["hitlglass",0],["hitengine1",0],["hitengine2",0],["hitengine3",0],["hitwinch",0],["hittransmission",0],["hitlight",0],["hithydraulics",0],["hitgear",0],["hithstabilizerl1",0],["hithstabilizerr1",0],["hitvstabilizer1",0],["hittail",0],["hitpitottube",0],["hitstaticport",0],["hitstarter1",0],["hitstarter2",0],["hitstarter3",0],["hitturret",0],["hitgun",0],["#l svetlo",0]]', 4501.249023, 10890.958008, 0.0039288, -0.712219, 0.701899, -0.0090332, 0.00759821, 0.0205765, 0.999759, '[["I_UavTerminal"],[1]]', '[]', '[]', '[]', '2019-02-21 00:43:16', '2712', '2019-02-21 00:43:16', 0, '', NULL, ''),
916(5, 'Exile_Car_Ural_Covered_Worker', '2019-02-17 03:25:54', '76561198162261359', -1, 0.996455, 0, '[["hitlfwheel",0],["hitlf2wheel",0],["hitrfwheel",0],["hitrf2wheel",0],["hitfuel",0],["hitengine",0],["hitbody",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitrglass",0],["hitlglass",0],["hitglass5",0],["hitglass6",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#l svetlo",0],["#p svetlo",0]]', 4473.0107422, 10890.329102, 0.13879, 0.695435, -0.718589, -0.00012207, -0.0000011752, -0.000209723, 0, '[["Exile_Headgear_GasMask"],[1]]', '[["Exile_Item_Sand",1],["Exile_Item_Foolbox",1],["Exile_Item_MetalScrews",1],["Exile_Item_JunkMetal",1],["Exile_Item_Pliers",1],["Exile_Item_Sand",1],["Exile_Item_Vishpirin",1],["Exile_Item_Codelock",1],["Exile_Item_Codelock",1],["Exile_Item_JunkMetal",1],["Exile_Item_MetalScrews",1],["Exile_Item_MetalScrews",1],["Exile_Item_JunkMetal",1],["Exile_Item_Foolbox",1],["Exile_Item_Pliers",1],["Exile_Item_Codelock",1],["Exile_Item_PlasticBottleEmpty",1],["Exile_Item_WoodDoorwayKit",1],["Exile_Item_PlasticBottleFreshWater",1],["Exile_Item_WoodStairsKit",1],["Exile_Item_WoodDrawBridgeKit",1],["Exile_Item_WoodWindowKit",1],["Exile_Item_WoodDoorwayKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_Surstromming_Cooked",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_PlasticBottleFreshWater",1],["Exile_Item_BBQSandwich_Cooked",1],["Exile_Item_BBQSandwich_Cooked",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodWallHalfKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodPlank",1],["Exile_Item_WoodPlank",1],["Exile_Item_WoodPlank",1],["Exile_Item_WoodPlank",1],["Exile_Item_WoodGateKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodStairsKit",1],["150Rnd_762x54_Box_Tracer",150],["150Rnd_762x54_Box_Tracer",150]]', '[]', '[["Exile_Uniform_BambiOverall",[],[],[[],[]]]]', '2019-02-21 00:43:16', '2712', '2019-02-21 00:43:16', 0, '', NULL, ''),
917(11, 'Exile_Car_Hatchback_Blue', '2019-02-17 19:46:42', 'DMS_PersistentVehicle', 0, 0.645771, 0, '[["hitlfwheel",0],["hitlf2wheel",0],["hitrfwheel",0],["hitrf2wheel",0],["hitrglass",0],["hitlglass",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitglass5",0],["hitglass6",0],["hitbody",0],["hitfuel",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hitengine",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#light_l",0],["#light_l",0],["#light_r",0],["#light_r",0]]', 9775.460938, 11839.693359, 0.0607431, -0.558533, -0.821719, -0.11322, -0.0285536, -0.117367, 0.992678, '[[],[]]', '[["Exile_Item_CordlessScrewdriver",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1],["Exile_Item_WoodLog",1]]', '[]', '[]', '2019-02-21 00:43:16', '7687', '2019-02-21 00:43:16', 0, '', NULL, ''),
918(15, 'Exile_Car_BRDM2_HQ', '2019-02-18 14:14:46', '76561198040322880', -1, 0.959413, 0.023622, '[["hitlfwheel",0.889764],["hitlf2wheel",0.015748],["hitrfwheel",0.370079],["hitrf2wheel",0.011811],["hitfuel",0],["hitengine",0],["hitbody",0.129921],["hitrglass",0],["hitlglass",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitglass5",0],["hitglass6",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["hitturret",0],["hitgun",0],["#light_l",1],["#light_r",1]]', 4711.243652, 10611.0380859, 0.133728, 0.999523, -0.0302813, -0.00605644, 0.00625981, 0.00662575, 0.999958, '[[],[]]', '[["10Rnd_93x64_DMR_05_Mag",10],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodGateKit",1],["Exile_Item_Sand",1],["Exile_Item_Sand",1],["Exile_Item_Sand",1],["Exile_Item_Cement",1],["Exile_Item_Sand",1],["Exile_Item_SandBagsKit_Corner",1],["Exile_Item_Sand",1],["Exile_Item_Handsaw",1],["Exile_Magazine_10Rnd_762x54",3],["Exile_Magazine_10Rnd_762x54",2],["Exile_Magazine_10Rnd_762x54",2]]', '[["Exile_Weapon_SVDCamo","","","",[],""]]', '[]', '2019-02-20 23:46:05', '1404', NULL, 0, '', NULL, ''),
919(20, 'Exile_Car_MB4WD', '2019-02-18 17:30:37', '76561198133314927', 0, 0.93958, 0, '[["hitlfwheel",1],["hitlf2wheel",0.15748],["hitrfwheel",1],["hitrf2wheel",0.0984252],["hitfuel",0],["hitengine",0.0669291],["hitbody",0.0433071],["hitglass1",0.5],["hitrglass",0],["hitlglass",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitglass5",0],["hitglass6",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#light_1",1],["#light_2",1]]', 2351.181641, 11544.810547, 0.421783, 0.318706, -0.747783, -0.58245, 0.293978, -0.506208, 0.810759, '[[],[]]', '[]', '[]', '[]', '2019-02-20 19:10:17', '4567', NULL, 0, '', NULL, ''),
920(21, 'Exile_Car_Hatchback_Dark', '2019-02-18 21:28:46', 'DMS_PersistentVehicle', 0, 0.783928, 0, '[["hitlfwheel",0.153543],["hitlf2wheel",0.00393701],["hitrfwheel",0.220472],["hitrf2wheel",0.00787402],["hitrglass",0],["hitlglass",0],["hitglass1",0.73622],["hitglass2",0.0984252],["hitglass3",0.38189],["hitglass4",0.019685],["hitglass5",0],["hitglass6",0],["hitbody",0.0472441],["hitfuel",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hitengine",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#light_l",1],["#light_l",1],["#light_r",1],["#light_r",1]]', 8885.237305, 6244.284668, -0.00181616, 0.999756, -0.0219393, -0.00262451, 0.00220752, -0.0190094, 0.999817, '[[],[]]', '[]', '[]', '[]', '2019-02-18 21:36:54', '1236', NULL, 0, '', NULL, ''),
921(22, 'Exile_Car_Offroad_Repair_Civillian', '2019-02-18 23:14:59', '76561198088733718', -1, 0.944901, 0, '[["hitlfwheel",0],["hitlf2wheel",0],["hitrfwheel",0],["hitrf2wheel",0],["hitfuel",0],["hitengine",0],["hitbody",0],["hitglass1",0],["hitglass2",0],["hitrglass",0],["hitlglass",0],["hitglass3",0],["hitglass4",0],["hitglass5",0],["hitglass6",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#light_l",0],["#light_r",0],["#light_l",0],["#light_r",0],["#light_l",0],["#light_r",0]]', 4712.207031, 10603.112305, 0.216003, 0.999942, -0.00887279, -0.00608326, 0.00608624, 0.000308818, 0.999982, '[[],[]]', '[]', '[]', '[["Exile_Uniform_Woodland",[],[],[[],[]]],["O_HMG_01_weapon_F",[],[],[[],[]]],["O_HMG_01_support_F",[],[],[[],[]]]]', '2019-02-20 22:55:21', '1404', NULL, 0, '', NULL, ''),
922(23, 'Exile_Chopper_Taru_Transport_Black', '2019-02-18 23:32:22', '76561198040322880', -1, 0.74932, 0.0314961, '[["hithull",0.0314961],["hitfuel",0],["hitengine1",0],["hitengine2",0],["hitengine",0],["hithrotor",0],["hitvrotor",0],["hittransmission",0],["glass_1_hitpoint",0.0511811],["glass_2_hitpoint",0.0511811],["glass_3_hitpoint",0.0511811],["glass_4_hitpoint",0.0511811],["glass_5_hitpoint",0.0511811],["glass_6_hitpoint",0.0511811],["glass_7_hitpoint",0.0511811],["glass_8_hitpoint",0.0511811],["glass_9_hitpoint",0.0511811],["glass_10_hitpoint",0.0511811],["glass_11_hitpoint",0.0511811],["glass_12_hitpoint",0.0511811],["glass_13_hitpoint",0.015748],["glass_14_hitpoint",0],["glass_15_hitpoint",0.011811],["glass_16_hitpoint",0.015748],["glass_17_hitpoint",0.015748],["glass_18_hitpoint",0],["glass_19_hitpoint",0],["glass_20_hitpoint",0.0275591],["hitavionics",0],["hitmissiles",0],["hitrglass",0],["hitlglass",0],["hitengine3",0],["hitwinch",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitglass5",0],["hitglass6",0],["hitlight",0],["hithydraulics",0],["hitgear",0],["hithstabilizerl1",0],["hithstabilizerr1",0],["hitvstabilizer1",0],["hittail",0],["hitpitottube",0],["hitstaticport",0],["hitstarter1",0],["hitstarter2",0],["hitstarter3",0],["hitturret",0],["hitgun",0],["hitturret",0],["hitgun",0],["#light_1_hitpoint",0.0866142]]', 4672.181152, 10615.475586, 0, 0.972961, 0.230924, 0.0045166, -0.00462887, -0.0000056271, 0.999989, '[["optic_KHS_blk","H_Beret_brn_SF","optic_SOS","optic_DMS"],[1,1,1,1]]', '[["Exile_Item_PowerDrink",1],["Exile_Item_PowerDrink",1],["Exile_Item_PowerDrink",1],["Exile_Item_Vishpirin",1],["Exile_Item_Pliers",1],["Exile_Item_Screwdriver",1],["Exile_Item_MetalScrews",1],["Exile_Item_DuctTape",1],["Exile_Item_LightBulb",1],["Exile_Item_Grinder",1],["Exile_Item_JunkMetal",1],["Exile_Item_JunkMetal",1],["Exile_Item_JunkMetal",1],["Exile_Item_JunkMetal",1],["Exile_Item_MetalScrews",1],["Exile_Item_MetalScrews",1],["Exile_Item_ZipTie",1],["5Rnd_127x108_Mag",5],["Exile_Item_JunkMetal",1],["Exile_Magazine_Boing",999],["Exile_Magazine_30Rnd_545x39_AK",30],["Exile_Item_Sand",1],["Exile_Item_ZipTie",1],["Exile_Item_Matches",8],["Exile_Item_ConcreteDoorwayKit",1],["Exile_Item_ConcreteWindowKit",1],["Exile_Item_FuelCanisterEmpty",1],["Exile_Item_FuelCanisterEmpty",1],["Exile_Item_FuelCanisterEmpty",1],["Exile_Magazine_Swing",999],["Exile_Item_PowerDrink",1],["Exile_Item_ConcreteWallKit",1],["Exile_Item_SandBagsKit_Corner",1],["Exile_Item_FortificationUpgrade",1],["Exile_Magazine_10Rnd_127x99_m107_Bullet_Cam_Mag",10],["Exile_Magazine_10Rnd_127x99_m107_Bullet_Cam_Mag",10],["Exile_Magazine_10Rnd_127x99_m107_Bullet_Cam_Mag",10],["Exile_Magazine_10Rnd_127x99_m107_Bullet_Cam_Mag",10],["Exile_Magazine_10Rnd_127x99_m107_Bullet_Cam_Mag",10],["Exile_Magazine_10Rnd_127x99_m107_Bullet_Cam_Mag",10],["Exile_Magazine_10Rnd_127x99_m107_Bullet_Cam_Mag",10],["Exile_Magazine_10Rnd_127x99_m107_Bullet_Cam_Mag",10],["Exile_Magazine_10Rnd_127x99_m107_Bullet_Cam_Mag",10]]', '[["Exile_Melee_Shovel","","","",[],""],["Exile_Melee_Axe","","","",[],""]]', '[]', '2019-02-21 22:55:12', '1404', NULL, 0, '', NULL, ''),
923(24, 'Exile_Car_Offroad_Guerilla07', '2019-02-18 23:43:12', 'DMS_PersistentVehicle', 0, 0.797503, 0, '[["hitlfwheel",0],["hitlf2wheel",0],["hitrfwheel",0],["hitrf2wheel",0],["hitfuel",0],["hitengine",0],["hitbody",0],["hitglass1",0],["hitglass2",0],["hitrglass",0],["hitlglass",0],["hitglass3",0],["hitglass4",0],["hitglass5",0],["hitglass6",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#light_l",0],["#light_r",0],["#light_l",0],["#light_r",0],["#light_l",0],["#light_r",0]]', 8324.964844, 10606.797852, -0.00897566, 0.975281, -0.220579, 0.0131226, 0.00439514, 0.078739, 0.996886, '[[],[]]', '[]', '[]', '[]', '2019-02-18 23:45:21', '8575', NULL, 0, '', NULL, ''),
924(26, 'Exile_Car_HEMMT', '2019-02-19 19:00:40', '76561198088733718', -1, 0.969607, 0, '[["hitfuel",0],["hitengine",0],["hitbody",0],["hitlfwheel",0],["hitlbwheel",0],["hitlmwheel",0],["hitlf2wheel",0],["hitrfwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hitrf2wheel",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitrglass",0],["hitlglass",0],["hitglass5",0],["hitglass6",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#light_l",0],["#light_r",0],["#light_l",0],["#light_r",0]]', 4679.146973, 10599.819336, 0.0236816, 0.456218, -0.889835, -0.00767636, 0.000769084, -0.00823212, 0.999966, '[["optic_LRPS"],[1]]', '[["Exile_Item_MetalPole",1],["Exile_Item_MetalPole",1],["Exile_Item_WoodDoorKit",1],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Item_Sand",1],["Exile_Item_Sand",1],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Magazine_10Rnd_762x54",10],["Exile_Item_MetalPole",1],["Exile_Item_MetalPole",1],["Exile_Item_SandBagsKit_Corner",1],["Exile_Item_SandBagsKit_Corner",1],["Exile_Item_Grinder",1],["Exile_Item_ConcreteDoorwayKit",1],["Exile_Item_HBarrier5Kit",1],["Exile_Item_SandBagsKit_Long",1],["Exile_Item_HBarrier5Kit",1],["Exile_Item_MetalBoard",1],["Exile_Item_MetalBoard",1]]', '[]', '[]', '2019-02-21 00:37:16', '1404', NULL, 0, '', NULL, ''),
925(28, 'Exile_Plane_BlackfishVehicle', '2019-02-19 23:30:28', '76561198088733718', -1, 0.763658, 0, '[["hithull",0],["hitengine",0],["hitengine2",0],["hitfuel",0],["hitavionics",0],["hitlcrudder",0],["hitrrudder",0],["hitlaileron",0],["hitraileron",0],["hitlcelevator",0],["hitrelevator",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitglass5",0],["hitglass6",0],["hitglass7",0],["hitturret",0],["hitgun",0],["hitturret",0],["hitgun",0],["hitturret",0],["hitgun",0],["#light_1_hit",0],["#light_2_hit",0]]', 4701.121582, 10526.604492, 0.278792, 0.522095, 0.849441, 0.0765991, -0.0763279, -0.0429159, 0.996159, '[[],[]]', '[]', '[]', '[]', '2019-02-20 00:23:57', '1404', NULL, 0, '', NULL, ''),
926(29, 'Exile_Car_Ural_Covered_Military', '2019-02-19 23:52:37', 'DMS_PersistentVehicle', 0, 0.904699, 0, '[["hitlfwheel",0.188976],["hitlf2wheel",0.0748032],["hitrfwheel",0.291339],["hitrf2wheel",0.0944882],["hitfuel",0.011811],["hitengine",0.023622],["hitbody",0.011811],["hitglass1",0.177165],["hitglass2",0.429134],["hitglass3",0.291339],["hitglass4",0.42126],["hitrglass",0],["hitlglass",0],["hitglass5",0],["hitglass6",0],["hitlbwheel",0],["hitlmwheel",0.0826772],["hitrbwheel",0],["hitrmwheel",0.114173],["hithull",0],["hitglass7",0],["hitglass8",0],["#l svetlo",0.224409],["#p svetlo",0.318898]]', 6553.567383, 5607.720215, -0.0153027, -0.997826, -0.0622577, -0.0216113, -0.0214746, -0.00286374, 0.999765, '[[],[]]', '[["Exile_Item_Screwdriver",1],["Exile_Item_Matches",10],["Exile_Item_MetalPole",1],["Exile_Item_MetalPole",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_InstaDoc",1],["Exile_Item_JunkMetal",1],["Exile_Item_ConcreteWallKit",1],["Exile_Item_Sand",1],["Exile_Item_DuctTape",1],["Exile_Item_DuctTape",1],["Exile_Item_MetalBoard",1],["Exile_Item_WoodDoorwayKit",1],["Exile_Item_JunkMetal",1],["Exile_Item_JunkMetal",1],["Exile_Item_JunkMetal",1],["Exile_Item_ConcreteWallKit",1],["Exile_Item_Pliers",1],["Exile_Item_DuctTape",1],["Exile_Item_PortableGeneratorKit",1],["Exile_Item_Grinder",1],["Exile_Item_JunkMetal",1],["Exile_Item_Sand",1],["Exile_Item_ConcreteWallKit",1],["Exile_Item_MetalPole",1],["Exile_Item_WoodDoorwayKit",1],["Exile_Item_JunkMetal",1],["Exile_Item_MetalBoard",1],["Exile_Item_InstaDoc",1],["Exile_Item_WoodFloorPortKit",1],["Exile_Item_Grinder",1],["Exile_Item_JunkMetal",1],["Exile_Item_MetalPole",1],["Exile_Item_MetalPole",1],["Exile_Item_MetalPole",1],["Exile_Item_WoodDoorKit",1],["Exile_Magazine_Boing",999],["Exile_Item_DuctTape",1],["Exile_Item_DuctTape",1],["Exile_Item_CookingPot",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_Foolbox",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodWallKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_Matches",9],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1],["Exile_Item_WoodFloorKit",1]]', '[["Exile_Melee_Shovel","","","",[],""]]', '[]', '2019-02-21 17:38:31', '2138', NULL, 0, '', NULL, ''),
927(30, 'Exile_Bike_QuadBike_Black', '2019-02-20 02:22:05', '76561198150621451', 0, 0.98768, 0.527559, '[["hitengine",0],["hitfuel",0],["hitlfwheel",0.00393701],["hitlf2wheel",0.00393701],["hitrfwheel",0.00393701],["hitrf2wheel",0],["hitrglass",0],["hitlglass",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitglass5",0],["hitglass6",0],["hitbody",0.69685],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#light_l",1],["#light_r",1]]', 6464.213379, 6043.661621, 0.168115, -0.525269, 0.850445, 0.0289307, -0.16882, -0.137472, 0.976013, '[[],[]]', '[]', '[]', '[]', '2019-02-20 13:31:02', '1234', NULL, 0, '', NULL, ''),
928(31, 'Exile_Car_Kart_Black', '2019-02-20 02:25:03', '76561198150621451', -1, 0.986538, 0, '[["hitlfwheel",0],["hitlf2wheel",0],["hitrfwheel",0],["hitrf2wheel",0],["hitfuel",0],["hitengine",0],["hitbody",0],["hitrglass",0],["hitlglass",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitglass5",0],["hitglass6",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hithull",0],["hitglass7",0],["hitglass8",0]]', 6512.521973, 5608.44873, 0.0565025, 0.982239, 0.163441, 0.0921631, -0.0764904, -0.0997323, 0.99207, '[[],[]]', '[]', '[]', '[]', '2019-02-21 01:09:43', '1234', NULL, 0, '', NULL, ''),
929(34, 'Exile_Car_Ural_Covered_Military', '2019-02-20 15:49:37', 'DMS_PersistentVehicle', 0, 0.909279, 0, '[["hitlfwheel",0],["hitlf2wheel",0],["hitrfwheel",0],["hitrf2wheel",0],["hitfuel",0],["hitengine",0],["hitbody",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitrglass",0],["hitlglass",0],["hitglass5",0],["hitglass6",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#l svetlo",0],["#p svetlo",0]]', 4118.394043, 15331.72168, 0.134103, 0.98959, 0.0464551, -0.136215, 0.142877, -0.203415, 0.968612, '[[],[]]', '[]', '[]', '[]', '2019-02-20 15:49:37', '8349', NULL, 0, '', NULL, ''),
930(35, 'Exile_Car_HMMWV_M134_Green', '2019-02-20 17:31:03', '76561198040322880', -1, 0.990496, 0, '[["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitlfwheel",0],["hitlbwheel",0],["hitrfwheel",0],["hitrbwheel",0],["hitfuel",0],["hitengine",0],["hitbody",0],["hitrglass",0],["hitlglass",0],["hitglass5",0],["hitglass6",0],["hitlmwheel",0],["hitlf2wheel",0],["hitrmwheel",0],["hitrf2wheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["hitturret",0],["hitgun",0],["#light_l",0],["#light_l",0],["#light_r",0],["#light_r",0]]', 4706.445312, 10590.675781, -0.0698242, 0.0274658, -0.999588, -0.00830078, -0.00383834, -0.00840931, 0.999957, '[[],[]]', '[]', '[]', '[]', '2019-02-20 23:04:18', '1404', NULL, 0, '', NULL, ''),
931(36, 'Exile_Car_Van_Fuel_Black', '2019-02-20 23:06:50', '76561198088733718', -1, 0.986812, 0, '[["hitlfwheel",0],["hitlf2wheel",0],["hitrfwheel",0],["hitrf2wheel",0],["hitfueltank",0],["hitfuel",0],["hitengine",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitrglass",0],["hitlglass",0],["hitglass5",0],["hitglass6",0],["hitbody",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#light_l",0],["#light_r",0],["#light_l",0],["#light_r",0],["#light_l",0],["#light_r",0]]', 4701.856934, 10610.831055, 0.0825195, 0.999695, 0.0152821, -0.0194092, 0.0194114, 0.0000000062074, 0.999812, '[[],[]]', '[]', '[]', '[]', '2019-02-20 23:12:45', '1404', NULL, 0, '["\\A3\\Soft_F_Bootcamp\\Van_01\\Data\\Van_01_ext_IG_01_CO.paa","\\A3\\Soft_F_Bootcamp\\Van_01\\Data\\Van_01_tank_IG_01_CO.paa"]', NULL, ''),
932(39, 'Exile_Chopper_Huey_Green', '2019-02-21 22:47:33', '76561198162261359', 0, 0.906807, 0.0393701, '[["hithull",0],["hitengine",0.169291],["hitavionics",0.637795],["hitvrotor",0],["hithrotor",0],["hitglass1",0.952756],["hitglass2",0.952756],["hitglass3",0.952756],["hitglass4",0.952756],["hitglass5",0.952756],["hitglass6",0.751969],["hitglass7",0.889764],["hitfuel",0.0748032],["hitmissiles",0],["hitrglass",0],["hitlglass",0],["hitengine1",0],["hitengine2",0],["hitengine3",0],["hitwinch",0],["hittransmission",0],["hitlight",0],["hithydraulics",0],["hitgear",0],["hithstabilizerl1",0],["hithstabilizerr1",0],["hitvstabilizer1",0],["hittail",0],["hitpitottube",0],["hitstaticport",0],["hitstarter1",0],["hitstarter2",0],["hitstarter3",0],["hitturret",0],["hitgun",0],["#l svetlo",0.240157]]', 4463.53125, 10857.396484, 0.00476074, 0.773376, 0.633947, 0, 0, 0, 1, '[[],[]]', '[]', '[]', '[]', '2019-02-21 22:52:53', '2712', NULL, 0, '', 2, 'Huez'),
933(40, 'Exile_Car_Ural_Open_Worker', '2019-02-21 22:49:09', '76561198162261359', 0, 0.999936, 0, '[["hitlfwheel",0],["hitlf2wheel",0],["hitrfwheel",0],["hitrf2wheel",0],["hitfuel",0],["hitengine",0],["hitbody",0],["hitglass1",0],["hitglass2",0],["hitglass3",0],["hitglass4",0],["hitrglass",0],["hitlglass",0],["hitglass5",0],["hitglass6",0],["hitlbwheel",0],["hitlmwheel",0],["hitrbwheel",0],["hitrmwheel",0],["hithull",0],["hitglass7",0],["hitglass8",0],["#l svetlo",0],["#p svetlo",0]]', 4471.865723, 10890.683594, 0.141084, 0.973572, 0.228374, -0.00177002, 0.00183148, -0.0000071693, 0.999998, '[[],[]]', '[]', '[]', '[]', '2019-02-21 22:53:01', '2712', NULL, 0, '', 2, 'Ural');
934
935--
936-- Indizes der exportierten Tabellen
937--
938
939--
940-- Indizes für die Tabelle `account`
941--
942ALTER TABLE `account`
943 ADD PRIMARY KEY (`uid`), ADD KEY `clan_id` (`clan_id`);
944
945--
946-- Indizes für die Tabelle `clan`
947--
948ALTER TABLE `clan`
949 ADD PRIMARY KEY (`id`), ADD KEY `leader_uid` (`leader_uid`);
950
951--
952-- Indizes für die Tabelle `clan_map_marker`
953--
954ALTER TABLE `clan_map_marker`
955 ADD PRIMARY KEY (`id`), ADD KEY `clan_id` (`clan_id`);
956
957--
958-- Indizes für die Tabelle `construction`
959--
960ALTER TABLE `construction`
961 ADD PRIMARY KEY (`id`), ADD KEY `account_uid` (`account_uid`), ADD KEY `territory_id` (`territory_id`);
962
963--
964-- Indizes für die Tabelle `container`
965--
966ALTER TABLE `container`
967 ADD PRIMARY KEY (`id`), ADD KEY `account_uid` (`account_uid`), ADD KEY `territory_id` (`territory_id`);
968
969--
970-- Indizes für die Tabelle `infistar_logs`
971--
972ALTER TABLE `infistar_logs`
973 ADD PRIMARY KEY (`id`);
974
975--
976-- Indizes für die Tabelle `player`
977--
978ALTER TABLE `player`
979 ADD PRIMARY KEY (`id`), ADD KEY `player_uid` (`account_uid`);
980
981--
982-- Indizes für die Tabelle `player_history`
983--
984ALTER TABLE `player_history`
985 ADD PRIMARY KEY (`id`);
986
987--
988-- Indizes für die Tabelle `territory`
989--
990ALTER TABLE `territory`
991 ADD PRIMARY KEY (`id`), ADD KEY `owner_uid` (`owner_uid`), ADD KEY `flag_stolen_by_uid` (`flag_stolen_by_uid`);
992
993--
994-- Indizes für die Tabelle `vehicle`
995--
996ALTER TABLE `vehicle`
997 ADD PRIMARY KEY (`id`), ADD KEY `account_uid` (`account_uid`), ADD KEY `vehicle_ibfk_2_idx` (`territory_id`);
998
999--
1000-- AUTO_INCREMENT für exportierte Tabellen
1001--
1002
1003--
1004-- AUTO_INCREMENT für Tabelle `clan`
1005--
1006ALTER TABLE `clan`
1007MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
1008--
1009-- AUTO_INCREMENT für Tabelle `clan_map_marker`
1010--
1011ALTER TABLE `clan_map_marker`
1012MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
1013--
1014-- AUTO_INCREMENT für Tabelle `construction`
1015--
1016ALTER TABLE `construction`
1017MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=784;
1018--
1019-- AUTO_INCREMENT für Tabelle `container`
1020--
1021ALTER TABLE `container`
1022MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=25;
1023--
1024-- AUTO_INCREMENT für Tabelle `infistar_logs`
1025--
1026ALTER TABLE `infistar_logs`
1027MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
1028--
1029-- AUTO_INCREMENT für Tabelle `player`
1030--
1031ALTER TABLE `player`
1032MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=85;
1033--
1034-- AUTO_INCREMENT für Tabelle `player_history`
1035--
1036ALTER TABLE `player_history`
1037MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=76;
1038--
1039-- AUTO_INCREMENT für Tabelle `territory`
1040--
1041ALTER TABLE `territory`
1042MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7;
1043--
1044-- AUTO_INCREMENT für Tabelle `vehicle`
1045--
1046ALTER TABLE `vehicle`
1047MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=41;
1048--
1049-- Constraints der exportierten Tabellen
1050--
1051
1052--
1053-- Constraints der Tabelle `account`
1054--
1055ALTER TABLE `account`
1056ADD CONSTRAINT `account_ibfk_1` FOREIGN KEY (`clan_id`) REFERENCES `clan` (`id`) ON DELETE SET NULL;
1057
1058--
1059-- Constraints der Tabelle `clan`
1060--
1061ALTER TABLE `clan`
1062ADD CONSTRAINT `clan_ibfk_1` FOREIGN KEY (`leader_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE;
1063
1064--
1065-- Constraints der Tabelle `clan_map_marker`
1066--
1067ALTER TABLE `clan_map_marker`
1068ADD CONSTRAINT `clan_map_marker_ibfk_1` FOREIGN KEY (`clan_id`) REFERENCES `clan` (`id`) ON DELETE CASCADE;
1069
1070--
1071-- Constraints der Tabelle `construction`
1072--
1073ALTER TABLE `construction`
1074ADD CONSTRAINT `construction_ibfk_1` FOREIGN KEY (`account_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE,
1075ADD CONSTRAINT `construction_ibfk_2` FOREIGN KEY (`territory_id`) REFERENCES `territory` (`id`) ON DELETE CASCADE;
1076
1077--
1078-- Constraints der Tabelle `container`
1079--
1080ALTER TABLE `container`
1081ADD CONSTRAINT `container_ibfk_1` FOREIGN KEY (`account_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE,
1082ADD CONSTRAINT `container_ibfk_2` FOREIGN KEY (`territory_id`) REFERENCES `territory` (`id`) ON DELETE CASCADE;
1083
1084--
1085-- Constraints der Tabelle `player`
1086--
1087ALTER TABLE `player`
1088ADD CONSTRAINT `player_ibfk_1` FOREIGN KEY (`account_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE;
1089
1090--
1091-- Constraints der Tabelle `territory`
1092--
1093ALTER TABLE `territory`
1094ADD CONSTRAINT `territory_ibfk_1` FOREIGN KEY (`owner_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE,
1095ADD CONSTRAINT `territory_ibfk_2` FOREIGN KEY (`flag_stolen_by_uid`) REFERENCES `account` (`uid`) ON DELETE SET NULL;
1096
1097--
1098-- Constraints der Tabelle `vehicle`
1099--
1100ALTER TABLE `vehicle`
1101ADD CONSTRAINT `vehicle_ibfk_1` FOREIGN KEY (`account_uid`) REFERENCES `account` (`uid`) ON DELETE CASCADE,
1102ADD CONSTRAINT `vehicle_ibfk_2` FOREIGN KEY (`territory_id`) REFERENCES `territory` (`id`) ON DELETE CASCADE;
1103
1104/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
1105/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
1106/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;