Advertisement
Guest User

Untitled

a guest
Jan 25th, 2017
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 372.60 KB | None | 0 0
  1. /**
  2. * config
  3. *
  4. * Exile Mod
  5. * www.exilemod.com
  6. * © 2015 Exile Mod Team
  7. *
  8. * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
  9. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
  10. */
  11.  
  12. class CfgPatches
  13. {
  14. class exile_server_config
  15. {
  16. requiredVersion = 0.1;
  17. requiredAddons[] = {};
  18. units[] = {};
  19. weapons[] = {};
  20. magazines[] = {};
  21. ammo[] = {};
  22. };
  23. };
  24.  
  25.  
  26. class CfgBuildings
  27. {
  28.  
  29. ///////////////////////////////////////////////////////////////////////////
  30. // Castles & Lighthouses & Life Guard Towers
  31. ///////////////////////////////////////////////////////////////////////////
  32. class Land_LifeguardTower_01_F
  33. {
  34. table = "Tourist";
  35. positions[] = {{-0.498047, -0.222656, 1.13312}};
  36. };
  37.  
  38. class Land_LightHouse_F
  39. {
  40. table = "Tourist";
  41. positions[] = {{-5.74805, 11.0859, -3.75002}, {0.789063, -2.94336, -11.0953}, {1.07813, -2.83008, 5.39755}};
  42. };
  43.  
  44. class Land_Lighthouse_small_F
  45. {
  46. table = "Tourist";
  47. positions[] = {{-0.369141, 1.18555, -3.39546}, {4.32617, -0.462891, -3.39546}};
  48. };
  49.  
  50. class Land_Castle_01_tower_F
  51. {
  52. table = "Tourist";
  53. positions[] = {{-1.66602, 0.603516, 7.94255}, {-1.99023, -1.70508, -1.0866}, {-2.14453, 2.73633, -3.95897}, {0.164063, 1.33203, -9.47995}, {1.14844, -1.18359, 7.94255}, {2.06641, 2.66992, -6.67494}, {2.15039, -1.89063, 1.70487}, {2.27344, 2.70703, 4.42336}};
  54. };
  55.  
  56. ///////////////////////////////////////////////////////////////////////////
  57. // Military
  58. ///////////////////////////////////////////////////////////////////////////
  59. //"Land_Airport_center_F"
  60. //"Land_Airport_left_F"
  61. //"Land_Airport_right_F"
  62. // TODO: "Land_Cargo_House_V2_F",
  63.  
  64. class Land_TentHangar_V1_F
  65. {
  66. table = "Military";
  67. positions[] = {{-8.1582, -2.20703, -4.08853}, {-8.1582, 6.85547, -4.08853}, {-8.52734, -7.57227, -4.08853}, {7.76953, -7.64453, -4.08853}, {8.16016, 1.89453, -4.08853}, {8.57617, 7.48438, -4.08853}};
  68. };
  69.  
  70. class Land_Hangar_F
  71. {
  72. table = "Military";
  73. positions[] = {{-11.6641, 20.9063, -5.38129}, {-12.1133, 9.19336, -5.38129}, {-12.1543, -3.90625, -5.38129}, {-12.1816, -16.8906, -5.38129}, {1.75, 20.9688, -5.38129}, {11.3711, -19.2734, -5.38129}, {12.0469, -5.7168, -5.38129}, {12.7305, 6.83203, -5.38129}, {13.7285, 18.1602, -5.38129}};
  74. };
  75.  
  76. class Land_Airport_Tower_F
  77. {
  78. table = "Military";
  79. positions[] = {{-0.363281, 6.25586, -10.4415}, {-0.636719, -2.08203, -1.4408}, {-0.638672, 2.21875, -4.44063}, {-0.705078, 1.94336, -7.44128}, {-0.751953, 5.2793, 1.55464}, {-1.10742, -4.67578, 2.25613}};
  80. };
  81.  
  82. class Land_Cargo_House_V1_F
  83. {
  84. table = "Military";
  85. positions[] = {{-1.38281, 3.12109, 0.040287}, {1.24805, 2.54102, 0.0402873}};
  86. };
  87.  
  88. class Land_Cargo_House_V3_F
  89. {
  90. table = "Military";
  91. positions[] = {{-2.0918, 1.58984, -0.0957484}, {1.11914, 3.17969, 0.0402873}};
  92. };
  93.  
  94. class Land_Cargo_HQ_V1_F
  95. {
  96. table = "Military";
  97. positions[] = {{-0.294922, -3.42188, -3.27229}, {-1.46484, 3.26172, -3.27229}, {-2.02734, -2.62891, -0.747443}, {4.24609, 1.51758, -0.747443}, {4.98633, 3.64844, -3.27229}};
  98. };
  99.  
  100. class Land_Cargo_HQ_V2_F
  101. {
  102. table = "Military";
  103. positions[] = {{-1.25586, 1.48828, -0.747442}, {-1.50391, -2.52148, -3.27229}, {-1.50391, 2.67773, -3.27229}, {-1.9043, -4.61133, -0.747442}, {5.35156, 1.64648, -0.747442}, {5.5332, 3.30859, -3.27229}};
  104. };
  105.  
  106. class Land_Cargo_HQ_V3_F
  107. {
  108. table = "Military";
  109. positions[] = {{-1.56641, -2.93164, -0.747444}, {-1.81641, -4.90234, -3.27229}, {-1.89648, 0.654297, -3.27229}, {4.65234, 2.41602, -3.27229}, {5.24805, 1.60742, -0.747444}};
  110. };
  111.  
  112. class Land_u_Barracks_V2_F
  113. {
  114. table = "Military";
  115. // There are broken?
  116. //positions[] = {{-0.505859, 3.2168, 0.605521}, {-0.601563, 3.07617, 3.9395}, {-11.0234, -2.65625, 0.60552}, {-11.1328, -3.58398, 3.9395}, {-12.377, 0.271484, 3.9395}, {-2.39453, -3.92773, 0.605342}, {-5.09766, -4.89844, 3.93943}, {-8.69922, 3.24414, 3.9395}, {-9.12695, 3.73047, 0.60552}, {10.3711, 3.51367, 0.605521}, {10.6484, 2.85156, 3.9395}, {13.0684, -3.30469, 0.605521}, {13.1934, -3.42383, 3.9395}, {3.28711, -3.98633, 0.605521}, {3.4707, -3.55469, 3.9395}, {6.22852, 3.50391, 3.9395}, {6.39258, 3.05664, 0.605521}};
  117. positions[] = {{9.75244, -1.66211, 1.43508}, {9.70215, -1.77148, -1.89791}, {-5.31592, -2.94531, -1.89791}, {-16.0903, 1.21094, -1.8979}, {6.95557, 4.13867, -1.89791}, {-14.6865, -2.08008, -1.89791}, {-3.89746, 3.95898, -1.89791}, {0.0639648, -2.16406, 1.43507}, {2.74951, 4.44336, 1.43507}, {2.84521, 4.22461, -1.89791}, {-12.3584, 4.30469, 1.43508}, {-12.1733, 4.46875, -1.89791}, {-16.123, 1.125, 1.43507}, {0.137695, -1.90625, -1.89791}, {-14.585, -1.94336, 1.43508}, {-5.88818, -3.99609, 1.43507}, {-3.96143, 4.37109, 1.43508}, {6.89014, 4.32227, 1.43507}};
  118. };
  119.  
  120. class Land_i_Barracks_V2_F
  121. {
  122. table = "Military";
  123. positions[] = {{-0.505859, 3.2168, 0.605521}, {-0.601563, 3.07617, 3.9395}, {-11.0234, -2.65625, 0.60552}, {-11.1328, -3.58398, 3.9395}, {-12.377, 0.271484, 3.9395}, {-2.39453, -3.92773, 0.605342}, {-5.09766, -4.89844, 3.93943}, {-8.69922, 3.24414, 3.9395}, {-9.12695, 3.73047, 0.60552}, {10.3711, 3.51367, 0.605521}, {10.6484, 2.85156, 3.9395}, {13.0684, -3.30469, 0.605521}, {13.1934, -3.42383, 3.9395}, {3.28711, -3.98633, 0.605521}, {3.4707, -3.55469, 3.9395}, {6.22852, 3.50391, 3.9395}, {6.39258, 3.05664, 0.605521}};
  124. };
  125.  
  126. class Land_i_Barracks_V1_F
  127. {
  128. table = "Military";
  129. positions[] = {{-0.464844, 3.49219, 0.605521}, {-0.476563, 3.95703, 3.9395}, {-10.4844, -3.32422, 3.9395}, {-11.1055, -2.92188, 0.605521}, {-12.3066, 0.222656, 0.605521}, {-2.29688, -4.23828, 0.605283}, {-3.89648, -4.80078, 3.93923}, {-8.66992, 3.86328, 0.605521}, {-9.03516, 3.31055, 3.9395}, {10.3301, 2.77734, 0.605521}, {10.4023, 3.18945, 3.9395}, {13.0352, -3.23438, 3.9395}, {13.1738, -3.31055, 0.605521}, {3.57227, -3.49414, 0.605522}, {3.61133, -2.98047, 3.9395}, {6.38281, 3.41992, 0.60552}, {6.4082, 2.87695, 3.9395}};
  130. };
  131.  
  132. class Land_Cargo_Patrol_V1_F
  133. {
  134. table = "Military";
  135. positions[] = {{-1.6875, -1.03906, -0.55952}, {1.73828, -1.17383, -0.55952}};
  136. };
  137.  
  138. class Land_Cargo_Patrol_V2_F
  139. {
  140. table = "Military";
  141. positions[] = {{-1.01953, -1.0918, -0.55952}, {1.82031, -0.695313, -0.55952}};
  142. };
  143.  
  144. class Land_Cargo_Tower_V1_F
  145. {
  146. table = "Military";
  147. positions[] = {{-3.54785, -3.01758, 2.47987},{-3.15625, -0.837891, 5.00472},{-2.0498, -3.29883, -0.120125},{4.55957, 4.39258, -0.120125},{-4.42383, 2.45117, -0.120125},{-2.87598, 2.20898, -4.2958},{-2.88281, 4.14258, 5.00472},{0.235352, -1.19727, 5.07987},{3.58105, 4.11719, 2.47988},{1.27441, 3.17773, -8.24333},{2.50488, 0.0625, 5.00472}};
  148. };
  149.  
  150. class Land_Cargo_Tower_V1_No1_F
  151. {
  152. table = "Military";
  153. positions[] = {{-2.4668, -4.10156, 5.00471}, {-2.7168, 1.0625, -0.120123}, {-2.83984, -2.95313, 2.47987}, {-3.06641, -2.66992, -0.120123}, {-3.12109, 2.42773, -4.2958}, {-3.16211, 4.51563, 5.00471}, {1.26367, 2.49609, -8.24333}, {2.25195, 4.30664, -0.120123}, {3.34766, 3.33203, 2.47987}, {3.66797, 1.8457, 5.00471}};
  154. };
  155.  
  156. class Land_Cargo_Tower_V1_No2_F
  157. {
  158. table = "Military";
  159. positions[] = {{-2.71289, 3.0957, -0.120123}, {-2.83203, 5.06445, 5.00472}, {-3.48633, 2.28906, -4.2958}, {-3.64844, -2.87891, 2.47988}, {-3.77344, -3.32617, 5.00472}, {-3.80664, -1.75977, -0.120123}, {0.0625, -0.287109, 5.07988}, {1.58984, -2.11523, -0.120123}, {2.13672, 2.20703, -8.24332}, {3.57422, 4.22461, 2.47988}, {3.75, 1.31055, 5.00472}, {4.98633, 3.90625, -0.120123}};
  160. };
  161.  
  162. class Land_Cargo_Tower_V1_No3_F
  163. {
  164. table = "Military";
  165. positions[] = {{-0.214844, -0.460938, 5.07988}, {-2.33203, -2.96094, -0.120119}, {-2.89648, -4.0625, 5.00472}, {-3.08008, -2.8125, 2.47988}, {-3.28711, 2.60352, -4.2958}, {-3.61328, 4.44141, 5.00472}, {-4.01758, 1.86133, -0.120119}, {1.54688, 2.61133, -8.24332}, {3.52734, 3.8418, 2.47988}, {3.5332, -0.386719, 5.00472}, {4.88477, 4.18945, -0.120119}};
  166. };
  167.  
  168. class Land_Cargo_Tower_V1_No4_F
  169. {
  170. table = "Military";
  171. positions[] = {{-2.68555, -3.07031, -0.120119}, {-2.93359, -4.27148, 5.00472}, {-3.22461, 4.84375, 5.00472}, {-3.6543, 1.57227, -4.2958}, {-3.70508, -3.0332, 2.47988}, {-4.26367, 0.980469, -0.120119}, {2.1543, 2.08789, -8.24332}, {3.46289, 2.25781, 2.47988}, {3.62305, 2.16797, 5.00472}, {5.10156, 4.20898, -0.120119}};
  172. };
  173.  
  174. class Land_Cargo_Tower_V1_No5_F
  175. {
  176. table = "Military";
  177. positions[] = {{-2.25781, -2.77344, -0.120119}, {-2.375, -4.45508, 5.00472}, {-2.41602, 5.18164, 5.00472}, {-2.94922, 2.4082, -4.2958}, {-3.89648, -2.7832, 2.47988}, {-4.03906, 1.43945, -0.120119}, {0.0410156, -0.8125, 5.07988}, {1.62305, 2.55664, -8.24332}, {2.97461, -0.335938, 5.00472}, {3.90039, 3.68555, 2.47988}, {4.80859, 3.57422, -0.120117}};
  178. };
  179.  
  180. class Land_Cargo_Tower_V1_No6_F
  181. {
  182. table = "Military";
  183. positions[] = {{-1.6875, -2.5918, -0.120119}, {-3.16992, -3.74219, 5.00472}, {-3.41797, 1.87305, -0.120119}, {-3.49805, 2.06836, -4.2958}, {-3.81055, 4.59766, 5.00472}, {-3.92969, -2.12109, 2.47988}, {1.92578, 2.27344, -8.24332}, {3.50195, 2.76563, 2.47988}, {3.64258, 0.0078125, 5.00472}, {5.19141, 4.45117, -0.120119}};
  184. };
  185.  
  186. class Land_Cargo_Tower_V1_No7_F
  187. {
  188. table = "Military";
  189. positions[] = {{-2.59766, -3.14063, -0.120119}, {-2.7832, 1.94531, -4.2958}, {-2.83203, 1.58594, -0.120119}, {-3.20508, 4.62891, 5.00472}, {-3.29883, -2.90234, 5.00472}, {-3.87891, -3.11914, 2.47988}, {0.228516, -1.05273, 5.07988}, {1.65234, 2.58594, -8.24332}, {3.40039, 3.05859, 2.47988}, {4.18164, 0.246094, 5.00472}, {4.42578, 3.99805, -0.120119}};
  190. };
  191.  
  192. class Land_Cargo_Tower_V2_F
  193. {
  194. table = "Military";
  195. positions[] = {{4.29492, 3.70508, -0.120117}, {-2.5293, -3.10742, 2.47988}, {-2.6543, 2.01172, -4.2958}, {-2.66797, -3.4707, 5.00472}, {-2.67773, 4.97461, 5.00472}, {-3.06836, 1.80273, -0.120117}, {-3.25586, -3.56445, -0.120117}, {0.611328, 0.0214844, 5.07988}, {2.46094, 1.92383, -8.24332}, {2.61328, -0.296875, 2.47988}, {3.07422, 4.14063, 2.47988}, {3.50195, 1.22656, 5.00472}};
  196. };
  197.  
  198. class Land_Cargo_Tower_V3_F
  199. {
  200. table = "Military";
  201. positions[] = {{-1.59375, -2.7168, -0.120119}, {-2.40039, 2.39648, -4.2958}, {-3.24023, -3.17773, 5.00472}, {-3.51367, 4.57617, 5.00472}, {-3.70703, -3.60547, 2.47988}, {-4.54883, 2.47266, -0.120119}, {0.142578, -0.179688, 5.07988}, {2.2793, 2.25391, -8.24332}, {3.87109, 3.3418, 2.47988}, {4.22656, 0.390625, 5.00472}, {5.05469, 4.16406, -0.120119}};
  202. };
  203.  
  204. class Land_MilOffices_V1_F
  205. {
  206. table = "Military";
  207. positions[] = {{-11.6309, -5.04492, -2.86675}, {-15.1172, 9.07617, -2.86675}, {-15.123, 2.19336, -2.86675}, {-15.5938, -4.07227, -2.86675}, {-3.46484, -3.22266, -2.86675}, {-4.10352, 9.33398, -2.86675}, {-7.09766, -2.95898, -2.86675}, {-8.6582, 9.02344, -2.86675}, {0.794922, -3.08594, -2.86675}, {1.45703, 8.60156, -2.86675}, {13.9258, 0.492188, -2.86675}, {15.3613, 8.10742, -2.86675}, {8.54883, 8.01563, -2.86675}, {8.61133, -4.3125, -2.86675}, {8.68359, -1.73438, -2.86675}};
  208. };
  209.  
  210. class Land_Radar_F
  211. {
  212. table = "Military";
  213. positions[] = {{-10.1797, -9.80859, -6.00412}, {-9.61719, 10.4219, -6.00412}, {11.6211, 1.06641, -6.00412}, {2.81445, 12.2578, -7.78305}};
  214. };
  215.  
  216. ///////////////////////////////////////////////////////////////////////////
  217. // Medical
  218. ///////////////////////////////////////////////////////////////////////////
  219. //"Land_Hospital_main_F",
  220. //"Land_Hospital_side1_F",
  221. //"Land_Hospital_side2_F",
  222. class Land_Medevac_house_V1_F
  223. {
  224. table = "Medical";
  225. positions[] = {{-1.25, 1.01367, -0.105749}, {1.38281, 2.82227, 0.0302868}};
  226. };
  227.  
  228. class Land_Medevac_HQ_V1_F
  229. {
  230. table = "Medical";
  231. positions[] = {{-0.896484, 2.24219, -3.26622}, {-1.45898, -3.75391, -3.26622}, {-1.54297, 1.05469, -0.741375}, {5.17578, 2.66992, -3.26622}, {5.6875, 1.63477, -0.741374}};
  232. };
  233.  
  234. ///////////////////////////////////////////////////////////////////////////
  235. // Garages / Vehicle
  236. ///////////////////////////////////////////////////////////////////////////
  237. class Land_FuelStation_Build_F
  238. {
  239. table = "VehicleService";
  240. positions[] = {{-1.02344, -0.509766, -1.33601}, {2.07617, 0.580078, -1.3361}};
  241. };
  242.  
  243. class Land_i_Garage_V1_F
  244. {
  245. table = "VehicleService";
  246. positions[] = {{-0.925781, 2.05469, -0.0974805}, {-1.52539, -1.99805, -0.0974805}, {3.80273, -0.939453, -0.0974805}};
  247. };
  248.  
  249. class Land_i_Garage_V2_F
  250. {
  251. table = "VehicleService";
  252. positions[] = {{-0.00585938, -1.24609, -0.0974801}, {-2.16016, 1.54492, -0.0974798}, {1.60547, 2.11719, -0.0974803}, {3.2832, -1.51953, -0.0974796}};
  253. };
  254.  
  255. class Land_CarService_F
  256. {
  257. table = "VehicleService";
  258. positions[] = {{-0.964844, 1.77148, -1.25606}, {-3.15625, 7.39844, -1.25606}, {-4.54688, 4, -1.25606}, {0.492188, 2.8457, -1.25606}, {3.50781, -0.113281, -1.25606}, {3.74414, 6.12891, -1.25606}};
  259. };
  260.  
  261. ///////////////////////////////////////////////////////////////////////////
  262. // Civillian Lower Class
  263. ///////////////////////////////////////////////////////////////////////////
  264. // TODO: "Land_u_Addon_02_V1_F",
  265. // TODO: "Land_i_Addon_02_V1_F",
  266. // TODO: "Land_i_Addon_03mid_V1_F",
  267.  
  268. class Land_Chapel_Small_V1_F
  269. {
  270. table = "CivillianLowerClass";
  271. positions[] = {{0.482422, 0.65625, -0.867858}, {3.08984, -1.2832, -0.867858}};
  272. };
  273.  
  274. class Land_Chapel_Small_V2_F
  275. {
  276. table = "CivillianLowerClass";
  277. positions[] = {{0.556641, -0.966797, -0.867857}, {3.54297, 0.486328, -0.867857}};
  278. };
  279.  
  280. class Land_Chapel_V1_F
  281. {
  282. table = "CivillianLowerClass";
  283. positions[] = {{-3.22852, -3.4043, -2.80848}, {-3.65625, 2.8418, -2.80848}, {-6.47266, -2.20703, -2.80848}, {3.98438, 2.72852, -2.80848}, {4.73242, -2.59375, -2.80848}, {9.35938, -0.285156, -2.60848}};
  284. };
  285.  
  286. class Land_Chapel_V2_F
  287. {
  288. table = "CivillianLowerClass";
  289. positions[] = {{-2.36523, 2.46289, -2.80848}, {-3.06445, -2, -2.80848}, {-6.61328, -1.54688, -2.80848}, {4.75781, 3.67383, -2.80848}, {4.82813, -2.96484, -2.80848}, {9.03711, 0.316406, -2.60848}};
  290. };
  291.  
  292. class Land_Church_01_V1_F
  293. {
  294. table = "CivillianLowerClass";
  295. positions[] = {{-4.36719, -5.81055, -5.46942}, {-4.46875, -2.23633, -5.74363}, {-4.54492, 1.57422, -5.74363}, {-4.8125, 5.58789, -5.49442}, {3.00781, -5.92969, -6.44017}, {4.19141, 5.77148, -6.44865}};
  296. };
  297.  
  298. class Land_i_Addon_03_V1_F
  299. {
  300. table = "CivillianLowerClass";
  301. positions[] = {{-2.98828, -0.244141, -0.0501008}, {3.53711, -0.578125, -0.0501013}};
  302. };
  303.  
  304. class Land_i_Addon_04_V1_F
  305. {
  306. table = "CivillianLowerClass";
  307. positions[] = {{-1.25, 0.0175781, 0.0796976}};
  308. };
  309.  
  310. class Land_u_Addon_01_V1_F
  311. {
  312. table = "CivillianLowerClass";
  313. positions[] = {{1.69727, 3.04102, 0.0627024}, {4.28125, 1.1543, 0.0627022}};
  314. };
  315.  
  316. class Land_i_Windmill01_F
  317. {
  318. table = "CivillianLowerClass";
  319. positions[] = {{-0.585938, 0.908203, -3.53162}};
  320. };
  321.  
  322. class Land_d_Windmill01_F
  323. {
  324. table = "CivillianLowerClass";
  325. positions[] = {{-0.935547, 0.259766, -2.2985}, {-1.65039, 0.365234, 0.947132}};
  326. };
  327.  
  328. class Land_Slum_House01_F
  329. {
  330. table = "CivillianLowerClass";
  331. positions[] = {{0.767578, 0.773438, -1.07847}};
  332. };
  333.  
  334. class Land_Slum_House02_F
  335. {
  336. table = "CivillianLowerClass";
  337. positions[] = {{1.13867, 2.50391, -0.798099}, {1.59375, -0.0566406, -0.798099}};
  338. };
  339.  
  340. class Land_Slum_House03_F
  341. {
  342. table = "CivillianLowerClass";
  343. positions[] = {{-1.29688, 0.566406, -1.07377}, {2.27148, 1.125, -1.07377}};
  344. };
  345.  
  346. class Land_cargo_house_slum_F
  347. {
  348. table = "CivillianLowerClass";
  349. positions[] = {{-3.04688, -0.306641, -0.36025}};
  350. };
  351.  
  352. class Land_i_Stone_HouseBig_V1_F
  353. {
  354. table = "CivillianLowerClass";
  355. positions[] = {{-0.777344, 2.19922, 1.21893}, {-1.33789, 0.355469, -1.65434}, {1.58594, -0.576172, 1.21893}, {3.7793, 1.48828, -1.64097}};
  356. };
  357.  
  358. class Land_i_Stone_HouseBig_V2_F
  359. {
  360. table = "CivillianLowerClass";
  361. positions[] = {{-0.207031, 2.62305, 1.21893}, {-1.26953, 0.136719, -1.65416}, {2.55078, -0.556641, 1.21893}, {4.26367, 1.48828, -1.63971}};
  362. };
  363.  
  364. class Land_i_Stone_HouseBig_V3_F
  365. {
  366. table = "CivillianLowerClass";
  367. positions[] = {{-0.484375, 2.57617, 1.21893}, {-0.759766, 0.404297, -1.65283}, {2.29102, -1.02539, 1.21893}, {4.02734, 1.1543, -1.64032}};
  368. };
  369.  
  370. class Land_i_Stone_HouseSmall_V1_F
  371. {
  372. table = "CivillianLowerClass";
  373. positions[] = {{-3.47656, 2.25195, -0.627007}, {-6.96094, 3.02539, -0.619827}, {3.27148, 2.02734, -0.611488}, {6.61914, 2.50977, -0.596566}};
  374. };
  375.  
  376. class Land_i_Stone_HouseSmall_V2_F
  377. {
  378. table = "CivillianLowerClass";
  379. positions[] = {{-2.41992, 1.76758, -0.632064}, {-7.00391, 1.83594, -0.633547}, {3.77148, 2.05664, -0.609262}, {7.33008, 2.02539, -0.593399}};
  380. };
  381.  
  382. class Land_i_Stone_HouseSmall_V3_F
  383. {
  384. table = "CivillianLowerClass";
  385. positions[] = {{-2.68945, 2.05664, -0.628867}, {-7.74023, 3.45313, -0.615288}, {3.60938, 1.61328, -0.609982}, {6.83984, 3.07227, -0.595582}};
  386. };
  387.  
  388. class Land_i_Stone_Shed_V1_F
  389. {
  390. table = "CivillianLowerClass";
  391. positions[] = {{-2.63867, 1.96484, -0.100502}, {1.19141, 2.16992, -0.100502}};
  392. };
  393.  
  394. class Land_i_Stone_Shed_V2_F
  395. {
  396. table = "CivillianLowerClass";
  397. positions[] = {{-2.12305, 1.86914, -0.100502}, {1.78125, 1.625, -0.100502}};
  398. };
  399.  
  400. class Land_i_Stone_Shed_V3_F
  401. {
  402. table = "CivillianLowerClass";
  403. positions[] = {{-2.3125, 2.05469, -0.100502}, {1.79297, 1.93359, -0.100502}};
  404. };
  405.  
  406. class Land_u_House_Big_01_V1_F
  407. {
  408. table = "CivillianLowerClass";
  409. positions[] = {{-1.89648, 6.0332, 0.855065}, {-2.35742, 5.4082, -2.56494}, {-2.89648, -3.33203, 0.855065}, {-3.0957, -0.896484, -2.65494}, {1.25, -1.31445, -2.56494}, {2.0293, -0.521484, 0.855065}, {2.36523, 5.47461, -2.56493}, {2.95117, 5.49609, 0.855065}, {2.99023, -5.02734, 0.855065}, {3.58789, -4.98828, -2.56494}};
  410. };
  411.  
  412. class Land_u_House_Big_02_V1_F
  413. {
  414. table = "CivillianLowerClass";
  415. positions[] = {{-2.43164, 2.83008, 0.965823}, {-2.70703, -2.07422, 0.965824}, {-2.88281, 1.88086, -2.54418}, {0.871094, -1.66016, -2.54418}, {2.41602, 3.00977, 0.965824}, {3.66992, -5.79883, -2.10418}, {3.9082, 3.56055, -2.54418}};
  416. };
  417.  
  418. class Land_u_House_Small_01_V1_F
  419. {
  420. table = "CivillianLowerClass";
  421. positions[] = {{-1.18359, 3.63281, -0.904629}, {-1.7793, -2.59961, -0.903945}, {3.25195, 3.44531, -0.904572}};
  422. };
  423.  
  424. class Land_u_House_Small_02_V1_F
  425. {
  426. table = "CivillianLowerClass";
  427. positions[] = {{-0.916016, -2.17969, -0.71971}, {-1.49609, 0.962891, -0.714579}, {3.83203, 1.15234, -0.713537}, {5.80469, -1.7207, -0.710968}};
  428. };
  429.  
  430. ///////////////////////////////////////////////////////////////////////////
  431. // Civillian Upper Class
  432. ///////////////////////////////////////////////////////////////////////////
  433. class Land_Offices_01_V1_F
  434. {
  435. table = "CivillianUpperClass";
  436. positions[] = {{-13.502, -6.54883, 9.84601}, {10.7676, -5.27734, 4.66547}, {-10.7031, 6.85156, -7.05899}, {-3.26953, 5.84961, 9.84601}, {1.09375, -4.51172, -7.05899}, {5.52148, 2.22852, 0.752261}, {5.68164, 4.16602, -7.05899}, {5.94531, -2.68945, -3.15997}, {6.1875, 2.40625, 4.66546}, {9.07422, -4.97656, 9.84601}};
  437. };
  438.  
  439. class Land_i_House_Big_01_V1_F
  440. {
  441. table = "CivillianUpperClass";
  442. positions[] = {{-2.21484, 5.46875, -2.56493}, {-3.24023, -1.5918, -2.65493}, {0.558594, -0.640625, 0.855072}, {1.24023, -1.98828, -2.56493}, {1.66602, -5.2832, 0.855072}, {2.19531, 5.19922, -2.56493}, {2.4375, 5.01172, 0.855076}, {2.87305, -5.01758, -2.56493}};
  443. };
  444.  
  445. class Land_i_House_Big_01_V2_F
  446. {
  447. table = "CivillianUpperClass";
  448. positions[] = {{-2.05078, 5.41016, 0.855071}, {-2.11133, 5.51758, -2.56493}, {-3.19531, -1.45117, -2.65493}, {0.328125, 0.283203, -2.56493}, {0.759766, -1.29688, 0.855071}, {1.27539, -5.21484, 0.855071}, {2.25195, -4.56445, -2.56493}, {3.68359, 5.18359, 0.855071}};
  449. };
  450.  
  451. class Land_i_House_Big_01_V3_F
  452. {
  453. table = "CivillianUpperClass";
  454. positions[] = {{-2.78125, 5.69336, -2.56493}, {-2.7832, 5.31055, 0.855072}, {-2.78906, 0.654297, 0.855072}, {-3.03906, -1.11133, -2.65493}, {0.675781, -1.29883, -2.56493}, {1.61133, -0.865234, 0.855072}, {2.51758, 5.85938, 0.855072}, {2.65625, -4.94531, -2.56493}, {2.99414, -5.15625, 0.855073}, {3.16211, 5.16406, -2.56493}};
  455. };
  456.  
  457. class Land_i_House_Big_02_V1_F
  458. {
  459. table = "CivillianUpperClass";
  460. positions[] = {{-1.69141, -2.51172, 0.784063}, {-2.58789, 3.63672, 0.784063}, {-2.86914, 2.97266, -2.62327}, {1.15234, -1.65625, -2.62327}, {2.55273, 1.625, 0.784063}, {3.08203, 2.11914, -2.62327}, {3.33594, -5.625, -2.28594}};
  461. };
  462.  
  463. class Land_i_House_Big_02_V2_F
  464. {
  465. table = "CivillianUpperClass";
  466. positions[] = {{-2.08789, -2.46484, 0.784063}, {-2.54688, 2.53906, -2.62327}, {-3.01758, 3.12109, 0.784063}, {1.11328, -1.46289, -2.62327}, {2.68945, 2.03711, 0.784063}, {3.02734, 2.27344, -2.62327}, {3.26367, -5.55273, -2.28594}};
  467. };
  468.  
  469. class Land_i_House_Big_02_V3_F
  470. {
  471. table = "CivillianUpperClass";
  472. positions[] = {{-2.50391, -2.10742, -2.62327}, {-3.00781, 3.68164, 0.784063}, {-3.0957, 2.57227, -2.62327}, {-3.31055, -2.88867, 0.784063}, {1.26953, -1.73438, -2.62327}, {2.40234, 2.26953, -2.62327}, {2.89844, 2.11719, 0.784064}, {3.26758, -5.52734, -2.28594}};
  473. };
  474.  
  475. class Land_i_House_Small_01_V1_F
  476. {
  477. table = "CivillianUpperClass";
  478. positions[] = {{-1.2207, 3.05078, -1.0419}, {-2.74414, -0.560547, -1.04199}, {3.06641, -1.90234, -1.0404}, {3.35547, 2.94336, -1.04187}};
  479. };
  480.  
  481. class Land_i_House_Small_01_V2_F
  482. {
  483. table = "CivillianUpperClass";
  484. positions[] = {{-2.53711, -1.80664, -1.0418}, {-3.90625, 3.26367, -1.04239}, {3.31836, -1.31641, -1.04058}, {3.38672, 3.78906, -1.04213}};
  485. };
  486.  
  487. class Land_i_House_Small_01_V3_F
  488. {
  489. table = "CivillianUpperClass";
  490. positions[] = {{-0.738281, 3.17578, -1.04194}, {-2.46094, -2.16992, -1.04174}, {-2.68359, -1.76563, -1.04187}, {-2.76563, 3.31641, -1.04232}, {3.07422, -1.27539, -1.04059}, {3.08398, 3.04883, -1.0419}, {3.41406, 3.10547, -1.04192}, {3.61719, -0.394531, -1.04086}};
  491. };
  492.  
  493. class Land_i_House_Small_02_V1_F
  494. {
  495. table = "CivillianUpperClass";
  496. positions[] = {{-1.08008, -2.11133, -0.709651}, {-1.18945, 0.785156, -0.705689}, {2.64258, -2.09766, -0.704848}, {5.95313, 0.556641, -0.700583}};
  497. };
  498.  
  499. class Land_i_House_Small_02_V2_F
  500. {
  501. table = "CivillianUpperClass";
  502. positions[] = {{-1.29688, 1.06641, -0.704727}, {-1.56836, -1.83789, -0.710279}, {2.85352, -1.52148, -0.704572}, {2.88086, 1.76367, -0.702332}, {5.21289, 0.935547, -0.701534}};
  503. };
  504.  
  505. class Land_i_House_Small_02_V3_F
  506. {
  507. table = "CivillianUpperClass";
  508. positions[] = {{-1.35352, 0.873047, -0.705387}, {-1.5, -2.00781, -0.710184}, {3.49219, -1.16602, -0.703744}, {5.61328, 1.51367, -0.70101}};
  509. };
  510.  
  511. class Land_i_House_Small_03_V1_F
  512. {
  513. table = "CivillianUpperClass";
  514. positions[] = {{-3.89648, -0.134766, -0.371629}, {0.419922, 2.68555, -0.371629}, {3.59961, 2.0918, -0.371629}, {3.70703, -4.19727, -0.371629}};
  515. };
  516.  
  517. ///////////////////////////////////////////////////////////////////////////
  518. // Shops
  519. ///////////////////////////////////////////////////////////////////////////
  520. class Land_i_Shop_01_V1_F
  521. {
  522. table = "Shop";
  523. positions[] = {{-0.863281, 6.10938, -2.76158}, {-1.2168, 0.232422, -2.76158}, {-1.2832, -0.884766, 1.10984}, {-2.28516, 6.1875, 1.10975}};
  524. };
  525.  
  526. class Land_i_Shop_01_V2_F
  527. {
  528. table = "Shop";
  529. positions[] = {{-1.17969, 5.32813, -2.76158}, {-18.127, 16.7285, -2.74088}, {-2.39258, 5.51563, 1.10978}, {-2.53906, 0.253906, -2.76158}, {-2.70703, -1.4707, 1.10992}, {-24.2051, 3.65039, 1.25308}, {1.15625, 1.20313, 1.10906}};
  530. };
  531.  
  532. class Land_i_Shop_01_V3_F
  533. {
  534. table = "Shop";
  535. positions[] = {{-1.5918, 5.35156, -2.76158}, {-2.39258, -0.544922, -2.76158}, {-2.73242, -1.03906, 1.10991}, {-2.98242, 5.80664, 1.10999}, {1.66016, 1.70508, 1.10901}};
  536. };
  537.  
  538. class Land_i_Shop_02_V1_F
  539. {
  540. table = "Shop";
  541. positions[] = {{-0.824219, 1.10742, -2.67036}, {-4.04883, -3.18555, 1.2386}, {-4.43359, -1.98242, -2.69136}, {0.78125, -2.35547, -2.66928}, {2.27734, 1.0957, 1.2386}};
  542. };
  543.  
  544. class Land_i_Shop_02_V2_F
  545. {
  546. table = "Shop";
  547. positions[] = {{-0.171875, -1.43359, -2.66855}, {-2.57422, -4.19336, 1.23859}, {-4.51758, 2.74023, -2.66855}, {1.61523, 0.28125, 1.23859}};
  548. };
  549.  
  550. class Land_i_Shop_02_V3_F
  551. {
  552. table = "Shop";
  553. positions[] = {{-1.01953, 0.71875, -2.66924}, {-2.86719, -3.83594, 1.23859}, {-4.25195, 3.58789, -2.66855}, {1.56641, 0.509766, 1.23859}};
  554. };
  555.  
  556. class Land_u_Shop_01_V1_F
  557. {
  558. table = "Shop";
  559. positions[] = {{-1.14258, 1.23438, -2.88084}, {-2.32422, 3.14648, 0.9905}, {-3.31836, 5.81836, 0.990853}, {0.808594, -0.544922, 0.990474}, {2.58789, 5.81641, -2.88084}};
  560. };
  561.  
  562. class Land_u_Shop_02_V1_F
  563. {
  564. table = "Shop";
  565. positions[] = {{-3.46484, -1.625, 1.23859}, {-3.9082, 3.0957, -2.66855}, {0.751953, -3.26563, -2.66855}, {1.71484, 0.486328, 1.23859}};
  566. };
  567.  
  568. class Land_Kiosk_blueking_F
  569. {
  570. table = "Shop";
  571. positions[] = {{-1.62109, 0.341797, -1.76588}, {1.36328, -0.908203, -1.76588}};
  572. };
  573.  
  574. class Land_Kiosk_gyros_F
  575. {
  576. table = "Shop";
  577. positions[] = {{-1.20898, -1.07813, -1.97606}, {1.26758, -0.128906, -1.97606}};
  578. };
  579.  
  580. class Land_Kiosk_redburger_F
  581. {
  582. table = "Shop";
  583. positions[] = {{-1.07617, -0.335938, -2.87051}, {1.42188, -0.373047, -2.87051}};
  584. };
  585.  
  586. ///////////////////////////////////////////////////////////////////////////
  587. // Industrial
  588. ///////////////////////////////////////////////////////////////////////////
  589. class Land_Unfinished_Building_01_F
  590. {
  591. table = "Industrial";
  592. positions[] = {{-0.158203, 3.50391, 1.19791}, {-2.34375, 4.20898, -2.29709}, {-2.51563, 0.337891, 1.19791}, {-3.25391, 0.0351563, -2.29709}, {2.45508, -0.144531, -2.29709}, {3.10742, -2.34766, 1.19791}};
  593. };
  594.  
  595. class Land_Unfinished_Building_02_F
  596. {
  597. table = "Industrial";
  598. positions[] = {{-0.890625, -3.35742, 0.976167}, {-2.31055, -1.57227, -2.48553}, {-6.36523, 2.20898, 0.976168}, {-6.58398, 3.67383, -2.50139}, {3.58008, 3.13281, -2.49362}, {4.33594, 3.00391, 0.976168}};
  599. };
  600.  
  601. class Land_WIP_F
  602. {
  603. table = "Industrial";
  604. positions[] = {{-10.0645, -4.58398, 8.3499}, {-12.5254, 10.1191, 8.348}, {-13.3496, 9.04883, 12.3173}, {-14.3477, -2.64844, 0.392311}, {-15.1621, 9.90039, 0.407514}, {-15.9004, -9.26367, 12.3304}, {-16.0352, -2.52734, 4.32572}, {-16.0996, 4.24023, 0.444829}, {-16.4004, 8.88672, 4.32572}, {-16.7813, -8.80078, 0.347982}, {-17.0195, -8.72852, 4.32572}, {-3.60156, -14.6484, 4.32041}, {-4.18359, -1.03516, 0.386505}, {-6.93359, -0.988281, 12.1457}, {-7.66016, 9.24414, 0.417827}, {-7.77344, -10.4785, 0.359629}, {-8.33008, -14.7305, 12.3244}, {-8.73242, 9.51953, 4.32572}, {-8.88867, -13.3887, 0.355543}, {11.9922, -7.99219, 12.2546}, {12.9023, 9.91797, 0.448912}, {18.0801, -9.25781, 4.32428}, {19.5586, -7.8457, 8.33803}, {2.11719, 9.48438, 0.337147}, {20.6309, -9.31445, 0.329187}, {22.334, -2.5332, 4.32572}, {24.0859, -0.179688, 8.29181}, {3.30859, 6.66602, 8.36808}, {3.99219, -8.87891, 8.34295}, {4.74414, -8.89063, 4.32432}, {6.0332, -8.34961, 0.384681}, {7.08984, 10.4727, 4.32572}, {8.53906, 8.4082, 0.415831}, {9.10742, -1.40625, 0.431863}, {9.64844, 6.28906, 12.3112}};
  605. };
  606.  
  607. class Land_dp_smallTank_F
  608. {
  609. table = "Industrial";
  610. positions[] = {{-0.0898438, -1.58203, 5.32797}};
  611. };
  612.  
  613. class Land_dp_bigTank_F
  614. {
  615. table = "Industrial";
  616. positions[] = {{-1.54102, -1.93359, 3.59794}, {-5.79883, -0.496094, 3.59794}, {5.9707, -1.84375, 3.59794}};
  617. };
  618.  
  619. class Land_u_Shed_Ind_F
  620. {
  621. table = "Industrial";
  622. positions[] = {{-2.41211, 4.91602, -1.40862}, {-6.54688, -0.166016, -1.40862}, {10.6914, 2.14648, -1.40862}};
  623. };
  624.  
  625. class Land_Metal_Shed_F
  626. {
  627. table = "Industrial";
  628. positions[] = {{-3.34375, -1.80273, -1.343}, {3.52539, -2.15625, -1.343}};
  629. };
  630.  
  631. class Land_i_Shed_Ind_F
  632. {
  633. table = "Industrial";
  634. positions[] = {{-2.66797, -0.576172, -1.40977}, {-2.85547, 6.49023, -1.40977}, {-5.78906, 0.158203, -1.40977}, {14.1348, 6.31445, -1.40977}, {5.70508, 0.423828, -1.40977}, {6.49609, 6.5625, -1.40977}};
  635. };
  636.  
  637. class Land_Research_house_V1_F
  638. {
  639. table = "Industrial";
  640. positions[] = {{-1.28516, 2.89258, 0.0302877}, {1.12305, 2.04492, -0.0384929}};
  641. };
  642.  
  643. class Land_Research_HQ_F
  644. {
  645. table = "Industrial";
  646. positions[] = {{-1.03125, 2.60547, -3.26622}, {-2.25195, -2.75586, -0.741376}, {-2.28711, -3.94141, -3.26622}, {4.69336, 4.01172, -3.26622}, {6.06445, 3.50391, -0.741376}};
  647. };
  648.  
  649. ///////////////////////////////////////////////////////////////////////////
  650. // Factories
  651. ///////////////////////////////////////////////////////////////////////////
  652. class Land_Factory_Main_F
  653. {
  654. table = "Factories";
  655. positions[] = {{-8.51953,13.5698,-6.45422}, {-8.75,10.9609,-6.41479}};
  656. };
  657.  
  658. class Land_dp_smallFactory_F
  659. {
  660. table = "Factories";
  661. positions[] = {{-1.97266, 3.14844, 2.62608}, {-6.49609, -4.92773, 2.82442}, {5.32422, -3.69531, 2.95848}, {9.49805, -4.71094, 1.21193}, {9.95898, 1.41211, 1.21193}};
  662. };
  663.  
  664. class Land_dp_mainFactory_F
  665. {
  666. table = "Factories";
  667. positions[] = {{-12.8477, -4.8457, -4.45162}, {-15.4961, 6.70703, -4.45162}, {-6.36133, -2.13477, 1.18268}, {-6.91211, -15.3555, 1.18268}, {0.736328, 8.16406, 1.18268}, {1.25391, -10.5801, 1.18268}, {12.8926, 7.0332, -5.51301}, {13.0332, -3.95117, -4.22302}, {13.1719, 4.60742, -4.22302}, {13.2676, 0.710938, -4.22302}, {14.793, -16.8613, -4.08302}, {18.1406, -9.24023, -4.08302}, {19.0566, 5.17969, -7.61482}, {19.0996, -5.68555, -5.51301}, {19.3535, 2.14844, -5.51301}, {3.43555, -2.94141, 1.18268}, {8.82617, -7.33008, -0.280016}, {8.92773, -13.9453, -0.280016}, {9.13281, 8.58203, -0.280016}};
  668. };
  669.  
  670. ///////////////////////////////////////////////////////////////////////////
  671. // Ghost Hotel
  672. ///////////////////////////////////////////////////////////////////////////
  673. class Land_GH_Gazebo_F
  674. {
  675. table = "Radiation";
  676. positions[] = {{-5.93945, 2.15894, -1.77238},{-5.90332, -0.724121, -1.77238},{5.104, 2.22534, -1.77238},{5.26807, -0.790771, -1.77238}};
  677. };
  678.  
  679. class Land_GH_House_1_F
  680. {
  681. table = "Radiation";
  682. positions[] = {{-3.49902, -6.07056, 1.39883},{-3.23633, 0.0153809, 1.39883},{3.36963, 0.337891, 1.39883},{3.39404, -5.21753, 1.39883},{-3.65332, -3.97876, -2.10117},{-3.35889, 0.632324, -2.10117},{3.23438, -5.31934, -2.10117}};
  683. };
  684.  
  685. class Land_GH_House_2_F
  686. {
  687. table = "Radiation";
  688. positions[] = {{3.26563, -5.11426, -0.336174},{-3.23242, -5.51929, -0.336174},{-3.59033, 0.983643, -0.336174},{3.69287, 0.738281, -0.336174}};
  689. };
  690.  
  691. class Land_GH_House_ruins_F
  692. {
  693. table = "Radiation";
  694. positions[] = {{3.16553, -1.15942, 5.97215},{-3.26416, -0.868408, 5.97215}};
  695. };
  696.  
  697. class Land_GH_MainBuilding_entry_F
  698. {
  699. table = "Radiation";
  700. positions[] = {{-3.65039, -17.2097, -0.152101},{-0.499023, -14.7449, -0.152101},{4.09717, -17.7261, -0.152101}};
  701. };
  702.  
  703. class Land_GH_MainBuilding_left_F
  704. {
  705. table = "Radiation";
  706. positions[] = {{-6.44043, 2.63159, -1.05388},{-6.40381, -2.12085, -1.05388},{6.74365, -5.78149, -1.05388},{-0.207031, -7.60864, -1.05388},{2.12793, -10.2429, -1.05388},{5.5249, -15.4812, -1.05388},{-0.98291, -18.1379, -1.05387},{-2.06543, 5.00342, -1.05388},{4.94092, 11.8662, -1.05389},{-1.63135, -1.71094, -1.05388},{9.74365, 1.61304, -1.05389},{4.88525, 6.50024, -1.05389},{14.9434, 3.5686, -1.05389},{13.2563, 8.73413, -1.0539},{17.2432, -4.43799, 3.39144},{13.584, 4.49951, 3.39144},{15.5112, -1.00366, 3.39144},{9.44727, 2.41968, 3.39144},{2.64893, 5.43433, 3.39144},{-0.672363, -6.15454, 3.39144},{1.25537, 0.418213, 3.39144},{-5.28076, -6.47534, 3.39144},{-6.63867, -1.47412, 3.39144},{-7.39063, 4.22949, 3.39144}};
  707. };
  708.  
  709. class Land_GH_MainBuilding_middle_F
  710. {
  711. table = "Radiation";
  712. positions[] = {{-0.408203, 2.26978, 0.538373},{-12.1367, 1.58447, 0.538378},{-2.14014, -7.85303, 1.25473},{-14.9414, -4.22363, 0.538417},{-16.2109, -8.05908, 0.538444},{-4.00293, -17.3718, 0.538503},{11.3765, -5.7373, 0.538428},{15.5952, -9.00879, 0.53845},{14.1016, -3.40771, 0.538412},{0.957031, 11.2915, 2.76766},{9.70215, 6.27051, 4.98464},{13.7354, -1.34595, 4.98465},{2.89844, -14.8083, 4.98466},{-9.37158, -11.5811, 4.98465},{-14.1709, 1.90674, 4.98465},{-10.71, 6.09961, 4.98464}};
  713. };
  714.  
  715. class Land_GH_MainBuilding_right_F
  716. {
  717. table = "Radiation";
  718. positions[] = {{11.9268, -18.7073, 3.82813},{2.43213, -14.093, 3.81848},{6.94629, 2.26904, -1.05388},{7.02637, -1.66724, -1.05387},{-1.81201, -9.91284, -1.05388},{-0.240723, -7.5647, -1.05388},{-5.69873, -6.15967, -1.05388},{3.89648, -11.2732, -1.05387},{1.15527, 3.63159, -1.05388},{2.70215, 9.94263, -1.05389},{-10.3442, 0.716309, -1.05389},{-4.8833, 5.8147, -1.05389},{-7.16406, 1.28369, -1.05389},{-14.3013, 3.41919, -1.05389},{-12.9961, 8.2854, -1.0539},{-11.1431, 13.0371, -1.0539},{-15.7705, -0.219971, -1.05389},{-16.3779, -4.63135, 3.39144},{-14.043, 3.26343, 3.39144},{-6.1499, 6.17603, 3.39144},{-7.31689, 1.0271, 3.39144},{-0.897461, -4.72583, 3.39144},{-1.25635, 1.18457, 3.39144},{1.7832, -4.39404, 3.39144},{7.21973, 3.79077, 3.39144},{5.69287, -1.56128, 3.39144},{5.80078, -6.55884, 3.39144}};
  719. };
  720. class land_1
  721. {
  722. table = "Industrial";
  723. positions[] = {{14.0977, 9.27832, -5.30631},{-6.3584, 8.4375, -5.30632},{-14.2788, 8.0957, -5.30632}};
  724. };
  725.  
  726. class land_2
  727. {
  728. table = "Industrial";
  729. positions[] = {{-8.04541, 6.65527, 4.21223},{-10.0181, -6.0498, 4.38565},{-2.16016, -6.75195, 3.90532},{11.9395, -2.30762, 4.40326}};
  730. };
  731.  
  732. class Land_A_Crane_02a
  733. {
  734. table = "Industrial";
  735. positions[] = {{3.62939, -0.0185547, 1.38779},{-0.175293, 1.78906, 3.10723},{-2.67627, -0.696289, 3.10723}};
  736. };
  737.  
  738. class Land_A_Crane_02b
  739. {
  740. table = "Industrial";
  741. positions[] = {{-8.95557, 1.5498, -7.84474},{-8.51416, -1.5332, -7.84474},{-7.96924, -0.438477, -4.98164}};
  742. };
  743.  
  744. class Land_A_CraneCon
  745. {
  746. table = "Industrial";
  747. positions[] = {{-9.64795, 1.52246, 5.78629},{-7.19531, -0.521484, 5.78629},{-9.91992, -1.56641, 5.78629}};
  748. };
  749.  
  750. class Land_A_Hospital
  751. {
  752. table = "Medical";
  753. positions[] = {{-7.01465, 2.24414, 3.29184},{-12.2856, -2.19336, 3.29184},{0.768066, -4.32227, 3.29184},{9.37646, -2.19238, 3.29184},{16.7549, 4.42871, 6.15884},{21.1167, 1.20996, 6.15884}};
  754. };
  755.  
  756. class Land_A_Office01
  757. {
  758. table = "Shop";
  759. positions[] = {{-15.188, 1.48926, -4.528},{-7.47803, 5.30859, -4.528},{4.396, 0.104492, -4.528},{-0.0356445, 6.66504, -4.528},{1.77539, 3.48145, -4.528},{14.061, -3.15625, -4.528},{0.368164, 6.94727, -2.028},{2.23096, 3.60547, -2.028},{7.13672, -3.03906, -2.028},{9.97021, -1.15332, -2.028},{15.1084, 3.43457, -2.028},{12.9458, 6.34961, -2.028},{-2.69482, 3.47754, 0.472004},{-11.3599, 2.30469, 0.472008},{13.3257, -1.92188, 0.472},{9.39404, 5.50488, 0.472},{4.56396, -3.01855, 6.2049},{-2.58252, -0.799805, 6.20491},{0.802734, 2.69922, 6.20491}};
  760. };
  761.  
  762. class Land_A_Office02
  763. {
  764. table = "Shop";
  765. positions[] = {{-0.581543, -5.67871, -8.15104},{5.14258, -5.7793, -8.15111},{2.02979, -4.74805, -8.15053},{-21.2427, 2.1748, 5.38394},{-11.4209, 0.0673828, 5.38394},{-1.84033, 2.02246, 5.38394},{9.21729, 3.43066, 5.38395},{18.8926, 6.28613, 5.38394},{20.4136, -1.30469, 5.38394},{6.00049, -2.12695, 5.38394},{-17.3633, 1.19434, 8.71684},{-19.123, 3.86719, 8.71684}};
  766. };
  767.  
  768. class land_AII_last_floor
  769. {
  770. table = "Military";
  771. positions[] = {{-1.42236, 5.96289, 4.6129},{-4.45508, 3.43555, 5.46183},{-9.89795, 16.1748, 4.61091},{-14.2314, 22.249, 4.61073},{-23.418, -7.18457, 5.45109},{-10.5127, -16.2051, 5.44856},{4.02783, -21.3271, 5.51657},{5.60254, -11.5703, 6.08711},{-10.6987, 10.3369, 5.43586}};
  772. };
  773.  
  774. class land_AII_middle_floor
  775. {
  776. table = "Military";
  777. positions[] = {{-13.688, 8.02148, 0.513981},{-10.0068, 5.15332, 0.51099},{-13.0356, -0.71875, 0.520344},{-8.25098, 2.8584, 0.513554},{-4.39795, 2.17383, 0.513092},{-6.1333, 8.2168, 0.513794},{-7.30713, 5.61621, 0.520306}};
  778. };
  779.  
  780. class land_AII_upper_part
  781. {
  782. table = "Military";
  783. positions[] = {{-0.750488, -3.58496, -2.31057},{-1.50635, -1.92773, -2.32196},{-3.05322, 2.05176, -2.32196},{0.378418, 3.15332, -2.58292}};
  784. };
  785.  
  786. class land_b_small1
  787. {
  788. table = "Industrial";
  789. positions[] = {{-2.86816, -0.407227, -1.50034},{-0.739258, -4.81543, -1.50034},{-0.48291, -1.04102, -1.50034}};
  790. };
  791.  
  792. class Land_Barn_Metal
  793. {
  794. table = "Industrial";
  795. positions[] = {{-7.60107, -2.67871, -5.46857},{-8.69824, -24.8643, -5.26},{0.746582, -24.2676, -5.46857},{10.2876, -24.8691, -5.43213},{9.39404, -5.85254, -5.46857},{10.248, 22.4385, -5.46857},{-8.69727, -24.8633, -5.46854},{-9.24121, 16.9082, 5.56142},{-9.55469, -3.21875, 5.56142},{10.6216, -3.22656, 5.56142},{0.579102, -25.2393, 5.56143},{10.8906, -26.7842, 5.56142},{-1.28906, 22.6455, 5.58787},{10.5737, 14.3779, 5.58787}};
  796. };
  797.  
  798. class Land_Barn_W_01
  799. {
  800. table = "CivillianLowerClass";
  801. positions[] = {{0.299316, 22.208, -3.1789},{1.85938, 18.2881, -2.66324},{-5.40625, 8.97754, -2.66161},{-6.14551, -9.7207, -2.65836},{5.95947, 9.42578, -2.66169},{5.79053, -9.96973, -2.65831},{-1.08643, -18.0977, -2.65689},{-6.2373, -14.7119, -2.65749},{6.45264, 14.4609, -2.66257},{8.18018, 14.6631, -3.03774},{-8.12012, -14.8809, -2.98197}};
  802. };
  803.  
  804. class Land_bouda2_vnitrek
  805. {
  806. table = "CivillianLowerClass";
  807. positions[] = {{-0.369141, -2.53906, -0.72002},{-3.2168, 1.58691, -0.72002},{0.382324, 0.46875, -0.72002}};
  808. };
  809.  
  810. class land_bud2
  811. {
  812. table = "CivillianLowerClass";
  813. positions[] = {{-2.3623, -1.00586, -1.79023},{1.80273, -0.383789, -1.78249}};
  814. };
  815.  
  816. class Land_budova4_winter
  817. {
  818. table = "Military";
  819. positions[] = {{-8.83984, 2.3584, -1.09823},{5.0708, -1.40625, -1.09823},{6.57959, -0.0283203, -0.934856},{1.56201, -2.17383, -1.09823},{2.6377, -0.046875, -1.09823},{-1.71045, -1.25293, -1.09823},{-0.383789, -0.00976563, -1.09823},{-4.86865, -1.00879, -1.09823},{-9.05322, -2.32129, -1.09823},{-8.2124, -0.428711, -1.09823}};
  820. };
  821.  
  822. class land_bunka
  823. {
  824. table = "Shop";
  825. positions[] = {{2.44971, 1.91992, -1.51244},{-1.84717, 2.53125, -1.51244},{0.172363, 2.63086, -1.51244}};
  826. };
  827.  
  828. class land_cast1
  829. {
  830. table = "Factories";
  831. positions[] = {{-4.93311, -10.6875, -4.38392},{-3.57178, 5.57813, -4.38391},{1.57617, 6.61328, -4.38392},{-3.64893, 10.7246, -4.38392},{-0.235352, 16.6797, -4.38392},{-4.97949, 17.1348, -4.38392},{1.07129, -0.219727, -1.06585}};
  832. };
  833.  
  834. class land_cast2
  835. {
  836. table = "Factories";
  837. positions[] = {{1.37793, 13.9932, -4.38393},{-3.45752, 9.15234, -4.38393},{-1.4082, 1.34863, -4.38393},{-4.85156, -8.19824, -4.38392},{1.20654, -10.6094, -4.35677}};
  838. };
  839.  
  840. class land_chat_tr
  841. {
  842. table = "CivillianLowerClass";
  843. positions[] = {{-2.32764, -2.27051, -2.43594},{-2.16992, 2.02734, -2.44564},{1.8208, 1.6084, -2.43839},{1.31689, -2.08301, -2.42417}};
  844. };
  845.  
  846. class land_dlouhy1
  847. {
  848. table = "CivillianUpperClass";
  849. positions[] = {{5.70068, -2.35059, -9.5115},{5.49121, 3.41992, -9.51136},{0.822266, -2.20508, -9.50821},{-1.96729, -5.15625, -9.61368},{-6.39014, -0.860352, -9.50334},{-13.3608, -5.13965, -9.63223},{-15.8569, 0.00292969, -9.49695},{-15.5884, 2.50098, -9.49713},{-3.16211, 2.76758, -9.50551},{-16.2661, 5.7041, -9.49667},{-13.0146, 11.2822, -9.64676},{-11.2837, 9.32715, -9.50003},{-6.62061, 8.62012, -9.50318},{-2.92334, 11.3408, -9.6426},{-6.5415, 6.89844, -9.50323},{-1.61914, 8.95215, -9.50656},{-3.27881, 5.42578, -9.50544},{7.02686, 9.4043, -4.98993},{3.95801, 9.46191, -4.98993},{4.04297, -1.94531, -4.98993},{4.23047, -3.57031, -4.98993},{7.09863, -3.58887, -4.98993},{-2.54053, -2.91406, -4.9898},{-1.96533, -5.15332, -4.99091},{-2.11963, -0.246094, -4.98847},{-9.86523, -1.53223, -4.98911},{-13.3618, -5.04688, -4.99086},{-16.5234, -3.20801, -4.98994},{-15.563, 0.476563, -4.98811},{-15.835, 2.96875, -4.98687},{-8.98828, 2.89844, -4.9869},{-16.7842, 8.56934, -4.98408},{-21.0645, 9.25879, -5.083},{-21.124, -2.26172, -9.49339},{-13.2056, 11.2344, -4.98275},{-11.3857, 9.54883, -4.98359},{-11.3604, 6.49414, -4.98511},{-6.69189, 6.5332, -4.98509},{-3.00049, 11.5479, -4.98259},{-1.6626, 9.27246, -4.98373},{-3.08301, 4.99023, -4.98586},{-3.1626, 2.7666, -4.98697},{11.1074, -1.90234, -4.98936},{13.8535, 2.19141, -4.98732},{16.3271, -2.69238, -4.98975},{24.4204, -2.52832, -4.98967},{26.0439, -5.43164, -4.99111},{28.8101, -0.598633, -4.9887},{18.2666, -0.443359, -4.98863},{11.2856, 2.38184, -4.98722},{11.2876, 6.40527, -4.98521},{11.2593, 9.49609, -4.98367},{14.6904, 9.21094, -4.98382},{15.7583, 11.3447, -4.98275},{19.2959, 9.25195, -4.9838},{19.1582, 6.39746, -4.98522},{19.207, 2.26758, -4.98728},{14.8828, 6.12207, -4.98535},{26.2935, 2.10645, -4.98736},{22.2964, 1.99121, -4.98742},{22.1465, 5.72754, -4.98555},{22.1973, 9.5625, -4.98368},{26.4482, 9.35254, -4.98378},{26.3408, 11.5605, -4.98265},{29.5107, 9.34082, -4.98375}};
  850. };
  851.  
  852. class land_dlouhy2
  853. {
  854. table = "CivillianLowerClass";
  855. positions[] = {{-0.71875, 5.58789, -9.31654},{1.06543, 0.354492, -9.32137},{-0.845215, -4.54883, -9.31622}};
  856. };
  857.  
  858. class land_domek_podhradi_1
  859. {
  860. table = "CivillianLowerClass";
  861. positions[] = {{-5.3335, 3.54102, -2.75047},{-5.79199, -3.52637, -2.75047},{3.40527, -3.37891, -2.75047},{0.533203, -0.389648, -2.73914},{4.92871, 2.75391, -2.73911},{0.484375, 3.87695, -2.73909}};
  862. };
  863.  
  864. class land_dr_1
  865. {
  866. table = "CivillianLowerClass";
  867. positions[] = {{0.147461, -0.493164, -1.07508},{-0.343262, 1.92383, -1.08438},{-2.8457, 1.74316, -1.08788},{-2.74463, -0.714844, -1.08217}};
  868. };
  869.  
  870. class land_dr_2
  871. {
  872. table = "CivillianLowerClass";
  873. positions[] = {{-2.56934, 1.46094, -0.997974},{-0.309082, 1.42676, -0.994301},{4.38867, 1.53711, -0.98571},{3.71338, -1.39453, -0.973618},{-0.55957, -2.23242, -0.978878}};
  874. };
  875.  
  876. class Land_dulni_bs
  877. {
  878. table = "CivillianLowerClass";
  879. positions[] = {{1.97559, 2.6582, -1.75205},{2.45703, -1.08691, -1.75204},{0.107422, -2.83008, -1.75204}};
  880. };
  881.  
  882. class Land_dum_ras
  883. {
  884. table = "CivillianLowerClass";
  885. positions[] = {{2.5542, 3.49805, -2.66958},{-0.300781, 0.151367, -2.66957},{-0.5625, -2.03125, -2.66957},{-0.710938, -2.58398, 0.272606},{1.75391, 3.47266, 0.272602},{-0.166504, 1.93457, 0.272606}};
  886. };
  887.  
  888. class Land_dum_zboreny
  889. {
  890. table = "CivillianLowerClass";
  891. positions[] = {{-2.14941, -4.11914, -2.37675},{1.11865, -0.722656, -2.37675},{6.43115, -3.39746, -2.37675},{-5.66455, 4.21875, 1.40812},{-2.62988, -3.42188, 1.40902},{1.98584, -0.769531, 1.39545},{-5.13135, -3.81738, 1.41562}};
  892. };
  893.  
  894. class Land_dum_zboreny_total
  895. {
  896. table = "CivillianLowerClass";
  897. positions[] = {{-4.48975, -2.46582, -2.23949},{-4.82227, 2.27539, -2.31548},{4.70947, 2.34668, -2.33912}};
  898. };
  899.  
  900. class land_f_b1
  901. {
  902. table = "VehicleService";
  903. positions[] = {{-4.71436, -0.746094, -2.21533},{-4.91309, -5.07813, -2.21533},{-2.38477, -3.29785, -2.21533}};
  904. };
  905.  
  906. class land_f_b2
  907. {
  908. table = "VehicleService";
  909. positions[] = {{-6.93359, 0.602539, -4.96382},{-4.69922, -2.65625, -4.96382},{-1.76318, 3.53906, -4.97872},{0.286133, -0.306641, -4.21184},{2.08838, -3.16602, -4.21183}};
  910. };
  911.  
  912. class Land_Fuel_tank_stairs
  913. {
  914. table = "Industrial";
  915. positions[] = {{2.56934, -0.169922, 0.806641}};
  916. };
  917.  
  918. class land_fuelstation_w
  919. {
  920. table = "VehicleService";
  921. positions[] = {{-0.119141, 1.2666, -2.28589},{4.01611, -3.81641, -2.25437}};
  922. };
  923.  
  924. class land_garaze
  925. {
  926. table = "VehicleService";
  927. positions[] = {{-3.1582, -3.11328, -1.56419},{2.4375, -3.86035, -2.11892},{0.065918, -6.53613, -1.67742},{5.46143, -6.25977, -2.119},{4.94287, 0.117188, -2.11902},{3.23438, 5.73242, -2.119},{0.188477, 3.70508, -1.88765}};
  928. };
  929.  
  930. class land_hala1
  931. {
  932. table = "Industrial";
  933. positions[] = {{-0.166504, -5.2832, -4.00997},{-0.201172, -0.611328, -4.00996},{0.69873, 4.97949, -4.00997},{5.45996, -3.13867, -3.98352},{-5.16455, 1.19238, -3.98352}};
  934. };
  935.  
  936. class land_hlaska
  937. {
  938. table = "Military";
  939. positions[] = {{-0.668945, 0.740234, 3.77092}};
  940. };
  941.  
  942. class Land_Hlidac_budka
  943. {
  944. table = "Military";
  945. positions[] = {{2.3418, 0.675781, -0.783619},{-1.77197, 1.92773, -0.783619}};
  946. };
  947.  
  948. class land_hotel_p1
  949. {
  950. table = "Shop";
  951. positions[] = {{-11.0967, -3.02246, -4.65403},{-4.54248, -0.703125, -4.65404},{-10.0791, 3.53125, -4.65403},{-1.21143, -1.64648, -4.65403},{13.8491, 8.28711, -1.13431},{13.6074, 0.416016, -1.12066},{13.8945, -7.89648, -1.13431}};
  952. };
  953.  
  954. class land_hotel_p2
  955. {
  956. table = "Shop";
  957. positions[] = {{7.14795, -1.11133, -7.29951},{4.04053, 2.56152, -7.29951},{-0.273926, -0.673828, -7.29951},{-2.74609, 2.04883, -7.29951},{-6.66553, -10.8359, -0.670689},{-3.03906, -25.0195, 1.31509},{-8.25732, 14.0684, -0.188686},{-3.71631, 23.1865, 1.03674},{1.09277, -19.2598, 6.06893},{6.76172, -14.2334, 6.06892},{4.73926, -6.79785, 6.06892},{8.39941, 6.44238, 6.06893},{0.0703125, 6.85352, 6.06892},{-2.85303, 18.458, 6.06893},{6.24023, 17.0322, 6.06893},{1.46582, -0.719727, 6.06893},{4.34424, -2.07324, 6.06893}};
  958. };
  959.  
  960. class Land_HouseV2_01B
  961. {
  962. table = "CivillianUpperClass";
  963. positions[] = {{-4.14014, -2.57031, -5.18788}};
  964. };
  965.  
  966. class Land_HouseV2_04_interier
  967. {
  968. table = "CivillianLowerClass";
  969. positions[] = {{0.289551, 1.33691, -2.89027},{7.24072, -1.63477, -5.74182},{7.44287, 5.53125, -5.73914},{2.66113, 6.87988, -5.73851},{3.3125, 3.62793, -5.73954},{-1.89795, 2.81641, -5.7398},{-5.06152, 6.37695, -5.73866}};
  970. };
  971.  
  972. class Land_HouseV2_05
  973. {
  974. table = "CivillianLowerClass";
  975. positions[] = {{5.28125, 6.9873, -2.65818},{-3.33643, -0.25, -2.7924}};
  976. };
  977.  
  978. class Land_HouseV_1I1
  979. {
  980. table = "CivillianLowerClass";
  981. positions[] = {{-0.629883, -1.9248, -2.82415}};
  982. };
  983.  
  984. class Land_HouseV_1I4
  985. {
  986. table = "CivillianLowerClass";
  987. positions[] = {{-0.486816, 4.16699, -2.7365},{-2.24951, -0.986328, -2.76074},{-3.91016, -4.00195, -2.76509},{0.0488281, -4.36719, -2.76856}};
  988. };
  989.  
  990. class Land_houseV_2T2
  991. {
  992. table = "CivillianLowerClass";
  993. positions[] = {{-3.9585, 0.647461, -4.0352}};
  994. };
  995.  
  996. class Land_HouseV_3I1
  997. {
  998. table = "CivillianLowerClass";
  999. positions[] = {{5.29248, -1.86719, -2.02602}};
  1000. };
  1001.  
  1002. class Land_HouseV_3I2
  1003. {
  1004. table = "CivillianLowerClass";
  1005. positions[] = {{4.07422, 2.50098, -2.02417}};
  1006. };
  1007.  
  1008. class Land_HouseV_3I3
  1009. {
  1010. table = "CivillianLowerClass";
  1011. positions[] = {{0.898926, 2.67871, -1.68621},{4.34033, 2.20215, -1.47564}};
  1012. };
  1013.  
  1014. class Land_HouseV_3I4
  1015. {
  1016. table = "CivillianLowerClass";
  1017. positions[] = {{5.5332, 2.64258, -2.62949}};
  1018. };
  1019.  
  1020. class Land_hut06
  1021. {
  1022. table = "CivillianLowerClass";
  1023. positions[] = {{0.513672, 1.83301, -1.55149},{-0.552246, -0.0419922, -1.54668}};
  1024. };
  1025.  
  1026. class Land_hut_old01
  1027. {
  1028. table = "CivillianLowerClass";
  1029. positions[] = {{-2.82275, 2.26172, -3.0186},{2.39307, -7.42383, -2.96946},{-4.6665, -1.7959, -3.01507},{1.85352, 4.6543, -3.01839},{-6.62744, 6.87695, -3.02645},{-7.50293, -7.14453, -3.01511},{-3.08691, -2.10938, -3.01197}};
  1030. };
  1031.  
  1032. class Land_Ind_Expedice_1
  1033. {
  1034. table = "Factories";
  1035. positions[] = {{-1.82666, -8.5293, -3.48673},{2.97021, -14.4375, -3.48673},{6.88428, -14.9609, -5.75725},{9.41943, -12.6875, -5.75726},{13.5112, -14.624, -5.75725},{12.5645, -20.2344, -5.75725},{-2.28564, -19.9434, -3.48673},{-11.8623, -18.0654, -3.48673},{-9.41211, -7.62305, -3.48672},{-12.9346, -2.08105, -3.48673},{-0.103516, 13.0859, -3.48673},{3.45459, 18.1846, -3.48673},{-0.59375, 16.1543, 9.71017},{-0.312012, 10.4131, 9.71017},{-1.69238, 4.23633, 9.71017},{2.10059, 7.05859, -5.6839},{-1.58301, 13.1543, -5.6839}};
  1036. };
  1037.  
  1038. class Land_Ind_IlluminantTower
  1039. {
  1040. table = "Military";
  1041. positions[] = {{1.17822, -0.277344, 10.3513},{-0.855957, -0.0869141, 10.3513}};
  1042. };
  1043.  
  1044. class Land_Ind_MalyKomin
  1045. {
  1046. table = "Industrial";
  1047. positions[] = {{-0.993652, -0.308594, -7.69932},{2.1958, -0.422852, -7.69932}};
  1048. };
  1049.  
  1050. class Land_Ind_Pec_03a
  1051. {
  1052. table = "Industrial";
  1053. positions[] = {{11.75, 14.8037, 5.76025},{8.36865, 4.24121, 5.76025},{11.6655, -8.36719, 5.76025},{6.96191, -15.7451, 5.76025},{-1.96777, -22.3271, 5.76025},{-4.75537, -5.51563, 5.76025},{-1.86182, 2.5752, 5.76025},{-4.34082, 13.0742, 5.76025},{3.19287, 20.251, 4.02583},{-1.06396, 24.501, 4.02583}};
  1054. };
  1055.  
  1056. class Land_Ind_Pec_03b
  1057. {
  1058. table = "Industrial";
  1059. positions[] = {{2.96289, 25.8848, 4.02583},{-1.07227, 21.6309, 4.02583},{-4.0791, 14.9619, 5.76025},{-0.356934, 4.58594, 5.76025},{-4.32617, -9.64941, 5.76025},{-0.961914, -16.7637, 5.76025},{3.42822, -24.7012, 5.76025},{10.2559, -19.7666, 5.76025},{7.74023, -10.6123, 5.76025},{10.7046, -1.34668, 5.76025},{10.647, 11.499, 5.76025}};
  1060. };
  1061.  
  1062. class Land_Ind_Quarry
  1063. {
  1064. table = "Industrial";
  1065. positions[] = {{-6.91357, 15.0264, -7.47989},{-7.28711, 7.63184, -7.47989},{-6.74414, -1.58301, -7.47989},{-3.35791, -10.8428, -7.47989},{5.45654, 4.74609, -7.47989},{8.17725, 9.01172, -7.47989},{6.17969, 11.9297, -7.47989},{0.290039, 17.2236, 5.29451},{-4.20117, 16.5439, 5.29451},{-4.28516, 8.84277, 5.29451},{-4.30713, -6.3457, 5.29452},{-4.07617, 0.918945, 5.29451}};
  1066. };
  1067.  
  1068. class Land_Ind_SawMill
  1069. {
  1070. table = "Industrial";
  1071. positions[] = {{-4.646, 10.0225, -5.80637},{-4.36963, -2.53516, -5.7921},{3.31152, -11.4541, -5.72437},{10.5, -4.90137, -5.72056},{10.5283, -1.49023, -5.74226},{10.7983, 5.6123, -5.78193}};
  1072. };
  1073.  
  1074. class Land_Ind_Stack_Big
  1075. {
  1076. table = "Industrial";
  1077. positions[] = {{-2.78027, -1.78809, -23.2495},{0.44873, 5.12207, -6.00286},{-3.02539, 5.07227, -6.00286},{-3.05664, 2.21484, -6.00286},{3.35107, -4.76074, -28.4986}};
  1078. };
  1079.  
  1080. class Land_Ind_Workshop01_01
  1081. {
  1082. table = "Industrial";
  1083. positions[] = {{-0.591309, 0.150391, -1.29873},{1.91357, -1.125, -1.29229},{0.628906, -3.35254, -1.29331}};
  1084. };
  1085.  
  1086. class Land_Ind_Workshop01_02
  1087. {
  1088. table = "Industrial";
  1089. positions[] = {{-1.58057, -0.878906, -1.4297},{1.55322, -1.37012, -1.43058},{-0.345215, 1.08691, -1.42694}};
  1090. };
  1091.  
  1092. class Land_Ind_Workshop01_04
  1093. {
  1094. table = "Industrial";
  1095. positions[] = {{-1.4458, 4.62891, -1.53094},{0.562012, 4.6748, -1.52906},{-0.76416, 2.46484, -1.53055}};
  1096. };
  1097.  
  1098. class land_jzd_4silka
  1099. {
  1100. table = "Industrial";
  1101. positions[] = {{-3.3916, 0.258789, -1.17006}};
  1102. };
  1103.  
  1104. class land_jzd_bezstrechy
  1105. {
  1106. table = "CivillianLowerClass";
  1107. positions[] = {{7.93115, 2.51367, -5.22504},{6.21924, -3.71387, -5.22504},{-0.757813, -3.27246, -5.22504},{-10.3262, -1.87891, -5.22504},{-5.85791, 2.8252, -5.22504},{1.70557, 2.6582, -5.22504},{0.855957, 2.20313, -0.404762}};
  1108. };
  1109.  
  1110. class land_jzd_kr1
  1111. {
  1112. table = "Industrial";
  1113. positions[] = {{-4.60498, -16.6143, -6.34966},{-0.616211, -11.9746, -6.26657},{2.00879, 0.411133, -6.26657},{-2.75879, 7.97363, -6.34966},{3.2373, 12.166, -6.34966},{2.22852, 3.82227, -6.26657},{4.25293, -7.25391, -6.34966},{-3.63916, 12.5576, -2.14675},{3.32227, 7.34863, -2.14675},{-3.50049, -1.67871, -2.14676},{0.86377, -8.74902, -2.14675},{-1.79688, -15.4854, -2.14675},{4.17969, -16.0742, -2.14675},{1.33887, -6.41699, 1.31637}};
  1114. };
  1115.  
  1116. class land_jzd_kr2
  1117. {
  1118. table = "Industrial";
  1119. positions[] = {{4.33154, 23.5986, -2.38598},{-7.01855, 22.6494, -6.3362},{3.06006, 15.4053, -2.34158},{-3.38916, 8.94141, -2.07983},{5.90381, 10.1426, -2.07984},{-0.131836, 3.41992, -2.07984},{-2.67334, -4.22363, -2.07983},{7.01074, -4.36426, -2.07984},{2.15918, -9.3125, -2.07983},{6.0249, -15.4023, -2.07984},{2.06885, -12.9785, -2.07984},{-2.85889, -15.7559, -2.07984},{2.05176, -18.6699, -2.07983},{2.04688, -24.3594, -0.117252},{-7.77246, 20.3125, -6.33621},{4.08887, 20.2959, -6.33621},{1.78662, 12.8369, -6.3362},{1.87793, 9.47168, -6.19965},{1.9082, 5.69531, -6.19965},{1.83447, -3.8584, -6.19965},{1.72021, -9.01953, -6.19965},{1.78711, -13.3994, -6.19965},{2.20703, -16.7363, -6.19965},{2.53027, -23.6309, -6.233},{-2.64941, 8.58203, -6.2563},{-2.64307, -12.1484, -6.2563},{6.21387, -3.83008, -6.2563}};
  1120. };
  1121.  
  1122. class land_jzd_silo_tes
  1123. {
  1124. table = "Factories";
  1125. positions[] = {{-2.88379, -1.75977, -16.0503},{17.8921, -6.25586, -15.9365},{24.4775, -0.426758, -15.9552},{18.7129, 5.69043, -16.0179}};
  1126. };
  1127.  
  1128. class land_jzd_stodola1
  1129. {
  1130. table = "CivillianLowerClass";
  1131. positions[] = {{0.400879, -13.5039, -2.0262},{-3.86035, -9.13281, -2.0262},{-0.871582, -1.84473, -2.0262},{-3.12207, 6.1543, -2.0262},{1.37891, 14.0986, -2.0262}};
  1132. };
  1133.  
  1134. class land_jzd_stodola2
  1135. {
  1136. table = "CivillianLowerClass";
  1137. positions[] = {{6.86377, -5.91699, -2.0262},{3.77734, -12.7139, -2.0262},{-0.95459, -1.85254, -2.0262},{-5.56543, 3.05859, -2.0262},{7.41016, 5.45703, -2.0262},{2.16113, 7.55273, -2.0262},{3.38037, 12.7236, -2.0262},{7.05078, 14.0605, -2.0262},{1.06689, 1.17383, 1.31123}};
  1138. };
  1139.  
  1140. class land_jzd_vodojem
  1141. {
  1142. table = "Industrial";
  1143. positions[] = {{-0.27002, 0.380859, -6.83972}};
  1144. };
  1145.  
  1146. class Land_KBud
  1147. {
  1148. table = "Tourist";
  1149. positions[] = {{0.0415039, -0.40625, -1.04616}};
  1150. };
  1151.  
  1152. class Land_komin
  1153. {
  1154. table = "Industrial";
  1155. positions[] = {{1.4082, 0.291992, 12.4562},{-1.29688, 1.70313, 12.4562}};
  1156. };
  1157.  
  1158. class land_kontejner_des
  1159. {
  1160. table = "Industrial";
  1161. positions[] = {{-0.90625, -0.110352, -0.604759}};
  1162. };
  1163.  
  1164. class land_kostelik_final_2122
  1165. {
  1166. table = "CivillianLowerClass";
  1167. positions[] = {{-0.694336, 3.57324, -5.57918},{1.99854, 3.09668, -5.57919},{4.07324, -0.552734, -5.57918},{-0.619141, -6.96094, -5.57918},{2.00195, -6.27051, -5.57918},{-2.23291, -2.90137, -5.57918},{2.39404, 8.44238, -5.55285},{-1.03955, 8.20215, -5.01875},{1.06689, 7.79492, 1.55624},{-0.308594, 7.52832, 1.55565},{0.831543, -1.79492, -5.57918}};
  1168. };
  1169.  
  1170. class Land_kulna
  1171. {
  1172. table = "CivillianLowerClass";
  1173. positions[] = {{-0.358887, 2.14551, -1.1406}};
  1174. };
  1175.  
  1176. class land_lodenice
  1177. {
  1178. table = "CivillianLowerClass";
  1179. positions[] = {{-3.89795, 1.52051, -2.83267},{-1.83301, -5.40625, -2.01773},{-4.23145, -12.6211, -1.10887},{-0.587891, -12.7275, -1.0997}};
  1180. };
  1181.  
  1182. class land_marsh1
  1183. {
  1184. table = "CivillianLowerClass";
  1185. positions[] = {{4.64844, 3.49316, -3.95897},{1.33008, 4.81934, -3.95897},{3.98535, 6.78223, -3.95897},{2.28564, -0.0136719, -3.95897},{3.98193, -3.84277, -3.95897},{0.0605469, -5.29004, -3.95897},{-0.55127, 0.425781, -3.95897},{-2.35938, 4.36133, -3.99553}};
  1186. };
  1187.  
  1188. class land_marsh2
  1189. {
  1190. table = "CivillianLowerClass";
  1191. positions[] = {{-6.88477, -1.49512, -0.265942},{0.22998, 9.88281, -0.541714},{2.99219, 10.4424, -0.73275},{5.43848, 9.24902, -0.941872}};
  1192. };
  1193.  
  1194. class Land_Mil_Barracks_i
  1195. {
  1196. table = "Military";
  1197. positions[] = {{4.72119, -1.99121, -1.09824},{6.64404, -0.0224609, -0.93486},{0.72998, -1.94727, -1.09824},{1.13184, -0.0605469, -1.09824},{-1.7417, -2.11914, -1.09823},{-0.903809, 0.0771484, -1.09823},{-3.85596, 0.00683594, -1.09824},{-5.04834, -1.8125, -1.09824},{-8.65771, 2.46875, -1.09823},{-8.58887, -1.83691, -1.09823}};
  1198. };
  1199.  
  1200. class Land_Misc_Cargo1Ao
  1201. {
  1202. table = "Industrial";
  1203. positions[] = {{-0.20459, 1.27539, -1.09225}};
  1204. };
  1205.  
  1206. class Land_Misc_Cargo1Bo
  1207. {
  1208. table = "Industrial";
  1209. positions[] = {{0.0966797, 0.678711, -1.09225}};
  1210. };
  1211.  
  1212. class Land_Misc_deerstand
  1213. {
  1214. table = "Military";
  1215. positions[] = {{-0.0947266, -0.667969, 1.08539}};
  1216. };
  1217.  
  1218. class Land_Misc_PowerStation
  1219. {
  1220. table = "VehicleService";
  1221. positions[] = {{4.16992, -4.13574, -1.26852},{4.09131, 1.93164, -1.26783},{3.86328, 6.91992, -1.2674}};
  1222. };
  1223.  
  1224. class land_molovabud1
  1225. {
  1226. table = "Industrial";
  1227. positions[] = {{-9.02637, -1.52637, 1.41187},{-8.70215, 6.33398, 1.41187},{-3.35205, 1.04004, 1.41187},{1.27637, 5.45605, 1.41425},{-1.12793, 0.734375, 5.07722}};
  1228. };
  1229.  
  1230. class Land_Nasypka
  1231. {
  1232. table = "Industrial";
  1233. positions[] = {{-1.35791, -0.119141, 6.56824}};
  1234. };
  1235.  
  1236. class land_Tovarna1
  1237. {
  1238. table = "Industrial";
  1239. positions[] = {{3.8584, -5.31836, -5.75442},{-6.19629, -6.02637, -5.75442},{-10.3931, -2.59375, -5.75442},{-10.2061, 3.5791, -5.75442},{-10.7573, 7.00684, -5.75442},{-2.11475, 9.29297, -5.75442},{3.84668, 6.97949, -5.75442},{-4.80566, 2.62891, -5.75441},{1.2417, 2.21973, -5.75442},{-1.66699, -3.27734, -5.75442},{-10.7734, -6.67285, -0.320099},{-10.8408, 4.02832, -0.320103},{3.51465, 4.69336, -0.320103},{3.89551, -3.3457, -0.320103},{-4.44971, -6.65137, -0.320099},{-9.4917, -6.31055, 2.17997},{-6.7041, 2.38379, 2.17997},{-3.7583, 2.5166, 2.17997},{-1.16797, 2.92871, 2.17997},{3.08691, 2.88477, 2.17997},{0.312988, -5.51172, 2.17997},{0.150879, -0.84082, 2.17997},{2.06689, 2.51563, 4.82976},{-3.9248, 1.5957, 4.82985},{-8.56885, 2.5625, 4.82973},{-6.41846, -3.70996, 4.82981},{-0.359863, -5.14648, 4.82973}};
  1240. };
  1241.  
  1242. class Land_Tovarna2
  1243. {
  1244. table = "Industrial";
  1245. positions[] = {{-6.62939, 7.03125, -5.55933},{-4.0459, 4.9707, -5.55933},{-8.83398, 7.84668, -5.55933},{-13.0425, 6.48438, -5.55933},{-11.5796, 3.19824, -5.55933},{-13.1543, -2.66602, -5.55933},{-11.6787, -7.64844, -5.56399},{-4.72412, -1.37012, -5.5772},{-2.51611, 7.9873, -5.55933},{1.68555, 6.6582, -5.5697},{-11.1611, 2.30566, -2.23135},{-12.6118, 8.00586, -2.23135},{-4.28418, 5.01758, -2.23156},{-6.14355, 8.34375, -2.23156},{-13.0337, 2.28418, 1.66661},{-12.2842, 7.39453, 1.66661},{-9.30322, 7.27148, 1.66661},{-4.25, 4.77344, 1.62174},{-6.52637, 8.47266, 1.62174},{-3.7959, 8.35742, 1.62174},{-3.75586, 0.200195, 3.42429},{-9.74365, 0.180664, 3.42429},{-13.1099, -2.29199, 3.4243},{-13.0254, -7.99414, 3.4243},{-6.33496, -8.81641, 3.4243},{0.432129, -8.81445, 3.4243},{2.3584, -4.66992, 3.4243},{2.29883, 5.5752, 3.42429},{5.64795, -4.23926, -4.61871}};
  1246. };
  1247.  
  1248. class land_trubice
  1249. {
  1250. table = "Industrial";
  1251. positions[] = {{-3.31152, 2.16504, 2.59439},{1.09229, 2.82227, 2.59438},{5.39551, 0.498047, 2.59438}};
  1252. };
  1253.  
  1254. class Land_vez
  1255. {
  1256. table = "Military";
  1257. positions[] = {{-0.266602, 1.36523, 1.36331}};
  1258. };
  1259.  
  1260. class land_vstup
  1261. {
  1262. table = "Industrial";
  1263. positions[] = {{-12.4053, -2.3916, -4.57601},{-5.09863, -0.53418, -4.56671},{2.9541, -2.67383, -4.53907},{7.39893, -1.62695, -4.52592}};
  1264. };
  1265.  
  1266. class Land_vys_budova_p2
  1267. {
  1268. table = "CivillianLowerClass";
  1269. positions[] = {{-6.41992, 3.33789, -0.702797},{-2.60352, -2.88379, -0.702797},{-6.21973, -3.98438, -0.702797},{-0.716309, -2.80957, 0.694061}};
  1270. };
  1271.  
  1272. class Land_Vysilac_FM
  1273. {
  1274. table = "Military";
  1275. positions[] = {{1.62988, -0.418945, 8.39022}};
  1276. };
  1277.  
  1278. class land_vysoky2
  1279. {
  1280. table = "CivillianUpperClass";
  1281. positions[] = {{1.23291, 0.397461, -15.4928},{3.23291, -2.34375, -15.5683},{6.66016, 4.94141, -15.6088},{6.50146, -5.2373, -15.6088},{3.46826, -13.1758, -15.5678},{9.36914, -10.8037, -15.5851}};
  1282. };
  1283.  
  1284. class land_x_nadrz
  1285. {
  1286. table = "Industrial";
  1287. positions[] = {{-0.677734, 2.68262, 1.44318}};
  1288. };
  1289.  
  1290. class land_x_skladiste_low_te
  1291. {
  1292. table = "Industrial";
  1293. positions[] = {{-13.2363, -9.30371, -2.8418},{-14.231, 3.10449, -2.84105},{-2.57813, 8.91992, -1.61393},{0.682617, 6.83594, -2.84118},{13.1919, 6.2959, 0.106834},{9.46045, -1.61426, -2.58824},{10.0454, -6.80762, -2.58824},{1.45361, -5.36816, -2.58824},{-6.55615, -9.5127, -2.84166},{-15.5264, -11.1084, 4.04656},{4.94336, -12.0215, 4.04781},{16.9888, -3.24316, 4.04781},{16.814, 10.458, 4.04665},{10.6865, 6.64941, 6.17473}};
  1294. };
  1295.  
  1296. class land_x_vetraci_komin
  1297. {
  1298. table = "Industrial";
  1299. positions[] = {{3.07617, -0.651367, 14.9767},{-0.126953, -0.155273, 14.9466}};
  1300. };
  1301.  
  1302. class land_x_vez_te
  1303. {
  1304. table = "CivillianLowerClass";
  1305. positions[] = {{1.37744, -0.333008, -4.60751},{-0.855469, 2.38574, -4.58929},{0.958984, 2.96875, -4.58572},{1.19434, -0.387695, -0.273819},{0.800781, 2.80176, -0.272766},{-2.59912, 2.79102, -0.272377},{-2.41211, 0.592773, -0.273094},{-4.83057, -3.3623, -0.274063}};
  1306. };
  1307.  
  1308. class land_zd_1
  1309. {
  1310. table = "CivillianLowerClass";
  1311. positions[] = {{-1.92969, 3.09961, -3.67255},{2.68896, 3.86426, -3.67256},{2.27881, -1.89551, -3.67255},{-0.723145, -2.45215, -3.67255},{-4.57813, -1.90918, -4.04225}};
  1312. };
  1313.  
  1314. class land_zd_2
  1315. {
  1316. table = "CivillianLowerClass";
  1317. positions[] = {{-2.1416, -0.546875, -1.82467},{-0.318848, 2.48145, -1.82467},{1.85205, 1.12793, -1.82467}};
  1318. };
  1319.  
  1320. class Land_HouseV2_03
  1321. {
  1322. table = "CivillianUpperClass";
  1323. positions[] = {{18.3115, 1.0625, -5.62046},{10.0884, -9.37305, -5.60065},{-18.4453, 2.13477, -5.90977},{-18.1553, 0.09375, -5.88095}};
  1324. };
  1325.  
  1326. class land_seb_nasypka
  1327. {
  1328. table = "Industrial";
  1329. positions[] = {{2.58789, -3.42188, -4.24763},{4.24707, 9.42383, -6.46843},{7.66113, 8.33203, -6.49762},{8.46094, 3.88672, -6.50448},{10.937, 0.0751953, -6.52561},{5.90869, -2.25098, -6.90967},{8.9917, -9.40332, -0.134293},{8.97705, -3.41602, -0.134289},{6.27197, -2.44629, 1.30363},{6.06689, 4.19922, 1.30363},{4.11523, 8.49805, 1.30363},{7.87158, 6.61621, 1.30363},{5.11279, 4.30566, 3.86848},{7.66943, 1.15723, 3.12964},{5.90625, 9.59668, 3.27484},{2.71143, -6.04297, -0.134289}};
  1330. };
  1331.  
  1332. class land_seb_near_fac
  1333. {
  1334. table = "Factories";
  1335. positions[] = {{-23.6338, -19.4893, -2.74704},{-23.417, -23.2939, -5.23791}};
  1336. };
  1337.  
  1338. class land_seb_residental
  1339. {
  1340. table = "CivillianLowerClass";
  1341. positions[] = {{4.65283, 6.66699, -3.97305},{-5.93555, 9.76367, -3.71556},{-0.84375, 2.00195, -3.69101},{-6.8833, -8.72266, -3.65704},{-6.19385, -0.334961, -3.6836},{-0.363281, 4.80273, -3.69986},{-2.65723, 7.20898, 0.527275},{-6.62402, 5.46777, 0.535892},{-2.62891, 2.04199, 0.552792},{-1.87891, -2.06543, 0.573109},{-6.69287, -3.84863, 0.581905},{-1.95313, -7.14258, 0.448582},{-6.7876, -7.85156, 0.403408}};
  1342. };
  1343.  
  1344. class land_seb_rozvodna
  1345. {
  1346. table = "Industrial";
  1347. positions[] = {{-0.746582, 3.18555, 0.582798}};
  1348. };
  1349.  
  1350. class land_seb_vod_vez
  1351. {
  1352. table = "Industrial";
  1353. positions[] = {{0.291992, 0.31543, 15.0059},{2.41504, -0.685547, 15.0589}};
  1354. };
  1355.  
  1356. class land_senik
  1357. {
  1358. table = "CivillianLowerClass";
  1359. positions[] = {{-1.24219, -0.173828, -4.08134},{-0.446777, 2.09375, -4.07665},{0.0864258, -3.96973, -4.08918},{-3.14014, -7.28711, -4.09602},{-7.97656, -3.49707, -4.0882},{-17.2642, -3.91504, -4.08906},{-17.3037, 0.610352, -4.07971},{-13.439, 4.39355, -4.07189},{-7.9624, -0.228516, -4.08143},{-4.69238, 3.64551, -4.07343}};
  1360. };
  1361.  
  1362. class Land_Shed_Ind02
  1363. {
  1364. table = "Industrial";
  1365. positions[] = {{2.48096, 8.94629, -4.62599},{3.07715, 1.91211, -4.62599},{2.68262, -6.92383, -4.62599},{-2.57568, -1.43359, -4.62599},{4.72559, -5.57227, -1.27567},{4.71387, 4.27734, -1.28024},{-1.03467, 9.94043, -1.27845},{-1.34961, 11.8389, -1.27658},{-3.92725, 3.22363, -1.28432},{-4.08496, -7.4834, -1.28736}};
  1366. };
  1367.  
  1368. class Land_Shed_W01
  1369. {
  1370. table = "CivillianLowerClass";
  1371. positions[] = {{-1.46973, -0.0566406, -1.40097}};
  1372. };
  1373.  
  1374. class land_sklad2
  1375. {
  1376. table = "CivillianLowerClass";
  1377. positions[] = {{-3.17139, -2.12988, -2.38225},{2.39063, -3.15625, -2.38225},{3.30371, 1.88281, -2.38225},{-2.32568, 3.64844, -2.38225}};
  1378. };
  1379.  
  1380. class land_st_vez
  1381. {
  1382. table = "Military";
  1383. positions[] = {{0.0141602, -4.40625, -3.31476},{-5.08496, -2.78223, -3.31476},{-4.76514, 2.26953, -3.31476},{-0.228516, 3.75, -3.31476},{-1.03857, -2.08105, 6.40833},{-4.41309, 0.394531, 6.40833},{-1.98145, 2.73926, 6.40833}};
  1384. };
  1385.  
  1386. class Land_stodola_old_open
  1387. {
  1388. table = "CivillianLowerClass";
  1389. positions[] = {{3.66943, -10.3945, -5.08055},{-2.44189, -6.48633, -5.08055},{2.729, 3.72461, -5.08055},{-2.5835, 9.38379, -5.08055},{2.51514, 10.0439, -5.08055},{-2.20947, 9.76758, -0.993511},{3.87744, 10.6729, -0.993511},{0.335938, 10.3711, 2.96444},{-2.57227, -9.40332, -1.00523},{4.58887, -10.7676, -0.998154},{3.5, -7.14746, -1.00394},{0.982422, -10.6992, 2.96444}};
  1390. };
  1391.  
  1392. class Land_stodola_open
  1393. {
  1394. table = "CivillianLowerClass";
  1395. positions[] = {{1.88086, 5.7959, -4.1124},{-2.96338, 6.39355, -4.10798},{-0.639648, -1.17383, -4.20508},{-3.59912, -6.5332, -3.18184},{-4.01416, 1.04297, -4.11878}};
  1396. };
  1397.  
  1398. class land_syp_r
  1399. {
  1400. table = "CivillianLowerClass";
  1401. positions[] = {{-0.782715, 0.944336, -6.54317},{1.80078, -0.692383, -6.53119}};
  1402. };
  1403.  
  1404. class Land_Nav_Boathouse
  1405. {
  1406. table = "CivillianLowerClass";
  1407. positions[] = {{5.39844, -0.183594, 3.73029},{2.88184, 7.22168, 3.72778},{-3.04541, 7.42578, 3.73394},{-5.12012, -0.625977, 3.73032},{0.262207, -4.09375, 3.64116}};
  1408. };
  1409.  
  1410. class Land_Nav_Boathouse_PierL
  1411. {
  1412. table = "CivillianLowerClass";
  1413. positions[] = {{4.73975, 0.168945, 5.88749},{-1.41748, -0.195313, 5.88749}};
  1414. };
  1415.  
  1416. class Land_Nav_Boathouse_PierR
  1417. {
  1418. table = "CivillianLowerClass";
  1419. positions[] = {{-4.71875, -2.78027, 5.87571},{-0.0219727, -2.75391, 5.87571}};
  1420. };
  1421.  
  1422. class Land_NAV_Lighthouse
  1423. {
  1424. table = "Tourist";
  1425. positions[] = {{-0.452148, 0.0410156, -6.78146},{0.706543, 0.436523, 2.41912},{-0.727051, -0.0292969, 2.41912},{-0.977051, 1.41797, 2.41912},{0.782227, -1.41113, 2.41912}};
  1426. };
  1427.  
  1428. class land_nav_pier_c
  1429. {
  1430. table = "Industrial";
  1431. positions[] = {{-8.15576, -16.2305, 23.0037},{-7.75244, -1.47949, 23.0037},{-7.90234, 15.5029, 23.0037},{-7.47852, 8.41309, 23.0037},{-8.00391, -9.05273, 23.0037}};
  1432. };
  1433.  
  1434. class land_nav_pier_c2
  1435. {
  1436. table = "Industrial";
  1437. positions[] = {{14.0571, 6.25684, 23.8614},{6.81982, 7.10059, 23.8614},{-0.686523, 7.44629, 23.8614},{-7.65723, 7.83301, 23.8614},{-17.3403, 7.67871, 23.8614}};
  1438. };
  1439.  
  1440. class land_nav_pier_c2_end
  1441. {
  1442. table = "Industrial";
  1443. positions[] = {{6.6377, -4.05078, 23.8614},{1.34473, -3.78223, 23.8614},{-6.92529, -3.66504, 23.8614},{-2.79932, -3.23047, 23.8614}};
  1444. };
  1445.  
  1446. class land_nav_pier_c_90
  1447. {
  1448. table = "Industrial";
  1449. positions[] = {{-7.7085, -8.63867, 24.0014},{-7.34619, -3.86133, 24.0014},{-7.38965, 1.01465, 24.0014},{-7.5083, 6.71191, 24.0014},{0.339355, 7.0293, 24.0014},{6.40283, 7.0957, 24.0014}};
  1450. };
  1451.  
  1452. class land_nav_pier_c_big
  1453. {
  1454. table = "Industrial";
  1455. positions[] = {{18.3433, -22.2959, 23.0031},{6.84717, -21.9932, 23.0031},{-3.09033, -22.248, 23.0031},{-14.6865, -22.3359, 23.0031},{-16.9067, -15.0117, 23.0031},{-17.063, 0.720703, 23.0031},{-11.8149, 11.71, 23.0031},{-7.14502, 18.2432, 23.0032},{6.7002, 19.3457, 23.0031},{9.86377, 12.5205, 23.0031},{17.9229, 11.5645, 23.0031},{18.21, 1.91016, 23.0031},{18.3379, -9.86133, 23.0031}};
  1456. };
  1457.  
  1458. class Land_nav_pier_m_2
  1459. {
  1460. table = "CivillianLowerClass";
  1461. positions[] = {{15.189, -2.6123, 23.4414},{6.021, -2.7207, 23.4414},{-2.30273, -2.72461, 23.4414},{-15.8667, -2.66699, 23.4414},{-9.52539, 2.48828, 23.4414},{0.265625, 2.66113, 23.4414},{9.00732, 2.63965, 23.4414}};
  1462. };
  1463.  
  1464. class land_nav_pier_m_end
  1465. {
  1466. table = "CivillianLowerClass";
  1467. positions[] = {{1.65039, -4.83789, 23.4414},{-3.99854, -5.31445, 23.4414},{-4.5835, -0.269531, 23.4414},{-5.29102, 4.99023, 23.4414},{-0.487793, 5.88281, 23.4414}};
  1468. };
  1469.  
  1470. class Land_ns_jbad_A_GeneralStore_01
  1471. {
  1472. table = "CivillianUpperClass";
  1473. positions[] = {{-1.95898, 3.79395, -1.20155},{0.864746, 3.93359, -1.20155},{3.40576, 3.81543, -1.20155},{5.2002, 3.82813, -1.20155},{10.1587, 3.05371, -1.20155},{10.1592, 0.866211, -1.20154},{5.89063, 0.604492, -1.20155},{3.96387, 0.604492, -1.20155},{1.83594, 0.631836, -1.20155},{-0.505371, 0.662109, -1.20155},{5.79248, -4.14746, -1.20155},{12.71, -3.49316, -1.20155},{2.54541, -6.17969, -1.20155},{-1.36865, -5.91016, -1.20155},{-5.46875, -5.92871, -1.20154},{-9.01465, -6.27441, -1.20155},{0.26123, -7.33691, -1.20155},{12.2588, -7.87207, -1.20155},{-9.2002, -3.20605, -1.20155},{0.37207, -1.16309, -1.20155}};
  1474. };
  1475.  
  1476. class Land_ns_Jbad_A_Stationhouse
  1477. {
  1478. table = "Military";
  1479. positions[] = {{-6.93945, -7.13867, -9.46536},{-12.9404, 0.662109, -9.46536},{-6.33008, 1.7041, -9.46536},{-5.67383, -1.94531, -9.46537},{-7.77002, -4.62207, -9.46536},{-6.93506, 4.94922, -9.46536},{-5.90967, 7.74707, -9.46536},{-11.2642, 8.73242, -9.46536},{-12.208, 5.63574, -9.46536},{-14.3066, 6.98828, -9.46536},{-16.7954, 2.97461, -9.46536},{-17.332, -5.8457, -9.46536},{-14.6265, -5.30664, -9.46536},{-2.13672, -3.03613, -9.46536},{-2.03516, 2.78516, -9.46536},{-1.91406, 7.15527, -9.46536},{-8.48096, -6.48535, -6.77364},{-15.7749, -7.71777, -6.77364},{-17.375, -3.10254, -6.77364},{-17.0884, 6.61523, -6.77364},{-12.9873, 6.54883, -6.77364},{-9.61328, 6.80469, -6.77364},{-5.8584, 6.69141, -6.77364},{-2.31299, 6.87305, -6.77364},{-1.86133, -3.58105, -6.77364},{-7.43652, -3.58691, -6.77364},{-14.3545, -7.84277, -3.6493},{-16.6865, -7.78711, -3.6493},{-16.7388, 7.72949, -3.6493},{-13.9004, 7.69336, -3.6493},{-9.65723, 8.08789, -3.6493},{-6.38184, 7.78809, -3.6493},{-3.146, 8.21387, -3.6493},{-9.59473, -3.41113, -3.6493},{-6.93213, -3.34473, -3.6493},{-16.2041, 0.322266, -3.6493},{1.34912, -2.77832, -4.50294},{4.82324, -0.526367, -4.50294},{2.17676, -7.55664, -4.50269},{12.9829, -7.05371, -4.50269},{-9.396, -6.19141, -0.502689},{-15.7285, -6.89355, -0.502689},{-16.8872, 1.82227, -0.502689},{-11.0439, 2.58887, -0.502689},{-4.49365, 2.33301, -0.502686},{-1.93701, -7.98535, 8.49731},{-3.91748, -7.66309, 8.49731}};
  1480. };
  1481.  
  1482. class Land_ns_jbad_hangar_2
  1483. {
  1484. table = "Industrial";
  1485. positions[] = {{12.8218, -8.23438, -2.56319},{13.3193, -2.53516, -2.56318},{13.2275, 3.03223, -2.56319},{13.4185, 9.16797, -2.56319},{1.84619, 4.42578, -2.56319},{0.273438, -1.96875, -2.56319},{0.223633, -7.3418, -2.56319},{-12.1475, -4.97363, -2.56319},{-12.7822, 0.652344, -2.56319},{-12.5186, 5.44141, -2.56319},{0.0429688, 9.13281, -2.56319}};
  1486. };
  1487.  
  1488. class Land_ns_Jbad_Ind_Garage01
  1489. {
  1490. table = "Industrial";
  1491. positions[] = {{-1.56641, 2.76855, -0.70237},{-1.72363, -1.36328, -0.71067},{0.694824, 0.235352, -0.710865}};
  1492. };
  1493.  
  1494. class Land_ns_Jbad_Ind_PowerStation
  1495. {
  1496. table = "Industrial";
  1497. positions[] = {{3.79004, 7.35742, -0.0734406},{3.93555, 2.98242, -0.0776749},{3.91504, -1.97852, -0.0574455}};
  1498. };
  1499.  
  1500. class Land_ns_Jbad_Mil_Barracks
  1501. {
  1502. table = "Military";
  1503. positions[] = {{6.04395, -3.20898, -1.9798},{2.90332, -3.1416, -1.9798},{-0.803223, -2.35547, -1.9798},{-4.16357, -2.34473, -1.9798},{-7.53955, -2.92383, -1.9798},{-7.5293, 3.27734, -1.9798},{-4.19482, 3.24609, -1.9798},{-0.518066, 3.81543, -1.9798},{2.29834, 3.09668, -1.9798},{5.45459, 3.01172, -1.9798},{-5.80371, 0.0537109, -1.9798}};
  1504. };
  1505.  
  1506. class Land_ns_Jbad_Mil_ControlTower
  1507. {
  1508. table = "Military";
  1509. positions[] = {{8.93896, -2.4834, -9.58517},{3.74316, -2.73535, -9.58517},{4.68555, 1.06152, -9.58517},{9.20117, 5.04199, -9.62869},{4.0332, 4.7168, -5.4637},{3.02783, -0.135742, -1.0687},{6.95605, -1.1377, -1.0687},{6.04004, 2.51367, -1.0687},{3.03564, 1.75488, -1.0687},{0.952148, 5.11426, -9.6287},{-9.42725, -0.114258, -9.58517},{0.900391, 2.07813, -9.60597},{8.31592, 0.0869141, -9.58517},{0.416504, -3.0166, -1.05692},{6.09424, -3.65527, -1.05692},{9.68945, 0.405273, -1.05692},{6.51074, 5.625, -1.05692},{6.03662, 3.22949, 2.80917},{3.48291, -0.34375, 2.87234}};
  1510. };
  1511.  
  1512. class Land_ns_Jbad_Mil_Guardhouse
  1513. {
  1514. table = "CivillianLowerClass";
  1515. positions[] = {{-2.66943, 3.2793, -1.66939},{4.04395, 3.66309, -1.66939},{2.69775, 0.196289, -1.66939},{-1.37598, 3.42188, -1.66939}};
  1516. };
  1517.  
  1518. class Land_ns_Jbad_Mil_Guardhouse_winter
  1519. {
  1520. table = "CivillianUpperClass";
  1521. positions[] = {{-3.30664, 2.98242, -1.66938},{3.49316, 3.70313, -1.66939},{-0.645996, 3.14551, -1.66939},{3.88818, 0.946289, -1.66939},{-0.267578, -0.269531, -1.66939}};
  1522. };
  1523.  
  1524. class Land_ns_Jbad_Mil_House
  1525. {
  1526. table = "Military";
  1527. positions[] = {{-1.65674, -5.99219, -5.01462},{8.46973, 4.03516, -5.01462},{7.90967, -5.97266, -5.01463},{5.9165, -7.05273, -5.01463},{2.89111, -6.42676, -5.01462},{1.23682, -5.16504, -5.01462},{1.60205, -2.2207, -5.01462},{1.66943, 3.78125, -5.01463},{13.2617, -0.860352, -5.01462},{13.748, -2.25781, -5.01462},{5.44238, -2.89844, -5.01462},{-1.61182, 3.02344, -0.672493},{-13.0781, 1.9209, -0.696548},{-12.4023, -1.39258, -0.696548},{-13.8862, -4.80859, -0.696548},{-5.20605, -5.17773, -0.696548},{-5.49072, -2.76758, -0.696552},{-5.40479, 0.0078125, -0.696552},{-6.08154, 4.5918, -0.696545},{-4.62744, 0.244141, -5.01463},{-4.49658, -2.52246, -5.01463},{-4.56055, -4.71387, -5.01462},{-4.76465, -7.3584, -5.01462},{-13.5967, -7.61621, -5.01462},{-13.7686, -4.79199, -5.01462},{-13.9316, -1.64355, -5.01462},{-14.3921, 1.50488, -5.01462},{-5.47559, 4.78711, -5.01462},{-8.73828, -3.43945, -5.01462}};
  1528. };
  1529.  
  1530. class land_p1_v1
  1531. {
  1532. table = "CivillianLowerClass";
  1533. positions[] = {{-9.48145, 0.251953, 15.7814},{0.390625, 1.25781, 15.7191},{15.5005, 1.01953, 15.7191},{21.3237, 1.90137, 15.7191},{8.04443, 0.874023, 15.7191}};
  1534. };
  1535.  
  1536. class land_p1_v2
  1537. {
  1538. table = "CivillianLowerClass";
  1539. positions[] = {{13.4614, -0.0595703, 15.8593},{1.31055, 0.222656, 15.8421},{-9.30908, 0.395508, 15.8421},{-22.5, 0.293945, 15.8421}};
  1540. };
  1541.  
  1542. class land_panelova2
  1543. {
  1544. table = "Industrial";
  1545. positions[] = {{-6.35107, 0.430664, 0.5737},{-6.94727, 4.40137, 0.573704},{-3.82031, 6.3252, 0.573708},{8.93311, 7.03906, 5.67995},{9.54736, 0.0117188, 5.67995},{9.4751, -6.79688, 5.67995},{4.10596, -8.95605, 5.67995},{0.784668, 0.615234, 5.67995}};
  1546. };
  1547.  
  1548. class land_panelova3
  1549. {
  1550. table = "CivillianUpperClass";
  1551. positions[] = {{-2.02393, -4.05664, -2.99467},{1.93408, 2.16602, -3.00268},{5.26465, 1.64941, 0.0510063},{5.92432, -2.23242, 0.0510063},{1.86133, -4.71875, 0.0510063},{0.651855, 0.65918, 0.0510063}};
  1552. };
  1553.  
  1554. class land_part1
  1555. {
  1556. table = "Factories";
  1557. positions[] = {{4.9751, 1.4082, -9.1134},{-2.62598, 6.85938, -9.1134},{-3.95654, 0.295898, -9.1134},{0.0849609, 1.74512, -8.23541},{2.55811, -3.95996, -8.23301},{0.67627, -6.23047, -9.26768},{1.84277, 3.89648, -4.40201},{0.464355, 1.73926, -4.402},{-3.25732, 3.24512, -4.402},{4.19775, 6.86621, 1.93876},{4.68311, 1.04492, 1.93857},{1.90576, -2.84375, 1.93798},{-3.38428, -3.04883, 1.93808},{-4.19727, 5.19922, 1.93821},{4.229, 6.31934, 6.62016},{-0.125977, 6.64355, 6.59703},{5.11279, -1.55957, 6.60015},{-0.223145, -1.92969, 6.57503}};
  1558. };
  1559.  
  1560. class land_part2
  1561. {
  1562. table = "Factories";
  1563. positions[] = {{-2.98682, 4.24805, -9.86775},{-2.99121, -4.69824, -9.86775},{1.0835, -4.15332, -9.86775},{0.568848, 1.96582, -9.86775},{4.81738, 0.119141, -9.86775},{-4.07275, -0.433594, -9.86775}};
  1564. };
  1565.  
  1566. class land_part3
  1567. {
  1568. table = "Industrial";
  1569. positions[] = {{4.30029, 3.23242, -9.7823},{-3.11182, -2.9668, -9.7823},{-0.620117, -6.25684, -9.7823},{-2.61475, 3.61328, -9.12671},{4.63379, -3.71582, -9.27485}};
  1570. };
  1571.  
  1572. class land_plynom
  1573. {
  1574. table = "Tourist";
  1575. positions[] = {{-0.615723, -0.589844, -12.5784},{0.469727, -1.18164, -2.60305},{-1.83984, -0.77832, -2.60305},{0.26123, 0.941406, -2.60305}};
  1576. };
  1577.  
  1578. class land_pozorovatelna
  1579. {
  1580. table = "Military";
  1581. positions[] = {{-2.54639, 2.11426, -2.49767},{0.805176, 2.80859, -2.49767},{3.35986, 0.398438, -2.49767},{1.35449, -3.07129, -2.49767},{-1.16162, -2.39453, 7.54509},{-1.94922, 1.42578, 7.54509},{1.96289, 1.92969, 7.54508},{1.56543, -1.3291, 7.54509}};
  1582. };
  1583.  
  1584. class land_provoz1
  1585. {
  1586. table = "CivillianLowerClass";
  1587. positions[] = {{4.17432, 3.20996, -2.30756},{0.660156, 3.69727, -2.30756},{-2.80078, 3.64648, -2.30756},{-1.63428, 1.08496, -2.30756},{-3.64258, -3.09863, -2.30756},{2.36084, -3.6875, -2.30756},{1.75781, -1.48926, -2.30756},{-3.27539, -0.850586, -2.30756}};
  1588. };
  1589.  
  1590. class land_provoz2
  1591. {
  1592. table = "CivillianLowerClass";
  1593. positions[] = {{-2.72998, -1.48828, -2.51849},{-6.00488, 2.05078, -2.51849},{-1.47021, 2.41113, -2.51849},{3.66016, 2.57715, -2.51849},{6.47559, -1.25293, -2.51849},{1.4043, -0.520508, -2.51849}};
  1594. };
  1595.  
  1596. class Land_psi_bouda
  1597. {
  1598. table = "CivillianLowerClass";
  1599. positions[] = {{1.50391, -0.165039, -0.510769}};
  1600. };
  1601.  
  1602. class Land_Rail_Semafor
  1603. {
  1604. table = "Industrial";
  1605. positions[] = {{-1.13672, -2.11914, -3.09424}};
  1606. };
  1607.  
  1608. class Land_Rail_Zavora
  1609. {
  1610. table = "Industrial";
  1611. positions[] = {{0.853516, 1.24902, -3.00996}};
  1612. };
  1613.  
  1614. class Land_repair_center
  1615. {
  1616. table = "Industrial";
  1617. positions[] = {{-2.56934, 2.8252, -1.52847},{-2.44043, -0.498047, -1.52847},{0.723145, 6.05859, -2.51424},{1.18408, -3.59863, -2.48021},{-0.379395, -3.48535, -2.48787}};
  1618. };
  1619.  
  1620. class land_rozvodna
  1621. {
  1622. table = "Industrial";
  1623. positions[] = {{-7.11914, -1.02344, -4.70046},{-7.13574, -1.50488, -0.369423},{-6.91504, -4.40332, -4.69898}};
  1624. };
  1625.  
  1626. class Land_ruin_01
  1627. {
  1628. table = "CivillianLowerClass";
  1629. positions[] = {{-4.22266, -2.38281, -1.85783},{-4.65381, 1.90918, -1.77736},{0.255859, 1.87793, -1.87815},{4.49072, 0.31543, -1.89494}};
  1630. };
  1631.  
  1632. class Land_sara_domek_ruina
  1633. {
  1634. table = "CivillianLowerClass";
  1635. positions[] = {{3.23682, -3.85547, -1.6696},{-2.26611, -3.51855, -1.69232},{5.66895, 1.35547, -1.68663}};
  1636. };
  1637.  
  1638. class land_seb_bouda1
  1639. {
  1640. table = "Medical";
  1641. positions[] = {{-1.98633, 1.73242, -3.28989},{-2.11279, -0.297852, -3.28989},{2.53271, 1.93262, -3.28989},{2.67822, 2.23145, -1.23185},{-3.06787, 0.942383, 0.572216},{2.46191, -2.31348, 1.13067},{-0.516602, 2.16602, 0.571716}};
  1642. };
  1643.  
  1644. class land_seb_bouda3
  1645. {
  1646. table = "CivillianLowerClass";
  1647. positions[] = {{-3.16992, -3.75879, -1.72879},{-3.06592, -0.341797, -1.72878},{-3.12793, 3.84668, -1.72879},{0.696777, 4.05957, -1.72852},{2.52881, 1.74023, -1.72871},{2.53076, -2.77637, -1.72871}};
  1648. };
  1649.  
  1650. class Land_seb_bouda_plech
  1651. {
  1652. table = "VehicleService";
  1653. positions[] = {{0.272949, 1.15723, -1.14411},{0.612793, -1.32129, -1.13259}};
  1654. };
  1655.  
  1656. class land_seb_main_fac
  1657. {
  1658. table = "Industrial";
  1659. positions[] = {{20.2397, -6.28809, -6.0019},{20.1323, -0.277344, -6.0019},{14.7222, -0.286133, -6.00189},{8.71826, -3.16699, -6.0019},{2.87354, -6.94336, -6.0019},{3.64453, 15.7803, 8.63872},{8.84375, 11.8525, 8.63873},{20.7271, 13.3164, 8.63872},{22.0767, 5.18555, 8.63872},{12.668, 4.78711, 8.63873},{3.85889, 3.99121, 8.63872},{9.89307, 16.2549, 4.16873},{14.1387, 17.6328, 4.16873},{20.1953, 21.2832, 4.16873},{-2.13281, 4.35645, 4.16873},{-7.08203, 3.02637, 4.16873},{-5.4502, 11.6123, 4.16873},{-26.3335, -2.50879, 5.78507},{-21.8853, -21.4766, 6.62068},{-11.1016, -7.77637, 5.5584}};
  1660. };
  1661.  
  1662. class land_seb_mine_main_opt
  1663. {
  1664. table = "Industrial";
  1665. positions[] = {{0.200195, -2.64844, -5.11368},{-0.065918, 1.44141, -5.09117},{-6.45654, 5.61523, -4.79106},{-2.86084, 2.72559, -0.995052},{-0.0131836, 4.7207, -0.991344},{-3.49854, 5.5791, -0.989746},{-0.959961, 5.41699, -5.06926},{6.56592, 1.58105, -4.79755},{4.11816, 3.27734, 5.05729},{-4.6626, 3.16699, 7.8684},{-5.74951, -2.37109, 7.86839},{-0.536133, -3.12012, 7.8684}};
  1666. };
  1667.  
  1668. class land_seb_mine_maringotka
  1669. {
  1670. table = "Industrial";
  1671. positions[] = {{0.23291, 0.0742188, -0.612675},{-0.94043, -1.0166, -0.612675},{-1.80273, 1.60645, -1.80481}};
  1672. };
  1673.  
  1674. class land_seb_mine_near
  1675. {
  1676. table = "Industrial";
  1677. positions[] = {{12.7983, -7.2373, -11.7431},{11.0381, -5.07715, -8.8979},{5.08057, -7.26758, -8.8979},{8.21387, -7.15723, -8.8979},{12.3599, 5.94336, -11.8273},{1.08984, 5.6748, -11.8485}};
  1678. };
  1679.  
  1680. class land_seb_mine_near_bordel
  1681. {
  1682. table = "Industrial";
  1683. positions[] = {{-2.35742, 1.12402, -1.5913},{2.18848, 1.50977, -1.58464}};
  1684. };
  1685.  
  1686. class land_seb_nadrze
  1687. {
  1688. table = "Industrial";
  1689. positions[] = {{-1.71924, 7.23828, -1.99941},{0.884766, 7.42383, -1.99976},{1.90088, 2.84473, -1.98533},{2.104, -2.93262, -1.96194},{-1.94531, -7.37988, -1.96484}};
  1690. };
  1691.  
  1692. class Land_vys_budova_p1
  1693. {
  1694. table = "Military";
  1695. positions[] = {{4.67285, -9.89844, -2.95578},{2.59277, -11.4277, -2.9579},{1.34326, -4.62988, -2.95771},{-1.03125, -10.8135, -2.96087},{0.00537109, 3.47266, -2.96087},{3.87695, -1.25293, -2.96087},{2.09131, 9.34766, -2.96236},{0.953125, 6.55859, -2.96087},{-5.84521, 9.24023, -2.96087},{-5.76367, 2.80469, -2.96087},{-6.62109, -2.30859, -2.97414},{-2.52734, -6.43262, -2.96087},{-5.80176, -11.4531, -2.96087},{-3.37793, -3.25098, -2.96087},{-1.10059, 4.71582, -0.407818},{-1.08496, -1.66895, -0.407818},{-0.66748, 4.49902, 2.12336},{1.89697, -1.58594, 2.12336},{0.874512, -0.941406, 5.54735},{-3.29443, -1.69629, 5.59869},{2.32715, -8.84766, 5.59121},{3.23828, 1.57617, 5.59121},{-0.154297, 8.67871, 5.59121},{-5.93896, 2.6543, 5.59121},{-6.43848, -11.2549, 5.59121},{-2.58008, 3.24707, 5.59869}};
  1696. };
  1697. class land_Mi8_Crashed
  1698. {
  1699. table = "Tourist";
  1700. positions[] = {{1.96582, -5.91016, -1.93351},{2.27588, -3.44238, -1.94127},{-0.348633, -4.37793, -1.73772},{-2.43164, -3.96484, -1.96016}};
  1701. };
  1702. //Tanoa
  1703.  
  1704. ///////////////////////////////////////////////////////////////////////////
  1705. // Tourist - Churches, Temples
  1706. ///////////////////////////////////////////////////////////////////////////
  1707. class Land_Temple_Native_01_F
  1708. {
  1709. table = "Tourist";
  1710. positions[] = {{2.86328, 3.62207, -5.94443},{-2.13916, 3.75977, -5.94443},{0.0214844, 2.21387, -5.94443}};
  1711. };
  1712. class Land_BasaltWall_01_gate_F
  1713. {
  1714. table = "Tourist";
  1715. positions[] = {{0.0439453, 0.864258, -0.817093}};
  1716. };
  1717. class Land_Cathedral_01_F
  1718. {
  1719. table = "Tourist";
  1720. positions[] = {{7.21387, -13.8271, -8.8191},{0.727295, -13.9795, -7.82105},{-7.71265, -13.25, -8.8191},{-12.6165, -13.6201, -10.1715},{-8.31592, -5.81348, -9.39412},{8.65625, -5.93066, -9.39412},{12.52, -14.5186, -10.1715}};
  1721. };
  1722. class Land_Church_01_F
  1723. {
  1724. table = "Tourist";
  1725. positions[] = {{7.84204, 8.19629, -9.98111},{7.97876, 4.67188, -9.98111},{8.10913, 0.875977, -9.98111},{-7.82324, -0.583984, -9.98111},{-7.87085, 2.66602, -9.98111},{-7.93921, 6.75977, -9.98111}};
  1726. };
  1727. class Land_Church_02_F
  1728. {
  1729. table = "Tourist";
  1730. positions[] = {{-1.57104, -16.291, -3.31618},{2.27466, -17.1553, -3.31618}};
  1731. };
  1732. class Land_Church_03_F
  1733. {
  1734. table = "Tourist";
  1735. positions[] = {{-2.0188, 8.6582, -6.7793}};
  1736. };
  1737. class Land_Hotel_02_F
  1738. {
  1739. table = "Tourist";
  1740. positions[] = {{-1.92993, -8.71289, -3.41328},{-1.68457, -5.88867, -3.41328},{-2.05542, -3.74316, -3.41328},{-0.919678, 2.72461, -3.41328},{-1.44141, 6.75586, -3.41328},{-2.28882, 10.0713, -3.41328},{-1.7937, 14.9482, -3.41328},{-0.670898, -1.53125, -3.41328},{3.26514, -1.31543, -3.41328},{7.61841, -0.356445, -3.41328},{5.31714, -0.30957, -3.41328},{7.62646, -1.7334, -3.41328},{2.55078, 1.68457, -3.41328},{-8.28198, 0.0371094, 0.0829258},{-5.4873, 0.396484, 0.0830498},{-8.25562, 1.77246, 0.0829353},{-6.80396, 2.12402, 0.0829277},{-2.97876, -1.2832, 0.0829277},{-0.0288086, -0.879883, 0.0829277},{2.29663, -0.895508, 0.201029},{-3.04395, 3.02441, 0.0829277},{0.036377, 2.55762, 0.0829277},{2.36206, 2.54102, 0.201008},{4.4043, 0.210938, 0.201008},{4.35107, 1.84961, 0.20101},{-6.39966, 1.38574, -3.41328},{-8.302, -0.541016, -3.41328},{-3.31665, -0.0693359, -3.41328},{6.95557, 1.69141, -3.41328},{0.772217, 0.842773, 0.0829296},{7.59888, 3.51172, -3.41328}};
  1741. };
  1742. class Land_Mausoleum_01_F
  1743. {
  1744. table = "Tourist";
  1745. positions[] = {{-0.353271, -0.273438, -1.9543},{0.789551, 1.28613, -1.9543}};
  1746. };
  1747.  
  1748. ///////////////////////////////////////////////////////////////////////////
  1749. // Military
  1750. ///////////////////////////////////////////////////////////////////////////
  1751. class Land_Airport_01_controlTower_F
  1752. {
  1753. table = "Military";
  1754. positions[] = {{-1.33838, -2.1748, 4.21085},{2.74023, -2.18848, 4.21085},{3.20215, 3.36816, 4.21085},{0.688477, -0.482422, 7.91645},{-1.7041, 2.05859, 7.91645},{0.241699, 1.05566, 4.65807}};
  1755. };
  1756. class Land_Airport_01_terminal_F
  1757. {
  1758. table = "Military";
  1759. positions[] = {{0.827881, -1.37305, -4.16959},{-7.77563, 6.21191, -4.02355},{-5.3645, 7.58496, -4.02355},{9.20093, 8.3584, -4.05115},{6.49023, 6.29004, -4.05115},{-2.06299, -3.88965, -4.16956},{8.37256, -9.38281, -3.60985},{5.72144, -7.32324, -4.05115},{-12.0342, 0.892578, -4.02597},{-15.1523, 2.55957, -4.02597}};
  1760. };
  1761. class Land_Airport_02_controlTower_F
  1762. {
  1763. table = "Military";
  1764. positions[] = {{-0.812744, 0.282227, -10.661},{0.941406, -2.72852, -7.56659},{1.30371, -2.91895, -4.33187},{0.729492, -2.33203, -1.09817},{-3.49194, 1.33203, 2.13546},{-3.42407, 8.52734, 2.13546},{3.66113, 7.77637, 2.13546},{3.46069, 1.49121, 2.13546},{-1.35278, 5.05273, 2.13546},{1.03467, 4.76367, 2.13546}};
  1765. };
  1766. class Land_Airport_02_terminal_F
  1767. {
  1768. table = "Military";
  1769. positions[] = {{9.60767, -6.86035, -1.40867},{5.26221, -7.11816, -1.40867},{5.20581, 2.50684, -1.40868},{10.1387, 1.65332, -1.40867},{10.0408, -3.44336, -1.40867},{6.25098, -3.10938, -1.40867},{1.42871, 3.71387, -1.40868},{-15.1729, -9.67676, -1.40867},{19.1196, -10.5801, -1.40867}};
  1770. };
  1771. class Land_Barracks_01_camo_F
  1772. {
  1773. table = "Military";
  1774. positions[] = {{-2.03223, -4.17578, 0.518449},{-12.3308, 3.25293, 0.518449},{-8.06128, -2.79688, 0.518449},{-13.0491, -3.41699, 0.518449},{-5.89697, 2.90039, 0.518449},{-0.161133, 3.46387, 0.518449},{6.76074, -3.37207, 0.518448},{3.97217, -3.37793, 0.518448},{3.79028, 3.08203, 0.518449},{13.0432, 2.82031, 0.518449},{10.2876, -2.74316, 0.518448},{-2.78931, -5.56543, 3.85143},{-12.4595, 3.32813, 3.85143},{-9.40015, -2.75, 3.85143},{-3.89746, 2.83496, 3.85143},{6.83984, -3.45605, 3.85143},{3.69678, 3.21973, 3.85143},{13.5459, 3.05859, 3.85143},{10.2222, -2.88086, 3.85143},{15.8203, 4.68457, 3.85143},{5.03662, 5.58203, 3.85143},{-11.1951, 5.7002, 3.85143}};
  1775. };
  1776. class Land_Barracks_01_grey_F
  1777. {
  1778. table = "Military";
  1779. positions[] = {{-4.93823, -3.14258, 0.579082},{-7.1687, -0.0634766, 0.579084},{0.246094, 3.5625, 0.579081},{15.8589, 3.48145, 3.82728},{4.1709, 3.31836, 3.91306},{-4.14941, 2.08008, 0.579082},{-5.45679, 4.16797, 0.579081},{3.21436, 3.62891, 0.579081},{6.79688, 3.63184, 0.579083},{13.6021, 3.58887, 0.579082},{2.74634, -3.52246, 0.579081},{6.47388, -3.57324, 0.579081},{13.2324, -3.56543, 0.579082},{10.2068, -3.60938, 0.579092},{0.724121, -1.92578, 2.14746},{-11.688, -3.53027, 0.579081},{-8.72437, -3.49414, 0.579082},{-5.19409, -1.15625, 3.91299},{-2.52246, 4.02246, 3.91306},{-11.7957, 3.63379, 3.91306},{-8.79614, 3.57129, 3.91306},{0.246094, 3.5625, 3.91306},{-4.85718, 1.84082, 3.91306},{6.79688, 3.63184, 3.91306},{13.0173, 3.62207, 3.91306},{2.74634, -3.52246, 3.91306},{6.47388, -3.57324, 3.91306},{13.2324, -3.56543, 3.91306},{10.2068, -3.60938, 3.91306},{-11.688, -3.53027, 3.91306},{-8.72437, -3.49414, 3.91306},{-2.67603, -5.52637, 3.9129},{-5.47803, -5.47754, 3.91306},{-12.571, 5.66699, 3.82743},{1.52539, 5.85156, 3.82743},{13.0151, 5.56738, 3.82743},{8.60815, 5.64941, 3.82743},{-8.0498, -2.96875, 7.73989},{-7.94238, 4.33301, 7.53899},{-10.9417, 4.27246, 7.54615},{-11.0132, -2.84766, 7.75703},{-3.51318, -3.02734, 7.73164},{0.239258, 2.94727, 7.69844},{5.69629, -3.12012, 7.7184},{6.52026, 3.02539, 7.68936},{13.1848, -3.37891, 7.68175},{12.9956, 3.25977, 7.66242},{-9.55566, 3.30469, 0.579081},{-11.7957, 3.63379, 0.579083}};
  1780. };
  1781. class Land_Cargo_House_V4_F
  1782. {
  1783. table = "Military";
  1784. positions[] = {{-1.54419, 0.999023, -0.272255},{-1.50879, 3.05518, -0.136219},{1.49829, 3.27637, -0.136219}};
  1785. };
  1786. class Land_Cargo_HQ_V4_F
  1787. {
  1788. table = "Military";
  1789. positions[] = {{-2.38062, 2.84961, -3.28473},{3.62866, 5.22852, -3.16431},{6.25708, 3.00537, -3.28473},{4.15381, -4.32813, -3.28473},{-1.63599, 2.06934, -0.759884},{5.61597, 1.51514, -0.759884},{-1.58765, -3.61523, -0.759884}};
  1790. };
  1791. class Land_Cargo_Patrol_V4_F
  1792. {
  1793. table = "Military";
  1794. positions[] = {{1.19702, -1.0708, -0.55952},{-1.55225, -1.25684, -0.55952}};
  1795. };
  1796. class Land_Cargo_Tower_V4_F
  1797. {
  1798. table = "Military";
  1799. positions[] = {{1.24365, 2.92432, -8.27076},{-3.12207, -3.45801, -0.132563},{-4.18994, 2.93652, -0.132563},{4.13135, 4.40283, 2.46744},{-1.19702, -2.97461, 2.46744},{-4.38403, -5.64014, 2.58785},{-3.04907, 5.84717, 2.58785},{4.70801, -0.943848, 4.99228},{3.79785, 2.89355, 4.99228},{-2.58374, 4.81885, 4.99228},{-3.46924, -4.14063, 4.99228},{0.449951, 1.61523, 4.99228}};
  1800. };
  1801.  
  1802. ///////////////////////////////////////////////////////////////////////////
  1803. // Medical
  1804. ///////////////////////////////////////////////////////////////////////////
  1805.  
  1806.  
  1807. ///////////////////////////////////////////////////////////////////////////
  1808. // VehicleService - Garages
  1809. ///////////////////////////////////////////////////////////////////////////
  1810. class Land_FuelStation_01_workshop_F
  1811. {
  1812. table = "VehicleService";
  1813. positions[] = {{1.55859, 0.491211, -2.38167},{5.323, -0.123047, -2.38166},{3.38965, -3.31152, -2.38166},{-4.86279, 3.44043, -2.38166},{-0.757568, 2.62012, -2.38166},{-1.45166, -1.37207, -2.38166},{-0.297607, -4.38965, -2.38166},{-3.42407, -2.7959, -2.38166},{-4.43384, -1.31934, -2.38166}};
  1814. };
  1815. class Land_FuelStation_02_workshop_F
  1816. {
  1817. table = "VehicleService";
  1818. positions[] = {{4.32983, -1.37402, -1.28247},{0.798584, 0.898438, -1.2825},{0.798828, 3.30762, -1.28248},{3.5061, 10.5254, -1.5024},{-4.67676, 0.318359, -1.20392},{-2.73096, 7.27441, -1.2675},{3.92358, 6.36621, -1.2675}};
  1819. };
  1820. class Land_Warehouse_03_F
  1821. {
  1822. table = "VehicleService";
  1823. positions[] = {{-8.48145, -3.27783, -2.37297},{-8.30518, 2.33496, -2.37297},{4.01001, -0.54541, -2.37297},{0.600586, -3.29736, -2.37297},{-2.61084, 2.81201, -2.37297},{6.88647, 4.00146, 0.128591},{6.11084, 0.941895, 0.134463},{7.76172, -1.81592, 0.139763}};
  1824. };
  1825. class Land_GarageShelter_01_F
  1826. {
  1827. table = "VehicleService";
  1828. positions[] = {{2.66284, 0.1875, -1.26478},{-1.15308, -2.07129, -1.26478},{-3.00488, 2.24219, -1.26478}};
  1829. };
  1830.  
  1831.  
  1832. ///////////////////////////////////////////////////////////////////////////
  1833. // Civillian Lower Class
  1834. ///////////////////////////////////////////////////////////////////////////
  1835. class Land_Addon_01_F
  1836. {
  1837. table = "CivillianLowerClass";
  1838. positions[] = {{-0.0771484, -3.42969, -1.18165},{-0.0510254, 3.45508, -1.18165}};
  1839. };
  1840. class Land_Addon_04_F
  1841. {
  1842. table = "CivillianLowerClass";
  1843. positions[] = {{5.11499, 3.44434, 0.313654},{5.3064, -1.28711, 0.313654},{1.43872, 4.01563, 0.313654},{-3.60425, 4.06055, 0.313654},{-5.37915, -1.30859, 0.315462},{-5.4126, -7.74414, 0.315462},{2.18799, -4.7334, 0.295511},{-2.14502, 0.327148, 0.313654},{-2.03418, -6.08789, 0.295511},{-1.64429, -3.04492, 0.295511}};
  1844. };
  1845. class Land_Shed_01_F
  1846. {
  1847. table = "CivillianLowerClass";
  1848. positions[] = {{-1.63525, 0.723633, -0.930923},{0.366943, 0.666992, -0.930905},{1.9231, 0.618164, -0.930935}};
  1849. };
  1850. class Land_Shed_02_F
  1851. {
  1852. table = "CivillianLowerClass";
  1853. positions[] = {{-0.999512, 0.856445, -0.853717},{1.07373, 1.06934, -0.853717}};
  1854. };
  1855. class Land_House_Native_02_F
  1856. {
  1857. table = "CivillianLowerClass";
  1858. positions[] = {{1.4668, 1.57227, -2.37363},{2.01392, -1.94727, -2.37363},{-3.0769, -2.16211, -2.37363},{-3.13428, 1.90625, -2.37363}};
  1859. };
  1860. class Land_House_Small_01_F
  1861. {
  1862. table = "CivillianLowerClass";
  1863. positions[] = {{-5.15918, 3.30469, -0.725801},{-2.37891, -3.66211, -0.725801},{-0.370605, 3.30078, -0.725801},{-5.71069, -1.92188, -0.725801},{-4.61841, -3.47949, -0.725801},{5.7312, 1.41113, -0.725801},{5.73682, 2.94531, -0.725801},{5.73633, -1.61523, -0.725798},{5.72656, -3.4043, -0.7258},{-0.0686035, 0.75293, -0.725799},{1.62427, 3.29199, -0.725801},{2.38892, 0.566406, -0.725801},{2.44507, -3.60059, -0.725801}};
  1864. };
  1865. class Land_House_Small_02_F
  1866. {
  1867. table = "CivillianLowerClass";
  1868. positions[] = {{0.186768, -3.98535, -0.74064},{-1.48145, -5.63574, -0.74064},{-3.90405, 2.8916, -0.740633},{0.19165, 1.88086, -0.740639},{-1.82813, -2.85156, -0.740639},{-3.19019, -1.54199, -0.74064},{-3.32153, -5.41504, -0.74064},{-3.89648, 5.4873, -0.740639},{-1.49097, 5.86426, -0.740638}};
  1869. };
  1870. class Land_House_Small_03_F
  1871. {
  1872. table = "CivillianLowerClass";
  1873. positions[] = {{-5.6853, 3.47363, -1.34902},{-4.21582, -1.17969, -1.32402},{-0.532227, 3.87305, -1.32402},{1.27075, -0.573242, -1.32402}};
  1874. };
  1875. class Land_House_Small_04_F
  1876. {
  1877. table = "CivillianLowerClass";
  1878. positions[] = {{2.62964, -1.5332, -0.817202},{-1.37061, -3.31543, -0.817202},{-0.413574, 3.04102, -0.817202},{1.30786, -7.03906, -0.87291},{-3.44702, 3.64258, -0.872911}};
  1879. };
  1880. class Land_House_Small_05_F
  1881. {
  1882. table = "CivillianLowerClass";
  1883. positions[] = {{-1.38037, 4.41016, -1.08628},{-0.400635, -0.0605469, -1.08628},{-0.890625, -3.07324, -1.08628}};
  1884. };
  1885. class Land_House_Small_06_F
  1886. {
  1887. table = "CivillianLowerClass";
  1888. positions[] = {{-3.41675, -3.75879, -1.00433},{-3.06567, 0.991211, -1.00433},{0.966064, -2.96387, -1.00433},{-3.22119, 3.95996, -1.00503}};
  1889. };
  1890. class Land_House_Native_01_F
  1891. {
  1892. table = "CivillianLowerClass";
  1893. positions[] = {{-2.04907, -1.64746, -3.13483},{-1.43799, 1.98047, -3.13483},{2.88135, 1.87695, -3.13483},{3.05176, -1.48438, -3.13483}};
  1894. };
  1895. class Land_PierWooden_01_hut_F
  1896. {
  1897. table = "CivillianLowerClass";
  1898. positions[] = {{1.13232, -0.893555, 18.7197}};
  1899. };
  1900. class Land_PierWooden_01_ladder_F
  1901. {
  1902. table = "CivillianLowerClass";
  1903. positions[] = {{0.233887, -0.708008, 19.827}};
  1904. };
  1905. class Land_PierWooden_01_dock_F
  1906. {
  1907. table = "CivillianLowerClass";
  1908. positions[] = {{-4.53687, 0.679688, 17.8678},{-0.218018, -5.85645, 17.8678},{4.63672, 3.60156, 17.8678}};
  1909. };
  1910. class Land_PierWooden_01_platform_F
  1911. {
  1912. table = "CivillianLowerClass";
  1913. positions[] = {{-1.22583, 1.11523, 19.5247},{1.12427, 1.14551, 19.5247}};
  1914. };
  1915. class Land_Shed_03_F
  1916. {
  1917. table = "CivillianLowerClass";
  1918. positions[] = {{2.09058, -0.371094, -0.713204},{-0.305664, 0.0419922, -0.713204}};
  1919. };
  1920. class Land_Shed_04_F
  1921. {
  1922. table = "CivillianLowerClass";
  1923. positions[] = {{0.278076, 0.768555, -0.726258}};
  1924. };
  1925. class Land_Shed_05_F
  1926. {
  1927. table = "CivillianLowerClass";
  1928. positions[] = {{-1.93994, -1.54297, -0.917485},{1.58032, -1.0498, -0.917485}};
  1929. };
  1930. class Land_Shed_07_F
  1931. {
  1932. table = "CivillianLowerClass";
  1933. positions[] = {{2.58154, -0.797852, -1.36388},{2.26782, 0.829102, -1.36387},{-3.31567, -0.990234, -1.36386},{-0.429688, -0.893555, -1.36388}};
  1934. };
  1935. class Land_Slum_01_F
  1936. {
  1937. table = "CivillianLowerClass";
  1938. positions[] = {{3.35571, 2.1416, 0.643513},{2.30029, -0.546875, 0.643514},{1.05811, -1.90234, 0.643514},{-0.150146, 2.13574, 0.643545},{-2.06763, 1.97656, 0.617534},{4.91821, 1.76465, 0.643515},{4.86938, -1.81445, 0.643514},{-0.591309, -0.00878906, 0.643521}};
  1939. };
  1940. class Land_Slum_02_F
  1941. {
  1942. table = "CivillianLowerClass";
  1943. positions[] = {{1.80273, -0.624023, 0.158215},{-0.717529, -2.38379, 0.158216},{2.12402, 3.88965, 0.158215},{2.09155, -3.78711, 0.158216},{1.72144, -1.96387, 0.158216},{-2.06787, 4.17871, 0.158215}};
  1944. };
  1945. class Land_Slum_03_F
  1946. {
  1947. table = "CivillianLowerClass";
  1948. positions[] = {{-2.12012, 7.30469, -0.674455},{-2.55933, 2.12598, -0.674454},{2.83594, 6.05469, -0.651794},{3.9458, 0.943359, -0.651794},{0.0112305, -1.2207, -0.651794},{1.64575, -3.14648, -0.651794}};
  1949. };
  1950. class Land_WaterTower_01_F
  1951. {
  1952. table = "CivillianLowerClass";
  1953. positions[] = {{-0.452148, 0.015625, 3.74843}};
  1954. };
  1955.  
  1956. ///////////////////////////////////////////////////////////////////////////
  1957. // Civillian Upper Class
  1958. ///////////////////////////////////////////////////////////////////////////
  1959. class Land_Hotel_01_F
  1960. {
  1961. table = "CivillianUpperClass";
  1962. positions[] = {{-8.20288, 7.83105, -1.58711},{-2.1604, 7.38281, -1.58712},{3.8728, 7.81836, -1.58711},{6.44751, 4.7998, -1.58711},{6.44751, -1.2334, -1.58711},{-2.1604, -5.81641, -1.58711},{3.8728, -5.81641, -1.58711},{-7.53955, -4.56445, -1.58711},{-7.63403, 0.913086, 1.66289},{6.14624, 7.49121, 4.4886},{6.01196, 0.84668, 4.48859},{0.8479, -5.81641, 4.48865},{6.1189, -5.98535, 4.48865},{-7.40649, -5.82227, 4.4886},{-6.28833, 7.66504, 4.48861},{3.34326, 6.52637, 7.75042},{5.21191, 1.56738, 7.59465},{3.34326, -5, 7.7508},{-6.60034, -5.00488, 7.60001},{-6.61377, -0.413086, 7.5989},{-6.64063, 6.62695, 7.5967},{-2.01831, 6.44531, 7.97652},{-4.02124, 3.88086, -5.31221},{1.14209, 5.27441, -5.31221},{-0.478271, -1.46094, -5.31221},{2.69238, 0.512695, -5.31221}};
  1963. };
  1964. class Land_House_Big_02_F
  1965. {
  1966. table = "CivillianUpperClass";
  1967. positions[] = {{7.26123, -6.65332, -1.4679},{8.78711, -3.17871, -1.46789},{7.34692, 0.493164, -1.46789},{-5.19165, -0.584961, -1.4679},{-7.11353, 3.46484, -1.4679},{-9.80347, 2.98047, -1.46789},{-3.50171, 6.34277, -1.46789},{4.75928, 3.41895, -1.4679},{0.365479, 1.74121, -1.4679},{0.321533, 8.83398, -1.46789},{-3.83179, 8.92773, -1.46789},{2.44434, 6.33105, -1.46789},{6.07397, 5.41016, -1.46789},{4.53271, 8.58008, -1.46789}};
  1968. };
  1969. class Land_House_Big_03_F
  1970. {
  1971. table = "CivillianUpperClass";
  1972. positions[] = {{10.6619, 5.75977, -3.22996},{9.25781, 3.40625, -2.99144},{1.88281, 0.274414, -3.19996},{7.68018, 0.445313, -0.115536},{5.85278, -2.44727, -0.115538},{5.896, 2.80762, -0.115538},{10.7966, 5.81641, -0.136646},{10.7966, -5.22168, -0.136646},{-12.5356, 6.02734, -0.136646},{-13.6335, -5.51855, -0.145912},{4.46899, 3.20898, -3.19996},{9.25879, 3.4082, -3.19996},{-7.49341, -4.64551, -0.136646},{3.17041, 4.95996, -0.136646},{-7.65063, 5.22656, -0.136646},{3.40796, -4.60645, -0.136648},{7.61133, -2.03027, -0.115538},{7.59229, 2.57031, -0.115536},{9.81934, 1.22559, -3.19996},{10.2896, 0.297852, -0.136644},{6.10205, 5.60742, -3.22997},{8.23096, -2.7334, -3.19996}};
  1973. };
  1974. class Land_House_Big_01_F
  1975. {
  1976. table = "CivillianUpperClass";
  1977. positions[] = {{0.581055, 1.07715, -1.03786},{3.76978, 1.45898, -1.03786},{7.10107, 3.50879, -1.03786},{5.354, -0.949219, -1.03786},{7.10107, 0.709961, -1.03786},{2.60303, 5.45996, -1.03786},{1.08838, -1.04297, -1.03786},{-6.92017, -2.47754, -1.03786},{3.1604, 3.23047, -1.03786},{-1.71655, -3.68359, -1.03786},{1.73779, -2.62012, -1.03786},{7.14502, -3.83887, -1.03786},{3.41797, -3.76563, -1.03786}};
  1978. };
  1979. class Land_House_Big_04_F
  1980. {
  1981. table = "CivillianUpperClass";
  1982. positions[] = {{-1.37891, -3.32227, -2.97358},{-3.73853, -4.79199, -2.97358},{-5.98267, -3.32715, -2.97359},{4.17285, -4.86523, -2.97358},{4.1709, -1.88672, -2.97358},{10.072, -7.38672, 0.253304},{1.69922, -7.38672, 0.253298},{-6.56543, -7.38672, 0.253365},{-2.49268, 6.82422, 0.269667},{-8.40747, -3.21582, 0.252121},{-7.91455, 5.04785, 0.255436},{4.07715, 6.31934, 0.263828},{-0.817871, 1.19824, 0.276417},{-5.89087, 2.65234, 0.276417},{-3.69604, 4.36133, 0.276417},{2.28882, 4.45898, 0.276417},{2.63916, 1.19238, 0.276417},{4.17358, 3.16309, 0.276417},{-8.5835, -2.4043, -2.97532},{-8.77393, -7.35254, -2.97424},{-8.0625, 1.89063, -2.97626},{-8.55005, 6.73438, -2.97482},{1.52148, -6.74219, -2.97358},{0.0705566, 6.78711, -2.97553}};
  1983. };
  1984. class Land_House_Big_05_F
  1985. {
  1986. table = "CivillianUpperClass";
  1987. positions[] = {{-2.42017, -4.77539, -1.51147},{4.53735, -5.0459, -1.11731},{-8.91455, -4.73145, -1.51147},{-9.14844, 5.57715, -1.51147},{-2.42065, 5.48828, -1.51147},{4.50073, 5.00781, -1.11731}};
  1988. };
  1989. class Land_School_01_F
  1990. {
  1991. table = "CivillianUpperClass";
  1992. positions[] = {{-12.2412, -1.23535, -1.27842},{-12.1011, 2.86914, -1.27842},{-6.37842, -1.32617, -1.27842},{-2.88672, -1.31543, -1.27842},{0.71582, 0.556641, -1.27842},{11.927, 2.93066, -1.27842},{7.01636, -0.12793, -1.27842},{13.5767, -1.79297, -1.27842}};
  1993. };
  1994.  
  1995. ///////////////////////////////////////////////////////////////////////////
  1996. // Shops
  1997. ///////////////////////////////////////////////////////////////////////////
  1998. class Land_FuelStation_01_shop_F
  1999. {
  2000. table = "Shop";
  2001. positions[] = {{-3.47095, -2.32715, -2.01301},{1.49292, -2.76465, -2.01301},{-3.97681, 4.03711, -2.01301},{0.912842, 2.21191, -2.01301}};
  2002. };
  2003. class Land_GuardHouse_01_F
  2004. {
  2005. table = "Shop";
  2006. positions[] = {{-0.890381, 2.22461, -1.03759},{2.25879, 1.90527, -1.03759},{1.18262, -3.99707, -1.04188},{4.2688, -4.30566, -1.04188},{-1.89941, -0.541016, -1.04188},{-1.66211, -4.21094, -1.04188}};
  2007. };
  2008. class Land_Shop_City_01_F
  2009. {
  2010. table = "Shop";
  2011. positions[] = {{2.4292, 3.38574, -4.955},{1.2439, -0.536621, -4.94684},{5.92114, 2.45996, -4.94911}};
  2012. };
  2013. class Land_Shop_City_02_F
  2014. {
  2015. table = "Shop";
  2016. positions[] = {{2.87964, -6.96094, -4.33675},{3.52344, -3.69141, -4.3368},{7.54688, -3.29297, -4.33673},{-2.46313, -5.58398, -4.33675},{-0.394531, -7.3291, -4.33675},{-9.93286, -6.42188, -4.33675},{-8.23169, -3.64941, -4.33675}};
  2017. };
  2018. class Land_Shop_City_03_F
  2019. {
  2020. table = "Shop";
  2021. positions[] = {{5.67749, -2.68164, -4.96615},{3.79248, 8.09082, -4.96667},{1.88354, -3.96289, -4.96746}};
  2022. };
  2023. class Land_Shop_City_04_F
  2024. {
  2025. table = "Shop";
  2026. positions[] = {{1.2771, 10.0566, 4.17043},{7.14185, 9.99414, 4.17043},{4.28784, 9.86816, 4.17043},{6.50317, 1.44434, 4.17043},{1.27368, 1.37695, 4.17043},{7.23999, 5.65234, 4.17043},{7.2915, 7.69629, 4.17043},{1.28784, 3.91992, 4.17043},{-0.504395, 10.0264, 6.97933},{-6.20288, 9.97656, 6.97932},{-5.91138, 1.75684, 6.97932},{-6.104, 7.68848, 6.97932},{-0.501709, 3.88867, 6.97932},{-5.6123, -0.362305, 6.97932},{-5.93213, -4.22363, 6.97932},{-5.87793, -9.48828, 6.97932},{-3.51074, -9.6748, 6.97932},{1.36377, -1.84863, 6.97932},{-2.06396, -0.0917969, 6.97932},{7.09326, -4.71387, 6.97932},{4.16943, -5.02539, 6.97932},{7.18335, -0.458008, 6.97932},{1.20508, -9.41602, 6.97932},{7.18774, -9.19141, 6.97932},{7.20654, -10.5918, 3.60047},{1.93359, -10.7646, 3.60047},{-1.50293, -10.3926, 3.60047},{-6.23047, -10.5918, 3.60047}};
  2027. };
  2028. class Land_Shop_City_05_F
  2029. {
  2030. table = "Shop";
  2031. positions[] = {{-0.283447, 2.6084, 4.08708},{-5.32642, -12.6162, 7.18407},{5.06274, -10.9531, 7.15172},{0.605469, -4.85449, 7.03372},{0.268311, -1.22461, 6.96352},{7.7915, -6.00879, 7.05611},{9.13062, 2.4502, 4.08708},{4.25415, 5.82715, 4.08708},{-2.11279, 9.05762, 4.08708},{6.97266, 13.6572, 4.08708},{0.479492, 13.2539, 4.08708},{-6.08496, 13.8789, 4.08708},{-8.25366, 10.1318, 4.08708},{-8.55688, -12.0498, 7.17308},{0.14209, -11.0918, -7.28322}};
  2032. };
  2033. class Land_Shop_City_06_F
  2034. {
  2035. table = "Shop";
  2036. positions[] = {{-6.04688, 0.503906, -4.06816},{-3.99438, 7.72363, -4.06839},{-5.10303, -5.04199, -4.06798}};
  2037. };
  2038. class Land_Shop_City_07_F
  2039. {
  2040. table = "Shop";
  2041. positions[] = {{1.10278, 2.13574, 0.00890541},{1.35547, 6.91504, 0.00893593},{-0.679443, 0.248047, 3.60637},{-1.02441, 4.30469, 3.60637},{2.6582, -3.65723, 3.60637},{-0.708984, -6.85547, 3.60637},{-4.04346, -2.99414, 3.60637},{-4.01318, 4.39941, 3.60637},{-3.63501, 7.54883, 3.60637}};
  2042. };
  2043. class Land_Shop_Town_01_F
  2044. {
  2045. table = "Shop";
  2046. positions[] = {{-3.92822, -2.74707, -3.27012},{-3.80103, 0.883789, -3.27011},{-2.52832, -3.63965, -3.27011},{-3.80493, -6.10156, -3.27011},{-0.918213, -5.84473, -3.27011},{4.22827, -6.09766, -3.27011},{-2.00391, 3.82813, -3.27011},{-3.91284, 4.55273, -3.27012},{-1.0105, 0.652344, -3.27011},{0.751221, -2.10352, -3.27011},{2.72095, -3.8457, -3.27011},{3.85083, -2.64551, -3.27011}};
  2047. };
  2048. class Land_Shop_Town_02_F
  2049. {
  2050. table = "Shop";
  2051. positions[] = {{2.99487, -4.95605, -2.14528},{-2.94238, -5.14746, -2.14139}};
  2052. };
  2053. class Land_Shop_Town_03_F
  2054. {
  2055. table = "Shop";
  2056. positions[] = {{-5.88965, -3.25684, -3.12664},{-5.90576, -0.0273438, -3.12665},{5.32275, -1.48535, -3.12776},{0.748779, -1.30957, -3.12776},{0.994385, -4.28027, -3.12776}};
  2057. };
  2058. class Land_Shop_Town_04_F
  2059. {
  2060. table = "Shop";
  2061. positions[] = {{-2.41553, -6.52832, -2.43639},{2.42578, -6.81152, -2.43639}};
  2062. };
  2063. class Land_Shop_Town_05_F
  2064. {
  2065. table = "Shop";
  2066. positions[] = {{-7.17432, -6.53418, -2.72663},{7.25415, -6.73242, -2.72663},{1.95654, -6.69824, -2.72662},{-1.74683, -6.51855, -2.72663}};
  2067. };
  2068. class Land_Supermarket_01_F
  2069. {
  2070. table = "Shop";
  2071. positions[] = {{4.35083, -2.46777, -1.50003},{-0.334473, -6.50879, -1.50003},{-0.251221, -0.452148, -1.50003},{-4.82568, 1.79492, -1.50003},{-4.38794, -5.06836, -1.50003},{7.19556, -1.90137, -1.50003},{1.91138, 1.69434, -1.50003},{-2.32007, -8.67676, -1.50003}};
  2072. };
  2073. class Land_Warehouse_02_F
  2074. {
  2075. table = "Shop";
  2076. positions[] = {{20.1353, 11.1074, 4.53597},{20.1353, -9.1582, 4.53597},{19.5979, -1.66113, 4.53613},{19.5979, 3.98535, 4.53613},{-5.52881, 5.00781, 4.63205},{-7.08691, -8.17188, 4.54425},{-20.0464, 11.1074, 4.54819},{-20.0464, -9.1582, 4.54819},{-19.5269, -1.65527, 4.54803},{-19.5269, 3.99121, 4.54803},{3.19653, 5.10254, 4.6321},{1.84839, -1.40625, 4.54153},{11.4192, 5.10254, 4.63212},{7.40503, -7.6543, 4.53984},{11.2095, -12.8008, -3.94501},{5.47998, -12.2197, -3.94501},{-0.130127, -12.8135, -3.94501},{-3.7085, -12.4531, -3.94501}};
  2077. };
  2078.  
  2079. ///////////////////////////////////////////////////////////////////////////
  2080. // Industrial
  2081. ///////////////////////////////////////////////////////////////////////////
  2082. class Land_Airport_01_hangar_F
  2083. {
  2084. table = "Industrial";
  2085. positions[] = {{9.03003, -9.82813, -2.64558},{12.0889, 13.4424, -2.64558},{-10.1367, -9.1582, -2.64557},{5.88574, 13.7393, -2.64557},{-1.66846, -9.04395, 9.82697},{2.23926, -9.12988, 9.69195},{1.85083, 14.8818, 9.84647},{-1.72559, 14.9346, 9.80423},{-12.675, 14.3945, 5.44739},{12.7019, 14.3379, 5.52713},{12.5813, -8.32715, 5.5752},{-11.5681, -8.43457, 5.88791},{7.02759, 11.5313, 7.88078},{-12.155, 12.8789, 5.65434},{-12.188, 7.26563, 5.64122},{-6.71826, 11.6631, 7.93423},{-12.1636, 0.255859, 5.65096},{-6.75854, 2.82324, 7.9273},{-12.073, -5.24805, 5.687},{13.3979, -5.29395, 5.25013},{6.91626, 2.80078, 7.89974},{-7.02197, -9.43164, 7.69681},{6.95947, -9.37891, 7.81296},{13.6221, -0.296875, 5.16088},{13.4575, 6.87988, 5.22637},{6.99634, -5.94824, 7.88647},{-6.74829, -5.91406, 7.92898},{-12.0376, 11.5723, -2.62052},{2.6521, 1.68652, -2.62057}};
  2086. };
  2087. class Land_Airport_02_hangar_left_F
  2088. {
  2089. table = "Industrial";
  2090. positions[] = {{-12.4209, -24.9082, -1.85819},{-7.03906, -17.4277, -0.645023},{-7.00854, -8.0498, -0.638107},{-6.97998, 1.14063, -0.631704},{-12.4202, -12.9775, -1.85804},{-12.416, -3.68555, -1.85711},{-12.4124, 5.6084, -1.85627},{-12.4209, -22.374, -1.85819},{-1.84839, -10.2188, 2.96794},{-5.51953, -14.9307, 1.87583},{-5.51953, -4.78809, 1.87583},{-5.51953, 5.1543, 1.87584},{-2.79541, 18.9854, 2.68622},{-4.56616, 12.959, 2.15945},{3.58447, -8.81055, 4.5841},{3.58423, 6.24512, 4.58404},{0.876221, -15.1367, 3.77843},{0.876221, 0.0351563, 3.77843},{0.876221, 8.45215, 3.77843},{2.63867, 19.2529, 4.30273},{5.93921, -22.7969, 5.28464},{9.00952, 5.37305, 6.19798},{6.29248, -4.72559, 5.38974},{8.06177, 19.5205, 5.91602},{6.29248, 13.4961, 5.38974},{11.3809, -24.5371, 6.90338},{11.7393, -7.10938, 7.01006},{11.7344, 8.98828, 7.00859},{11.7375, -18.5557, 7.00955},{13.4956, 19.791, 7.53254},{-4.20142, -21.4131, -1.28552},{-4.15698, -17.2041, -0.9673},{-4.15381, -12.2305, -0.945713},{-4.15381, -7.06836, -0.970572},{-4.15942, -2.0752, -0.951628},{-4.14771, 2.85547, -0.980427},{-4.15942, 6.97559, -0.951557},{-4.17969, 11.1748, -0.973799},{-4.15942, 16.6045, -0.951628},{0.163086, 19.9814, -1.28553},{5.12451, 19.6875, -1.28553}};
  2091. };
  2092. class Land_Airport_02_hangar_right_F
  2093. {
  2094. table = "Industrial";
  2095. positions[] = {{4.39331, -25.1045, -0.900631},{10.4124, -15.0947, -1.34333},{7.27393, -12.7598, -0.635839},{9.71753, -10.458, -1.18671},{10.4124, -1.17871, -1.34333},{7.271, 5.80469, -0.635187},{12.71, -3.68457, -1.86125},{12.7129, -22.374, -1.8619},{4.38867, -17.2627, -0.984121},{4.38892, -7.06055, -0.967278},{4.39868, 2.81641, -0.997353},{4.38623, 11.1592, -0.970123},{0.162598, 19.6875, -1.32163},{-10.3376, 19.9814, -1.32163},{-16.4546, 19.6875, -1.32163},{-4.83081, 19.877, -4.72163},{-8.40137, 19.6875, -4.72162},{-15.3335, 19.9814, -4.72163},{7.37769, -12.3145, -4.95163},{2.14453, -10.2188, 3.00035},{5.81641, -14.9297, 1.90639},{5.81641, -4.78711, 1.90639},{5.81641, 5.15527, 1.90639},{3.09253, 18.9854, 2.71792},{4.86206, 12.959, 2.19076},{-3.28833, -8.81055, 4.61879},{-3.28833, 6.24512, 4.61879},{-0.579834, -15.1348, 3.81193},{-0.579834, 0.0371094, 3.81193},{-0.579834, 8.4541, 3.81193},{-2.34253, 19.2549, 4.33709},{-5.64233, -22.7969, 5.32012},{-8.71118, 5.375, 6.23442},{-5.99707, -4.72461, 5.4258},{-7.76514, 19.5234, 5.95251},{-5.99707, 13.4971, 5.4258},{-11.0835, -24.5371, 6.94116},{-17.6074, -13.8564, 8.88466},{-17.6074, 1.31543, 8.88471},{-11.4426, -7.10938, 7.04812},{-11.4392, 8.98828, 7.04716},{-11.4426, -18.5547, 7.04812},{-13.2024, 19.791, 7.57239},{-10.5923, 18.8203, -4.68848},{-14.3291, 18.8438, -1.39008},{-15.3164, 18.5908, -1.32163},{-11.6658, 18.499, -4.05376}};
  2096. };
  2097. class Land_ContainerCrane_01_F
  2098. {
  2099. table = "Industrial";
  2100. positions[] = {{21.9863, 10.7412, -29.7253},{16.7583, 6.07129, 1.22021},{9.33081, 3.04004, 1.2331},{-3.68262, 6.24805, 1.23471},{-12.2251, 7.34277, 1.23625},{-14.718, -1.59375, 1.23302},{-8.86938, -8.3252, 1.23632},{8.94922, -4.05078, 1.2331},{18.71, -3.98828, 1.23309}};
  2101. };
  2102. class Land_Crane_F
  2103. {
  2104. table = "Industrial";
  2105. positions[] = {{-7.68018, -1.75293, 5.74145},{-8.2002, 1.41895, 5.74145},{-10.165, 0.147461, 5.74145}};
  2106. };
  2107. class Land_DryDock_01_end_F
  2108. {
  2109. table = "Industrial";
  2110. positions[] = {{16.4692, 7.59668, 5.13889},{20.4192, -3.24316, 5.13889},{16.4756, -9.06152, 5.2074},{20.5193, -12.4082, 5.13889},{13.2393, 7.88184, -5.54043},{7.13916, 14.9219, -5.54043},{2.26929, -11.4385, -5.54043},{-16.304, 7.58594, 5.13889},{-20.1809, -3.24316, 5.13889},{-19.8108, -7.58203, 5.13889},{-16.3308, -11.7334, 5.17903},{-13.0007, 7.88184, -5.54043},{-1.50073, -2.81836, -5.54043},{-6.90088, 14.9219, -5.54043},{7.03149, -17.3389, -5.54042},{-6.79297, -17.3389, -5.54043}};
  2111. };
  2112. class Land_DryDock_01_middle_F
  2113. {
  2114. table = "Industrial";
  2115. positions[] = {{14.4111, -8.98047, -5.51673},{13.1912, 7.58008, -5.51673},{5.41113, 7.47949, -5.51673},{8.42114, -5.08984, -5.51673},{3.25098, -9.7998, -5.51673},{-13.5889, 8.37988, -5.51673},{-4.98901, 7.43945, -5.51673},{-19.3076, 8.96875, 5.10521},{-17.541, 0.825195, 5.10521},{-11.0889, -8.13965, -5.51673},{17.5417, -9.99805, 5.10564},{17.5461, 0.888672, 5.10564}};
  2116. };
  2117. class Land_GantryCrane_01_F
  2118. {
  2119. table = "Industrial";
  2120. positions[] = {{-2.271, 1.99902, 8.67491},{-2.19482, -2.53613, 8.67491}};
  2121. };
  2122. class Land_HaulTruck_01_abandoned_F
  2123. {
  2124. table = "Industrial";
  2125. positions[] = {{-0.733643, -4.39258, 1.27749},{1.72559, -4.19336, 1.27749}};
  2126. };
  2127. class Land_MiningShovel_01_abandoned_F
  2128. {
  2129. table = "Industrial";
  2130. positions[] = {{5.90039, -8.41406, -0.680836},{5.30249, 0.911133, -0.750746},{1.73145, -7.10645, 4.10613},{-0.78125, -7.8584, 3.78039},{-2.5144, -11.2598, -0.662592}};
  2131. };
  2132. class Land_MobileCrane_01_F
  2133. {
  2134. table = "Industrial";
  2135. positions[] = {{6.61865, 5.51465, -19.4957},{12.4185, 5.52832, -19.4957},{6.77734, 2.48828, -19.1123},{6.82275, 0.642578, -19.1123},{6.76855, -2.50488, -19.1123},{6.61865, -5.69727, -19.4957},{12.4185, -5.68359, -19.4957},{8.16138, -2.75, -14.0492},{14.1155, -2.79102, -14.0492},{13.1208, 2.95801, -14.0492},{8.25806, 2.69824, -14.0492},{9.73926, -3.37109, -8.33325},{7.85254, -3.33691, -8.33325}};
  2136. };
  2137. class Land_MobileCrane_01_hook_F
  2138. {
  2139. table = "Industrial";
  2140. positions[] = {{6.61841, 5.51465, -19.4957},{12.4185, 5.52832, -19.4957},{6.77734, 2.48828, -19.1123},{6.82275, 0.642578, -19.1123},{6.76855, -2.50488, -19.1123},{6.61865, -5.69727, -19.4957},{12.4185, -5.68359, -19.4957},{8.16138, -2.75, -14.0492},{14.1155, -2.79102, -14.0492},{13.1208, 2.95801, -14.0492},{8.25806, 2.69824, -14.0492},{9.73926, -3.37109, -8.33325},{7.85254, -3.33691, -8.33325}};
  2141. };
  2142. class Land_ReservoirTower_F
  2143. {
  2144. table = "Industrial";
  2145. positions[] = {{-1.8457, 1.83105, -1.8427},{1.28613, -3.4502, -1.82695}};
  2146. };
  2147. class Land_SCF_01_chimney_F
  2148. {
  2149. table = "Industrial";
  2150. positions[] = {{-2.90894, -3.98145, -8.22002},{-5.19727, 0.483398, -8.22001},{-2.74243, 3.57422, -8.22002},{1.39404, -2.61523, -8.22002},{-2.94604, -3.01563, 24.2917},{-4.51831, 0.609375, 24.2917},{-2.34399, 2.65234, 24.2917},{1.09497, 2.86914, 24.5735},{0.949951, -1.91992, 24.2917}};
  2151. };
  2152. class Land_SCF_01_clarifier_F
  2153. {
  2154. table = "Industrial";
  2155. positions[] = {{6.31934, 1.11719, -5.07754},{6.35181, -5.78027, -2.05335},{5.80225, 1.04688, 0.371124},{4.8501, 1.52344, 0.371122},{4.57251, -5.60938, -2.05335},{1.25488, -3.93555, 0.371124},{1.25488, 5.8916, 0.371126},{-4.4187, -3.93555, 0.371172},{-4.4187, 5.8916, 0.371126},{-7.25879, 0.977539, 0.371134},{-5.23145, 3.17676, 7.60777},{-5.40259, -1.02637, 7.59169},{-1.8186, -3.29688, 7.60185},{1.91064, -1.34082, 7.60829},{2.08765, 2.9043, 7.62741},{-1.5791, 4.27539, 7.77099}};
  2156. };
  2157. class Land_SCF_01_condenser_F
  2158. {
  2159. table = "Industrial";
  2160. positions[] = {{-7.45361, 12.4902, -1.53951},{-4.16528, 12.1348, -1.55146},{-7.45361, 8.12109, -1.53947},{-4.35181, 8.12012, -1.53409},{-5.70166, 6.4541, -1.55146},{-5.93872, 10.8223, -1.55146},{-5.64185, 9.74805, -1.55146},{4.58057, 3.21387, 1.96246},{2.80396, 0.202148, 1.96246},{6.25342, 0.44043, 1.96246},{4.53931, -1.2666, 1.96246}};
  2161. };
  2162. class Land_SCF_01_crystallizer_F
  2163. {
  2164. table = "Industrial";
  2165. positions[] = {{2.20264, 7.78516, -5.9044},{8.84692, 7.78027, -2.77431},{2.27319, 7.78516, -0.472961},{8.79834, 7.79199, 2.56268},{2.07471, 6.86914, 4.95764},{-0.962646, 5.40723, 4.97862},{-4.38184, 5.43555, 4.9786},{-7.49756, 5.44922, 4.9786},{-0.962402, -1.41113, 4.98178},{-7.49756, -1.36914, 4.98496},{-9.3103, 3.76563, 4.98026},{-9.31396, -0.415039, 4.98437},{-4.08789, -0.424805, 4.9833},{4.40259, 5.44922, 4.97856},{4.40283, -1.36914, 4.97918},{5.99756, 3.74316, 4.97839},{5.98828, -0.450195, 4.97857},{1.42236, 3.75684, 4.9802},{-0.962646, 5.40723, -0.465189},{-7.49756, 5.44922, -0.465189},{-9.37109, 3.75684, -0.465189},{-9.36157, 1.57715, -0.465191},{-4.04639, 3.75684, -0.465189},{1.28687, 0.494141, -0.465189},{5.12744, 3.75684, -0.465189},{1.25757, 1.57129, -0.465189},{5.62524, 5.44922, -0.465189},{5.62524, 0.507813, -0.465189},{8.48071, 3.75684, -0.465189},{8.5022, 1.57129, -0.465189}};
  2166. };
  2167. class Land_SCF_01_crystallizerTowers_F
  2168. {
  2169. table = "Industrial";
  2170. positions[] = {{4.72705, -3.80957, 12.1495},{8.42017, -2.21777, 12.1495},{8.79761, 1.83398, 12.1495},{6.02148, 4.5293, 12.1495},{2.47388, 2.88184, 12.1495},{1.92188, -1.41602, 12.189},{-5.33594, -3.83496, 12.1575},{-1.43774, -2.02148, 12.1575},{-1.31299, 1.89746, 12.5944},{-4.27319, 4.5293, 12.1575},{-7.72998, 2.84473, 12.1575},{-8.40088, -1.15332, 12.1887},{0.365723, 0.235352, 12.1987},{-3.44092, -3.75098, -6.98271},{-0.304688, -3.69727, -6.98271},{1.25513, -2.48535, -6.9827},{-2.46533, -2.5498, -6.98255},{3.07031, -3.72168, -6.98271},{4.90088, -3.61523, -6.98271}};
  2171. };
  2172. class Land_SCF_01_diffuser_F
  2173. {
  2174. table = "Industrial";
  2175. positions[] = {{-8.25195, 23.5225, -2.37402},{-1.9043, 23.3721, -2.37402},{2.28149, 23.7813, -2.37402},{6.88208, 23.6113, -2.37402},{6.71021, 9.92188, -2.37402},{6.87622, 18.3623, -2.37402},{6.83472, 1.33789, -2.37402},{6.87622, -7.25293, -2.37402},{6.34106, -23.2354, 2.33232},{3.65186, -21.8379, 2.33232},{0.114014, -23.5957, 2.35555},{-7.36475, -23.2051, 2.33232},{-4.10059, -21.793, 2.33232},{-5.35229, -12.7754, 4.52572},{1.0542, -14.4561, 4.52572},{4.99634, -17.8154, 4.52572},{3.01147, -18.8594, 4.52572},{2.86426, -12.6387, 4.52572}};
  2176. };
  2177. class Land_SCF_01_feeder_F
  2178. {
  2179. table = "Industrial";
  2180. positions[] = {{4.86865, 12.1465, -3.33626},{0.436523, 17.4316, -3.33626},{-4.55176, 14.5176, -3.33626}};
  2181. };
  2182. class Land_SCF_01_generalBuilding_F
  2183. {
  2184. table = "Industrial";
  2185. positions[] = {{14.334, -0.46582, -4.87007},{14.334, 2.69629, -4.87006},{14.0728, 4.17676, -4.87005},{1.07861, -24.2744, -0.354742},{-4.60767, -24.2568, -0.354109},{-1.45044, -14.6309, -4.84514},{0.82959, -21.9668, -4.84514},{-5.23193, -15.5225, -4.84514},{-5.23193, -20.3779, -4.84514},{0.897949, -16.6621, -4.84514},{-3.10083, -18.3438, -4.84514},{-7.53979, -8.16211, -0.35066},{-5.82178, -5.48535, 7.53344},{-5.82837, 7.19727, 7.57747},{-5.91724, 15.1963, 7.53357},{-6.04443, -11.5645, 7.44203},{1.63818, 17.5078, 11.2323},{1.83838, -11.5645, 11.3045},{-2.40601, 12.165, 9.25619},{1.10352, 2.26465, 10.804},{-4.48413, 1.98926, 8.16404},{1.06665, 20.3691, 10.9818},{-4.50415, 20.6543, 8.2311},{12.0906, -3.14453, 7.41085},{11.71, 2.01367, 7.5915},{12.0908, 7.18945, 7.41079},{11.71, 12.3467, 7.5915},{12.0938, 17.5186, 7.41184},{4.2146, -3.13965, 11.2645},{4.19458, 2.02051, 11.2351},{4.22046, 10.0293, 11.2857},{4.23657, 15.1973, 11.3193},{4.85327, 20.3662, 11.0314},{10.4482, 20.6523, 8.25541},{4.86206, -8.07227, 10.9426},{10.4482, -8.36719, 8.19658},{5.14331, -11.7627, 10.8526},{10.4604, -11.9209, 8.23243},{2.42944, -22.4482, 3.94098},{4.13257, -17.0049, -0.361994}};
  2186. };
  2187. class Land_SCF_01_storageBin_big_F
  2188. {
  2189. table = "Industrial";
  2190. positions[] = {{1.37769, 13.627, 7.90879},{9.89014, 6.30371, 8.00624},{10.1826, -6.13867, 8.00229},{-5.81763, -10.5547, 7.99491},{-11.9951, 1.1416, 7.99358},{-5.48584, 11.04, 7.98675}};
  2191. };
  2192. class Land_SCF_01_storageBin_medium_F
  2193. {
  2194. table = "Industrial";
  2195. positions[] = {{-6.86719, 2.24902, 6.72745},{0.320068, 7.36816, 6.72422},{6.81982, 2.11621, 6.73727},{-2.69751, -6.45508, 6.73897},{2.38794, -6.66699, 6.73858}};
  2196. };
  2197. class Land_SCF_01_storageBin_small_F
  2198. {
  2199. table = "Industrial";
  2200. positions[] = {{-3.10742, 2.34473, 7.31781},{0.0847168, 4.62598, 7.32273},{2.97827, 2.28809, 7.34985},{-1.2583, -1.51563, 7.33663},{1.01611, -1.61035, 7.34604}};
  2201. };
  2202. class Land_SCF_01_warehouse_F
  2203. {
  2204. table = "Industrial";
  2205. positions[] = {{2.38428, 10.7109, 3.95826},{-4.36938, 17.123, 2.78613},{11.988, 15.9063, 3.34447},{9.17725, 5.1377, 4.36988},{9.10986, -5.03711, 4.3945},{0.108398, -5.5459, 3.1112}};
  2206. };
  2207. class Land_SCF_01_washer_F
  2208. {
  2209. table = "Industrial";
  2210. positions[] = {{-4.57568, 8.00684, -1.80085},{3.07935, 9.40527, -1.80085},{6.34424, 6.25488, -1.80085},{5.36182, 2.12109, -1.74189},{6.32837, -1.6582, -1.80085},{5.3855, -5.95801, -1.69704},{-1.10571, 7.36523, -1.80085},{-5.48535, 5.35352, -1.80085},{-6.25439, 2.28418, -1.80086},{-5.21948, -1.6582, -1.80085},{-6.37622, -5.96875, -1.80085},{-5.26172, -11.3262, -1.73402},{-0.0224609, 1.28223, 2.17754},{-4.55737, 1.30859, 2.1776},{-6.23975, 6.87695, 2.1776},{6.92871, 4.69336, 2.1776}};
  2211. };
  2212. class Land_SM_01_reservoirTower_F
  2213. {
  2214. table = "Industrial";
  2215. positions[] = {{-2.59717, 0.891602, -1.99113},{1.46973, -3.23242, -1.98599},{0.704834, 2.8623, -2.00094}};
  2216. };
  2217. class Land_SM_01_shed_F
  2218. {
  2219. table = "Industrial";
  2220. positions[] = {{-7.63892, 0.208984, -1.59421},{-7.74121, 4.16016, -1.59421},{1.08545, 2.70996, -1.59421},{-3.43799, -0.211914, -1.59421},{-6.10669, 6.38477, -1.59421},{5.42358, 4.74316, -1.59421},{4.89355, -0.0634766, -1.59421},{10.5295, 1.25781, -1.59421},{14.3044, 2.56445, -1.59421},{14.6626, -1.02832, -1.59421}};
  2221. };
  2222. class Land_SM_01_shed_unfinished_F
  2223. {
  2224. table = "Industrial";
  2225. positions[] = {{-7.58374, 0.210938, -1.64209},{-7.68628, 4.16211, -1.64209},{1.14063, 2.71191, -1.64209},{-3.38281, -0.208984, -1.64209},{-6.05151, 6.3877, -1.64209},{5.47876, 4.74512, -1.64209},{4.94849, -0.0615234, -1.64209},{10.5845, 1.25977, -1.64209},{14.3594, 2.56738, -1.64209},{14.7175, -1.02539, -1.64209}};
  2226. };
  2227. class Land_StorageTank_01_large_F
  2228. {
  2229. table = "Industrial";
  2230. positions[] = {{-5.26636, -8.7168, 0.685705},{7.5376, -8.96484, 0.685705},{9.66333, -14.584, 1.25553},{-9.50464, -14.8418, 1.24478},{-17.2966, 3.29102, 1.2443},{-3.35693, 17.2061, 1.25514},{2.25879, 9.52734, 0.685705}};
  2231. };
  2232. class Land_StorageTank_01_small_F
  2233. {
  2234. table = "Industrial";
  2235. positions[] = {{-0.796387, 0.594727, 4.88818},{-6.31348, 3.91211, 3.66358},{2.63135, 7.28418, 3.60974},{7.54492, -2.71191, 3.30923},{-3.45142, -8.1748, 2.89969}};
  2236. };
  2237. class Land_SY_01_conveyor_end_F
  2238. {
  2239. table = "Industrial";
  2240. positions[] = {{-0.00488281, 2.75, 5.24897},{-1.54126, -0.825195, 5.24897}};
  2241. };
  2242. class Land_SY_01_crusher_F
  2243. {
  2244. table = "Industrial";
  2245. positions[] = {{8.23657, 6.33301, -1.09768},{7.81909, 16.5752, -1.08356},{-2.04224, 16.8691, -1.09297},{-7.8064, 8.47754, -1.08161},{2.10229, 14.3193, 11.3212},{6.33032, 4.37402, 11.7734},{-3.43262, 3.04688, 11.8368},{-7.92847, 9.2002, 11.5554},{0.595947, 8.41211, 11.5916}};
  2246. };
  2247. class Land_SY_01_reclaimer_F
  2248. {
  2249. table = "Industrial";
  2250. positions[] = {{-14.1489, 2.63379, -2.28311},{-14.2458, 5.48145, -2.28683},{-13.6816, 1.11719, -2.28615},{-11.7661, -0.139648, -2.28826},{-14.9082, 1.87012, -1.96475}};
  2251. };
  2252. class Land_SY_01_shiploader_arm_F
  2253. {
  2254. table = "Industrial";
  2255. positions[] = {{-4.59619, 2.30664, 0.389979},{10.1455, 2.12012, 0.389979},{14.0559, -2.29004, 0.389979},{-0.133545, -2.05566, 0.389979}};
  2256. };
  2257. class Land_SY_01_shiploader_F
  2258. {
  2259. table = "Industrial";
  2260. positions[] = {{20.2991, 5.68164, -2.65544},{21.0994, 3.10059, 4.28977},{6.71289, 1.40137, 3.15136},{-3.97119, 1.40234, 3.09128},{-14.6008, 1.36523, 3.04038},{-21.2002, 0.898438, 5.34398},{6.71411, -2.24316, 3.08376},{-3.96802, -2.23438, 3.02955},{-14.6001, -2.16406, 3.02285},{-20.8071, -1.34668, 5.3525}};
  2261. };
  2262. class Land_TTowerBig_1_F
  2263. {
  2264. table = "Industrial";
  2265. positions[] = {{1.86597, -0.705078, 2.92152},{0.969727, 1.45703, 2.93679},{-1.77271, 1.64063, 2.94032},{-0.356689, -2.06641, 2.9476}};
  2266. };
  2267. class Land_Walkover_01_F
  2268. {
  2269. table = "Industrial";
  2270. positions[] = {{0.026123, 0.611328, 1.36034}};
  2271. };
  2272.  
  2273. ///////////////////////////////////////////////////////////////////////////
  2274. // Factories
  2275. ///////////////////////////////////////////////////////////////////////////
  2276. class Land_DPP_01_mainFactory_F
  2277. {
  2278. table = "Factories";
  2279. positions[] = {{-21.6887, 4.69238, -8.67055},{-21.6733, -14.5742, -8.68732},{-19.5613, -8.34766, -4.42347},{0.0639648, -5.23926, 1.12253},{0.453125, -14.0039, 1.12253},{-7.25708, -15.957, 1.12253},{-8.34741, -9.97949, 1.12253},{-7.28394, 3.64258, 1.12253},{3.70215, 9.25879, 1.12253},{7.29419, 5.17871, -0.317474},{8.38037, -7.69629, -0.317478},{8.1936, -14.2451, -0.317478},{12.5447, -1.97852, -4.25747},{13.1741, 1.39941, -4.25747},{12.9707, 4.99414, -4.25747},{17.3352, -1.26465, -5.51371},{16.3391, -11.3018, -4.07347},{16.1682, -7.34863, -4.07347},{14.2576, -17.1299, -4.07347},{20.6343, -4.13281, -7.43347},{18.5691, 5.11328, -7.64927}};
  2280. };
  2281. class Land_DPP_01_smallFactory_F
  2282. {
  2283. table = "Factories";
  2284. positions[] = {{9.78833, -1.48145, 1.69896},{-1.29395, 3.17383, 3.0918},{-8.48071, -4.74707, 3.28734},{2.12598, -5.53613, 3.2094},{6.54004, 0.380859, 3.26465}};
  2285. };
  2286. class Land_SCF_01_boilerBuilding_F
  2287. {
  2288. table = "Factories";
  2289. positions[] = {{19.9551, 13.1162, -13.218},{21.5356, 1.60742, -13.218},{11.6555, 4.40039, -13.218},{13.1863, 12.2744, -13.218},{18.5403, 11.7012, -8.65283},{21.9075, 0.967773, -8.67283},{12.26, -8.82227, -5.55016},{8.29736, -21.2119, 0.826183},{4.57446, -14.8301, 1.65308},{5.99463, -12.5732, 1.36908},{5.23267, -5.7373, 1.49743},{4.57446, -4.2998, 1.63667},{5.99414, -2.46094, 1.34452},{10.4329, -0.328125, 0.421211},{21.0168, 9.04688, -16.6483},{-4.15381, -14.8213, 1.55791},{-4.17993, -13.3525, 1.56871},{-5.60059, -12.583, 1.30381},{-9.26074, -0.237305, 0.512077},{-4.14819, -4.30078, 1.61219},{-5.60522, -2.44141, 1.27797},{-4.01392, 9.2998, 7.56076},{4.7417, 1.46777, 7.63056},{-3.20605, 3.65332, 7.73126},{3.93311, 6.58203, 7.81587},{9.89307, 10.834, 0.533249},{4.55322, 15.792, 1.64978},{6.08081, 15.3867, 1.32867},{4.28442, 16.8301, 1.70323},{8.29419, 20.9619, 0.847332},{-9.09326, 10.5137, 0.533012},{-5.5918, 15.3896, 1.23261},{-3.76025, 16.832, 1.60073},{-4.81055, 18.3252, 1.37109},{-12.2722, 20.1699, -4.55378},{-17.0876, -14.2314, -3.77558},{-17.0906, -10.9219, -3.76845},{-10.5383, -17.9766, -5.09464},{-12.7368, -2.11035, -4.39582},{-13.4448, 7.83496, -4.15535},{-10.5427, -21.3369, -5.09303},{-1.83618, 23.6367, -13.188}};
  2290. };
  2291. };
  2292. class CfgLootTables
  2293. {
  2294. /**
  2295. Result of 100 rounds:
  2296. rhs_weap_pya
  2297. U_C_Journalist
  2298. rhs_weap_m16a4_carryhandle
  2299. ItemRadio
  2300. rhs_weap_pya
  2301. rhs_6b23_ML_6sh92_headset_mapcase
  2302. rhs_6b13_6sh92_radio
  2303. H_Cap_headphones
  2304. rhsusf_weap_m1911a1
  2305. rhsusf_mich_bare_alt_tan
  2306. rhs_weap_makarov_pmm
  2307. rhs_100Rnd_762x54mmR_green
  2308. rhs_uniform_df15
  2309. rhsusf_ach_bare_tan_headset
  2310. rhs_uniform_cu_ucp_10th
  2311. rhsusf_mich_bare_alt
  2312. rhs_uniform_gorka_r_g
  2313. rhsusf_5Rnd_300winmag_xm2010
  2314. rhs_weap_makarov_pmm
  2315. rhs_30Rnd_545x39_7N10_AK
  2316. rhs_6sh92_vog_headset
  2317. rhs_6b13_Flora_6sh92_vog
  2318. rhs_6b28_ess_bala
  2319. rhsusf_mich_bare_norotos_arc_alt_tan
  2320. rhs_6b23_ML_rifleman
  2321. rhs_6b23_ML_6sh92
  2322. rhs_uniform_gorka_r_y
  2323. rhs_45Rnd_545X39_AK
  2324. rhs_Booniehat_ocp
  2325. rhsusf_iotv_ocp_Teamleader
  2326. rhsusf_lwh_helmet_marpatd_headset
  2327. B_Kitbag_sgg
  2328. rhs_mag_30Rnd_556x45_Mk318_Stanag
  2329. rhs_6b27m_digi_ess_bala
  2330. rhs_weap_XM2010_wd
  2331. rhs_weap_makarov_pmm
  2332. rhs_weap_makarov_pmm
  2333. rhsusf_iotv_ocp_Teamleader
  2334. rhs_30Rnd_762x39mm_89
  2335. rhs_weap_m16a4
  2336. H_Cap_press
  2337. rhs_uniform_cu_ucp_1stcav
  2338. Exile_Item_Beer
  2339. rhsusf_iotv_ucp_Medic
  2340. rhs_weap_pya
  2341. rhs_uniform_cu_ucp_101st
  2342. rhs_weap_m249_pip_S
  2343. rhs_weap_ak103_1
  2344. rhs_weap_svdp_npz
  2345. rhs_mag_30Rnd_556x45_M855A1_Stanag_No_Tracer
  2346. rhs_weap_makarov_pmm
  2347. rhs_chdkz_uniform_2
  2348. rhs_6b23_6sh92_radio
  2349. rhs_weap_pya
  2350. rhs_6b23_ML_6sh92_radio
  2351. rhs_weap_svdp_npz
  2352. rhs_weap_pya
  2353. rhs_6b27m_digi_bala
  2354. rhs_weap_m240B_CAP
  2355. rhs_weap_m16a4_carryhandle_pmag
  2356. rhs_weap_makarov_pmm
  2357. rhs_6b28_green
  2358. rhs_weap_pya
  2359. rhs_30Rnd_762x39mm_tracer
  2360. optic_Holosight_smg
  2361. rhs_weap_makarov_pmm
  2362. rhsusf_weap_m1911a1
  2363. rhs_uniform_gorka_r_g
  2364. rhs_uniform_vdv_flora
  2365. rhsusf_weap_m1911a1
  2366. Exile_Item_PlasticBottleDirtyWater
  2367. rhs_6b27m_bala
  2368. Binocular
  2369. rhsusf_iotv_ucp_Squadleader
  2370. rhs_200rnd_556x45_T_SAW
  2371. rhs_uniform_cu_ocp_82nd
  2372. rhsusf_iotv_ocp_Rifleman
  2373. rhs_6b23_rifleman
  2374. Exile_Item_InstantCoffee
  2375. rhs_uniform_gorka_r_y
  2376. rhs_6b27m_digi
  2377. rhs_30Rnd_545x39_AK_no_tracers
  2378. rhsusf_ach_helmet_headset_ucp
  2379. rhs_uniform_cu_ocp
  2380. rhs_uniform_FROG01_m81
  2381. rhs_30Rnd_545x39_7N22_AK
  2382. rhs_weap_svds
  2383. rhsusf_iotv_ucp
  2384. rhs_6b23_ML_rifleman
  2385. B_AssaultPack_mcamo
  2386. rhs_weap_pya
  2387. rhs_uniform_flora
  2388. Exile_Item_BBQSandwich
  2389. rhs_6b28
  2390. rhs_30Rnd_545x39_7N10_AK
  2391. rhs_weap_pya
  2392. rhs_weap_makarov_pmm
  2393. rhs_6sh92_vog
  2394. rhs_6sh46
  2395. rhs_Booniehat_marpatd
  2396. */
  2397. class CivillianLowerClass
  2398. {
  2399. count
  2400. half
  2401. halfIndex
  2402. sum
  2403. items[]
  2404. {
  2405. {546.149645002731, "rhsusf_weap_m1911a1"}, // 5.46%
  2406. {1092.29929000546, "rhs_weap_pya"}, // 5.46%
  2407. {1638.44893500819, "rhs_weap_makarov_pmm"}, // 5.46%
  2408. {1693.06389950847, "Exile_Item_Can_Empty"}, // 0.55%
  2409. {1747.67886400874, "Exile_Item_ToiletPaper"}, // 0.55%
  2410. {1802.29382850901, "Exile_Item_PlasticBottleEmpty"}, // 0.55%
  2411. {1853.49535772802, "rhs_uniform_df15"}, // 0.51%
  2412. {1904.69688694702, "rhs_uniform_cu_ucp"}, // 0.51%
  2413. {1955.89841616603, "rhs_uniform_cu_ucp_82nd"}, // 0.51%
  2414. {2007.09994538504, "rhs_uniform_cu_ucp_1stcav"}, // 0.51%
  2415. {2058.30147460404, "rhs_uniform_cu_ucp_10th"}, // 0.51%
  2416. {2109.50300382305, "rhs_uniform_cu_ucp_101st"}, // 0.51%
  2417. {2160.70453304205, "rhs_uniform_cu_ocp_82nd"}, // 0.51%
  2418. {2211.90606226106, "rhs_uniform_cu_ocp_1stcav"}, // 0.51%
  2419. {2263.10759148006, "rhs_uniform_cu_ocp_10th"}, // 0.51%
  2420. {2314.30912069907, "rhs_uniform_mvd_izlom"}, // 0.51%
  2421. {2365.51064991808, "rhs_chdkz_uniform_1"}, // 0.51%
  2422. {2416.71217913708, "rhs_chdkz_uniform_2"}, // 0.51%
  2423. {2467.91370835609, "rhs_chdkz_uniform_3"}, // 0.51%
  2424. {2519.11523757509, "rhs_chdkz_uniform_4"}, // 0.51%
  2425. {2570.3167667941, "rhs_chdkz_uniform_5"}, // 0.51%
  2426. {2621.51829601311, "rhs_uniform_gorka_r_y"}, // 0.51%
  2427. {2672.71982523211, "rhs_uniform_vdv_flora"}, // 0.51%
  2428. {2723.92135445112, "rhs_uniform_flora"}, // 0.51%
  2429. {2775.12288367012, "rhs_uniform_msv_emr"}, // 0.51%
  2430. {2826.32441288913, "rhs_uniform_vdv_emr_des"}, // 0.51%
  2431. {2877.52594210813, "rhs_uniform_vdv_mflora"}, // 0.51%
  2432. {2928.72747132714, "rhs_uniform_mflora_patchless"}, // 0.51%
  2433. {2979.92900054615, "rhs_uniform_FROG01_wd"}, // 0.51%
  2434. {3031.13052976515, "rhs_uniform_FROG01_d"}, // 0.51%
  2435. {3082.33205898416, "rhs_uniform_FROG01_m81"}, // 0.51%
  2436. {3133.53358820316, "rhs_uniform_flora_patchless_alt"}, // 0.51%
  2437. {3184.73511742217, "rhs_uniform_flora_patchless"}, // 0.51%
  2438. {3235.93664664118, "rhs_uniform_emr_patchless"}, // 0.51%
  2439. {3287.13817586018, "rhs_uniform_m88_patchless"}, // 0.51%
  2440. {3338.33970507919, "rhs_uniform_cu_ocp"}, // 0.51%
  2441. {3389.54123429819, "rhs_uniform_gorka_r_g"}, // 0.51%
  2442. {3440.7427635172, "rhs_uniform_cu_ocp_101st"}, // 0.51%
  2443. {3471.08441046179, "rhs_6b23_6sh92_vog"}, // 0.30%
  2444. {3501.42605740639, "rhs_6b23_6sh92_radio"}, // 0.30%
  2445. {3531.76770435099, "rhs_6b23_6sh92_vog_headset"}, // 0.30%
  2446. {3562.10935129558, "rhs_6b23_crew"}, // 0.30%
  2447. {3592.45099824018, "rhs_6b23_engineer"}, // 0.30%
  2448. {3622.79264518477, "rhs_6b23_rifleman"}, // 0.30%
  2449. {3653.13429212937, "rhs_6b23_sniper"}, // 0.30%
  2450. {3683.47593907397, "rhs_6b23_6sh92_headset_mapcase"}, // 0.30%
  2451. {3713.81758601856, "rhs_6b23_ML"}, // 0.30%
  2452. {3744.15923296316, "rhs_6b23_ML_6sh92_headset"}, // 0.30%
  2453. {3774.50087990776, "rhs_6b23_ML_6sh92_headset_mapcase"}, // 0.30%
  2454. {3804.84252685235, "rhs_6b23_ML_6sh92_radio"}, // 0.30%
  2455. {3835.18417379695, "rhs_6b23_ML_6sh92_vog"}, // 0.30%
  2456. {3865.52582074154, "rhs_6b23_ML_6sh92_vog_headset"}, // 0.30%
  2457. {3895.86746768614, "rhs_6b23_ML_crewofficer"}, // 0.30%
  2458. {3926.20911463074, "rhs_6b23_ML_6sh92"}, // 0.30%
  2459. {3956.55076157533, "rhs_6b23_ML_crew"}, // 0.30%
  2460. {3986.89240851993, "rhs_6b23_6sh92_headset"}, // 0.30%
  2461. {4017.23405546452, "rhs_6b23"}, // 0.30%
  2462. {4047.57570240912, "rhs_6sh92_headset"}, // 0.30%
  2463. {4077.91734935372, "rhs_6sh92_radio"}, // 0.30%
  2464. {4108.25899629831, "rhs_6sh92_vog"}, // 0.30%
  2465. {4138.60064324291, "rhs_6sh92_vog_headset"}, // 0.30%
  2466. {4168.94229018751, "rhs_vydra_3m"}, // 0.30%
  2467. {4199.2839371321, "rhs_6sh92_digi"}, // 0.30%
  2468. {4229.6255840767, "rhs_6b23_6sh92"}, // 0.30%
  2469. {4259.96723102129, "rhs_6b13_6sh92_vog"}, // 0.30%
  2470. {4290.30887796589, "rhs_6b23_digi_6sh92_vog_headset"}, // 0.30%
  2471. {4320.65052491049, "rhs_6b13_Flora"}, // 0.30%
  2472. {4350.99217185508, "rhs_6b13_Flora_6sh92"}, // 0.30%
  2473. {4381.33381879968, "rhs_6b13_Flora_6sh92_headset_mapcase"}, // 0.30%
  2474. {4411.67546574428, "rhs_6b13_Flora_6sh92_vog"}, // 0.30%
  2475. {4442.01711268887, "rhs_6b13_Flora_crewofficer"}, // 0.30%
  2476. {4472.35875963347, "rhs_6b13_6sh92_radio"}, // 0.30%
  2477. {4502.70040657807, "rhs_6b23_ML_engineer"}, // 0.30%
  2478. {4533.04205352266, "rhsusf_iotv_ocp"}, // 0.30%
  2479. {4563.38370046726, "rhs_6b23_ML_sniper"}, // 0.30%
  2480. {4593.72534741186, "rhsusf_iotv_ucp_Grenadier"}, // 0.30%
  2481. {4624.06699435645, "rhsusf_iotv_ocp_Grenadier"}, // 0.30%
  2482. {4654.40864130105, "rhsusf_iotv_ucp_Teamleader"}, // 0.30%
  2483. {4684.75028824565, "rhsusf_iotv_ocp_Teamleader"}, // 0.30%
  2484. {4715.09193519024, "rhs_6b23_ML_rifleman"}, // 0.30%
  2485. {4745.43358213484, "rhsusf_iotv_ucp_Squadleader"}, // 0.30%
  2486. {4775.77522907944, "rhsusf_iotv_ucp_SAW"}, // 0.30%
  2487. {4806.11687602403, "rhsusf_iotv_ocp_SAW"}, // 0.30%
  2488. {4836.45852296863, "rhsusf_iotv_ocp_Squadleader"}, // 0.30%
  2489. {4866.80016991322, "rhsusf_iotv_ocp_Rifleman"}, // 0.30%
  2490. {4897.14181685782, "rhsusf_iotv_ucp_Repair"}, // 0.30%
  2491. {4927.48346380242, "rhsusf_iotv_ocp_Repair"}, // 0.30%
  2492. {4957.82511074701, "rhsusf_iotv_ucp_Medic"}, // 0.30%
  2493. {4988.16675769161, "rhsusf_iotv_ocp_Medic"}, // 0.30%
  2494. {5018.50840463621, "rhsusf_iotv_ucp"}, // 0.30%
  2495. {5048.8500515808, "rhs_6sh46"}, // 0.30%
  2496. {5079.1916985254, "rhsusf_iotv_ucp_Rifleman"}, // 0.30%
  2497. {5104.01668238916, "rhs_weap_m249_pip_S_para"}, // 0.25%
  2498. {5128.84166625292, "rhs_weap_pkp"}, // 0.25%
  2499. {5153.66665011668, "rhs_weap_m240G"}, // 0.25%
  2500. {5178.49163398044, "rhs_weap_m240B_CAP"}, // 0.25%
  2501. {5203.3166178442, "rhs_weap_m240B"}, // 0.25%
  2502. {5228.14160170796, "rhs_weap_m249_pip_S_vfg"}, // 0.25%
  2503. {5252.96658557172, "rhs_weap_m249_pip_S"}, // 0.25%
  2504. {5277.79156943548, "rhs_weap_pkm"}, // 0.25%
  2505. {5302.61655329924, "rhs_weap_m249_pip_L_para"}, // 0.25%
  2506. {5327.441537163, "rhs_weap_m249_pip_L_vfg"}, // 0.25%
  2507. {5352.26652102676, "rhs_weap_m249_pip_L"}, // 0.25%
  2508. {5373.82505964529, "rhs_100Rnd_762x54mmR"}, // 0.22%
  2509. {5395.38359826382, "rhsusf_8Rnd_Slug"}, // 0.22%
  2510. {5416.94213688235, "rhsusf_20Rnd_762x51_m993_Mag"}, // 0.22%
  2511. {5438.50067550088, "rhsusf_5Rnd_300winmag_xm2010"}, // 0.22%
  2512. {5460.05921411941, "rhs_30Rnd_762x39mm"}, // 0.22%
  2513. {5481.61775273793, "rhs_30Rnd_762x39mm_tracer"}, // 0.22%
  2514. {5503.17629135646, "rhs_30Rnd_762x39mm_89"}, // 0.22%
  2515. {5524.73482997499, "rhs_30Rnd_545x39_AK"}, // 0.22%
  2516. {5546.29336859352, "rhs_30Rnd_545x39_AK_no_tracers"}, // 0.22%
  2517. {5567.85190721205, "rhs_30Rnd_545x39_7N22_AK"}, // 0.22%
  2518. {5589.41044583058, "rhs_30Rnd_545x39_AK_green"}, // 0.22%
  2519. {5610.9689844491, "rhs_45Rnd_545X39_AK"}, // 0.22%
  2520. {5632.52752306763, "rhs_45Rnd_545X39_7N10_AK"}, // 0.22%
  2521. {5654.08606168616, "rhs_45Rnd_545X39_7N22_AK"}, // 0.22%
  2522. {5675.64460030469, "rhs_45Rnd_545X39_AK_Green"}, // 0.22%
  2523. {5697.20313892322, "rhsusf_8Rnd_00Buck"}, // 0.22%
  2524. {5718.76167754175, "rhs_30Rnd_545x39_7N10_AK"}, // 0.22%
  2525. {5740.32021616028, "rhsusf_100Rnd_762x51_m993"}, // 0.22%
  2526. {5761.8787547788, "rhsusf_100Rnd_762x51"}, // 0.22%
  2527. {5783.43729339733, "rhs_mag_9x19_17"}, // 0.22%
  2528. {5804.99583201586, "rhs_mag_30Rnd_556x45_Mk318_Stanag"}, // 0.22%
  2529. {5826.55437063439, "rhs_mag_30Rnd_556x45_Mk262_Stanag"}, // 0.22%
  2530. {5848.11290925292, "rhs_100Rnd_762x54mmR_green"}, // 0.22%
  2531. {5869.67144787145, "rhs_mag_9x18_12_57N181S"}, // 0.22%
  2532. {5891.22998648998, "rhs_mag_30Rnd_556x45_M855A1_Stanag"}, // 0.22%
  2533. {5912.7885251085, "rhs_mag_30Rnd_556x45_M855A1_Stanag_No_Tracer"}, // 0.22%
  2534. {5934.34706372703, "rhsusf_100Rnd_762x51_m80a1epr"}, // 0.22%
  2535. {5955.90560234556, "rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Red"}, // 0.22%
  2536. {5977.46414096409, "rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Yellow"}, // 0.22%
  2537. {5999.02267958262, "rhs_200rnd_556x45_M_SAW"}, // 0.22%
  2538. {6020.58121820115, "rhs_200rnd_556x45_B_SAW"}, // 0.22%
  2539. {6042.13975681967, "rhs_200rnd_556x45_T_SAW"}, // 0.22%
  2540. {6063.6982954382, "rhsusf_50Rnd_762x51"}, // 0.22%
  2541. {6085.25683405673, "rhsusf_50Rnd_762x51_m993"}, // 0.22%
  2542. {6106.81537267526, "rhsusf_50Rnd_762x51_m80a1epr"}, // 0.22%
  2543. {6128.37391129379, "rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Green"}, // 0.22%
  2544. {6149.93244991232, "rhsusf_mag_7x45acp_MHP"}, // 0.22%
  2545. {6171.49098853085, "rhs_10Rnd_762x54mmR_7N1"}, // 0.22%
  2546. {6192.49674410787, "rhs_weap_sr25_ec"}, // 0.21%
  2547. {6213.5024996849, "rhs_weap_sr25"}, // 0.21%
  2548. {6234.50825526193, "rhs_weap_m14ebrri"}, // 0.21%
  2549. {6255.51401083896, "rhs_weap_XM2010"}, // 0.21%
  2550. {6276.51976641599, "rhs_weap_XM2010_wd"}, // 0.21%
  2551. {6297.52552199301, "rhs_weap_XM2010_d"}, // 0.21%
  2552. {6318.53127757004, "rhs_weap_XM2010_sa"}, // 0.21%
  2553. {6339.53703314707, "rhs_weap_svd"}, // 0.21%
  2554. {6360.5427887241, "rhs_weap_svdp_wd_npz"}, // 0.21%
  2555. {6381.54854430113, "rhs_weap_svdp_npz"}, // 0.21%
  2556. {6402.55429987815, "rhs_weap_svdp_wd"}, // 0.21%
  2557. {6423.56005545518, "rhs_weap_svds_npz"}, // 0.21%
  2558. {6444.56581103221, "rhs_weap_svds"}, // 0.21%
  2559. {6460.95030038229, "Exile_Item_PlasticBottleDirtyWater"}, // 0.16%
  2560. {6475.57930873058, "rhs_weap_m4a1_m320"}, // 0.15%
  2561. {6490.20831707887, "rhs_weap_m4a1_blockII_M203"}, // 0.15%
  2562. {6504.83732542715, "rhs_weap_mk18"}, // 0.15%
  2563. {6519.46633377544, "rhs_weap_m16a4_grip"}, // 0.15%
  2564. {6534.09534212373, "rhs_weap_mk18_KAC"}, // 0.15%
  2565. {6548.72435047202, "rhs_weap_mk18_grip2"}, // 0.15%
  2566. {6563.3533588203, "rhs_weap_mk18_grip2_KAC"}, // 0.15%
  2567. {6577.98236716859, "rhs_weap_m4a1_blockII_grip2_KAC"}, // 0.15%
  2568. {6592.61137551688, "rhs_weap_mk18_m320"}, // 0.15%
  2569. {6607.24038386517, "rhs_weap_m4a1_blockII_grip2"}, // 0.15%
  2570. {6621.86939221345, "rhs_weap_m4a1_blockII_KAC"}, // 0.15%
  2571. {6636.49840056174, "rhs_weap_m4a1_blockII"}, // 0.15%
  2572. {6651.12740891003, "rhs_weap_m4a1_m203"}, // 0.15%
  2573. {6665.75641725831, "rhs_weap_m16a4_carryhandle"}, // 0.15%
  2574. {6680.3854256066, "rhs_weap_m4a1_grip2"}, // 0.15%
  2575. {6695.01443395489, "rhs_weap_m4a1"}, // 0.15%
  2576. {6709.64344230318, "rhs_weap_m4a1_carryhandle_m203"}, // 0.15%
  2577. {6724.27245065146, "rhs_weap_m4a1_carryhandle_pmag"}, // 0.15%
  2578. {6738.90145899975, "rhs_weap_ak103"}, // 0.15%
  2579. {6753.53046734804, "rhs_weap_m4a1_carryhandle_grip2"}, // 0.15%
  2580. {6768.15947569633, "rhs_weap_m4a1_carryhandle"}, // 0.15%
  2581. {6782.78848404461, "rhs_weap_m4_m320"}, // 0.15%
  2582. {6797.4174923929, "rhs_weap_m4_m203"}, // 0.15%
  2583. {6812.04650074119, "rhs_weap_m4_grip"}, // 0.15%
  2584. {6826.67550908947, "rhs_weap_m4_carryhandle_pmag"}, // 0.15%
  2585. {6841.30451743776, "rhs_weap_m4_carryhandle"}, // 0.15%
  2586. {6855.93352578605, "rhs_weap_m4a1_grip"}, // 0.15%
  2587. {6870.56253413434, "rhs_weap_ak103_npz"}, // 0.15%
  2588. {6885.19154248262, "rhs_weap_ak74m_desert_npz"}, // 0.15%
  2589. {6899.82055083091, "rhs_weap_ak74m"}, // 0.15%
  2590. {6914.4495591792, "rhs_weap_m16a4"}, // 0.15%
  2591. {6929.07856752748, "rhs_weap_m16a4_carryhandle_grip"}, // 0.15%
  2592. {6943.70757587577, "rhs_weap_m16a4_carryhandle_grip_pmag"}, // 0.15%
  2593. {6958.33658422406, "rhs_weap_m16a4_carryhandle_M203"}, // 0.15%
  2594. {6972.96559257235, "rhs_weap_m16a4_carryhandle_pmag"}, // 0.15%
  2595. {6987.59460092063, "rhs_weap_akms_gp25"}, // 0.15%
  2596. {7002.22360926892, "rhs_weap_akms"}, // 0.15%
  2597. {7016.85261761721, "rhs_weap_akm_gp25"}, // 0.15%
  2598. {7031.4816259655, "rhs_weap_akm"}, // 0.15%
  2599. {7046.11063431378, "rhs_weap_ak74m_plummag_npz"}, // 0.15%
  2600. {7060.73964266207, "rhs_weap_ak103_1"}, // 0.15%
  2601. {7075.36865101036, "rhs_weap_ak74m_npz"}, // 0.15%
  2602. {7089.99765935864, "rhs_weap_ak74m_plummag"}, // 0.15%
  2603. {7104.62666770693, "rhs_weap_ak74m_gp25"}, // 0.15%
  2604. {7119.25567605522, "rhs_weap_ak74m_camo_folded"}, // 0.15%
  2605. {7133.88468440351, "rhs_weap_ak74m_folded"}, // 0.15%
  2606. {7148.51369275179, "rhs_weap_ak74m_plummag_folded"}, // 0.15%
  2607. {7163.14270110008, "rhs_weap_ak74m_desert_folded"}, // 0.15%
  2608. {7177.77170944837, "rhs_weap_m4_grip2"}, // 0.15%
  2609. {7192.40071779666, "rhs_weap_ak74m_desert"}, // 0.15%
  2610. {7207.02972614494, "rhs_weap_ak74m_camo"}, // 0.15%
  2611. {7221.65873449323, "rhs_weap_ak74m_2mag_npz"}, // 0.15%
  2612. {7236.28774284152, "rhs_weap_ak74m_2mag_camo"}, // 0.15%
  2613. {7250.9167511898, "rhs_weap_ak74m_2mag"}, // 0.15%
  2614. {7265.54575953809, "rhs_weap_ak74m_gp25_npz"}, // 0.15%
  2615. {7280.17476788638, "rhs_weap_m4"}, // 0.15%
  2616. {7293.96280810448, "Exile_Item_InstantCoffee"}, // 0.14%
  2617. {7307.61654922955, "FlareYellow_F"}, // 0.14%
  2618. {7321.27029035462, "FlareWhite_F"}, // 0.14%
  2619. {7334.92403147969, "Chemlight_blue"}, // 0.14%
  2620. {7348.57777260475, "Chemlight_green"}, // 0.14%
  2621. {7362.23151372982, "Chemlight_red"}, // 0.14%
  2622. {7375.88525485489, "Chemlight_yellow"}, // 0.14%
  2623. {7389.53899597996, "FlareRed_F"}, // 0.14%
  2624. {7403.19273710503, "FlareGreen_F"}, // 0.14%
  2625. {7416.8464782301, "V_Rangemaster_belt"}, // 0.14%
  2626. {7429.85004120635, "rhsusf_acc_LEUPOLDMK4"}, // 0.13%
  2627. {7442.85360418261, "rhsusf_acc_ELCAN"}, // 0.13%
  2628. {7455.85716715886, "rhsusf_acc_ELCAN_pip"}, // 0.13%
  2629. {7468.86073013512, "rhsusf_acc_ACOG"}, // 0.13%
  2630. {7481.86429311137, "rhsusf_acc_ACOG_pip"}, // 0.13%
  2631. {7494.86785608763, "rhs_acc_1pn93_2"}, // 0.13%
  2632. {7507.87141906388, "rhsusf_acc_ACOG2"}, // 0.13%
  2633. {7520.87498204014, "rhsusf_acc_ACOG_USMC"}, // 0.13%
  2634. {7533.87854501639, "rhsusf_acc_ACOG2_USMC"}, // 0.13%
  2635. {7546.88210799265, "rhsusf_acc_eotech_552"}, // 0.13%
  2636. {7559.8856709689, "rhsusf_acc_LEUPOLDMK4_2"}, // 0.13%
  2637. {7572.88923394516, "rhsusf_acc_EOTECH"}, // 0.13%
  2638. {7585.89279692141, "rhs_acc_1p29"}, // 0.13%
  2639. {7598.89635989767, "rhs_acc_1p78"}, // 0.13%
  2640. {7611.89992287392, "rhs_acc_pkas"}, // 0.13%
  2641. {7624.90348585018, "rhs_acc_1p63"}, // 0.13%
  2642. {7637.90704882643, "rhs_acc_ekp1"}, // 0.13%
  2643. {7650.91061180269, "rhs_acc_pso1m2"}, // 0.13%
  2644. {7663.91417477894, "rhs_acc_pgo7v"}, // 0.13%
  2645. {7676.9177377552, "rhs_acc_1pn93_1"}, // 0.13%
  2646. {7689.92130073145, "rhsusf_acc_ACOG3_USMC"}, // 0.13%
  2647. {7702.42854451014, "rhsusf_mich_bare_norotos_alt_headset"}, // 0.13%
  2648. {7714.93578828883, "rhsusf_mich_bare_norotos_alt_semi"}, // 0.13%
  2649. {7727.44303206752, "rhsusf_mich_bare_norotos_alt_semi_headset"}, // 0.13%
  2650. {7739.95027584621, "rhsusf_bowman_cap"}, // 0.13%
  2651. {7752.4575196249, "rhsusf_mich_bare_norotos_arc_alt_semi"}, // 0.13%
  2652. {7764.96476340358, "rhsusf_mich_bare_norotos_arc"}, // 0.13%
  2653. {7777.47200718227, "rhsusf_mich_bare_norotos_arc_alt"}, // 0.13%
  2654. {7789.97925096096, "rhsusf_mich_bare_norotos_arc_alt_headset"}, // 0.13%
  2655. {7802.48649473965, "rhsusf_mich_bare_norotos_arc_alt_semi_headset"}, // 0.13%
  2656. {7814.99373851834, "rhsusf_mich_bare_norotos_alt_tan_headset"}, // 0.13%
  2657. {7827.50098229703, "rhsusf_mich_bare_norotos_alt"}, // 0.13%
  2658. {7840.00822607571, "rhsusf_mich_bare_alt"}, // 0.13%
  2659. {7852.5154698544, "rhsusf_mich_bare_headset"}, // 0.13%
  2660. {7865.02271363309, "rhsusf_mich_bare_alt_tan"}, // 0.13%
  2661. {7877.52995741178, "rhsusf_mich_bare_alt_semi"}, // 0.13%
  2662. {7890.03720119047, "rhsusf_mich_bare"}, // 0.13%
  2663. {7902.54444496916, "rhsusf_lwh_helmet_marpatwd_headset"}, // 0.13%
  2664. {7915.05168874785, "rhsusf_lwh_helmet_marpatwd_ess"}, // 0.13%
  2665. {7927.55893252653, "rhsusf_lwh_helmet_marpatwd"}, // 0.13%
  2666. {7940.06617630522, "rhsusf_lwh_helmet_marpatd_headset"}, // 0.13%
  2667. {7952.57342008391, "rhsusf_lwh_helmet_marpatd_ess"}, // 0.13%
  2668. {7965.0806638626, "rhsusf_lwh_helmet_marpatd"}, // 0.13%
  2669. {7977.58790764129, "rhsusf_lwh_helmet_M1942"}, // 0.13%
  2670. {7990.09515141998, "rhsusf_mich_bare_norotos_arc_alt_tan"}, // 0.13%
  2671. {8002.60239519866, "rhsusf_mich_bare_norotos"}, // 0.13%
  2672. {8015.10963897735, "rhsusf_mich_bare_norotos_arc_alt_tan_headset"}, // 0.13%
  2673. {8027.61688275604, "rhsusf_mich_bare_tan_headset"}, // 0.13%
  2674. {8040.12412653473, "rhsusf_mich_bare_norotos_arc_semi"}, // 0.13%
  2675. {8052.63137031342, "rhsusf_ach_helmet_ucp_norotos"}, // 0.13%
  2676. {8065.13861409211, "rhsusf_mich_helmet_marpatwd_norotos_headset"}, // 0.13%
  2677. {8077.6458578708, "rhsusf_mich_helmet_marpatwd_norotos_arc_headset"}, // 0.13%
  2678. {8090.15310164948, "rhsusf_mich_helmet_marpatwd_norotos_arc"}, // 0.13%
  2679. {8102.66034542817, "rhsusf_mich_helmet_marpatwd_norotos"}, // 0.13%
  2680. {8115.16758920686, "rhsusf_mich_helmet_marpatwd_headset"}, // 0.13%
  2681. {8127.67483298555, "rhsusf_mich_helmet_marpatwd_alt_headset"}, // 0.13%
  2682. {8140.18207676424, "rhsusf_mich_helmet_marpatwd_alt"}, // 0.13%
  2683. {8152.68932054293, "rhsusf_mich_helmet_marpatwd"}, // 0.13%
  2684. {8165.19656432161, "rhsusf_mich_helmet_marpatd_norotos_headset"}, // 0.13%
  2685. {8177.7038081003, "rhsusf_mich_helmet_marpatd_norotos_arc_headset"}, // 0.13%
  2686. {8190.21105187899, "rhsusf_mich_helmet_marpatd_norotos_arc"}, // 0.13%
  2687. {8202.71829565768, "rhsusf_mich_helmet_marpatd_norotos"}, // 0.13%
  2688. {8215.22553943637, "rhsusf_mich_helmet_marpatd_headset"}, // 0.13%
  2689. {8227.73278321506, "rhsusf_mich_helmet_marpatd_alt_headset"}, // 0.13%
  2690. {8240.24002699375, "rhsusf_mich_bare_tan"}, // 0.13%
  2691. {8252.74727077244, "rhsusf_mich_bare_semi_headset"}, // 0.13%
  2692. {8265.25451455113, "rhsusf_mich_bare_semi"}, // 0.13%
  2693. {8277.76175832982, "rhsusf_mich_bare_norotos_tan_headset"}, // 0.13%
  2694. {8290.26900210851, "rhsusf_mich_bare_norotos_tan"}, // 0.13%
  2695. {8302.77624588719, "rhsusf_mich_bare_norotos_semi_headset"}, // 0.13%
  2696. {8315.28348966588, "rhsusf_mich_bare_norotos_semi"}, // 0.13%
  2697. {8327.79073344457, "rhsusf_mich_bare_norotos_headset"}, // 0.13%
  2698. {8340.29797722326, "rhsusf_mich_bare_norotos_arc_tan"}, // 0.13%
  2699. {8352.80522100195, "rhsusf_mich_bare_norotos_arc_semi_headset"}, // 0.13%
  2700. {8365.31246478064, "rhsusf_mich_bare_norotos_arc_headset"}, // 0.13%
  2701. {8377.81970855933, "rhsusf_ach_helmet_ucp"}, // 0.13%
  2702. {8390.32695233802, "rhsusf_mich_bare_norotos_alt_tan"}, // 0.13%
  2703. {8402.83419611671, "rhsusf_ach_helmet_ocp"}, // 0.13%
  2704. {8415.3414398954, "rhs_6b26_ess_bala"}, // 0.13%
  2705. {8427.84868367409, "rhs_6b27m_green"}, // 0.13%
  2706. {8440.35592745278, "rhs_6b27m_green_bala"}, // 0.13%
  2707. {8452.86317123147, "rhs_6b27m_green_ess"}, // 0.13%
  2708. {8465.37041501016, "rhs_6b27m_green_ess_bala"}, // 0.13%
  2709. {8477.87765878885, "rhs_6b27m_digi_ess_bala"}, // 0.13%
  2710. {8490.38490256754, "rhs_6b28_green_bala"}, // 0.13%
  2711. {8502.89214634622, "rhs_6b28_green_ess"}, // 0.13%
  2712. {8515.39939012491, "rhs_6b28_green_ess_bala"}, // 0.13%
  2713. {8527.9066339036, "rhs_6b28"}, // 0.13%
  2714. {8540.41387768229, "rhs_6b28_bala"}, // 0.13%
  2715. {8552.92112146098, "rhs_6b28_ess"}, // 0.13%
  2716. {8565.42836523967, "rhs_6b28_ess_bala"}, // 0.13%
  2717. {8577.93560901836, "rhs_6b28_flora"}, // 0.13%
  2718. {8590.44285279705, "rhs_6b28_flora_bala"}, // 0.13%
  2719. {8602.95009657574, "rhs_6b26_ess"}, // 0.13%
  2720. {8615.45734035443, "rhs_6b28_flora_ess"}, // 0.13%
  2721. {8627.96458413312, "rhs_6b26_bala"}, // 0.13%
  2722. {8640.47182791181, "rhs_6b26_ess_bala_green"}, // 0.13%
  2723. {8652.9790716905, "rhsusf_ach_helmet_ocp_norotos"}, // 0.13%
  2724. {8665.48631546919, "rhs_6b27m_digi"}, // 0.13%
  2725. {8677.99355924788, "rhs_6b27m_digi_bala"}, // 0.13%
  2726. {8690.50080302657, "rhs_6b27m_digi_ess"}, // 0.13%
  2727. {8703.00804680525, "rhs_6b27m"}, // 0.13%
  2728. {8715.51529058394, "rhs_6b27m_ess"}, // 0.13%
  2729. {8728.02253436263, "rhs_6b27m_bala"}, // 0.13%
  2730. {8740.52977814132, "rhs_6b27m_ess_bala"}, // 0.13%
  2731. {8753.03702192001, "rhs_6b27m_ml"}, // 0.13%
  2732. {8765.5442656987, "rhs_6b27m_ml_bala"}, // 0.13%
  2733. {8778.05150947739, "rhs_6b27m_ml_ess"}, // 0.13%
  2734. {8790.55875325608, "rhs_6b27m_ML_ess_bala"}, // 0.13%
  2735. {8803.06599703477, "rhs_6b26_green"}, // 0.13%
  2736. {8815.57324081346, "rhs_6b26_bala_green"}, // 0.13%
  2737. {8828.08048459215, "rhs_6b26_ess_green"}, // 0.13%
  2738. {8840.58772837084, "rhs_6b26"}, // 0.13%
  2739. {8853.09497214953, "rhs_6b28_flora_ess_bala"}, // 0.13%
  2740. {8865.60221592822, "rhs_6b28_green"}, // 0.13%
  2741. {8878.10945970691, "rhs_Booniehat_flora"}, // 0.13%
  2742. {8890.6167034856, "rhsusf_ach_bare_tan"}, // 0.13%
  2743. {8903.12394726428, "rhsusf_ach_bare_tan_ess"}, // 0.13%
  2744. {8915.63119104297, "rhsusf_ach_bare_tan_headset"}, // 0.13%
  2745. {8928.13843482166, "rhsusf_ach_bare_tan_headset_ess"}, // 0.13%
  2746. {8940.64567860035, "rhsusf_ach_bare_wood"}, // 0.13%
  2747. {8953.15292237904, "rhsusf_ach_bare_wood_ess"}, // 0.13%
  2748. {8965.66016615773, "rhsusf_ach_bare_wood_headset"}, // 0.13%
  2749. {8978.16740993642, "rhsusf_ach_bare_wood_headset_ess"}, // 0.13%
  2750. {8990.67465371511, "rhsusf_ach_helmet_ESS_ocp"}, // 0.13%
  2751. {9003.1818974938, "rhsusf_ach_helmet_M81"}, // 0.13%
  2752. {9015.68914127249, "rhsusf_ach_helmet_camo_ocp"}, // 0.13%
  2753. {9028.19638505118, "rhsusf_ach_helmet_headset_ess_ocp"}, // 0.13%
  2754. {9040.70362882987, "rhsusf_ach_helmet_headset_ess_ucp"}, // 0.13%
  2755. {9053.21087260856, "rhsusf_ach_helmet_headset_ocp"}, // 0.13%
  2756. {9065.71811638725, "rhs_Booniehat_digi"}, // 0.13%
  2757. {9078.22536016594, "rhsusf_ach_bare_semi_headset_ess"}, // 0.13%
  2758. {9090.73260394463, "rhsusf_ach_bare_semi_headset"}, // 0.13%
  2759. {9103.23984772331, "rhsusf_ach_helmet_ESS_ucp"}, // 0.13%
  2760. {9115.747091502, "rhsusf_ach_bare_semi"}, // 0.13%
  2761. {9128.25433528069, "rhs_ssh68"}, // 0.13%
  2762. {9140.76157905938, "rhsusf_ach_bare_semi_ess"}, // 0.13%
  2763. {9153.26882283807, "rhs_Booniehat_m81"}, // 0.13%
  2764. {9165.77606661676, "rhs_Booniehat_marpatd"}, // 0.13%
  2765. {9178.28331039545, "rhs_Booniehat_marpatwd"}, // 0.13%
  2766. {9190.79055417414, "rhs_Booniehat_ocp"}, // 0.13%
  2767. {9203.29779795283, "rhs_Booniehat_ucp"}, // 0.13%
  2768. {9215.80504173152, "rhsusf_Bowman"}, // 0.13%
  2769. {9228.31228551021, "rhsusf_ach_helmet_headset_ucp"}, // 0.13%
  2770. {9240.8195292889, "rhsusf_ach_bare_des"}, // 0.13%
  2771. {9253.32677306759, "rhsusf_ach_bare"}, // 0.13%
  2772. {9265.83401684628, "rhsusf_ach_bare_des_ess"}, // 0.13%
  2773. {9278.34126062497, "rhsusf_ach_bare_headset_ess"}, // 0.13%
  2774. {9290.84850440366, "rhsusf_ach_bare_des_headset"}, // 0.13%
  2775. {9303.35574818234, "rhsusf_ach_bare_des_headset_ess"}, // 0.13%
  2776. {9315.86299196103, "rhsusf_ach_bare_ess"}, // 0.13%
  2777. {9328.37023573972, "rhsusf_ach_bare_headset"}, // 0.13%
  2778. {9339.65135955453, "Exile_Item_Raisins"}, // 0.11%
  2779. {9350.93248336934, "Exile_Item_Moobar"}, // 0.11%
  2780. {9361.8554762694, "Exile_Item_MountainDupe"}, // 0.11%
  2781. {9371.88314188256, "Exile_Item_SeedAstics"}, // 0.10%
  2782. {9381.61650189251, "U_Rangemaster"}, // 0.10%
  2783. {9391.34986190246, "U_C_Poor_2"}, // 0.10%
  2784. {9401.08322191241, "U_C_Poor_1"}, // 0.10%
  2785. {9410.81658192236, "U_C_Scientist"}, // 0.10%
  2786. {9420.54994193231, "U_C_Journalist"}, // 0.10%
  2787. {9430.28330194226, "U_C_HunterBody_grn"}, // 0.10%
  2788. {9440.01666195221, "U_C_Poor_shorts_1"}, // 0.10%
  2789. {9449.30120591726, "Exile_Item_EnergyDrink"}, // 0.09%
  2790. {9458.07541332878, "Exile_Item_Cheathas"}, // 0.09%
  2791. {9466.8496207403, "Exile_Item_Noodles"}, // 0.09%
  2792. {9475.62382815182, "Exile_Item_BeefParts"}, // 0.09%
  2793. {9484.39803556334, "Exile_Item_Dogfood"}, // 0.09%
  2794. {9493.17224297486, "Exile_Item_BBQSandwich"}, // 0.09%
  2795. {9501.94645038637, "Exile_Item_ChristmasTinner"}, // 0.09%
  2796. {9510.72065779789, "Exile_Item_SausageGravy"}, // 0.09%
  2797. {9519.49486520941, "Exile_Item_Surstromming"}, // 0.09%
  2798. {9528.26907262093, "Exile_Item_CatFood"}, // 0.09%
  2799. {9536.46131729597, "30Rnd_45ACP_Mag_SMG_01"}, // 0.08%
  2800. {9544.65356197102, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 0.08%
  2801. {9552.29965700105, "Exile_Item_Beer"}, // 0.08%
  2802. {9559.8700481199, "U_C_Poloshirt_burgundy"}, // 0.08%
  2803. {9567.44043923876, "U_C_Poloshirt_stripped"}, // 0.08%
  2804. {9575.01083035761, "U_C_Poloshirt_tricolour"}, // 0.08%
  2805. {9582.58122147646, "U_C_Poloshirt_salmon"}, // 0.08%
  2806. {9590.15161259531, "U_C_Poloshirt_blue"}, // 0.08%
  2807. {9597.67236180518, "Exile_Item_GloriousKnakworst"}, // 0.08%
  2808. {9605.01261303402, "hgun_P07_F"}, // 0.07%
  2809. {9612.00332849005, "hgun_Rook40_F"}, // 0.07%
  2810. {9618.99404394609, "hgun_ACPC2_F"}, // 0.07%
  2811. {9625.82091450862, "V_TacVest_blk_POLICE"}, // 0.07%
  2812. {9632.64778507116, "V_Press_F"}, // 0.07%
  2813. {9639.20158081119, "H_Hat_tan"}, // 0.07%
  2814. {9645.75537655122, "H_Hat_grey"}, // 0.07%
  2815. {9652.30917229125, "H_Hat_checker"}, // 0.07%
  2816. {9658.86296803128, "H_Hat_brown"}, // 0.07%
  2817. {9665.41676377132, "H_Cap_tan"}, // 0.07%
  2818. {9671.97055951135, "H_Cap_red"}, // 0.07%
  2819. {9678.52435525138, "H_Cap_press"}, // 0.07%
  2820. {9685.07815099141, "Exile_Item_PlasticBottleFreshWater"}, // 0.07%
  2821. {9691.63194673144, "H_StrawHat_dark"}, // 0.07%
  2822. {9698.18574247148, "H_StrawHat"}, // 0.07%
  2823. {9704.73953821151, "H_Hat_blue"}, // 0.07%
  2824. {9711.00682921974, "Exile_Item_CanOpener"}, // 0.06%
  2825. {9717.27412022796, "Exile_Item_Matches"}, // 0.06%
  2826. {9723.28176632299, "B_OutdoorPack_blk"}, // 0.06%
  2827. {9729.18018248902, "muzzle_snds_acp"}, // 0.06%
  2828. {9735.07859865505, "muzzle_snds_L"}, // 0.06%
  2829. {9740.792164172, "SMG_01_F"}, // 0.06%
  2830. {9746.33768364434, "hgun_PDW2000_F"}, // 0.06%
  2831. {9751.88320311668, "SMG_02_F"}, // 0.06%
  2832. {9757.3446995667, "H_Cap_blu"}, // 0.05%
  2833. {9762.80619601673, "H_Cap_grn"}, // 0.05%
  2834. {9768.26769246676, "H_Cap_headphones"}, // 0.05%
  2835. {9773.72918891678, "H_Cap_oli"}, // 0.05%
  2836. {9779.19068536681, "H_Cap_blk"}, // 0.05%
  2837. {9784.65218181684, "9Rnd_45ACP_Mag"}, // 0.05%
  2838. {9790.11367826687, "11Rnd_45ACP_Mag"}, // 0.05%
  2839. {9795.57517471689, "H_Beret_blk_POLICE"}, // 0.05%
  2840. {9801.03667116692, "Exile_Item_ZipTie"}, // 0.05%
  2841. {9806.49816761695, "H_Bandanna_surfer"}, // 0.05%
  2842. {9811.95966406697, "H_Cap_blk_Raven"}, // 0.05%
  2843. {9817.421160517, "30Rnd_9x21_Mag"}, // 0.05%
  2844. {9822.82804200253, "B_OutdoorPack_tan"}, // 0.05%
  2845. {9828.23492348805, "B_OutdoorPack_blu"}, // 0.05%
  2846. {9833.27630482654, "SMG_05_F"}, // 0.05%
  2847. {9838.08242170257, "B_HuntingBackpack"}, // 0.05%
  2848. {9842.62638674899, "hgun_Pistol_01_F"}, // 0.05%
  2849. {9847.17035179541, "hgun_Pistol_Signal_F"}, // 0.05%
  2850. {9851.71431684184, "hgun_Pistol_heavy_01_F"}, // 0.05%
  2851. {9856.25828188826, "hgun_Pistol_heavy_02_F"}, // 0.05%
  2852. {9860.62747904828, "6Rnd_45ACP_Cylinder"}, // 0.04%
  2853. {9864.87216540841, "ItemRadio"}, // 0.04%
  2854. {9869.11685176853, "ItemWatch"}, // 0.04%
  2855. {9873.32220403505, "B_AssaultPack_khk"}, // 0.04%
  2856. {9877.52755630157, "B_AssaultPack_dgtl"}, // 0.04%
  2857. {9881.73290856809, "B_AssaultPack_rgr"}, // 0.04%
  2858. {9885.93826083462, "B_AssaultPack_sgg"}, // 0.04%
  2859. {9890.14361310114, "B_AssaultPack_blk"}, // 0.04%
  2860. {9894.34896536766, "B_AssaultPack_cbr"}, // 0.04%
  2861. {9898.55431763418, "B_AssaultPack_mcamo"}, // 0.04%
  2862. {9902.7487469078, "hgun_P07_khk_F"}, // 0.04%
  2863. {9906.57179442282, "Exile_Item_PowerDrink"}, // 0.04%
  2864. {9910.33216902776, "Exile_Item_EMRE"}, // 0.04%
  2865. {9914.09254363269, "Exile_Item_CookingPot"}, // 0.04%
  2866. {9917.36944150271, "optic_Holosight_smg"}, // 0.03%
  2867. {9920.64633937273, "optic_ACO_grn_smg"}, // 0.03%
  2868. {9923.92323724274, "optic_ACO_grn"}, // 0.03%
  2869. {9927.20013511276, "optic_Aco_smg"}, // 0.03%
  2870. {9930.47703298278, "optic_Aco"}, // 0.03%
  2871. {9933.48085603029, "B_Kitbag_mcamo"}, // 0.03%
  2872. {9936.48467907781, "B_Kitbag_sgg"}, // 0.03%
  2873. {9939.48850212532, "B_Kitbag_cbr"}, // 0.03%
  2874. {9942.31829303207, "Exile_Item_Screwdriver"}, // 0.03%
  2875. {9945.14808393882, "ItemGPS"}, // 0.03%
  2876. {9947.97787484557, "Binocular"}, // 0.03%
  2877. {9950.80766575232, "Exile_Item_Foolbox"}, // 0.03%
  2878. {9953.63745665907, "Exile_Item_CordlessScrewdriver"}, // 0.03%
  2879. {9956.46724756582, "Exile_Item_FireExtinguisher"}, // 0.03%
  2880. {9959.29703847257, "Exile_Item_Hammer"}, // 0.03%
  2881. {9962.12682937932, "Exile_Item_Shovel"}, // 0.03%
  2882. {9964.95662028607, "Exile_Item_OilCanister"}, // 0.03%
  2883. {9967.78641119282, "Exile_Item_SleepingMat"}, // 0.03%
  2884. {9970.61620209957, "Exile_Item_MobilePhone"}, // 0.03%
  2885. {9973.44599300632, "NVGoggles_OPFOR"}, // 0.03%
  2886. {9976.27578391307, "NVGoggles_INDEP"}, // 0.03%
  2887. {9979.10557481982, "Laserdesignator_02"}, // 0.03%
  2888. {9981.93536572657, "Exile_Item_Wrench"}, // 0.03%
  2889. {9984.76515663332, "Laserdesignator_03"}, // 0.03%
  2890. {9987.49590485833, "16Rnd_9x21_Mag"}, // 0.03%
  2891. {9989.78973336734, "optic_Yorris"}, // 0.02%
  2892. {9992.08356187635, "optic_MRD"}, // 0.02%
  2893. {9993.99508563386, "6Rnd_GreenSignal_F"}, // 0.02%
  2894. {9995.90660939137, "6Rnd_RedSignal_F"}, // 0.02%
  2895. {9996.98809383692, "U_NikosAgedBody"}, // 0.01%
  2896. {9998.06957828247, "U_NikosBody"}, // 0.01%
  2897. {9999.15106272802, "U_OrestesBody"}, // 0.01%
  2898. {9999.4340418187, "Exile_Headgear_GasMask"}, // 0.00%
  2899. {9999.71702090937, "Exile_Item_Knife"}, // 0.00%
  2900. {10000, "Exile_Item_ThermalScannerPro"} // 0.00%
  2901. };
  2902. };
  2903. /**
  2904. Result of 100 rounds:
  2905. rhs_mag_30Rnd_556x45_Mk262_Stanag
  2906. rhs_uniform_gorka_r_y
  2907. rhs_6b23_crew
  2908. rhsusf_weap_m1911a1
  2909. rhsusf_mich_bare_norotos_semi_headset
  2910. rhs_weap_m240B
  2911. rhs_weap_makarov_pmm
  2912. H_Beret_blk_POLICE
  2913. rhs_uniform_m88_patchless
  2914. rhs_weap_m4
  2915. rhsusf_mich_bare_norotos_alt_tan_headset
  2916. rhs_6b26_ess_green
  2917. rhsusf_mich_helmet_marpatwd
  2918. rhs_6b23_ML_crewofficer
  2919. rhs_6b23_ML_6sh92_radio
  2920. rhs_uniform_msv_emr
  2921. rhsusf_mich_bare_tan_headset
  2922. rhs_weap_svds_npz
  2923. rhs_uniform_vdv_flora
  2924. rhsusf_ach_bare_des_headset_ess
  2925. rhs_uniform_cu_ucp
  2926. rhsusf_100Rnd_762x51_m993
  2927. rhs_6b23_ML_6sh92
  2928. optic_Aco_smg
  2929. rhs_uniform_cu_ocp_1stcav
  2930. rhs_weap_m249_pip_S_vfg
  2931. rhsusf_iotv_ocp_Rifleman
  2932. 30Rnd_45ACP_Mag_SMG_01
  2933. rhs_200rnd_556x45_B_SAW
  2934. Exile_Item_Wrench
  2935. rhs_100Rnd_762x54mmR_green
  2936. rhs_weap_makarov_pmm
  2937. rhsusf_iotv_ocp_Medic
  2938. H_Cap_oli
  2939. V_TacVest_blk_POLICE
  2940. rhs_weap_pya
  2941. rhs_6b27m
  2942. rhs_weap_m4a1
  2943. rhsusf_ach_bare_semi_headset_ess
  2944. rhs_200rnd_556x45_T_SAW
  2945. rhs_uniform_FROG01_wd
  2946. rhs_uniform_flora
  2947. H_Cap_press
  2948. Exile_Item_PlasticBottleEmpty
  2949. rhsusf_weap_m1911a1
  2950. rhs_6b13_Flora_crewofficer
  2951. rhs_weap_pya
  2952. rhs_6b23_crew
  2953. rhs_6b13_Flora
  2954. U_C_Poloshirt_blue
  2955. rhs_6b13_Flora
  2956. rhs_vydra_3m
  2957. rhs_acc_1p78
  2958. rhsusf_ach_bare_tan
  2959. rhs_weap_m14ebrri
  2960. Exile_Item_SausageGravy
  2961. rhs_ssh68
  2962. rhs_6b23_6sh92_radio
  2963. rhsusf_ach_bare_tan_ess
  2964. rhs_uniform_emr_patchless
  2965. rhs_weap_pya
  2966. rhs_weap_pya
  2967. rhs_6b23_crew
  2968. rhs_uniform_cu_ocp_101st
  2969. rhsusf_weap_m1911a1
  2970. rhsusf_ach_bare_wood
  2971. rhs_weap_m249_pip_S
  2972. rhsusf_mich_bare_norotos_alt_tan_headset
  2973. rhsusf_iotv_ucp_SAW
  2974. rhs_uniform_FROG01_m81
  2975. rhs_6b23_ML_6sh92_vog_headset
  2976. rhs_chdkz_uniform_3
  2977. rhsusf_ach_bare_des_ess
  2978. rhsusf_ach_helmet_M81
  2979. rhs_weap_m240B_CAP
  2980. rhs_weap_makarov_pmm
  2981. rhs_weap_svdp_npz
  2982. rhs_uniform_gorka_r_g
  2983. 30Rnd_45ACP_Mag_SMG_01
  2984. rhs_weap_mk18_grip2
  2985. rhsusf_iotv_ucp_Squadleader
  2986. B_OutdoorPack_blk
  2987. rhs_6b23_sniper
  2988. rhsusf_100Rnd_762x51_m80a1epr
  2989. rhs_200rnd_556x45_M_SAW
  2990. rhs_weap_pya
  2991. rhs_uniform_df15
  2992. rhs_200rnd_556x45_B_SAW
  2993. rhs_6b23_ML_6sh92_vog_headset
  2994. rhsusf_weap_m1911a1
  2995. rhs_uniform_cu_ocp_101st
  2996. rhs_6sh92_digi
  2997. rhs_6b28_flora_ess_bala
  2998. rhs_weap_m249_pip_L_para
  2999. rhs_6b23_ML_6sh92
  3000. rhs_weap_pya
  3001. rhsusf_mich_helmet_marpatd_headset
  3002. Exile_Item_PlasticBottleDirtyWater
  3003. rhs_weap_pya
  3004. rhs_uniform_gorka_r_g
  3005. */
  3006. class CivillianUpperClass
  3007. {
  3008. count
  3009. half
  3010. halfIndex
  3011. sum
  3012. items[]
  3013. {
  3014. {543.478260869565, "rhsusf_weap_m1911a1"}, // 5.43%
  3015. {1086.95652173913, "rhs_weap_makarov_pmm"}, // 5.43%
  3016. {1630.4347826087, "rhs_weap_pya"}, // 5.43%
  3017. {1684.78260869565, "Exile_Item_Can_Empty"}, // 0.54%
  3018. {1739.13043478261, "Exile_Item_ToiletPaper"}, // 0.54%
  3019. {1793.47826086957, "Exile_Item_PlasticBottleEmpty"}, // 0.54%
  3020. {1844.42934782609, "rhs_chdkz_uniform_5"}, // 0.51%
  3021. {1895.38043478261, "rhs_chdkz_uniform_4"}, // 0.51%
  3022. {1946.33152173913, "rhs_chdkz_uniform_3"}, // 0.51%
  3023. {1997.28260869565, "rhs_chdkz_uniform_2"}, // 0.51%
  3024. {2048.23369565217, "rhs_chdkz_uniform_1"}, // 0.51%
  3025. {2099.1847826087, "rhs_uniform_mvd_izlom"}, // 0.51%
  3026. {2150.13586956522, "rhs_uniform_cu_ocp_82nd"}, // 0.51%
  3027. {2201.08695652174, "rhs_uniform_cu_ocp_1stcav"}, // 0.51%
  3028. {2252.03804347826, "rhs_uniform_gorka_r_y"}, // 0.51%
  3029. {2302.98913043478, "rhs_uniform_cu_ucp_101st"}, // 0.51%
  3030. {2353.9402173913, "rhs_uniform_cu_ucp_10th"}, // 0.51%
  3031. {2404.89130434782, "rhs_uniform_cu_ucp_1stcav"}, // 0.51%
  3032. {2455.84239130435, "rhs_uniform_cu_ocp_10th"}, // 0.51%
  3033. {2506.79347826087, "rhs_uniform_gorka_r_g"}, // 0.51%
  3034. {2557.74456521739, "rhs_uniform_msv_emr"}, // 0.51%
  3035. {2608.69565217391, "rhs_uniform_flora"}, // 0.51%
  3036. {2659.64673913043, "rhs_uniform_cu_ucp_82nd"}, // 0.51%
  3037. {2710.59782608695, "rhs_uniform_vdv_emr_des"}, // 0.51%
  3038. {2761.54891304348, "rhs_uniform_vdv_mflora"}, // 0.51%
  3039. {2812.5, "rhs_uniform_mflora_patchless"}, // 0.51%
  3040. {2863.45108695652, "rhs_uniform_FROG01_wd"}, // 0.51%
  3041. {2914.40217391304, "rhs_uniform_FROG01_d"}, // 0.51%
  3042. {2965.35326086956, "rhs_uniform_FROG01_m81"}, // 0.51%
  3043. {3016.30434782608, "rhs_uniform_flora_patchless_alt"}, // 0.51%
  3044. {3067.2554347826, "rhs_uniform_flora_patchless"}, // 0.51%
  3045. {3118.20652173913, "rhs_uniform_emr_patchless"}, // 0.51%
  3046. {3169.15760869565, "rhs_uniform_m88_patchless"}, // 0.51%
  3047. {3220.10869565217, "rhs_uniform_df15"}, // 0.51%
  3048. {3271.05978260869, "rhs_uniform_cu_ocp_101st"}, // 0.51%
  3049. {3322.01086956521, "rhs_uniform_vdv_flora"}, // 0.51%
  3050. {3372.96195652173, "rhs_uniform_cu_ucp"}, // 0.51%
  3051. {3423.91304347826, "rhs_uniform_cu_ocp"}, // 0.51%
  3052. {3454.10628019323, "rhs_6b23_6sh92_vog_headset"}, // 0.30%
  3053. {3484.29951690821, "rhs_6b23_ML_6sh92_vog"}, // 0.30%
  3054. {3514.49275362318, "rhs_6b23_ML_6sh92_vog_headset"}, // 0.30%
  3055. {3544.68599033816, "rhs_6b23_ML_crewofficer"}, // 0.30%
  3056. {3574.87922705313, "rhs_6b23_ML_crew"}, // 0.30%
  3057. {3605.07246376811, "rhs_6b23_ML_engineer"}, // 0.30%
  3058. {3635.26570048308, "rhs_6b23_ML_rifleman"}, // 0.30%
  3059. {3665.45893719806, "rhs_6b23_ML_sniper"}, // 0.30%
  3060. {3695.65217391304, "rhsusf_iotv_ocp"}, // 0.30%
  3061. {3725.84541062801, "rhsusf_iotv_ucp"}, // 0.30%
  3062. {3756.03864734299, "rhsusf_iotv_ocp_Medic"}, // 0.30%
  3063. {3786.23188405796, "rhsusf_iotv_ucp_Medic"}, // 0.30%
  3064. {3816.42512077294, "rhsusf_iotv_ocp_Repair"}, // 0.30%
  3065. {3846.61835748791, "rhsusf_iotv_ucp_Repair"}, // 0.30%
  3066. {3876.81159420289, "rhsusf_iotv_ocp_Rifleman"}, // 0.30%
  3067. {3907.00483091787, "rhsusf_iotv_ucp_Rifleman"}, // 0.30%
  3068. {3937.19806763284, "rhsusf_iotv_ocp_SAW"}, // 0.30%
  3069. {3967.39130434782, "rhsusf_iotv_ucp_SAW"}, // 0.30%
  3070. {3997.58454106279, "rhsusf_iotv_ocp_Squadleader"}, // 0.30%
  3071. {4027.77777777777, "rhsusf_iotv_ucp_Squadleader"}, // 0.30%
  3072. {4057.97101449274, "rhsusf_iotv_ocp_Teamleader"}, // 0.30%
  3073. {4088.16425120772, "rhsusf_iotv_ucp_Teamleader"}, // 0.30%
  3074. {4118.3574879227, "rhsusf_iotv_ocp_Grenadier"}, // 0.30%
  3075. {4148.55072463767, "rhsusf_iotv_ucp_Grenadier"}, // 0.30%
  3076. {4178.74396135265, "rhs_6b23_ML_6sh92_radio"}, // 0.30%
  3077. {4208.93719806762, "rhs_6b23_crew"}, // 0.30%
  3078. {4239.1304347826, "rhs_6b23_ML_6sh92_headset_mapcase"}, // 0.30%
  3079. {4269.32367149757, "rhs_6b23_ML_6sh92"}, // 0.30%
  3080. {4299.51690821255, "rhs_6b23_6sh92_vog"}, // 0.30%
  3081. {4329.71014492753, "rhs_6b23_6sh92_radio"}, // 0.30%
  3082. {4359.9033816425, "rhs_6b23_6sh92_headset_mapcase"}, // 0.30%
  3083. {4390.09661835748, "rhs_6b23_6sh92_headset"}, // 0.30%
  3084. {4420.28985507245, "rhs_6b23_6sh92"}, // 0.30%
  3085. {4450.48309178743, "rhs_6b23"}, // 0.30%
  3086. {4480.6763285024, "rhs_6b23_engineer"}, // 0.30%
  3087. {4510.86956521738, "rhs_6b13_Flora_6sh92_vog"}, // 0.30%
  3088. {4541.06280193236, "rhs_6b13_Flora_6sh92_headset_mapcase"}, // 0.30%
  3089. {4571.25603864733, "rhs_6b13_Flora_6sh92"}, // 0.30%
  3090. {4601.44927536231, "rhs_6b13_Flora"}, // 0.30%
  3091. {4631.64251207728, "rhs_6b23_digi_6sh92_vog_headset"}, // 0.30%
  3092. {4661.83574879226, "rhs_6b13_6sh92_radio"}, // 0.30%
  3093. {4692.02898550723, "rhs_6b13_6sh92_vog"}, // 0.30%
  3094. {4722.22222222221, "rhs_6sh92_digi"}, // 0.30%
  3095. {4752.41545893719, "rhs_vydra_3m"}, // 0.30%
  3096. {4782.60869565216, "rhs_6sh92_vog_headset"}, // 0.30%
  3097. {4812.80193236714, "rhs_6sh92_vog"}, // 0.30%
  3098. {4842.99516908211, "rhs_6sh92_radio"}, // 0.30%
  3099. {4873.18840579709, "rhs_6sh92_headset"}, // 0.30%
  3100. {4903.38164251206, "rhs_6b23_rifleman"}, // 0.30%
  3101. {4933.57487922704, "rhs_6b23_sniper"}, // 0.30%
  3102. {4963.76811594202, "rhs_6b23_ML"}, // 0.30%
  3103. {4993.96135265699, "rhs_6b23_ML_6sh92_headset"}, // 0.30%
  3104. {5024.15458937197, "rhs_6b13_Flora_crewofficer"}, // 0.30%
  3105. {5054.34782608694, "rhs_6sh46"}, // 0.30%
  3106. {5079.0513833992, "rhs_weap_m249_pip_L"}, // 0.25%
  3107. {5103.75494071145, "rhs_weap_m249_pip_L_para"}, // 0.25%
  3108. {5128.4584980237, "rhs_weap_m249_pip_L_vfg"}, // 0.25%
  3109. {5153.16205533595, "rhs_weap_m249_pip_S"}, // 0.25%
  3110. {5177.86561264821, "rhs_weap_m249_pip_S_para"}, // 0.25%
  3111. {5202.56916996046, "rhs_weap_m249_pip_S_vfg"}, // 0.25%
  3112. {5227.27272727271, "rhs_weap_m240B"}, // 0.25%
  3113. {5251.97628458497, "rhs_weap_m240B_CAP"}, // 0.25%
  3114. {5276.67984189722, "rhs_weap_m240G"}, // 0.25%
  3115. {5301.38339920947, "rhs_weap_pkm"}, // 0.25%
  3116. {5326.08695652173, "rhs_weap_pkp"}, // 0.25%
  3117. {5347.54004576658, "rhs_200rnd_556x45_M_SAW"}, // 0.21%
  3118. {5368.99313501143, "rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Yellow"}, // 0.21%
  3119. {5390.44622425628, "rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Green"}, // 0.21%
  3120. {5411.89931350113, "rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Red"}, // 0.21%
  3121. {5433.35240274598, "rhs_mag_30Rnd_556x45_M855A1_Stanag_No_Tracer"}, // 0.21%
  3122. {5454.80549199083, "rhsusf_mag_7x45acp_MHP"}, // 0.21%
  3123. {5476.25858123568, "rhs_mag_30Rnd_556x45_Mk262_Stanag"}, // 0.21%
  3124. {5497.71167048053, "rhs_mag_30Rnd_556x45_Mk318_Stanag"}, // 0.21%
  3125. {5519.16475972539, "rhs_mag_9x19_17"}, // 0.21%
  3126. {5540.61784897024, "rhs_mag_9x18_12_57N181S"}, // 0.21%
  3127. {5562.07093821509, "rhs_200rnd_556x45_B_SAW"}, // 0.21%
  3128. {5583.52402745994, "rhs_mag_30Rnd_556x45_M855A1_Stanag"}, // 0.21%
  3129. {5604.97711670479, "rhs_10Rnd_762x54mmR_7N1"}, // 0.21%
  3130. {5626.43020594964, "rhs_200rnd_556x45_T_SAW"}, // 0.21%
  3131. {5647.88329519449, "rhsusf_50Rnd_762x51_m993"}, // 0.21%
  3132. {5669.33638443934, "rhs_100Rnd_762x54mmR"}, // 0.21%
  3133. {5690.78947368419, "rhs_45Rnd_545X39_AK_Green"}, // 0.21%
  3134. {5712.24256292904, "rhs_45Rnd_545X39_7N22_AK"}, // 0.21%
  3135. {5733.6956521739, "rhs_45Rnd_545X39_7N10_AK"}, // 0.21%
  3136. {5755.14874141875, "rhs_45Rnd_545X39_AK"}, // 0.21%
  3137. {5776.6018306636, "rhs_30Rnd_545x39_AK_green"}, // 0.21%
  3138. {5798.05491990845, "rhs_30Rnd_545x39_7N22_AK"}, // 0.21%
  3139. {5819.5080091533, "rhs_30Rnd_545x39_7N10_AK"}, // 0.21%
  3140. {5840.96109839815, "rhs_30Rnd_545x39_AK_no_tracers"}, // 0.21%
  3141. {5862.414187643, "rhs_30Rnd_545x39_AK"}, // 0.21%
  3142. {5883.86727688785, "rhs_30Rnd_762x39mm_89"}, // 0.21%
  3143. {5905.3203661327, "rhs_30Rnd_762x39mm_tracer"}, // 0.21%
  3144. {5926.77345537756, "rhs_30Rnd_762x39mm"}, // 0.21%
  3145. {5948.22654462241, "rhsusf_5Rnd_300winmag_xm2010"}, // 0.21%
  3146. {5969.67963386726, "rhsusf_20Rnd_762x51_m993_Mag"}, // 0.21%
  3147. {5991.13272311211, "rhsusf_8Rnd_Slug"}, // 0.21%
  3148. {6012.58581235696, "rhsusf_8Rnd_00Buck"}, // 0.21%
  3149. {6034.03890160181, "rhsusf_100Rnd_762x51_m80a1epr"}, // 0.21%
  3150. {6055.49199084666, "rhsusf_100Rnd_762x51_m993"}, // 0.21%
  3151. {6076.94508009151, "rhsusf_100Rnd_762x51"}, // 0.21%
  3152. {6098.39816933636, "rhsusf_50Rnd_762x51_m80a1epr"}, // 0.21%
  3153. {6119.85125858122, "rhsusf_50Rnd_762x51"}, // 0.21%
  3154. {6141.30434782607, "rhs_100Rnd_762x54mmR_green"}, // 0.21%
  3155. {6162.20735785951, "rhs_weap_svd"}, // 0.21%
  3156. {6183.11036789296, "rhs_weap_svds"}, // 0.21%
  3157. {6204.0133779264, "rhs_weap_sr25_ec"}, // 0.21%
  3158. {6224.91638795985, "rhs_weap_m14ebrri"}, // 0.21%
  3159. {6245.81939799329, "rhs_weap_XM2010"}, // 0.21%
  3160. {6266.72240802674, "rhs_weap_XM2010_wd"}, // 0.21%
  3161. {6287.62541806018, "rhs_weap_XM2010_d"}, // 0.21%
  3162. {6308.52842809362, "rhs_weap_XM2010_sa"}, // 0.21%
  3163. {6329.43143812707, "rhs_weap_sr25"}, // 0.21%
  3164. {6350.33444816051, "rhs_weap_svdp_wd"}, // 0.21%
  3165. {6371.23745819396, "rhs_weap_svdp_wd_npz"}, // 0.21%
  3166. {6392.1404682274, "rhs_weap_svdp_npz"}, // 0.21%
  3167. {6413.04347826085, "rhs_weap_svds_npz"}, // 0.21%
  3168. {6429.34782608694, "Exile_Item_PlasticBottleDirtyWater"}, // 0.16%
  3169. {6443.90527950308, "rhs_weap_m4a1"}, // 0.15%
  3170. {6458.46273291923, "rhs_weap_m4a1_carryhandle_m203"}, // 0.15%
  3171. {6473.02018633538, "rhs_weap_m4a1_carryhandle_pmag"}, // 0.15%
  3172. {6487.57763975153, "rhs_weap_m4a1_carryhandle_grip2"}, // 0.15%
  3173. {6502.13509316768, "rhs_weap_m4a1_grip2"}, // 0.15%
  3174. {6516.69254658383, "rhs_weap_m4a1_carryhandle"}, // 0.15%
  3175. {6531.24999999998, "rhs_weap_m4_m320"}, // 0.15%
  3176. {6545.80745341613, "rhs_weap_m4_m203"}, // 0.15%
  3177. {6560.36490683227, "rhs_weap_m4_grip"}, // 0.15%
  3178. {6574.92236024842, "rhs_weap_m4_carryhandle_pmag"}, // 0.15%
  3179. {6589.47981366457, "rhs_weap_m16a4_carryhandle_M203"}, // 0.15%
  3180. {6604.03726708072, "rhs_weap_m4_grip2"}, // 0.15%
  3181. {6618.59472049687, "rhs_weap_m4"}, // 0.15%
  3182. {6633.15217391302, "rhs_weap_m16a4_grip"}, // 0.15%
  3183. {6647.70962732917, "rhs_weap_m16a4_carryhandle_pmag"}, // 0.15%
  3184. {6662.26708074532, "rhs_weap_m16a4_carryhandle_grip_pmag"}, // 0.15%
  3185. {6676.82453416146, "rhs_weap_m16a4_carryhandle_grip"}, // 0.15%
  3186. {6691.38198757761, "rhs_weap_m16a4_carryhandle"}, // 0.15%
  3187. {6705.93944099376, "rhs_weap_m16a4"}, // 0.15%
  3188. {6720.49689440991, "rhs_weap_m4a1_grip"}, // 0.15%
  3189. {6735.05434782606, "rhs_weap_m4_carryhandle"}, // 0.15%
  3190. {6749.61180124221, "rhs_weap_m4a1_m203"}, // 0.15%
  3191. {6764.16925465836, "rhs_weap_ak74m_folded"}, // 0.15%
  3192. {6778.72670807451, "rhs_weap_m4a1_blockII"}, // 0.15%
  3193. {6793.28416149065, "rhs_weap_ak74m_desert"}, // 0.15%
  3194. {6807.8416149068, "rhs_weap_ak74m_desert_npz"}, // 0.15%
  3195. {6822.39906832295, "rhs_weap_ak74m_desert_folded"}, // 0.15%
  3196. {6836.9565217391, "rhs_weap_ak74m_plummag_folded"}, // 0.15%
  3197. {6851.51397515525, "rhs_weap_ak74m_camo_folded"}, // 0.15%
  3198. {6866.0714285714, "rhs_weap_ak74m_gp25"}, // 0.15%
  3199. {6880.62888198755, "rhs_weap_ak74m_camo"}, // 0.15%
  3200. {6895.1863354037, "rhs_weap_ak74m_gp25_npz"}, // 0.15%
  3201. {6909.74378881984, "rhs_weap_ak74m_plummag"}, // 0.15%
  3202. {6924.30124223599, "rhs_weap_ak74m_plummag_npz"}, // 0.15%
  3203. {6938.85869565214, "rhs_weap_akm"}, // 0.15%
  3204. {6953.41614906829, "rhs_weap_akm_gp25"}, // 0.15%
  3205. {6967.97360248444, "rhs_weap_akms"}, // 0.15%
  3206. {6982.53105590059, "rhs_weap_akms_gp25"}, // 0.15%
  3207. {6997.08850931674, "rhs_weap_ak74m_npz"}, // 0.15%
  3208. {7011.64596273289, "rhs_weap_m4a1_m320"}, // 0.15%
  3209. {7026.20341614903, "rhs_weap_ak74m_2mag_npz"}, // 0.15%
  3210. {7040.76086956518, "rhs_weap_ak74m_2mag"}, // 0.15%
  3211. {7055.31832298133, "rhs_weap_m4a1_blockII_KAC"}, // 0.15%
  3212. {7069.87577639748, "rhs_weap_m4a1_blockII_grip2"}, // 0.15%
  3213. {7084.43322981363, "rhs_weap_m4a1_blockII_grip2_KAC"}, // 0.15%
  3214. {7098.99068322978, "rhs_weap_m4a1_blockII_M203"}, // 0.15%
  3215. {7113.54813664593, "rhs_weap_mk18"}, // 0.15%
  3216. {7128.10559006208, "rhs_weap_mk18_KAC"}, // 0.15%
  3217. {7142.66304347822, "rhs_weap_ak74m_2mag_camo"}, // 0.15%
  3218. {7157.22049689437, "rhs_weap_mk18_grip2"}, // 0.15%
  3219. {7171.77795031052, "rhs_weap_mk18_m320"}, // 0.15%
  3220. {7186.33540372667, "rhs_weap_ak103"}, // 0.15%
  3221. {7200.89285714282, "rhs_weap_ak103_npz"}, // 0.15%
  3222. {7215.45031055897, "rhs_weap_ak103_1"}, // 0.15%
  3223. {7230.00776397512, "rhs_weap_ak74m"}, // 0.15%
  3224. {7244.56521739127, "rhs_weap_mk18_grip2_KAC"}, // 0.15%
  3225. {7258.2858161083, "Exile_Item_InstantCoffee"}, // 0.14%
  3226. {7271.87277263004, "FlareYellow_F"}, // 0.14%
  3227. {7285.45972915178, "FlareWhite_F"}, // 0.14%
  3228. {7299.04668567352, "FlareRed_F"}, // 0.14%
  3229. {7312.63364219526, "Chemlight_blue"}, // 0.14%
  3230. {7326.220598717, "Chemlight_yellow"}, // 0.14%
  3231. {7339.80755523873, "Chemlight_red"}, // 0.14%
  3232. {7353.39451176047, "V_Rangemaster_belt"}, // 0.14%
  3233. {7366.98146828221, "FlareGreen_F"}, // 0.14%
  3234. {7380.56842480395, "Chemlight_green"}, // 0.14%
  3235. {7393.50838339608, "rhsusf_acc_LEUPOLDMK4"}, // 0.13%
  3236. {7406.44834198822, "rhsusf_acc_ELCAN"}, // 0.13%
  3237. {7419.38830058035, "rhsusf_acc_ELCAN_pip"}, // 0.13%
  3238. {7432.32825917248, "rhsusf_acc_ACOG"}, // 0.13%
  3239. {7445.26821776462, "rhsusf_acc_ACOG_pip"}, // 0.13%
  3240. {7458.20817635675, "rhs_acc_1pn93_2"}, // 0.13%
  3241. {7471.14813494888, "rhsusf_acc_ACOG2"}, // 0.13%
  3242. {7484.08809354101, "rhsusf_acc_ACOG_USMC"}, // 0.13%
  3243. {7497.02805213315, "rhsusf_acc_eotech_552"}, // 0.13%
  3244. {7509.96801072528, "rhsusf_acc_ACOG3_USMC"}, // 0.13%
  3245. {7522.90796931741, "rhsusf_acc_ACOG2_USMC"}, // 0.13%
  3246. {7535.84792790955, "rhs_acc_pso1m2"}, // 0.13%
  3247. {7548.78788650168, "rhs_acc_pgo7v"}, // 0.13%
  3248. {7561.72784509381, "rhs_acc_ekp1"}, // 0.13%
  3249. {7574.66780368594, "rhs_acc_1p63"}, // 0.13%
  3250. {7587.60776227808, "rhs_acc_1pn93_1"}, // 0.13%
  3251. {7600.54772087021, "rhs_acc_1p78"}, // 0.13%
  3252. {7613.48767946234, "rhs_acc_1p29"}, // 0.13%
  3253. {7626.42763805448, "rhsusf_acc_EOTECH"}, // 0.13%
  3254. {7639.36759664661, "rhsusf_acc_LEUPOLDMK4_2"}, // 0.13%
  3255. {7652.30755523874, "rhs_acc_pkas"}, // 0.13%
  3256. {7664.75362228156, "rhsusf_ach_bare_wood_headset"}, // 0.12%
  3257. {7677.19968932437, "rhsusf_ach_bare_wood_headset_ess"}, // 0.12%
  3258. {7689.64575636718, "rhsusf_ach_helmet_ESS_ucp"}, // 0.12%
  3259. {7702.09182341, "rhsusf_ach_helmet_M81"}, // 0.12%
  3260. {7714.53789045281, "rhsusf_ach_helmet_camo_ocp"}, // 0.12%
  3261. {7726.98395749563, "rhsusf_ach_helmet_headset_ess_ocp"}, // 0.12%
  3262. {7739.43002453844, "rhsusf_ach_helmet_headset_ess_ucp"}, // 0.12%
  3263. {7751.87609158126, "rhsusf_ach_helmet_headset_ocp"}, // 0.12%
  3264. {7764.32215862407, "rhsusf_ach_helmet_ESS_ocp"}, // 0.12%
  3265. {7776.76822566688, "rhsusf_ach_helmet_ucp"}, // 0.12%
  3266. {7789.2142927097, "rhsusf_ach_helmet_ocp"}, // 0.12%
  3267. {7801.66035975251, "rhsusf_ach_helmet_ocp_norotos"}, // 0.12%
  3268. {7814.10642679533, "rhsusf_ach_helmet_ucp_norotos"}, // 0.12%
  3269. {7826.55249383814, "rhsusf_bowman_cap"}, // 0.12%
  3270. {7838.99856088096, "rhsusf_lwh_helmet_M1942"}, // 0.12%
  3271. {7851.44462792377, "rhsusf_lwh_helmet_marpatd"}, // 0.12%
  3272. {7863.89069496658, "rhsusf_lwh_helmet_marpatd_ess"}, // 0.12%
  3273. {7876.3367620094, "rhsusf_lwh_helmet_marpatd_headset"}, // 0.12%
  3274. {7888.78282905221, "rhsusf_ach_bare_wood_ess"}, // 0.12%
  3275. {7901.22889609503, "rhsusf_ach_helmet_headset_ucp"}, // 0.12%
  3276. {7913.67496313784, "rhsusf_ach_bare_wood"}, // 0.12%
  3277. {7926.12103018066, "rhsusf_ach_bare_des_headset"}, // 0.12%
  3278. {7938.56709722347, "rhsusf_ach_bare_tan_headset"}, // 0.12%
  3279. {7951.01316426628, "rhs_Booniehat_digi"}, // 0.12%
  3280. {7963.4592313091, "rhs_Booniehat_flora"}, // 0.12%
  3281. {7975.90529835191, "rhs_ssh68"}, // 0.12%
  3282. {7988.35136539473, "rhs_Booniehat_m81"}, // 0.12%
  3283. {8000.79743243754, "rhs_Booniehat_marpatd"}, // 0.12%
  3284. {8013.24349948036, "rhs_Booniehat_marpatwd"}, // 0.12%
  3285. {8025.68956652317, "rhs_Booniehat_ocp"}, // 0.12%
  3286. {8038.13563356598, "rhs_Booniehat_ucp"}, // 0.12%
  3287. {8050.5817006088, "rhsusf_Bowman"}, // 0.12%
  3288. {8063.02776765161, "rhsusf_ach_bare"}, // 0.12%
  3289. {8075.47383469443, "rhsusf_ach_bare_tan_headset_ess"}, // 0.12%
  3290. {8087.91990173724, "rhsusf_ach_bare_des"}, // 0.12%
  3291. {8100.36596878006, "rhsusf_ach_bare_des_headset_ess"}, // 0.12%
  3292. {8112.81203582287, "rhsusf_ach_bare_ess"}, // 0.12%
  3293. {8125.25810286569, "rhsusf_ach_bare_headset"}, // 0.12%
  3294. {8137.7041699085, "rhsusf_ach_bare_headset_ess"}, // 0.12%
  3295. {8150.15023695131, "rhsusf_ach_bare_semi"}, // 0.12%
  3296. {8162.59630399413, "rhsusf_ach_bare_semi_ess"}, // 0.12%
  3297. {8175.04237103694, "rhsusf_ach_bare_semi_headset"}, // 0.12%
  3298. {8187.48843807976, "rhsusf_ach_bare_semi_headset_ess"}, // 0.12%
  3299. {8199.93450512257, "rhsusf_ach_bare_tan"}, // 0.12%
  3300. {8212.38057216539, "rhsusf_ach_bare_tan_ess"}, // 0.12%
  3301. {8224.8266392082, "rhsusf_ach_bare_des_ess"}, // 0.12%
  3302. {8237.27270625101, "rhs_6b28_flora_ess_bala"}, // 0.12%
  3303. {8249.71877329383, "rhsusf_mich_bare_norotos_alt_semi"}, // 0.12%
  3304. {8262.16484033664, "rhsusf_lwh_helmet_marpatwd_ess"}, // 0.12%
  3305. {8274.61090737946, "rhsusf_mich_bare_norotos_semi_headset"}, // 0.12%
  3306. {8287.05697442227, "rhsusf_mich_bare_norotos_tan"}, // 0.12%
  3307. {8299.50304146509, "rhsusf_mich_bare_norotos_tan_headset"}, // 0.12%
  3308. {8311.9491085079, "rhsusf_mich_bare_semi"}, // 0.12%
  3309. {8324.39517555072, "rhsusf_mich_bare_semi_headset"}, // 0.12%
  3310. {8336.84124259353, "rhsusf_mich_bare_tan"}, // 0.12%
  3311. {8349.28730963634, "rhsusf_mich_bare_tan_headset"}, // 0.12%
  3312. {8361.73337667916, "rhsusf_mich_helmet_marpatd_alt_headset"}, // 0.12%
  3313. {8374.17944372197, "rhsusf_mich_helmet_marpatd_headset"}, // 0.12%
  3314. {8386.62551076479, "rhsusf_mich_helmet_marpatd_norotos"}, // 0.12%
  3315. {8399.0715778076, "rhsusf_mich_helmet_marpatd_norotos_arc"}, // 0.12%
  3316. {8411.51764485042, "rhsusf_mich_helmet_marpatd_norotos_arc_headset"}, // 0.12%
  3317. {8423.96371189323, "rhsusf_mich_helmet_marpatd_norotos_headset"}, // 0.12%
  3318. {8436.40977893604, "rhsusf_mich_helmet_marpatwd"}, // 0.12%
  3319. {8448.85584597886, "rhsusf_mich_helmet_marpatwd_alt"}, // 0.12%
  3320. {8461.30191302167, "rhsusf_mich_helmet_marpatwd_alt_headset"}, // 0.12%
  3321. {8473.74798006449, "rhsusf_mich_helmet_marpatwd_headset"}, // 0.12%
  3322. {8486.1940471073, "rhsusf_mich_helmet_marpatwd_norotos"}, // 0.12%
  3323. {8498.64011415012, "rhsusf_mich_helmet_marpatwd_norotos_arc"}, // 0.12%
  3324. {8511.08618119293, "rhsusf_mich_helmet_marpatwd_norotos_arc_headset"}, // 0.12%
  3325. {8523.53224823574, "rhsusf_mich_helmet_marpatwd_norotos_headset"}, // 0.12%
  3326. {8535.97831527856, "rhsusf_mich_bare_norotos_semi"}, // 0.12%
  3327. {8548.42438232137, "rhsusf_lwh_helmet_marpatwd"}, // 0.12%
  3328. {8560.87044936419, "rhsusf_mich_bare_norotos_headset"}, // 0.12%
  3329. {8573.316516407, "rhsusf_mich_bare_norotos_arc_semi_headset"}, // 0.12%
  3330. {8585.76258344982, "rhsusf_lwh_helmet_marpatwd_headset"}, // 0.12%
  3331. {8598.20865049263, "rhsusf_mich_bare"}, // 0.12%
  3332. {8610.65471753544, "rhsusf_mich_bare_alt"}, // 0.12%
  3333. {8623.10078457826, "rhsusf_mich_bare_alt_semi"}, // 0.12%
  3334. {8635.54685162107, "rhsusf_mich_bare_alt_tan"}, // 0.12%
  3335. {8647.99291866389, "rhsusf_mich_bare_headset"}, // 0.12%
  3336. {8660.4389857067, "rhsusf_mich_bare_norotos"}, // 0.12%
  3337. {8672.88505274952, "rhsusf_mich_bare_norotos_alt"}, // 0.12%
  3338. {8685.33111979233, "rhsusf_mich_bare_norotos_alt_headset"}, // 0.12%
  3339. {8697.77718683514, "rhsusf_mich_bare_norotos_alt_semi_headset"}, // 0.12%
  3340. {8710.22325387796, "rhsusf_mich_bare_norotos_alt_tan"}, // 0.12%
  3341. {8722.66932092077, "rhsusf_mich_bare_norotos_alt_tan_headset"}, // 0.12%
  3342. {8735.11538796359, "rhsusf_mich_bare_norotos_arc"}, // 0.12%
  3343. {8747.5614550064, "rhsusf_mich_bare_norotos_arc_alt"}, // 0.12%
  3344. {8760.00752204922, "rhsusf_mich_bare_norotos_arc_alt_headset"}, // 0.12%
  3345. {8772.45358909203, "rhsusf_mich_bare_norotos_arc_alt_semi"}, // 0.12%
  3346. {8784.89965613484, "rhsusf_mich_bare_norotos_arc_alt_semi_headset"}, // 0.12%
  3347. {8797.34572317766, "rhsusf_mich_bare_norotos_arc_alt_tan"}, // 0.12%
  3348. {8809.79179022047, "rhsusf_mich_bare_norotos_arc_alt_tan_headset"}, // 0.12%
  3349. {8822.23785726329, "rhsusf_mich_bare_norotos_arc_headset"}, // 0.12%
  3350. {8834.6839243061, "rhsusf_mich_bare_norotos_arc_semi"}, // 0.12%
  3351. {8847.12999134892, "rhsusf_mich_bare_norotos_arc_tan"}, // 0.12%
  3352. {8859.57605839173, "rhs_6b28_flora_ess"}, // 0.12%
  3353. {8872.02212543455, "rhs_6b28_bala"}, // 0.12%
  3354. {8884.46819247736, "rhs_6b28_flora"}, // 0.12%
  3355. {8896.91425952017, "rhs_6b26_ess_green"}, // 0.12%
  3356. {8909.36032656299, "rhs_6b26_bala_green"}, // 0.12%
  3357. {8921.8063936058, "rhs_6b26_green"}, // 0.12%
  3358. {8934.25246064862, "rhs_6b27m_ml_ess"}, // 0.12%
  3359. {8946.69852769143, "rhs_6b27m_ml_bala"}, // 0.12%
  3360. {8959.14459473425, "rhs_6b27m_ml"}, // 0.12%
  3361. {8971.59066177706, "rhs_6b26_ess_bala_green"}, // 0.12%
  3362. {8984.03672881987, "rhs_6b27m_ess_bala"}, // 0.12%
  3363. {8996.48279586269, "rhs_6b27m_ess"}, // 0.12%
  3364. {9008.9288629055, "rhs_6b27m"}, // 0.12%
  3365. {9021.37492994832, "rhs_6b27m_digi_ess"}, // 0.12%
  3366. {9033.82099699113, "rhs_6b27m_digi_bala"}, // 0.12%
  3367. {9046.26706403395, "rhs_6b27m_digi"}, // 0.12%
  3368. {9058.71313107676, "rhs_6b28_flora_bala"}, // 0.12%
  3369. {9071.15919811957, "rhs_6b27m_bala"}, // 0.12%
  3370. {9083.60526516239, "rhs_6b26"}, // 0.12%
  3371. {9096.0513322052, "rhs_6b27m_ML_ess_bala"}, // 0.12%
  3372. {9108.49739924802, "rhs_6b26_ess"}, // 0.12%
  3373. {9120.94346629083, "rhs_6b28_ess"}, // 0.12%
  3374. {9133.38953333365, "rhs_6b26_bala"}, // 0.12%
  3375. {9145.83560037646, "rhs_6b28"}, // 0.12%
  3376. {9158.28166741927, "rhs_6b28_green_ess_bala"}, // 0.12%
  3377. {9170.72773446209, "rhs_6b28_green_ess"}, // 0.12%
  3378. {9183.1738015049, "rhs_6b28_green_bala"}, // 0.12%
  3379. {9195.61986854772, "rhs_6b28_ess_bala"}, // 0.12%
  3380. {9208.06593559053, "rhs_6b28_green"}, // 0.12%
  3381. {9220.51200263335, "rhs_6b27m_green_ess_bala"}, // 0.12%
  3382. {9232.95806967616, "rhs_6b27m_green_ess"}, // 0.12%
  3383. {9245.40413671897, "rhs_6b27m_green_bala"}, // 0.12%
  3384. {9257.85020376179, "rhs_6b27m_green"}, // 0.12%
  3385. {9270.2962708046, "rhs_6b26_ess_bala"}, // 0.12%
  3386. {9282.74233784742, "rhs_6b27m_digi_ess_bala"}, // 0.12%
  3387. {9293.96828225226, "Exile_Item_Raisins"}, // 0.11%
  3388. {9305.19422665711, "Exile_Item_Moobar"}, // 0.11%
  3389. {9316.0637918745, "Exile_Item_MountainDupe"}, // 0.11%
  3390. {9326.04240912326, "Exile_Item_SeedAstics"}, // 0.10%
  3391. {9335.72816030707, "U_C_HunterBody_grn"}, // 0.10%
  3392. {9345.41391149088, "U_C_Scientist"}, // 0.10%
  3393. {9355.0996626747, "U_Rangemaster"}, // 0.10%
  3394. {9364.78541385851, "U_C_Poor_shorts_1"}, // 0.10%
  3395. {9374.47116504232, "U_C_Poor_2"}, // 0.10%
  3396. {9384.15691622614, "U_C_Journalist"}, // 0.10%
  3397. {9393.84266740995, "U_C_Poor_1"}, // 0.10%
  3398. {9403.08179784473, "Exile_Item_EnergyDrink"}, // 0.09%
  3399. {9411.81308793739, "Exile_Item_CatFood"}, // 0.09%
  3400. {9420.54437803005, "Exile_Item_Cheathas"}, // 0.09%
  3401. {9429.27566812271, "Exile_Item_Noodles"}, // 0.09%
  3402. {9438.00695821537, "Exile_Item_SausageGravy"}, // 0.09%
  3403. {9446.73824830803, "Exile_Item_ChristmasTinner"}, // 0.09%
  3404. {9455.46953840069, "Exile_Item_BBQSandwich"}, // 0.09%
  3405. {9464.20082849335, "Exile_Item_Surstromming"}, // 0.09%
  3406. {9472.932118586, "Exile_Item_BeefParts"}, // 0.09%
  3407. {9481.66340867866, "Exile_Item_Dogfood"}, // 0.09%
  3408. {9489.81558259171, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 0.08%
  3409. {9497.96775650475, "30Rnd_45ACP_Mag_SMG_01"}, // 0.08%
  3410. {9505.57645215693, "Exile_Item_Beer"}, // 0.08%
  3411. {9513.10981418878, "U_C_Poloshirt_salmon"}, // 0.08%
  3412. {9520.64317622064, "U_C_Poloshirt_tricolour"}, // 0.08%
  3413. {9528.17653825249, "U_C_Poloshirt_stripped"}, // 0.08%
  3414. {9535.70990028435, "U_C_Poloshirt_burgundy"}, // 0.08%
  3415. {9543.24326231621, "U_C_Poloshirt_blue"}, // 0.08%
  3416. {9550.72722525277, "Exile_Item_GloriousKnakworst"}, // 0.07%
  3417. {9558.03157307886, "hgun_P07_F"}, // 0.07%
  3418. {9564.98809481799, "hgun_ACPC2_F"}, // 0.07%
  3419. {9571.94461655712, "hgun_Rook40_F"}, // 0.07%
  3420. {9578.73809481799, "V_TacVest_blk_POLICE"}, // 0.07%
  3421. {9585.53157307886, "V_Press_F"}, // 0.07%
  3422. {9592.05331220929, "H_Cap_red"}, // 0.07%
  3423. {9598.57505133973, "H_Cap_tan"}, // 0.07%
  3424. {9605.09679047016, "H_Hat_blue"}, // 0.07%
  3425. {9611.61852960059, "H_Hat_brown"}, // 0.07%
  3426. {9618.14026873103, "H_Hat_checker"}, // 0.07%
  3427. {9624.66200786146, "H_Hat_grey"}, // 0.07%
  3428. {9631.1837469919, "H_Hat_tan"}, // 0.07%
  3429. {9637.70548612233, "H_StrawHat"}, // 0.07%
  3430. {9644.22722525276, "Exile_Item_PlasticBottleFreshWater"}, // 0.07%
  3431. {9650.7489643832, "H_StrawHat_dark"}, // 0.07%
  3432. {9657.27070351363, "H_Cap_press"}, // 0.07%
  3433. {9663.5073392941, "Exile_Item_Matches"}, // 0.06%
  3434. {9669.74397507457, "Exile_Item_CanOpener"}, // 0.06%
  3435. {9675.72223594414, "B_OutdoorPack_blk"}, // 0.06%
  3436. {9681.59180116153, "muzzle_snds_acp"}, // 0.06%
  3437. {9687.46136637892, "muzzle_snds_L"}, // 0.06%
  3438. {9693.14698510802, "SMG_01_F"}, // 0.06%
  3439. {9698.66537975685, "SMG_02_F"}, // 0.06%
  3440. {9704.18377440568, "hgun_PDW2000_F"}, // 0.06%
  3441. {9709.61855701438, "H_Cap_blu"}, // 0.05%
  3442. {9715.05333962307, "H_Cap_oli"}, // 0.05%
  3443. {9720.48812223177, "H_Cap_headphones"}, // 0.05%
  3444. {9725.92290484046, "H_Cap_grn"}, // 0.05%
  3445. {9731.35768744916, "Exile_Item_ZipTie"}, // 0.05%
  3446. {9736.79247005786, "H_Cap_blk_Raven"}, // 0.05%
  3447. {9742.22725266655, "H_Cap_blk"}, // 0.05%
  3448. {9747.66203527525, "H_Beret_blk_POLICE"}, // 0.05%
  3449. {9753.09681788394, "H_Bandanna_surfer"}, // 0.05%
  3450. {9758.53160049264, "9Rnd_45ACP_Mag"}, // 0.05%
  3451. {9763.96638310133, "11Rnd_45ACP_Mag"}, // 0.05%
  3452. {9769.40116571003, "30Rnd_9x21_Mag"}, // 0.05%
  3453. {9774.78160049264, "B_OutdoorPack_blu"}, // 0.05%
  3454. {9780.16203527525, "B_OutdoorPack_tan"}, // 0.05%
  3455. {9785.17875768327, "SMG_05_F"}, // 0.05%
  3456. {9789.96136637893, "B_HuntingBackpack"}, // 0.05%
  3457. {9794.48310550936, "hgun_Pistol_heavy_01_F"}, // 0.05%
  3458. {9799.00484463979, "hgun_Pistol_01_F"}, // 0.05%
  3459. {9803.52658377023, "hgun_Pistol_Signal_F"}, // 0.05%
  3460. {9808.04832290066, "hgun_Pistol_heavy_02_F"}, // 0.05%
  3461. {9812.39614898762, "6Rnd_45ACP_Cylinder"}, // 0.04%
  3462. {9816.62007329489, "ItemWatch"}, // 0.04%
  3463. {9820.84399760217, "ItemRadio"}, // 0.04%
  3464. {9825.02878021087, "B_AssaultPack_mcamo"}, // 0.04%
  3465. {9829.21356281956, "B_AssaultPack_cbr"}, // 0.04%
  3466. {9833.39834542826, "B_AssaultPack_blk"}, // 0.04%
  3467. {9837.58312803695, "B_AssaultPack_sgg"}, // 0.04%
  3468. {9841.76791064565, "B_AssaultPack_rgr"}, // 0.04%
  3469. {9845.95269325435, "B_AssaultPack_dgtl"}, // 0.04%
  3470. {9850.13747586304, "B_AssaultPack_khk"}, // 0.04%
  3471. {9854.31138890652, "hgun_P07_khk_F"}, // 0.04%
  3472. {9858.11573673261, "Exile_Item_PowerDrink"}, // 0.04%
  3473. {9861.85771820089, "Exile_Item_CookingPot"}, // 0.04%
  3474. {9865.59969966917, "Exile_Item_EMRE"}, // 0.04%
  3475. {9868.86056923439, "optic_Holosight_smg"}, // 0.03%
  3476. {9872.12143879961, "optic_Aco"}, // 0.03%
  3477. {9875.38230836482, "optic_Aco_smg"}, // 0.03%
  3478. {9878.64317793004, "optic_ACO_grn"}, // 0.03%
  3479. {9881.90404749526, "optic_ACO_grn_smg"}, // 0.03%
  3480. {9884.89317793004, "B_Kitbag_mcamo"}, // 0.03%
  3481. {9887.88230836482, "B_Kitbag_sgg"}, // 0.03%
  3482. {9890.87143879961, "B_Kitbag_cbr"}, // 0.03%
  3483. {9893.68738833779, "ItemGPS"}, // 0.03%
  3484. {9896.50333787597, "Binocular"}, // 0.03%
  3485. {9899.31928741416, "Exile_Item_CordlessScrewdriver"}, // 0.03%
  3486. {9902.13523695234, "Exile_Item_FireExtinguisher"}, // 0.03%
  3487. {9904.95118649053, "Exile_Item_Foolbox"}, // 0.03%
  3488. {9907.76713602871, "Exile_Item_OilCanister"}, // 0.03%
  3489. {9910.5830855669, "Laserdesignator_02"}, // 0.03%
  3490. {9913.39903510508, "NVGoggles_INDEP"}, // 0.03%
  3491. {9916.21498464326, "Exile_Item_Hammer"}, // 0.03%
  3492. {9919.03093418145, "Exile_Item_MobilePhone"}, // 0.03%
  3493. {9921.84688371963, "NVGoggles_OPFOR"}, // 0.03%
  3494. {9924.66283325782, "Exile_Item_SleepingMat"}, // 0.03%
  3495. {9927.478782796, "Exile_Item_Wrench"}, // 0.03%
  3496. {9930.29473233419, "Exile_Item_Shovel"}, // 0.03%
  3497. {9933.11068187237, "Exile_Item_Screwdriver"}, // 0.03%
  3498. {9935.92663141055, "Laserdesignator_03"}, // 0.03%
  3499. {9938.6440227149, "16Rnd_9x21_Mag"}, // 0.03%
  3500. {9941.21839342428, "30Rnd_65x39_caseless_green"}, // 0.03%
  3501. {9943.79276413367, "30Rnd_556x45_Stanag"}, // 0.03%
  3502. {9946.07537282932, "optic_MRD"}, // 0.02%
  3503. {9948.35798152497, "optic_Yorris"}, // 0.02%
  3504. {9950.26015543801, "6Rnd_GreenSignal_F"}, // 0.02%
  3505. {9952.16232935106, "6Rnd_RedSignal_F"}, // 0.02%
  3506. {9954.05020120461, "20Rnd_556x45_UW_mag"}, // 0.02%
  3507. {9955.59482363023, "30Rnd_65x39_caseless_mag"}, // 0.02%
  3508. {9957.13944605586, "30Rnd_556x45_Stanag_Tracer_Green"}, // 0.02%
  3509. {9958.68406848149, "30Rnd_556x45_Stanag_Tracer_Red"}, // 0.02%
  3510. {9960.22869090712, "30Rnd_556x45_Stanag_Tracer_Yellow"}, // 0.02%
  3511. {9961.77331333275, "30Rnd_65x39_caseless_green_mag_Tracer"}, // 0.02%
  3512. {9963.31793575838, "30Rnd_65x39_caseless_mag_Tracer"}, // 0.02%
  3513. {9964.5860517004, "acc_flashlight"}, // 0.01%
  3514. {9965.66224627638, "U_NikosAgedBody"}, // 0.01%
  3515. {9966.73844085236, "U_NikosBody"}, // 0.01%
  3516. {9967.81463542834, "U_OrestesBody"}, // 0.01%
  3517. {9968.72043252979, "muzzle_snds_58_wdm_F"}, // 0.01%
  3518. {9969.62622963124, "muzzle_snds_B_khk_F"}, // 0.01%
  3519. {9970.53202673269, "muzzle_snds_H_MG_blk_F"}, // 0.01%
  3520. {9971.43782383414, "muzzle_snds_65_TI_hex_F"}, // 0.01%
  3521. {9972.34362093559, "muzzle_snds_65_TI_ghex_F"}, // 0.01%
  3522. {9973.24941803704, "muzzle_snds_B_snd_F"}, // 0.01%
  3523. {9974.15521513849, "optic_DMS"}, // 0.01%
  3524. {9975.06101223994, "muzzle_snds_65_TI_blk_F"}, // 0.01%
  3525. {9975.96680934139, "muzzle_snds_H_MG_khk_F"}, // 0.01%
  3526. {9976.87260644284, "acc_pointer_IR"}, // 0.01%
  3527. {9977.77840354429, "optic_Holosight"}, // 0.01%
  3528. {9978.68420064574, "optic_Hamr"}, // 0.01%
  3529. {9979.58999774719, "optic_Arco"}, // 0.01%
  3530. {9980.49579484864, "muzzle_snds_H"}, // 0.01%
  3531. {9981.40159195009, "muzzle_snds_M"}, // 0.01%
  3532. {9982.30738905154, "optic_MRCO"}, // 0.01%
  3533. {9983.08010695799, "arifle_Katiba_F"}, // 0.01%
  3534. {9983.69828128315, "arifle_Katiba_GL_F"}, // 0.01%
  3535. {9984.31645560831, "arifle_MXC_F"}, // 0.01%
  3536. {9984.93462993347, "arifle_MX_F"}, // 0.01%
  3537. {9985.55280425863, "arifle_TRG21_F"}, // 0.01%
  3538. {9986.17097858379, "arifle_TRG20_F"}, // 0.01%
  3539. {9986.7118811183, "arifle_Mk20_F"}, // 0.01%
  3540. {9987.25278365282, "arifle_Mk20C_F"}, // 0.01%
  3541. {9987.71641439669, "arifle_MXM_F"}, // 0.00%
  3542. {9988.18004514056, "arifle_SDAR_F"}, // 0.00%
  3543. {9988.63294369128, "optic_NVS"}, // 0.00%
  3544. {9988.94203085386, "arifle_MX_GL_F"}, // 0.00%
  3545. {9989.25111801644, "arifle_TRG21_GL_F"}, // 0.00%
  3546. {9989.56020517902, "arifle_Mk20_GL_F"}, // 0.00%
  3547. {9989.84180013284, "Exile_Item_Knife"}, // 0.00%
  3548. {9990.12339508666, "Exile_Item_ThermalScannerPro"}, // 0.00%
  3549. {9990.40499004047, "Exile_Headgear_GasMask"}, // 0.00%
  3550. {9990.63680541241, "arifle_MXM_Black_F"}, // 0.00%
  3551. {9990.86862078434, "Exile_Weapon_TaurusGold"}, // 0.00%
  3552. {9991.10043615628, "Exile_Weapon_Taurus"}, // 0.00%
  3553. {9991.33225152821, "Exile_Weapon_VSSVintorez"}, // 0.00%
  3554. {9991.56406690015, "Exile_Weapon_SVDCamo"}, // 0.00%
  3555. {9991.79588227208, "Exile_Weapon_SVD"}, // 0.00%
  3556. {9992.02769764402, "Exile_Weapon_CZ550"}, // 0.00%
  3557. {9992.25951301596, "Exile_Weapon_M1014"}, // 0.00%
  3558. {9992.49132838789, "Exile_Weapon_AK107_GL"}, // 0.00%
  3559. {9992.72314375983, "Exile_Weapon_AK74"}, // 0.00%
  3560. {9992.95495913176, "arifle_SPAR_03_khk_F"}, // 0.00%
  3561. {9993.1867745037, "arifle_SPAR_03_blk_F"}, // 0.00%
  3562. {9993.41858987563, "arifle_SPAR_02_snd_F"}, // 0.00%
  3563. {9993.65040524757, "arifle_SPAR_02_khk_F"}, // 0.00%
  3564. {9993.8822206195, "arifle_SPAR_02_blk_F"}, // 0.00%
  3565. {9994.11403599144, "arifle_SPAR_01_GL_snd_F"}, // 0.00%
  3566. {9994.34585136337, "arifle_SPAR_01_GL_khk_F"}, // 0.00%
  3567. {9994.57766673531, "arifle_SPAR_01_GL_blk_F"}, // 0.00%
  3568. {9994.80948210724, "arifle_SPAR_03_snd_F"}, // 0.00%
  3569. {9995.04129747918, "arifle_SPAR_01_khk_F"}, // 0.00%
  3570. {9995.27311285111, "arifle_SPAR_01_blk_F"}, // 0.00%
  3571. {9995.50492822305, "arifle_MXC_khk_F"}, // 0.00%
  3572. {9995.73674359498, "arifle_MXC_Black_F"}, // 0.00%
  3573. {9995.96855896692, "arifle_MX_Black_F"}, // 0.00%
  3574. {9996.20037433885, "arifle_MX_GL_Black_F"}, // 0.00%
  3575. {9996.43218971079, "arifle_AK12_F"}, // 0.00%
  3576. {9996.66400508272, "arifle_AK12_GL_F"}, // 0.00%
  3577. {9996.89582045466, "arifle_AKM_F"}, // 0.00%
  3578. {9997.1276358266, "arifle_AKM_FL_F"}, // 0.00%
  3579. {9997.35945119853, "arifle_MXM_khk_F"}, // 0.00%
  3580. {9997.59126657047, "arifle_AKS_F"}, // 0.00%
  3581. {9997.8230819424, "arifle_ARX_ghex_F"}, // 0.00%
  3582. {9998.05489731434, "arifle_ARX_hex_F"}, // 0.00%
  3583. {9998.28671268627, "arifle_CTAR_blk_F"}, // 0.00%
  3584. {9998.51852805821, "arifle_CTAR_GL_blk_F"}, // 0.00%
  3585. {9998.75034343014, "arifle_CTARS_blk_F"}, // 0.00%
  3586. {9998.98215880208, "arifle_MX_GL_khk_F"}, // 0.00%
  3587. {9999.21397417401, "arifle_MX_khk_F"}, // 0.00%
  3588. {9999.44578954595, "arifle_MX_SW_khk_F"}, // 0.00%
  3589. {9999.67760491788, "arifle_ARX_blk_F"}, // 0.00%
  3590. {9999.90942028982, "arifle_SPAR_01_snd_F"}, // 0.00%
  3591. {9999.99999999996, "optic_tws"} // 0.00%
  3592. };
  3593. };
  3594. /**
  3595. Result of 100 rounds:
  3596. rhs_uniform_gorka_r_g
  3597. Exile_Item_MountainDupe
  3598. rhs_uniform_mflora_patchless
  3599. Exile_Item_Can_Empty
  3600. SmokeShellBlue
  3601. rhs_chdkz_uniform_4
  3602. Exile_Item_ToiletPaper
  3603. H_Cap_press
  3604. rhs_uniform_m88_patchless
  3605. Chemlight_yellow
  3606. 9Rnd_45ACP_Mag
  3607. Laserdesignator_02
  3608. SmokeShellRed
  3609. rhs_uniform_FROG01_m81
  3610. rhs_uniform_flora_patchless_alt
  3611. Exile_Item_EnergyDrink
  3612. SmokeShellPurple
  3613. hgun_PDW2000_F
  3614. rhs_uniform_emr_patchless
  3615. Exile_Item_ChristmasTinner
  3616. rhs_uniform_flora_patchless
  3617. rhs_uniform_cu_ucp_82nd
  3618. rhs_uniform_vdv_emr_des
  3619. H_Cap_headphones
  3620. Exile_Item_ZipTie
  3621. rhs_chdkz_uniform_4
  3622. rhs_uniform_cu_ucp
  3623. V_TacVest_blk_POLICE
  3624. rhs_uniform_vdv_flora
  3625. U_C_Poor_2
  3626. Exile_Item_InstantCoffee
  3627. Exile_Item_ToiletPaper
  3628. rhs_uniform_cu_ocp_101st
  3629. H_Cap_tan
  3630. optic_Aco
  3631. Exile_Item_PlasticBottleEmpty
  3632. Exile_Item_Wrench
  3633. Chemlight_green
  3634. Exile_Item_Matches
  3635. rhs_uniform_vdv_flora
  3636. Exile_Item_Vishpirin
  3637. Exile_Item_Beer
  3638. Exile_Item_MetalScrews
  3639. Exile_Item_PlasticBottleDirtyWater
  3640. Exile_Item_Can_Empty
  3641. rhs_uniform_vdv_mflora
  3642. Exile_Item_ToiletPaper
  3643. rhs_uniform_mflora_patchless
  3644. rhs_uniform_cu_ocp_82nd
  3645. Exile_Item_Pliers
  3646. rhs_uniform_cu_ocp_82nd
  3647. rhs_uniform_cu_ocp_10th
  3648. hgun_P07_khk_F
  3649. Exile_Item_Matches
  3650. SMG_01_F
  3651. B_Kitbag_cbr
  3652. Exile_Item_BeefParts
  3653. rhs_uniform_vdv_emr_des
  3654. Exile_Item_CanOpener
  3655. hgun_ACPC2_F
  3656. Exile_Item_PlasticBottleEmpty
  3657. Exile_Item_PlasticBottleEmpty
  3658. rhs_uniform_mflora_patchless
  3659. rhs_uniform_m88_patchless
  3660. Exile_Item_Can_Empty
  3661. Exile_Item_Cheathas
  3662. rhs_chdkz_uniform_2
  3663. 9Rnd_45ACP_Mag
  3664. rhs_uniform_cu_ocp
  3665. hgun_P07_F
  3666. rhs_uniform_FROG01_m81
  3667. Exile_Item_PlasticBottleDirtyWater
  3668. Exile_Item_CanOpener
  3669. Exile_Item_BBQSandwich
  3670. rhs_chdkz_uniform_4
  3671. Exile_Item_ToiletPaper
  3672. hgun_PDW2000_F
  3673. Exile_Item_EnergyDrink
  3674. V_TacVest_blk_POLICE
  3675. Exile_Item_Raisins
  3676. rhs_uniform_df15
  3677. Exile_Item_CamoTentKit
  3678. rhs_chdkz_uniform_1
  3679. rhs_uniform_cu_ucp_82nd
  3680. rhs_chdkz_uniform_5
  3681. Exile_Item_PlasticBottleEmpty
  3682. rhs_uniform_m88_patchless
  3683. rhs_uniform_vdv_flora
  3684. rhs_uniform_FROG01_m81
  3685. Exile_Item_Can_Empty
  3686. rhs_uniform_m88_patchless
  3687. rhs_uniform_cu_ocp_1stcav
  3688. Exile_Item_CanOpener
  3689. rhs_chdkz_uniform_2
  3690. rhs_uniform_mflora_patchless
  3691. Exile_Item_PlasticBottleEmpty
  3692. SmokeShell
  3693. Chemlight_green
  3694. Exile_Item_PlasticBottleEmpty
  3695. Exile_Item_EnergyDrink
  3696. */
  3697. class Shop
  3698. {
  3699. count
  3700. half
  3701. halfIndex
  3702. sum
  3703. items[]
  3704. {
  3705. {588.235294117647, "Exile_Item_Can_Empty"}, // 5.88%
  3706. {1176.47058823529, "Exile_Item_ToiletPaper"}, // 5.88%
  3707. {1764.70588235294, "Exile_Item_PlasticBottleEmpty"}, // 5.88%
  3708. {2029.41176470588, "Exile_Item_PlasticBottleDirtyWater"}, // 2.65%
  3709. {2205.88235294118, "Exile_Item_ZipTie"}, // 1.76%
  3710. {2382.35294117647, "Exile_Item_MountainDupe"}, // 1.76%
  3711. {2532.35294117647, "Exile_Item_EnergyDrink"}, // 1.50%
  3712. {2655.88235294118, "Exile_Item_Beer"}, // 1.24%
  3713. {2761.76470588235, "Exile_Item_PlasticBottleFreshWater"}, // 1.06%
  3714. {2865.57093425606, "Exile_Item_Vishpirin"}, // 1.04%
  3715. {2964.39446366782, "hgun_P07_F"}, // 0.99%
  3716. {3058.51211072664, "hgun_Rook40_F"}, // 0.94%
  3717. {3152.62975778547, "hgun_ACPC2_F"}, // 0.94%
  3718. {3244.54152249135, "rhs_uniform_m88_patchless"}, // 0.92%
  3719. {3336.45328719723, "rhs_uniform_emr_patchless"}, // 0.92%
  3720. {3428.36505190311, "rhs_uniform_flora_patchless"}, // 0.92%
  3721. {3520.276816609, "rhs_uniform_FROG01_m81"}, // 0.92%
  3722. {3612.18858131488, "rhs_uniform_FROG01_d"}, // 0.92%
  3723. {3704.10034602076, "rhs_uniform_FROG01_wd"}, // 0.92%
  3724. {3796.01211072664, "rhs_uniform_cu_ocp_101st"}, // 0.92%
  3725. {3887.92387543253, "rhs_uniform_cu_ucp"}, // 0.92%
  3726. {3979.83564013841, "rhs_uniform_cu_ocp"}, // 0.92%
  3727. {4071.74740484429, "rhs_uniform_df15"}, // 0.92%
  3728. {4163.65916955017, "rhs_uniform_flora_patchless_alt"}, // 0.92%
  3729. {4255.57093425606, "rhs_uniform_mflora_patchless"}, // 0.92%
  3730. {4347.48269896194, "rhs_uniform_vdv_emr_des"}, // 0.92%
  3731. {4439.39446366782, "rhs_uniform_cu_ucp_10th"}, // 0.92%
  3732. {4531.3062283737, "rhs_uniform_cu_ucp_101st"}, // 0.92%
  3733. {4623.21799307958, "rhs_uniform_cu_ocp_82nd"}, // 0.92%
  3734. {4715.12975778547, "rhs_uniform_cu_ocp_1stcav"}, // 0.92%
  3735. {4807.04152249135, "rhs_uniform_cu_ocp_10th"}, // 0.92%
  3736. {4898.95328719723, "rhs_uniform_mvd_izlom"}, // 0.92%
  3737. {4990.86505190311, "rhs_chdkz_uniform_1"}, // 0.92%
  3738. {5082.77681660899, "rhs_uniform_vdv_mflora"}, // 0.92%
  3739. {5174.68858131488, "rhs_chdkz_uniform_2"}, // 0.92%
  3740. {5266.60034602076, "rhs_chdkz_uniform_4"}, // 0.92%
  3741. {5358.51211072664, "rhs_chdkz_uniform_5"}, // 0.92%
  3742. {5450.42387543252, "rhs_uniform_gorka_r_y"}, // 0.92%
  3743. {5542.3356401384, "rhs_uniform_gorka_r_g"}, // 0.92%
  3744. {5634.24740484429, "rhs_uniform_vdv_flora"}, // 0.92%
  3745. {5726.15916955017, "rhs_uniform_flora"}, // 0.92%
  3746. {5818.07093425605, "rhs_uniform_msv_emr"}, // 0.92%
  3747. {5909.98269896193, "rhs_chdkz_uniform_3"}, // 0.92%
  3748. {6001.89446366781, "rhs_uniform_cu_ucp_1stcav"}, // 0.92%
  3749. {6093.8062283737, "rhs_uniform_cu_ucp_82nd"}, // 0.92%
  3750. {6173.36264110272, "Exile_Item_InstantCoffee"}, // 0.80%
  3751. {6250.2857180258, "SMG_01_F"}, // 0.77%
  3752. {6324.94635150996, "SMG_02_F"}, // 0.75%
  3753. {6399.60698499412, "hgun_PDW2000_F"}, // 0.75%
  3754. {6473.13639675883, "Chemlight_green"}, // 0.74%
  3755. {6546.66580852354, "Chemlight_red"}, // 0.74%
  3756. {6620.19522028824, "Chemlight_yellow"}, // 0.74%
  3757. {6693.72463205295, "FlareGreen_F"}, // 0.74%
  3758. {6767.25404381766, "FlareRed_F"}, // 0.74%
  3759. {6840.78345558236, "FlareWhite_F"}, // 0.74%
  3760. {6914.31286734707, "FlareYellow_F"}, // 0.74%
  3761. {6987.84227911177, "Chemlight_blue"}, // 0.74%
  3762. {7055.7155822792, "SMG_05_F"}, // 0.68%
  3763. {7120.80719269385, "Exile_Item_Moobar"}, // 0.65%
  3764. {7185.89880310851, "Exile_Item_Raisins"}, // 0.65%
  3765. {7247.66350899086, "Exile_Item_PowerDrink"}, // 0.62%
  3766. {7308.8399795791, "hgun_Pistol_Signal_F"}, // 0.61%
  3767. {7370.01645016733, "hgun_Pistol_heavy_02_F"}, // 0.61%
  3768. {7431.19292075557, "hgun_Pistol_heavy_01_F"}, // 0.61%
  3769. {7492.3693913438, "hgun_Pistol_01_F"}, // 0.61%
  3770. {7550.22860060128, "Exile_Item_SeedAstics"}, // 0.58%
  3771. {7606.69918883657, "hgun_P07_khk_F"}, // 0.56%
  3772. {7658.60230302342, "Exile_Item_Bandage"}, // 0.52%
  3773. {7709.22911112371, "Exile_Item_BBQSandwich"}, // 0.51%
  3774. {7759.855919224, "Exile_Item_CatFood"}, // 0.51%
  3775. {7810.48272732429, "Exile_Item_Dogfood"}, // 0.51%
  3776. {7861.10953542458, "Exile_Item_Surstromming"}, // 0.51%
  3777. {7911.73634352487, "Exile_Item_Cheathas"}, // 0.51%
  3778. {7962.36315162516, "Exile_Item_Noodles"}, // 0.51%
  3779. {8012.98995972545, "Exile_Item_BeefParts"}, // 0.51%
  3780. {8063.61676782573, "Exile_Item_SausageGravy"}, // 0.51%
  3781. {8114.24357592602, "Exile_Item_ChristmasTinner"}, // 0.51%
  3782. {8157.63798286913, "Exile_Item_GloriousKnakworst"}, // 0.43%
  3783. {8193.79998865505, "Exile_Item_Matches"}, // 0.36%
  3784. {8229.96199444097, "Exile_Item_CanOpener"}, // 0.36%
  3785. {8265.25611208803, "SmokeShellOrange"}, // 0.35%
  3786. {8300.55022973509, "SmokeShellBlue"}, // 0.35%
  3787. {8333.49140620568, "SmokeShellYellow"}, // 0.33%
  3788. {8366.43258267627, "SmokeShellPurple"}, // 0.33%
  3789. {8399.37375914685, "SmokeShell"}, // 0.33%
  3790. {8432.31493561744, "SmokeShellRed"}, // 0.33%
  3791. {8465.25611208803, "SmokeShellGreen"}, // 0.33%
  3792. {8497.25855036904, "ItemRadio"}, // 0.32%
  3793. {8529.26098865005, "ItemWatch"}, // 0.32%
  3794. {8558.67275335593, "30Rnd_45ACP_Mag_SMG_01"}, // 0.29%
  3795. {8588.08451806182, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 0.29%
  3796. {8617.4962827677, "V_Rangemaster_belt"}, // 0.29%
  3797. {8646.90804747358, "B_OutdoorPack_blk"}, // 0.29%
  3798. {8673.37863570888, "B_OutdoorPack_blu"}, // 0.26%
  3799. {8699.84922394417, "B_OutdoorPack_tan"}, // 0.26%
  3800. {8723.37863570888, "9Rnd_45ACP_Mag"}, // 0.24%
  3801. {8746.90804747358, "30Rnd_9x21_Mag"}, // 0.24%
  3802. {8770.43745923829, "B_HuntingBackpack"}, // 0.24%
  3803. {8793.96687100299, "11Rnd_45ACP_Mag"}, // 0.24%
  3804. {8817.35453932333, "Exile_Melee_Axe"}, // 0.23%
  3805. {8839.05174279489, "Exile_Item_EMRE"}, // 0.22%
  3806. {8860.74894626644, "Exile_Item_CookingPot"}, // 0.22%
  3807. {8882.08390512045, "Laserdesignator_03"}, // 0.21%
  3808. {8903.41886397446, "Laserdesignator_02"}, // 0.21%
  3809. {8924.75382282846, "NVGoggles_INDEP"}, // 0.21%
  3810. {8946.08878168247, "Exile_Item_Hammer"}, // 0.21%
  3811. {8967.42374053648, "NVGoggles_OPFOR"}, // 0.21%
  3812. {8988.75869939049, "Exile_Item_SleepingMat"}, // 0.21%
  3813. {9010.09365824449, "Exile_Item_Wrench"}, // 0.21%
  3814. {9031.4286170985, "Exile_Item_Shovel"}, // 0.21%
  3815. {9052.76357595251, "Exile_Item_Screwdriver"}, // 0.21%
  3816. {9074.09853480652, "Exile_Item_OilCanister"}, // 0.21%
  3817. {9095.43349366052, "Exile_Item_FireExtinguisher"}, // 0.21%
  3818. {9116.76845251453, "Exile_Item_MobilePhone"}, // 0.21%
  3819. {9138.10341136854, "Exile_Item_Foolbox"}, // 0.21%
  3820. {9159.43837022255, "Binocular"}, // 0.21%
  3821. {9180.77332907656, "ItemGPS"}, // 0.21%
  3822. {9202.10828793056, "Exile_Item_CordlessScrewdriver"}, // 0.21%
  3823. {9223.2847585188, "muzzle_snds_L"}, // 0.21%
  3824. {9244.46122910704, "muzzle_snds_acp"}, // 0.21%
  3825. {9265.22247478178, "Exile_Item_InstaDoc"}, // 0.21%
  3826. {9285.81071007589, "B_AssaultPack_khk"}, // 0.21%
  3827. {9306.39894537001, "B_AssaultPack_dgtl"}, // 0.21%
  3828. {9326.98718066413, "B_AssaultPack_rgr"}, // 0.21%
  3829. {9347.57541595824, "B_AssaultPack_sgg"}, // 0.21%
  3830. {9368.16365125236, "B_AssaultPack_blk"}, // 0.21%
  3831. {9388.75188654648, "B_AssaultPack_cbr"}, // 0.21%
  3832. {9409.3401218406, "B_AssaultPack_mcamo"}, // 0.21%
  3833. {9428.16365125236, "6Rnd_45ACP_Cylinder"}, // 0.19%
  3834. {9442.8695336053, "B_Kitbag_cbr"}, // 0.15%
  3835. {9457.57541595824, "B_Kitbag_sgg"}, // 0.15%
  3836. {9472.28129831118, "B_Kitbag_mcamo"}, // 0.15%
  3837. {9486.98718066412, "V_Press_F"}, // 0.15%
  3838. {9501.69306301706, "V_TacVest_blk_POLICE"}, // 0.15%
  3839. {9515.51304884272, "Exile_Item_Handsaw"}, // 0.14%
  3840. {9529.33303466837, "Exile_Item_ExtensionCord"}, // 0.14%
  3841. {9543.15302049403, "Exile_Item_Pliers"}, // 0.14%
  3842. {9554.91772637638, "optic_Holosight_smg"}, // 0.12%
  3843. {9566.68243225874, "optic_ACO_grn_smg"}, // 0.12%
  3844. {9578.44713814109, "optic_Aco_smg"}, // 0.12%
  3845. {9590.21184402344, "optic_Aco"}, // 0.12%
  3846. {9601.9765499058, "optic_ACO_grn"}, // 0.12%
  3847. {9613.74125578815, "16Rnd_9x21_Mag"}, // 0.12%
  3848. {9625.43508994832, "Exile_Item_JunkMetal"}, // 0.12%
  3849. {9636.06584827575, "Exile_Item_MetalWire"}, // 0.11%
  3850. {9646.69660660317, "Exile_Item_CarWheel"}, // 0.11%
  3851. {9657.3273649306, "Exile_Item_MetalScrews"}, // 0.11%
  3852. {9667.95812325803, "Exile_Item_MetalPole"}, // 0.11%
  3853. {9678.58888158545, "Exile_Item_CamoTentKit"}, // 0.11%
  3854. {9689.21963991288, "Exile_Item_Sand"}, // 0.11%
  3855. {9699.85039824031, "Exile_Item_Cement"}, // 0.11%
  3856. {9710.43863353442, "H_Hat_brown"}, // 0.11%
  3857. {9721.02686882854, "H_Cap_tan"}, // 0.11%
  3858. {9731.61510412266, "H_Hat_checker"}, // 0.11%
  3859. {9742.20333941677, "H_Cap_red"}, // 0.11%
  3860. {9752.79157471089, "H_Cap_press"}, // 0.11%
  3861. {9763.37981000501, "H_Hat_grey"}, // 0.11%
  3862. {9773.96804529913, "H_Hat_tan"}, // 0.11%
  3863. {9784.55628059324, "H_StrawHat"}, // 0.11%
  3864. {9795.14451588736, "H_Hat_blue"}, // 0.11%
  3865. {9805.73275118148, "H_StrawHat_dark"}, // 0.11%
  3866. {9815.30043367616, "Exile_Item_LightBulb"}, // 0.10%
  3867. {9824.12396308792, "H_Cap_oli"}, // 0.09%
  3868. {9832.94749249969, "H_Cap_blu"}, // 0.09%
  3869. {9841.77102191145, "H_Cap_blk_Raven"}, // 0.09%
  3870. {9850.59455132322, "H_Cap_blk"}, // 0.09%
  3871. {9859.41808073498, "H_Beret_blk_POLICE"}, // 0.09%
  3872. {9868.24161014674, "H_Bandanna_surfer"}, // 0.09%
  3873. {9877.06513955851, "H_Cap_headphones"}, // 0.09%
  3874. {9885.88866897027, "H_Cap_grn"}, // 0.09%
  3875. {9894.12396308792, "optic_MRD"}, // 0.08%
  3876. {9902.35925720557, "6Rnd_RedSignal_F"}, // 0.08%
  3877. {9910.59455132321, "optic_Yorris"}, // 0.08%
  3878. {9918.82984544086, "6Rnd_GreenSignal_F"}, // 0.08%
  3879. {9924.07154608151, "U_C_Poor_1"}, // 0.05%
  3880. {9929.31324672216, "U_C_Poor_2"}, // 0.05%
  3881. {9934.55494736282, "U_C_Poor_shorts_1"}, // 0.05%
  3882. {9939.79664800347, "U_C_HunterBody_grn"}, // 0.05%
  3883. {9945.03834864412, "U_C_Journalist"}, // 0.05%
  3884. {9950.28004928477, "U_C_Scientist"}, // 0.05%
  3885. {9955.52174992543, "U_Rangemaster"}, // 0.05%
  3886. {9959.7740532564, "Exile_Item_MetalBoard"}, // 0.04%
  3887. {9964.02635658737, "Exile_Item_Rope"}, // 0.04%
  3888. {9968.10323486343, "U_C_Poloshirt_blue"}, // 0.04%
  3889. {9972.18011313949, "U_C_Poloshirt_burgundy"}, // 0.04%
  3890. {9976.25699141556, "U_C_Poloshirt_stripped"}, // 0.04%
  3891. {9980.33386969162, "U_C_Poloshirt_tricolour"}, // 0.04%
  3892. {9984.41074796768, "U_C_Poloshirt_salmon"}, // 0.04%
  3893. {9987.59997546591, "Exile_Item_PortableGeneratorKit"}, // 0.03%
  3894. {9990.78920296414, "Exile_Item_FloodLightKit"}, // 0.03%
  3895. {9992.92269884954, "Exile_Headgear_GasMask"}, // 0.02%
  3896. {9995.05619473494, "Exile_Item_ThermalScannerPro"}, // 0.02%
  3897. {9997.18969062034, "Exile_Item_Knife"}, // 0.02%
  3898. {9998.25276645308, "Exile_Item_ThermalScannerPro"}, // 0.01%
  3899. {9998.83517763537, "U_NikosBody"}, // 0.01%
  3900. {9999.41758881767, "U_OrestesBody"}, // 0.01%
  3901. {9999.99999999996, "U_NikosAgedBody"} // 0.01%
  3902. };
  3903. };
  3904. /**
  3905. Result of 100 rounds:
  3906. FlareWhite_F
  3907. Exile_Item_ToiletPaper
  3908. Exile_Item_FuelCanisterFull
  3909. Exile_Item_FuelCanisterEmpty
  3910. Exile_Item_Sand
  3911. Exile_Item_ZipTie
  3912. Exile_Item_FuelCanisterEmpty
  3913. Exile_Item_MetalBoard
  3914. Exile_Item_PlasticBottleEmpty
  3915. FlareYellow_F
  3916. Exile_Item_MetalScrews
  3917. Exile_Item_MetalPole
  3918. Exile_Item_Sand
  3919. Exile_Item_PlasticBottleEmpty
  3920. Exile_Item_FuelCanisterFull
  3921. Exile_Item_ToiletPaper
  3922. Exile_Item_Sand
  3923. FlareGreen_F
  3924. Exile_Item_PlasticBottleEmpty
  3925. Exile_Item_CarWheel
  3926. Exile_Item_PlasticBottleEmpty
  3927. FlareRed_F
  3928. Exile_Item_FuelCanisterFull
  3929. Exile_Item_FloodLightKit
  3930. Exile_Item_ToiletPaper
  3931. Exile_Item_ZipTie
  3932. Exile_Item_FuelCanisterFull
  3933. Exile_Item_CamoTentKit
  3934. FlareWhite_F
  3935. Exile_Item_PortableGeneratorKit
  3936. FlareGreen_F
  3937. Exile_Item_FuelCanisterEmpty
  3938. Exile_Item_FuelCanisterFull
  3939. Exile_Item_MetalBoard
  3940. Exile_Item_LightBulb
  3941. Exile_Item_Can_Empty
  3942. Exile_Item_MetalPole
  3943. FlareGreen_F
  3944. Exile_Item_CarWheel
  3945. FlareWhite_F
  3946. Exile_Item_PlasticBottleEmpty
  3947. Exile_Item_ToiletPaper
  3948. Exile_Item_LightBulb
  3949. Exile_Item_Can_Empty
  3950. Exile_Item_FuelCanisterEmpty
  3951. Exile_Melee_Axe
  3952. Exile_Item_Can_Empty
  3953. Exile_Item_FuelCanisterFull
  3954. Exile_Melee_Axe
  3955. Exile_Item_LightBulb
  3956. Exile_Melee_Axe
  3957. Exile_Melee_Axe
  3958. Exile_Item_JunkMetal
  3959. Exile_Item_CarWheel
  3960. FlareGreen_F
  3961. Exile_Item_CamoTentKit
  3962. Exile_Item_DuctTape
  3963. Exile_Item_FuelCanisterFull
  3964. Exile_Item_CarWheel
  3965. Exile_Item_PlasticBottleEmpty
  3966. Exile_Item_Can_Empty
  3967. Exile_Item_Can_Empty
  3968. Exile_Item_FuelCanisterFull
  3969. Exile_Item_PlasticBottleEmpty
  3970. Exile_Item_FuelCanisterEmpty
  3971. Exile_Item_DuctTape
  3972. Exile_Item_ZipTie
  3973. Exile_Item_MetalScrews
  3974. Exile_Item_FuelCanisterFull
  3975. Exile_Item_PlasticBottleEmpty
  3976. Exile_Item_PlasticBottleEmpty
  3977. Exile_Item_Can_Empty
  3978. Exile_Item_CarWheel
  3979. Exile_Item_JunkMetal
  3980. Exile_Item_ZipTie
  3981. Exile_Item_FuelCanisterEmpty
  3982. FlareGreen_F
  3983. Exile_Item_ToiletPaper
  3984. Exile_Item_CamoTentKit
  3985. Exile_Item_Handsaw
  3986. Exile_Item_FuelCanisterFull
  3987. Exile_Item_LightBulb
  3988. Exile_Melee_Axe
  3989. FlareRed_F
  3990. Exile_Item_ZipTie
  3991. Exile_Item_Can_Empty
  3992. Exile_Item_PlasticBottleEmpty
  3993. FlareWhite_F
  3994. Exile_Item_PlasticBottleEmpty
  3995. Exile_Item_FuelCanisterEmpty
  3996. Exile_Item_PlasticBottleEmpty
  3997. Exile_Melee_Axe
  3998. Exile_Item_CarWheel
  3999. Exile_Item_ZipTie
  4000. Exile_Item_FuelCanisterFull
  4001. Exile_Item_Can_Empty
  4002. Exile_Item_Sand
  4003. FlareGreen_F
  4004. Exile_Item_Can_Empty
  4005. Exile_Item_ToiletPaper
  4006. */
  4007. class Industrial
  4008. {
  4009. count
  4010. half
  4011. halfIndex
  4012. sum
  4013. items[]
  4014. {
  4015. {1086.95652173913, "Exile_Item_FuelCanisterEmpty"}, // 10.87%
  4016. {1956.52173913043, "Exile_Item_Can_Empty"}, // 8.70%
  4017. {2826.08695652174, "Exile_Item_ToiletPaper"}, // 8.70%
  4018. {3695.65217391304, "Exile_Item_PlasticBottleEmpty"}, // 8.70%
  4019. {4565.21739130435, "Exile_Item_FuelCanisterFull"}, // 8.70%
  4020. {5026.1917234154, "Exile_Melee_Axe"}, // 4.61%
  4021. {5460.97433211105, "Exile_Item_ZipTie"}, // 4.35%
  4022. {5787.06128863279, "FlareWhite_F"}, // 3.26%
  4023. {6113.14824515453, "FlareRed_F"}, // 3.26%
  4024. {6439.23520167627, "FlareGreen_F"}, // 3.26%
  4025. {6765.32215819801, "FlareYellow_F"}, // 3.26%
  4026. {7037.71608171818, "Exile_Item_ExtensionCord"}, // 2.72%
  4027. {7310.11000523834, "Exile_Item_Handsaw"}, // 2.72%
  4028. {7582.50392875851, "Exile_Item_Pliers"}, // 2.72%
  4029. {7812.99109481404, "Exile_Item_JunkMetal"}, // 2.30%
  4030. {8030.38239916186, "Exile_Item_DuctTape"}, // 2.17%
  4031. {8239.91618648507, "Exile_Item_CarWheel"}, // 2.10%
  4032. {8449.44997380828, "Exile_Item_Sand"}, // 2.10%
  4033. {8658.98376113148, "Exile_Item_MetalWire"}, // 2.10%
  4034. {8868.51754845469, "Exile_Item_MetalScrews"}, // 2.10%
  4035. {9078.05133577789, "Exile_Item_MetalPole"}, // 2.10%
  4036. {9287.5851231011, "Exile_Item_Cement"}, // 2.10%
  4037. {9497.1189104243, "Exile_Item_CamoTentKit"}, // 2.10%
  4038. {9685.69931901519, "Exile_Item_LightBulb"}, // 1.89%
  4039. {9769.51283394447, "Exile_Item_MetalBoard"}, // 0.84%
  4040. {9853.32634887376, "Exile_Item_Rope"}, // 0.84%
  4041. {9916.18648507072, "Exile_Item_FloodLightKit"}, // 0.63%
  4042. {9979.04662126768, "Exile_Item_PortableGeneratorKit"}, // 0.63%
  4043. {10000, "Exile_Item_ThermalScannerPro"} // 0.21%
  4044. };
  4045. };
  4046. /**
  4047. Result of 100 rounds:
  4048. Exile_Item_Pliers
  4049. Exile_Item_ToiletPaper
  4050. Exile_Item_BaseCameraKit
  4051. Exile_Item_Can_Empty
  4052. Exile_Item_Cement
  4053. Exile_Melee_Axe
  4054. Exile_Item_Can_Empty
  4055. Exile_Item_Rope
  4056. Exile_Item_PlasticBottleEmpty
  4057. Exile_Item_ExtensionCord
  4058. Exile_Item_MetalScrews
  4059. Exile_Item_CamoTentKit
  4060. Exile_Item_Cement
  4061. Exile_Item_PlasticBottleEmpty
  4062. Exile_Item_BaseCameraKit
  4063. Exile_Item_ToiletPaper
  4064. Exile_Item_Cement
  4065. Exile_Item_ExtensionCord
  4066. Exile_Item_PlasticBottleEmpty
  4067. Exile_Item_MetalWire
  4068. Exile_Item_PlasticBottleEmpty
  4069. Exile_Item_Handsaw
  4070. Exile_Item_BaseCameraKit
  4071. Exile_Item_PortableGeneratorKit
  4072. Exile_Item_ToiletPaper
  4073. Exile_Melee_Axe
  4074. Exile_Item_PlasticBottleEmpty
  4075. Exile_Item_Laptop
  4076. Exile_Item_Pliers
  4077. Exile_Item_FloodLightKit
  4078. Exile_Item_Handsaw
  4079. Exile_Item_Can_Empty
  4080. Exile_Item_PlasticBottleEmpty
  4081. Exile_Item_Rope
  4082. Exile_Item_MetalBoard
  4083. Exile_Item_Can_Empty
  4084. Exile_Item_CamoTentKit
  4085. Exile_Item_ExtensionCord
  4086. Exile_Item_Cement
  4087. Exile_Item_Pliers
  4088. Exile_Item_PlasticBottleEmpty
  4089. Exile_Item_ToiletPaper
  4090. Exile_Item_MetalBoard
  4091. Exile_Item_ToiletPaper
  4092. Exile_Item_Can_Empty
  4093. Exile_Melee_Axe
  4094. Exile_Item_Can_Empty
  4095. Exile_Item_BaseCameraKit
  4096. Exile_Item_BaseCameraKit
  4097. Exile_Item_Laptop
  4098. Exile_Item_BaseCameraKit
  4099. Exile_Item_BaseCameraKit
  4100. Exile_Item_MetalPole
  4101. Exile_Item_Cement
  4102. Exile_Item_Handsaw
  4103. Exile_Item_Laptop
  4104. Exile_Item_MetalWire
  4105. Exile_Item_BaseCameraKit
  4106. Exile_Item_Cement
  4107. Exile_Item_PlasticBottleEmpty
  4108. Exile_Item_ToiletPaper
  4109. Exile_Item_Can_Empty
  4110. Exile_Item_BaseCameraKit
  4111. Exile_Item_PlasticBottleEmpty
  4112. Exile_Item_Can_Empty
  4113. Exile_Item_MetalWire
  4114. Exile_Melee_Axe
  4115. Exile_Item_MetalScrews
  4116. Exile_Item_PlasticBottleEmpty
  4117. Exile_Item_PlasticBottleEmpty
  4118. Exile_Item_PlasticBottleEmpty
  4119. Exile_Item_ToiletPaper
  4120. Exile_Item_Cement
  4121. Exile_Item_MetalPole
  4122. Exile_Melee_Axe
  4123. Exile_Item_Can_Empty
  4124. Exile_Item_ExtensionCord
  4125. Exile_Item_ToiletPaper
  4126. Exile_Item_Laptop
  4127. Exile_Item_CarWheel
  4128. Exile_Item_BaseCameraKit
  4129. Exile_Item_Rope
  4130. Exile_Melee_Axe
  4131. Exile_Item_Handsaw
  4132. Exile_Melee_Axe
  4133. Exile_Item_ToiletPaper
  4134. Exile_Item_PlasticBottleEmpty
  4135. Exile_Item_Pliers
  4136. Exile_Item_PlasticBottleEmpty
  4137. Exile_Item_Can_Empty
  4138. Exile_Item_PlasticBottleEmpty
  4139. Exile_Item_BaseCameraKit
  4140. Exile_Item_Cement
  4141. Exile_Melee_Axe
  4142. Exile_Item_BaseCameraKit
  4143. Exile_Item_ToiletPaper
  4144. Exile_Item_Cement
  4145. Exile_Item_ExtensionCord
  4146. Exile_Item_Can_Empty
  4147. Exile_Item_ToiletPaper
  4148. */
  4149. class Factories
  4150. {
  4151. count
  4152. half
  4153. halfIndex
  4154. sum
  4155. items[]
  4156. {
  4157. {1333.33333333333, "Exile_Item_Can_Empty"}, // 13.33%
  4158. {2666.66666666667, "Exile_Item_ToiletPaper"}, // 13.33%
  4159. {4000, "Exile_Item_PlasticBottleEmpty"}, // 13.33%
  4160. {4800, "Exile_Item_BaseCameraKit"}, // 8.00%
  4161. {5462.65060240964, "Exile_Melee_Axe"}, // 6.63%
  4162. {5854.21686746988, "Exile_Item_Pliers"}, // 3.92%
  4163. {6245.78313253012, "Exile_Item_Handsaw"}, // 3.92%
  4164. {6637.34939759036, "Exile_Item_ExtensionCord"}, // 3.92%
  4165. {6968.67469879518, "Exile_Item_JunkMetal"}, // 3.31%
  4166. {7269.87951807229, "Exile_Item_CarWheel"}, // 3.01%
  4167. {7571.0843373494, "Exile_Item_Sand"}, // 3.01%
  4168. {7872.2891566265, "Exile_Item_MetalPole"}, // 3.01%
  4169. {8173.49397590361, "Exile_Item_MetalWire"}, // 3.01%
  4170. {8474.69879518072, "Exile_Item_Cement"}, // 3.01%
  4171. {8775.90361445783, "Exile_Item_MetalScrews"}, // 3.01%
  4172. {9077.10843373494, "Exile_Item_CamoTentKit"}, // 3.01%
  4173. {9348.19277108434, "Exile_Item_LightBulb"}, // 2.71%
  4174. {9548.19277108434, "Exile_Item_Laptop"}, // 2.00%
  4175. {9668.67469879518, "Exile_Item_MetalBoard"}, // 1.20%
  4176. {9789.15662650602, "Exile_Item_Rope"}, // 1.20%
  4177. {9879.51807228915, "Exile_Item_PortableGeneratorKit"}, // 0.90%
  4178. {9969.87951807229, "Exile_Item_FloodLightKit"}, // 0.90%
  4179. {10000, "Exile_Item_ThermalScannerPro"} // 0.30%
  4180. };
  4181. };
  4182. /**
  4183. Result of 100 rounds:
  4184. Exile_Item_PlasticBottleEmpty
  4185. Exile_Item_FuelCanisterFull
  4186. Exile_Item_ToiletPaper
  4187. Exile_Item_FuelCanisterEmpty
  4188. Exile_Item_ExtensionCord
  4189. Exile_Item_PlasticBottleEmpty
  4190. Exile_Item_FuelCanisterEmpty
  4191. Exile_Item_LightBulb
  4192. Exile_Item_Can_Empty
  4193. FlareWhite_F
  4194. Exile_Item_JunkMetal
  4195. Exile_Item_MetalWire
  4196. Exile_Item_Handsaw
  4197. Exile_Item_Can_Empty
  4198. Exile_Item_ToiletPaper
  4199. Exile_Item_FuelCanisterFull
  4200. Exile_Item_Handsaw
  4201. Exile_Item_DuctTape
  4202. Exile_Item_Can_Empty
  4203. Exile_Melee_Axe
  4204. Exile_Item_Can_Empty
  4205. Exile_Item_ZipTie
  4206. Exile_Item_ToiletPaper
  4207. Exile_Item_MetalBoard
  4208. Exile_Item_FuelCanisterFull
  4209. Exile_Item_PlasticBottleEmpty
  4210. Exile_Item_Can_Empty
  4211. Exile_Item_MetalPole
  4212. Exile_Item_PlasticBottleEmpty
  4213. Exile_Item_PortableGeneratorKit
  4214. Exile_Item_ZipTie
  4215. Exile_Item_FuelCanisterEmpty
  4216. Exile_Item_Can_Empty
  4217. Exile_Item_LightBulb
  4218. Exile_Item_Cement
  4219. Exile_Item_FuelCanisterEmpty
  4220. Exile_Item_CarWheel
  4221. Exile_Item_DuctTape
  4222. Exile_Item_ExtensionCord
  4223. Exile_Item_PlasticBottleEmpty
  4224. Exile_Item_FuelCanisterFull
  4225. Exile_Item_FuelCanisterFull
  4226. Exile_Item_Cement
  4227. Exile_Item_FuelCanisterFull
  4228. Exile_Item_FuelCanisterEmpty
  4229. Exile_Item_PlasticBottleEmpty
  4230. Exile_Item_FuelCanisterEmpty
  4231. Exile_Item_ToiletPaper
  4232. Exile_Item_ToiletPaper
  4233. Exile_Item_MetalPole
  4234. Exile_Item_ToiletPaper
  4235. Exile_Item_ToiletPaper
  4236. FlareGreen_F
  4237. Exile_Item_ExtensionCord
  4238. Exile_Item_DuctTape
  4239. Exile_Item_MetalPole
  4240. Exile_Melee_Axe
  4241. Exile_Item_ToiletPaper
  4242. Exile_Item_ExtensionCord
  4243. Exile_Item_FuelCanisterFull
  4244. Exile_Item_FuelCanisterEmpty
  4245. Exile_Item_FuelCanisterEmpty
  4246. Exile_Item_ToiletPaper
  4247. Exile_Item_Can_Empty
  4248. Exile_Item_FuelCanisterEmpty
  4249. Exile_Melee_Axe
  4250. Exile_Item_PlasticBottleEmpty
  4251. Exile_Item_JunkMetal
  4252. Exile_Item_Can_Empty
  4253. Exile_Item_FuelCanisterFull
  4254. Exile_Item_Can_Empty
  4255. Exile_Item_FuelCanisterFull
  4256. Exile_Item_ExtensionCord
  4257. FlareGreen_F
  4258. Exile_Item_PlasticBottleEmpty
  4259. Exile_Item_FuelCanisterEmpty
  4260. Exile_Item_DuctTape
  4261. Exile_Item_FuelCanisterFull
  4262. Exile_Item_MetalPole
  4263. FlareRed_F
  4264. Exile_Item_ToiletPaper
  4265. Exile_Item_Cement
  4266. Exile_Item_PlasticBottleEmpty
  4267. Exile_Item_ZipTie
  4268. Exile_Item_PlasticBottleEmpty
  4269. Exile_Item_FuelCanisterEmpty
  4270. Exile_Item_Can_Empty
  4271. Exile_Item_PlasticBottleEmpty
  4272. Exile_Item_Can_Empty
  4273. Exile_Item_FuelCanisterEmpty
  4274. Exile_Item_Can_Empty
  4275. Exile_Item_ToiletPaper
  4276. Exile_Item_ExtensionCord
  4277. Exile_Item_PlasticBottleEmpty
  4278. Exile_Item_ToiletPaper
  4279. Exile_Item_FuelCanisterEmpty
  4280. Exile_Item_Handsaw
  4281. Exile_Item_DuctTape
  4282. Exile_Item_FuelCanisterEmpty
  4283. Exile_Item_FuelCanisterFull
  4284. */
  4285. class VehicleService
  4286. {
  4287. count
  4288. half
  4289. halfIndex
  4290. sum
  4291. items[]
  4292. {
  4293. {1739.13043478261, "Exile_Item_FuelCanisterEmpty"}, // 17.39%
  4294. {3130.4347826087, "Exile_Item_FuelCanisterFull"}, // 13.91%
  4295. {4000, "Exile_Item_Can_Empty"}, // 8.70%
  4296. {4869.5652173913, "Exile_Item_ToiletPaper"}, // 8.70%
  4297. {5739.13043478261, "Exile_Item_PlasticBottleEmpty"}, // 8.70%
  4298. {6173.91304347826, "Exile_Item_ZipTie"}, // 4.35%
  4299. {6521.73913043478, "Exile_Item_DuctTape"}, // 3.48%
  4300. {6847.82608695652, "FlareWhite_F"}, // 3.26%
  4301. {7173.91304347826, "FlareRed_F"}, // 3.26%
  4302. {7500, "FlareYellow_F"}, // 3.26%
  4303. {7826.08695652174, "FlareGreen_F"}, // 3.26%
  4304. {8114.19591409115, "Exile_Melee_Axe"}, // 2.88%
  4305. {8284.44211629125, "Exile_Item_ExtensionCord"}, // 1.70%
  4306. {8454.68831849136, "Exile_Item_Handsaw"}, // 1.70%
  4307. {8624.93452069146, "Exile_Item_Pliers"}, // 1.70%
  4308. {8768.98899947617, "Exile_Item_JunkMetal"}, // 1.44%
  4309. {8899.94761655317, "Exile_Item_MetalWire"}, // 1.31%
  4310. {9030.90623363017, "Exile_Item_CarWheel"}, // 1.31%
  4311. {9161.86485070718, "Exile_Item_Sand"}, // 1.31%
  4312. {9292.82346778418, "Exile_Item_CamoTentKit"}, // 1.31%
  4313. {9423.78208486118, "Exile_Item_MetalScrews"}, // 1.31%
  4314. {9554.74070193819, "Exile_Item_MetalPole"}, // 1.31%
  4315. {9685.69931901519, "Exile_Item_Cement"}, // 1.31%
  4316. {9803.5620743845, "Exile_Item_LightBulb"}, // 1.18%
  4317. {9855.9455212153, "Exile_Item_Rope"}, // 0.52%
  4318. {9908.3289680461, "Exile_Item_MetalBoard"}, // 0.52%
  4319. {9947.6165531692, "Exile_Item_PortableGeneratorKit"}, // 0.39%
  4320. {9986.9041382923, "Exile_Item_FloodLightKit"}, // 0.39%
  4321. {10000, "Exile_Item_ThermalScannerPro"} // 0.13%
  4322. };
  4323. };
  4324. /**
  4325. Result of 100 rounds:
  4326. rhs_30Rnd_545x39_AK_no_tracers
  4327. rhsusf_acc_ELCAN
  4328. rhs_uniform_cu_ocp
  4329. rhs_weap_makarov_pmm
  4330. rhs_weap_ak103
  4331. rhsusf_50Rnd_762x51_m993
  4332. rhs_weap_pya
  4333. UGL_FlareRed_F
  4334. rhs_weap_m240G
  4335. rhs_6b13_Flora
  4336. rhsusf_mich_bare_norotos_arc_alt_tan
  4337. rhsusf_mich_bare_norotos_alt_headset
  4338. rhs_weap_ak103_1
  4339. rhs_weap_svdp_wd_npz
  4340. rhs_uniform_FROG01_d
  4341. rhsusf_acc_ACOG2
  4342. rhs_weap_ak74m
  4343. rhs_6b23_rifleman
  4344. rhs_weap_svds_npz
  4345. rhs_weap_ak74m_folded
  4346. rhs_weap_XM2010_wd
  4347. rhs_mag_30Rnd_556x45_Mk262_Stanag
  4348. rhs_uniform_cu_ocp_101st
  4349. bipod_01_F_blk
  4350. rhsusf_acc_LEUPOLDMK4_2
  4351. rhsusf_50Rnd_762x51_m80a1epr
  4352. rhs_uniform_msv_emr
  4353. rhsusf_ach_helmet_ESS_ocp
  4354. rhs_30Rnd_545x39_7N22_AK
  4355. optic_Hamr
  4356. rhs_mag_9x18_12_57N181S
  4357. rhs_weap_pya
  4358. rhs_weap_sr25_ec
  4359. IEDLandSmall_Remote_Mag
  4360. rhsusf_ach_helmet_ESS_ucp
  4361. Exile_Item_Can_Empty
  4362. rhsusf_mich_bare_norotos_arc_tan
  4363. rhs_6b13_6sh92_radio
  4364. rhs_weap_ak74m_camo_folded
  4365. rhs_45Rnd_545X39_AK
  4366. rhs_weap_m249_pip_S
  4367. rhsusf_acc_ACOG_USMC
  4368. APERSBoundingMine_Range_Mag
  4369. rhs_acc_1p63
  4370. rhsusf_weap_m1911a1
  4371. rhsusf_8Rnd_Slug
  4372. Exile_Item_Can_Empty
  4373. rhs_uniform_cu_ocp
  4374. rhs_uniform_cu_ucp_101st
  4375. rhsusf_ach_bare_tan_headset_ess
  4376. rhs_uniform_cu_ocp_82nd
  4377. rhs_uniform_cu_ocp_10th
  4378. rhs_weap_m4a1_blockII_grip2_KAC
  4379. rhs_weap_ak74m_camo
  4380. rhs_6b23_6sh92_vog
  4381. rhsusf_ach_bare_semi_ess
  4382. rhs_weap_ak74m_plummag_npz
  4383. rhs_uniform_df15
  4384. rhs_weap_ak74m_camo
  4385. rhs_weap_m240B_CAP
  4386. Exile_Item_ToiletPaper
  4387. Exile_Item_ToiletPaper
  4388. rhs_uniform_cu_ucp
  4389. rhs_weap_m249_pip_L_para
  4390. rhs_weap_makarov_pmm
  4391. rhs_weap_mk18_KAC
  4392. rhsusf_5Rnd_300winmag_xm2010
  4393. rhsusf_mich_bare_norotos_arc_alt_semi_headset
  4394. rhs_uniform_vdv_flora
  4395. rhs_weap_m249_pip_S_vfg
  4396. rhs_weap_svdp_wd_npz
  4397. rhs_acc_1p29
  4398. rhs_weap_ak74m_desert
  4399. rhs_weap_m4_carryhandle
  4400. rhsusf_50Rnd_762x51
  4401. rhs_weap_pya
  4402. rhs_6b13_Flora_6sh92
  4403. rhsusf_acc_ACOG2
  4404. rhsusf_ach_helmet_ESS_ocp
  4405. rhs_6b23_ML_crewofficer
  4406. rhs_uniform_mflora_patchless
  4407. 3Rnd_HE_Grenade_shell
  4408. rhs_uniform_FROG01_m81
  4409. rhsusf_mag_7x45acp_MHP
  4410. rhsusf_100Rnd_762x51
  4411. Exile_Item_ToiletPaper
  4412. rhs_weap_m249_pip_L_para
  4413. rhs_30Rnd_545x39_7N22_AK
  4414. rhs_weap_svdp_wd_npz
  4415. rhsusf_weap_m1911a1
  4416. rhs_weap_m249_pip_L_para
  4417. rhs_uniform_emr_patchless
  4418. rhs_weap_ak74m_desert
  4419. rhsusf_100Rnd_762x51_m80a1epr
  4420. rhs_uniform_cu_ocp_101st
  4421. rhs_acc_1pn93_1
  4422. rhs_weap_ak74m_2mag
  4423. rhs_6b13_6sh92_radio
  4424. Exile_Item_ToiletPaper
  4425. rhsusf_acc_ACOG2
  4426. */
  4427. class Military
  4428. {
  4429. count
  4430. half
  4431. halfIndex
  4432. sum
  4433. items[]
  4434. {
  4435. {383.435582822086, "rhsusf_weap_m1911a1"}, // 3.83%
  4436. {766.871165644172, "rhs_weap_makarov_pmm"}, // 3.83%
  4437. {1150.30674846626, "rhs_weap_pya"}, // 3.83%
  4438. {1278.11860940695, "Exile_Item_Can_Empty"}, // 1.28%
  4439. {1405.93047034765, "Exile_Item_ToiletPaper"}, // 1.28%
  4440. {1533.74233128834, "Exile_Item_PlasticBottleEmpty"}, // 1.28%
  4441. {1588.51884312007, "rhs_acc_1pn93_1"}, // 0.55%
  4442. {1643.2953549518, "rhs_acc_pgo7v"}, // 0.55%
  4443. {1698.07186678352, "rhs_acc_pso1m2"}, // 0.55%
  4444. {1752.84837861525, "rhs_acc_ekp1"}, // 0.55%
  4445. {1807.62489044698, "rhs_acc_1p63"}, // 0.55%
  4446. {1862.4014022787, "rhs_acc_1p78"}, // 0.55%
  4447. {1917.17791411043, "rhs_acc_1p29"}, // 0.55%
  4448. {1971.95442594216, "rhsusf_acc_EOTECH"}, // 0.55%
  4449. {2026.73093777388, "rhs_acc_pkas"}, // 0.55%
  4450. {2081.50744960561, "rhsusf_acc_ACOG3_USMC"}, // 0.55%
  4451. {2136.28396143734, "rhsusf_acc_eotech_552"}, // 0.55%
  4452. {2191.06047326906, "rhsusf_acc_LEUPOLDMK4_2"}, // 0.55%
  4453. {2245.83698510079, "rhsusf_acc_ELCAN"}, // 0.55%
  4454. {2300.61349693252, "rhsusf_acc_ELCAN_pip"}, // 0.55%
  4455. {2355.39000876424, "rhsusf_acc_ACOG"}, // 0.55%
  4456. {2410.16652059597, "rhsusf_acc_LEUPOLDMK4"}, // 0.55%
  4457. {2464.9430324277, "rhs_acc_1pn93_2"}, // 0.55%
  4458. {2519.71954425942, "rhsusf_acc_ACOG2"}, // 0.55%
  4459. {2574.49605609115, "rhsusf_acc_ACOG_USMC"}, // 0.55%
  4460. {2629.27256792288, "rhsusf_acc_ACOG2_USMC"}, // 0.55%
  4461. {2684.0490797546, "rhsusf_acc_ACOG_pip"}, // 0.55%
  4462. {2736.33575013943, "rhs_weap_pkm"}, // 0.52%
  4463. {2788.62242052426, "rhs_weap_m249_pip_L"}, // 0.52%
  4464. {2840.90909090909, "rhs_weap_m249_pip_L_vfg"}, // 0.52%
  4465. {2893.19576129392, "rhs_weap_m249_pip_S"}, // 0.52%
  4466. {2945.48243167875, "rhs_weap_m249_pip_S_para"}, // 0.52%
  4467. {2997.76910206358, "rhs_weap_m249_pip_S_vfg"}, // 0.52%
  4468. {3050.05577244841, "rhs_weap_m240B"}, // 0.52%
  4469. {3102.34244283324, "rhs_weap_m240B_CAP"}, // 0.52%
  4470. {3154.62911321807, "rhs_weap_m240G"}, // 0.52%
  4471. {3206.9157836029, "rhs_weap_pkp"}, // 0.52%
  4472. {3259.20245398773, "rhs_weap_m249_pip_L_para"}, // 0.52%
  4473. {3303.44502123643, "rhs_weap_svds_npz"}, // 0.44%
  4474. {3347.68758848513, "rhs_weap_XM2010_wd"}, // 0.44%
  4475. {3391.93015573384, "rhs_weap_XM2010"}, // 0.44%
  4476. {3436.17272298254, "rhs_weap_svd"}, // 0.44%
  4477. {3480.41529023124, "rhs_weap_svdp_wd"}, // 0.44%
  4478. {3524.65785747994, "rhs_weap_svdp_wd_npz"}, // 0.44%
  4479. {3568.90042472864, "rhs_weap_svdp_npz"}, // 0.44%
  4480. {3613.14299197735, "rhs_weap_svds"}, // 0.44%
  4481. {3657.38555922605, "rhs_weap_XM2010_d"}, // 0.44%
  4482. {3701.62812647475, "rhs_weap_m14ebrri"}, // 0.44%
  4483. {3745.87069372345, "rhs_weap_sr25_ec"}, // 0.44%
  4484. {3790.11326097215, "rhs_weap_sr25"}, // 0.44%
  4485. {3834.35582822086, "rhs_weap_XM2010_sa"}, // 0.44%
  4486. {3870.30291411043, "rhs_uniform_msv_emr"}, // 0.36%
  4487. {3906.25, "rhs_uniform_flora"}, // 0.36%
  4488. {3942.19708588957, "rhs_uniform_vdv_flora"}, // 0.36%
  4489. {3978.14417177914, "rhs_uniform_gorka_r_g"}, // 0.36%
  4490. {4014.09125766871, "rhs_uniform_vdv_mflora"}, // 0.36%
  4491. {4050.03834355828, "rhs_uniform_mflora_patchless"}, // 0.36%
  4492. {4085.98542944785, "rhs_uniform_gorka_r_y"}, // 0.36%
  4493. {4121.93251533742, "rhs_uniform_FROG01_wd"}, // 0.36%
  4494. {4157.87960122699, "rhs_uniform_FROG01_d"}, // 0.36%
  4495. {4193.82668711656, "rhs_uniform_cu_ocp"}, // 0.36%
  4496. {4229.77377300613, "rhs_uniform_cu_ucp"}, // 0.36%
  4497. {4265.7208588957, "rhs_uniform_cu_ocp_101st"}, // 0.36%
  4498. {4301.66794478527, "rhs_uniform_m88_patchless"}, // 0.36%
  4499. {4337.61503067484, "rhs_uniform_df15"}, // 0.36%
  4500. {4373.56211656441, "rhs_uniform_vdv_emr_des"}, // 0.36%
  4501. {4409.50920245398, "rhs_chdkz_uniform_5"}, // 0.36%
  4502. {4445.45628834355, "rhs_chdkz_uniform_3"}, // 0.36%
  4503. {4481.40337423312, "rhs_uniform_cu_ucp_10th"}, // 0.36%
  4504. {4517.35046012269, "rhs_uniform_cu_ucp_82nd"}, // 0.36%
  4505. {4553.29754601226, "rhs_chdkz_uniform_4"}, // 0.36%
  4506. {4589.24463190183, "rhs_uniform_cu_ucp_101st"}, // 0.36%
  4507. {4625.1917177914, "rhs_uniform_cu_ocp_82nd"}, // 0.36%
  4508. {4661.13880368097, "rhs_uniform_cu_ocp_1stcav"}, // 0.36%
  4509. {4697.08588957055, "rhs_uniform_emr_patchless"}, // 0.36%
  4510. {4733.03297546012, "rhs_uniform_cu_ocp_10th"}, // 0.36%
  4511. {4768.98006134969, "rhs_uniform_flora_patchless"}, // 0.36%
  4512. {4804.92714723926, "rhs_uniform_flora_patchless_alt"}, // 0.36%
  4513. {4840.87423312883, "rhs_uniform_mvd_izlom"}, // 0.36%
  4514. {4876.8213190184, "rhs_chdkz_uniform_1"}, // 0.36%
  4515. {4912.76840490797, "rhs_uniform_FROG01_m81"}, // 0.36%
  4516. {4948.71549079754, "rhs_chdkz_uniform_2"}, // 0.36%
  4517. {4984.66257668711, "rhs_uniform_cu_ucp_1stcav"}, // 0.36%
  4518. {5014.9338069099, "rhsusf_100Rnd_762x51_m993"}, // 0.30%
  4519. {5045.2050371327, "rhsusf_8Rnd_Slug"}, // 0.30%
  4520. {5075.4762673555, "rhsusf_8Rnd_00Buck"}, // 0.30%
  4521. {5105.74749757829, "rhsusf_100Rnd_762x51_m80a1epr"}, // 0.30%
  4522. {5136.01872780109, "rhsusf_20Rnd_762x51_m993_Mag"}, // 0.30%
  4523. {5166.28995802389, "rhsusf_5Rnd_300winmag_xm2010"}, // 0.30%
  4524. {5196.56118824668, "rhsusf_50Rnd_762x51_m80a1epr"}, // 0.30%
  4525. {5226.83241846948, "rhsusf_50Rnd_762x51_m993"}, // 0.30%
  4526. {5257.10364869227, "rhsusf_50Rnd_762x51"}, // 0.30%
  4527. {5287.37487891507, "rhs_200rnd_556x45_T_SAW"}, // 0.30%
  4528. {5317.64610913787, "rhs_200rnd_556x45_B_SAW"}, // 0.30%
  4529. {5347.91733936066, "rhsusf_100Rnd_762x51"}, // 0.30%
  4530. {5378.18856958346, "rhs_30Rnd_762x39mm"}, // 0.30%
  4531. {5408.45979980626, "rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Red"}, // 0.30%
  4532. {5438.73103002905, "rhs_30Rnd_762x39mm_89"}, // 0.30%
  4533. {5469.00226025185, "rhs_30Rnd_545x39_AK"}, // 0.30%
  4534. {5499.27349047465, "rhs_30Rnd_545x39_AK_no_tracers"}, // 0.30%
  4535. {5529.54472069744, "rhs_30Rnd_545x39_7N10_AK"}, // 0.30%
  4536. {5559.81595092024, "rhs_30Rnd_545x39_7N22_AK"}, // 0.30%
  4537. {5590.08718114304, "rhs_30Rnd_545x39_AK_green"}, // 0.30%
  4538. {5620.35841136583, "rhs_45Rnd_545X39_AK"}, // 0.30%
  4539. {5650.62964158863, "rhs_45Rnd_545X39_7N10_AK"}, // 0.30%
  4540. {5680.90087181143, "rhs_45Rnd_545X39_7N22_AK"}, // 0.30%
  4541. {5711.17210203422, "rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Green"}, // 0.30%
  4542. {5741.44333225702, "rhs_100Rnd_762x54mmR"}, // 0.30%
  4543. {5771.71456247982, "rhs_100Rnd_762x54mmR_green"}, // 0.30%
  4544. {5801.98579270261, "rhs_10Rnd_762x54mmR_7N1"}, // 0.30%
  4545. {5832.25702292541, "rhs_200rnd_556x45_M_SAW"}, // 0.30%
  4546. {5862.5282531482, "rhs_30Rnd_762x39mm_tracer"}, // 0.30%
  4547. {5892.799483371, "rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Yellow"}, // 0.30%
  4548. {5923.0707135938, "rhs_45Rnd_545X39_AK_Green"}, // 0.30%
  4549. {5953.34194381659, "rhs_mag_30Rnd_556x45_M855A1_Stanag"}, // 0.30%
  4550. {5983.61317403939, "rhs_mag_30Rnd_556x45_M855A1_Stanag_No_Tracer"}, // 0.30%
  4551. {6013.88440426219, "rhsusf_mag_7x45acp_MHP"}, // 0.30%
  4552. {6044.15563448498, "rhs_mag_30Rnd_556x45_Mk262_Stanag"}, // 0.30%
  4553. {6074.42686470778, "rhs_mag_9x19_17"}, // 0.30%
  4554. {6104.69809493058, "rhs_mag_30Rnd_556x45_Mk318_Stanag"}, // 0.30%
  4555. {6134.96932515337, "rhs_mag_9x18_12_57N181S"}, // 0.30%
  4556. {6156.27130197682, "rhs_6b23_engineer"}, // 0.21%
  4557. {6177.57327880027, "rhs_6b23_crew"}, // 0.21%
  4558. {6198.87525562372, "rhs_6b23_6sh92_vog_headset"}, // 0.21%
  4559. {6220.17723244717, "rhs_6b23_6sh92_vog"}, // 0.21%
  4560. {6241.47920927062, "rhs_6b23_6sh92_radio"}, // 0.21%
  4561. {6262.78118609407, "rhs_6b23_6sh92_headset_mapcase"}, // 0.21%
  4562. {6284.08316291752, "rhs_6b23_6sh92_headset"}, // 0.21%
  4563. {6305.38513974096, "rhs_6b23_6sh92"}, // 0.21%
  4564. {6326.68711656441, "rhs_6b23"}, // 0.21%
  4565. {6347.98909338786, "rhs_6b13_Flora_crewofficer"}, // 0.21%
  4566. {6369.29107021131, "rhs_6b13_Flora_6sh92_headset_mapcase"}, // 0.21%
  4567. {6390.59304703476, "rhs_6b13_Flora_6sh92"}, // 0.21%
  4568. {6411.89502385821, "rhs_6b23_rifleman"}, // 0.21%
  4569. {6433.19700068166, "rhs_6b13_6sh92_radio"}, // 0.21%
  4570. {6454.49897750511, "rhs_6b13_6sh92_vog"}, // 0.21%
  4571. {6475.80095432856, "rhs_6sh92_digi"}, // 0.21%
  4572. {6497.10293115201, "rhs_vydra_3m"}, // 0.21%
  4573. {6518.40490797545, "rhs_6sh92_vog_headset"}, // 0.21%
  4574. {6539.7068847989, "rhs_6sh92_vog"}, // 0.21%
  4575. {6561.00886162235, "rhs_6sh92_radio"}, // 0.21%
  4576. {6582.3108384458, "rhs_6sh92_headset"}, // 0.21%
  4577. {6603.61281526925, "rhs_6b13_Flora_6sh92_vog"}, // 0.21%
  4578. {6624.9147920927, "rhs_6b13_Flora"}, // 0.21%
  4579. {6646.21676891615, "rhs_6b23_sniper"}, // 0.21%
  4580. {6667.5187457396, "rhs_6b23_ML_6sh92"}, // 0.21%
  4581. {6688.82072256305, "rhsusf_iotv_ucp_Grenadier"}, // 0.21%
  4582. {6710.12269938649, "rhsusf_iotv_ocp_Grenadier"}, // 0.21%
  4583. {6731.42467620994, "rhsusf_iotv_ucp_Teamleader"}, // 0.21%
  4584. {6752.72665303339, "rhsusf_iotv_ocp_Teamleader"}, // 0.21%
  4585. {6774.02862985684, "rhsusf_iotv_ucp_Squadleader"}, // 0.21%
  4586. {6795.33060668029, "rhsusf_iotv_ocp_Squadleader"}, // 0.21%
  4587. {6816.63258350374, "rhsusf_iotv_ucp_SAW"}, // 0.21%
  4588. {6837.93456032719, "rhsusf_iotv_ocp_SAW"}, // 0.21%
  4589. {6859.23653715064, "rhsusf_iotv_ucp_Rifleman"}, // 0.21%
  4590. {6880.53851397409, "rhsusf_iotv_ocp_Rifleman"}, // 0.21%
  4591. {6901.84049079754, "rhsusf_iotv_ucp_Repair"}, // 0.21%
  4592. {6923.14246762098, "rhsusf_iotv_ocp_Repair"}, // 0.21%
  4593. {6944.44444444443, "rhsusf_iotv_ucp_Medic"}, // 0.21%
  4594. {6965.74642126788, "rhs_6b23_ML"}, // 0.21%
  4595. {6987.04839809133, "rhs_6b23_digi_6sh92_vog_headset"}, // 0.21%
  4596. {7008.35037491478, "rhsusf_iotv_ucp"}, // 0.21%
  4597. {7029.65235173823, "rhsusf_iotv_ocp"}, // 0.21%
  4598. {7050.95432856168, "rhs_6sh46"}, // 0.21%
  4599. {7072.25630538513, "rhs_6b23_ML_sniper"}, // 0.21%
  4600. {7093.55828220858, "rhs_6b23_ML_rifleman"}, // 0.21%
  4601. {7114.86025903203, "rhs_6b23_ML_engineer"}, // 0.21%
  4602. {7136.16223585547, "rhs_6b23_ML_crew"}, // 0.21%
  4603. {7157.46421267892, "rhs_6b23_ML_crewofficer"}, // 0.21%
  4604. {7178.76618950237, "rhs_6b23_ML_6sh92_vog_headset"}, // 0.21%
  4605. {7200.06816632582, "rhs_6b23_ML_6sh92_vog"}, // 0.21%
  4606. {7221.37014314927, "rhs_6b23_ML_6sh92_radio"}, // 0.21%
  4607. {7242.67211997272, "rhs_6b23_ML_6sh92_headset_mapcase"}, // 0.21%
  4608. {7263.97409679617, "rhs_6b23_ML_6sh92_headset"}, // 0.21%
  4609. {7285.27607361962, "rhsusf_iotv_ocp_Medic"}, // 0.21%
  4610. {7305.81726555651, "rhs_weap_m16a4_carryhandle_pmag"}, // 0.21%
  4611. {7326.35845749341, "rhs_weap_m16a4_carryhandle_M203"}, // 0.21%
  4612. {7346.89964943031, "rhs_weap_akms"}, // 0.21%
  4613. {7367.44084136721, "rhs_weap_m4a1_blockII_grip2"}, // 0.21%
  4614. {7387.9820333041, "rhs_weap_m4a1_blockII_KAC"}, // 0.21%
  4615. {7408.523225241, "rhs_weap_m4a1_blockII"}, // 0.21%
  4616. {7429.0644171779, "rhs_weap_m4a1_m203"}, // 0.21%
  4617. {7449.60560911479, "rhs_weap_m4a1_grip"}, // 0.21%
  4618. {7470.14680105169, "rhs_weap_m4a1_grip2"}, // 0.21%
  4619. {7490.68799298859, "rhs_weap_m4a1"}, // 0.21%
  4620. {7511.22918492549, "rhs_weap_m4a1_carryhandle_m203"}, // 0.21%
  4621. {7531.77037686238, "rhs_weap_m4a1_carryhandle_pmag"}, // 0.21%
  4622. {7552.31156879928, "rhs_weap_m4a1_carryhandle_grip2"}, // 0.21%
  4623. {7572.85276073618, "rhs_weap_akms_gp25"}, // 0.21%
  4624. {7593.39395267307, "rhs_weap_m4a1_blockII_grip2_KAC"}, // 0.21%
  4625. {7613.93514460997, "rhs_weap_m4a1_carryhandle"}, // 0.21%
  4626. {7634.47633654687, "rhs_weap_m4_m203"}, // 0.21%
  4627. {7655.01752848377, "rhs_weap_m4_grip"}, // 0.21%
  4628. {7675.55872042066, "rhs_weap_m4_carryhandle_pmag"}, // 0.21%
  4629. {7696.09991235756, "rhs_weap_m4_carryhandle"}, // 0.21%
  4630. {7716.64110429446, "rhs_weap_m4_grip2"}, // 0.21%
  4631. {7737.18229623135, "rhs_weap_m4"}, // 0.21%
  4632. {7757.72348816825, "rhs_weap_m16a4_grip"}, // 0.21%
  4633. {7778.26468010515, "rhs_weap_m16a4"}, // 0.21%
  4634. {7798.80587204204, "rhs_weap_m16a4_carryhandle"}, // 0.21%
  4635. {7819.34706397894, "rhs_weap_m16a4_carryhandle_grip"}, // 0.21%
  4636. {7839.88825591584, "rhs_weap_m16a4_carryhandle_grip_pmag"}, // 0.21%
  4637. {7860.42944785274, "rhs_weap_m4_m320"}, // 0.21%
  4638. {7880.97063978963, "rhs_weap_m4a1_blockII_M203"}, // 0.21%
  4639. {7901.51183172653, "rhs_weap_m4a1_m320"}, // 0.21%
  4640. {7922.05302366343, "rhs_weap_mk18_KAC"}, // 0.21%
  4641. {7942.59421560032, "rhs_weap_akm_gp25"}, // 0.21%
  4642. {7963.13540753722, "rhs_weap_akm"}, // 0.21%
  4643. {7983.67659947412, "rhs_weap_ak74m_plummag_npz"}, // 0.21%
  4644. {8004.21779141102, "rhs_weap_ak74m_plummag"}, // 0.21%
  4645. {8024.75898334791, "rhs_weap_ak74m_npz"}, // 0.21%
  4646. {8045.30017528481, "rhs_weap_ak74m_gp25_npz"}, // 0.21%
  4647. {8065.84136722171, "rhs_weap_ak74m_gp25"}, // 0.21%
  4648. {8086.3825591586, "rhs_weap_mk18"}, // 0.21%
  4649. {8106.9237510955, "rhs_weap_ak74m_folded"}, // 0.21%
  4650. {8127.4649430324, "rhs_weap_ak74m_plummag_folded"}, // 0.21%
  4651. {8148.0061349693, "rhs_weap_ak74m_desert_folded"}, // 0.21%
  4652. {8168.54732690619, "rhs_weap_ak74m_desert_npz"}, // 0.21%
  4653. {8189.08851884309, "rhs_weap_ak74m_camo_folded"}, // 0.21%
  4654. {8209.62971077999, "rhs_weap_ak74m_camo"}, // 0.21%
  4655. {8230.17090271689, "rhs_weap_ak74m_desert"}, // 0.21%
  4656. {8250.71209465378, "rhs_weap_mk18_grip2_KAC"}, // 0.21%
  4657. {8271.25328659068, "rhs_weap_mk18_m320"}, // 0.21%
  4658. {8291.79447852758, "rhs_weap_ak103"}, // 0.21%
  4659. {8312.33567046448, "rhs_weap_ak103_npz"}, // 0.21%
  4660. {8332.87686240138, "rhs_weap_mk18_grip2"}, // 0.21%
  4661. {8353.41805433827, "rhs_weap_ak74m"}, // 0.21%
  4662. {8373.95924627517, "rhs_weap_ak74m_2mag"}, // 0.21%
  4663. {8394.50043821207, "rhs_weap_ak74m_2mag_camo"}, // 0.21%
  4664. {8415.04163014897, "rhs_weap_ak74m_2mag_npz"}, // 0.21%
  4665. {8435.58282208587, "rhs_weap_ak103_1"}, // 0.21%
  4666. {8444.36378963141, "rhs_6b26"}, // 0.09%
  4667. {8453.14475717696, "rhs_6b26_bala"}, // 0.09%
  4668. {8461.9257247225, "rhs_6b26_ess"}, // 0.09%
  4669. {8470.70669226804, "rhs_6b26_ess_bala"}, // 0.09%
  4670. {8479.48765981359, "rhs_6b27m_green"}, // 0.09%
  4671. {8488.26862735913, "rhs_6b27m_green_ess"}, // 0.09%
  4672. {8497.04959490468, "rhs_6b27m_green_ess_bala"}, // 0.09%
  4673. {8505.83056245022, "rhs_6b27m_digi_ess_bala"}, // 0.09%
  4674. {8514.61152999577, "rhs_6b28_green"}, // 0.09%
  4675. {8523.39249754131, "rhs_6b26_ess_bala_green"}, // 0.09%
  4676. {8532.17346508686, "rhs_6b27m_green_bala"}, // 0.09%
  4677. {8540.9544326324, "rhs_6b26_ess_green"}, // 0.09%
  4678. {8549.73540017795, "rhs_6b28_green_bala"}, // 0.09%
  4679. {8558.51636772349, "rhs_6b26_green"}, // 0.09%
  4680. {8567.29733526904, "rhs_6b27m_ML_ess_bala"}, // 0.09%
  4681. {8576.07830281458, "rhs_6b27m_ml_ess"}, // 0.09%
  4682. {8584.85927036012, "rhs_6b27m_ml_bala"}, // 0.09%
  4683. {8593.64023790567, "rhs_6b27m_ml"}, // 0.09%
  4684. {8602.42120545121, "rhs_6b27m_ess_bala"}, // 0.09%
  4685. {8611.20217299676, "rhs_6b27m_bala"}, // 0.09%
  4686. {8619.9831405423, "rhs_6b27m_ess"}, // 0.09%
  4687. {8628.76410808785, "rhs_6b27m"}, // 0.09%
  4688. {8637.54507563339, "rhs_6b27m_digi_ess"}, // 0.09%
  4689. {8646.32604317894, "rhs_6b27m_digi_bala"}, // 0.09%
  4690. {8655.10701072448, "rhs_6b27m_digi"}, // 0.09%
  4691. {8663.88797827003, "rhs_6b26_bala_green"}, // 0.09%
  4692. {8672.66894581557, "rhs_6b28_green_ess"}, // 0.09%
  4693. {8681.44991336112, "rhsusf_mich_bare_norotos_arc"}, // 0.09%
  4694. {8690.23088090666, "rhs_6b28"}, // 0.09%
  4695. {8699.0118484522, "rhsusf_mich_bare_norotos_arc_headset"}, // 0.09%
  4696. {8707.79281599775, "rhsusf_mich_bare_norotos_arc_alt_tan_headset"}, // 0.09%
  4697. {8716.57378354329, "rhsusf_mich_bare_norotos_arc_alt_tan"}, // 0.09%
  4698. {8725.35475108884, "rhsusf_mich_bare_norotos_arc_alt_semi_headset"}, // 0.09%
  4699. {8734.13571863438, "rhsusf_mich_bare_norotos_arc_alt_semi"}, // 0.09%
  4700. {8742.91668617993, "rhsusf_mich_bare_norotos_arc_alt_headset"}, // 0.09%
  4701. {8751.69765372547, "rhsusf_mich_bare_norotos_arc_alt"}, // 0.09%
  4702. {8760.47862127102, "rhsusf_mich_bare_norotos_alt_tan_headset"}, // 0.09%
  4703. {8769.25958881656, "rhsusf_mich_bare_norotos_alt_tan"}, // 0.09%
  4704. {8778.04055636211, "rhsusf_mich_bare_norotos_alt_semi_headset"}, // 0.09%
  4705. {8786.82152390765, "rhsusf_mich_bare_norotos_arc_semi"}, // 0.09%
  4706. {8795.6024914532, "rhsusf_mich_bare_norotos_alt_semi"}, // 0.09%
  4707. {8804.38345899874, "rhsusf_mich_bare_norotos_alt"}, // 0.09%
  4708. {8813.16442654428, "rhsusf_mich_bare_norotos"}, // 0.09%
  4709. {8821.94539408983, "rhsusf_mich_bare_headset"}, // 0.09%
  4710. {8830.72636163537, "rhsusf_mich_bare_alt_tan"}, // 0.09%
  4711. {8839.50732918092, "rhsusf_mich_bare_alt_semi"}, // 0.09%
  4712. {8848.28829672646, "rhs_6b28_green_ess_bala"}, // 0.09%
  4713. {8857.06926427201, "rhsusf_mich_bare"}, // 0.09%
  4714. {8865.85023181755, "rhsusf_lwh_helmet_marpatwd_headset"}, // 0.09%
  4715. {8874.6311993631, "rhsusf_lwh_helmet_marpatwd_ess"}, // 0.09%
  4716. {8883.41216690864, "rhsusf_lwh_helmet_marpatwd"}, // 0.09%
  4717. {8892.19313445419, "rhsusf_mich_bare_norotos_alt_headset"}, // 0.09%
  4718. {8900.97410199973, "rhsusf_lwh_helmet_marpatd_headset"}, // 0.09%
  4719. {8909.75506954528, "rhsusf_mich_bare_norotos_arc_semi_headset"}, // 0.09%
  4720. {8918.53603709082, "rhsusf_mich_bare_norotos_headset"}, // 0.09%
  4721. {8927.31700463636, "rhsusf_mich_helmet_marpatwd_norotos_headset"}, // 0.09%
  4722. {8936.09797218191, "rhsusf_mich_helmet_marpatwd_norotos_arc_headset"}, // 0.09%
  4723. {8944.87893972745, "rhsusf_mich_helmet_marpatwd_norotos_arc"}, // 0.09%
  4724. {8953.659907273, "rhsusf_mich_helmet_marpatwd_norotos"}, // 0.09%
  4725. {8962.44087481854, "rhsusf_mich_helmet_marpatwd_headset"}, // 0.09%
  4726. {8971.22184236409, "rhsusf_mich_helmet_marpatwd_alt_headset"}, // 0.09%
  4727. {8980.00280990963, "rhsusf_mich_helmet_marpatwd_alt"}, // 0.09%
  4728. {8988.78377745518, "rhsusf_mich_helmet_marpatwd"}, // 0.09%
  4729. {8997.56474500072, "rhsusf_mich_helmet_marpatd_norotos_headset"}, // 0.09%
  4730. {9006.34571254627, "rhsusf_mich_helmet_marpatd_norotos_arc_headset"}, // 0.09%
  4731. {9015.12668009181, "rhsusf_mich_bare_norotos_arc_tan"}, // 0.09%
  4732. {9023.90764763736, "rhsusf_mich_helmet_marpatd_norotos_arc"}, // 0.09%
  4733. {9032.6886151829, "rhsusf_mich_helmet_marpatd_headset"}, // 0.09%
  4734. {9041.46958272844, "rhsusf_mich_helmet_marpatd_alt_headset"}, // 0.09%
  4735. {9050.25055027399, "rhsusf_mich_bare_tan_headset"}, // 0.09%
  4736. {9059.03151781953, "rhsusf_mich_bare_tan"}, // 0.09%
  4737. {9067.81248536508, "rhsusf_mich_bare_semi_headset"}, // 0.09%
  4738. {9076.59345291062, "rhsusf_mich_bare_semi"}, // 0.09%
  4739. {9085.37442045617, "rhsusf_mich_bare_norotos_tan_headset"}, // 0.09%
  4740. {9094.15538800171, "rhsusf_mich_bare_norotos_tan"}, // 0.09%
  4741. {9102.93635554726, "rhsusf_mich_bare_norotos_semi_headset"}, // 0.09%
  4742. {9111.7173230928, "rhsusf_mich_bare_norotos_semi"}, // 0.09%
  4743. {9120.49829063835, "rhsusf_mich_helmet_marpatd_norotos"}, // 0.09%
  4744. {9129.27925818389, "rhsusf_lwh_helmet_marpatd_ess"}, // 0.09%
  4745. {9138.06022572944, "rhsusf_mich_bare_alt"}, // 0.09%
  4746. {9146.84119327498, "rhsusf_lwh_helmet_M1942"}, // 0.09%
  4747. {9155.62216082053, "rhsusf_ach_bare_headset"}, // 0.09%
  4748. {9164.40312836607, "rhsusf_ach_bare_ess"}, // 0.09%
  4749. {9173.18409591161, "rhsusf_ach_bare_des_headset_ess"}, // 0.09%
  4750. {9181.96506345716, "rhsusf_ach_bare_des_headset"}, // 0.09%
  4751. {9190.7460310027, "rhsusf_lwh_helmet_marpatd"}, // 0.09%
  4752. {9199.52699854825, "rhsusf_ach_bare_des"}, // 0.09%
  4753. {9208.30796609379, "rhsusf_ach_bare"}, // 0.09%
  4754. {9217.08893363934, "rhsusf_Bowman"}, // 0.09%
  4755. {9225.86990118488, "rhs_Booniehat_ucp"}, // 0.09%
  4756. {9234.65086873043, "rhs_Booniehat_ocp"}, // 0.09%
  4757. {9243.43183627597, "rhs_Booniehat_marpatwd"}, // 0.09%
  4758. {9252.21280382152, "rhs_Booniehat_marpatd"}, // 0.09%
  4759. {9260.99377136706, "rhs_Booniehat_m81"}, // 0.09%
  4760. {9269.77473891261, "rhs_ssh68"}, // 0.09%
  4761. {9278.55570645815, "rhs_Booniehat_flora"}, // 0.09%
  4762. {9287.33667400369, "rhs_Booniehat_digi"}, // 0.09%
  4763. {9296.11764154924, "rhs_6b28_flora_ess_bala"}, // 0.09%
  4764. {9304.89860909478, "rhs_6b28_flora_ess"}, // 0.09%
  4765. {9313.67957664033, "rhs_6b28_flora_bala"}, // 0.09%
  4766. {9322.46054418587, "rhs_6b28_flora"}, // 0.09%
  4767. {9331.24151173142, "rhs_6b28_ess_bala"}, // 0.09%
  4768. {9340.02247927696, "rhs_6b28_ess"}, // 0.09%
  4769. {9348.80344682251, "rhs_6b28_bala"}, // 0.09%
  4770. {9357.58441436805, "rhsusf_ach_bare_headset_ess"}, // 0.09%
  4771. {9366.3653819136, "rhsusf_ach_bare_semi"}, // 0.09%
  4772. {9375.14634945914, "rhsusf_ach_bare_des_ess"}, // 0.09%
  4773. {9383.92731700469, "rhsusf_ach_bare_semi_headset"}, // 0.09%
  4774. {9392.70828455023, "rhsusf_bowman_cap"}, // 0.09%
  4775. {9401.48925209577, "rhsusf_ach_helmet_ucp_norotos"}, // 0.09%
  4776. {9410.27021964132, "rhsusf_ach_helmet_ucp"}, // 0.09%
  4777. {9419.05118718686, "rhsusf_ach_helmet_ocp_norotos"}, // 0.09%
  4778. {9427.83215473241, "rhsusf_ach_helmet_ocp"}, // 0.09%
  4779. {9436.61312227795, "rhsusf_ach_bare_semi_ess"}, // 0.09%
  4780. {9445.3940898235, "rhsusf_ach_helmet_headset_ocp"}, // 0.09%
  4781. {9454.17505736904, "rhsusf_ach_helmet_headset_ess_ucp"}, // 0.09%
  4782. {9462.95602491459, "rhsusf_ach_helmet_headset_ess_ocp"}, // 0.09%
  4783. {9471.73699246013, "rhsusf_ach_helmet_camo_ocp"}, // 0.09%
  4784. {9480.51796000568, "rhsusf_ach_helmet_M81"}, // 0.09%
  4785. {9489.29892755122, "rhsusf_ach_helmet_headset_ucp"}, // 0.09%
  4786. {9498.07989509677, "rhsusf_ach_helmet_ESS_ocp"}, // 0.09%
  4787. {9506.86086264231, "rhsusf_ach_bare_wood_headset_ess"}, // 0.09%
  4788. {9515.64183018785, "rhsusf_ach_bare_wood_headset"}, // 0.09%
  4789. {9524.4227977334, "rhsusf_ach_bare_wood_ess"}, // 0.09%
  4790. {9533.20376527894, "rhsusf_ach_bare_wood"}, // 0.09%
  4791. {9541.98473282449, "rhsusf_ach_bare_tan_headset_ess"}, // 0.09%
  4792. {9550.76570037003, "rhsusf_ach_bare_tan_headset"}, // 0.09%
  4793. {9559.54666791558, "rhsusf_ach_bare_tan_ess"}, // 0.09%
  4794. {9568.32763546112, "rhsusf_ach_bare_tan"}, // 0.09%
  4795. {9577.10860300667, "rhsusf_ach_bare_semi_headset_ess"}, // 0.09%
  4796. {9585.88957055221, "rhsusf_ach_helmet_ESS_ucp"}, // 0.09%
  4797. {9593.59662576694, "1Rnd_HE_Grenade_shell"}, // 0.08%
  4798. {9601.26533742338, "ItemCompass"}, // 0.08%
  4799. {9608.93404907982, "Exile_Item_ZipTie"}, // 0.08%
  4800. {9614.68558282215, "HandGrenade"}, // 0.06%
  4801. {9620.43711656448, "MiniGrenade"}, // 0.06%
  4802. {9624.94812342121, "Exile_Item_Vishpirin"}, // 0.05%
  4803. {9628.859166366, "150Rnd_93x64_Mag"}, // 0.04%
  4804. {9632.69352219422, "rhsusf_m112x4_mag"}, // 0.04%
  4805. {9636.52787802244, "rhs_mine_pmn2_mag"}, // 0.04%
  4806. {9640.36223385066, "rhs_mine_tm62m_mag"}, // 0.04%
  4807. {9644.19658967888, "rhsusf_m112_mag"}, // 0.04%
  4808. {9648.03094550711, "APERSTripMine_Wire_Mag"}, // 0.04%
  4809. {9651.86530133533, "APERSBoundingMine_Range_Mag"}, // 0.04%
  4810. {9655.69965716355, "APERSMine_Range_Mag"}, // 0.04%
  4811. {9659.53401299177, "rhs_mine_m19_mag"}, // 0.04%
  4812. {9663.36836881999, "Laserdesignator"}, // 0.04%
  4813. {9667.20272464821, "Rangefinder"}, // 0.04%
  4814. {9671.03708047643, "NVGoggles"}, // 0.04%
  4815. {9674.83309274637, "3Rnd_HE_Grenade_shell"}, // 0.04%
  4816. {9677.90057740895, "U_IG_Guerilla2_3"}, // 0.03%
  4817. {9680.96806207153, "LMG_Zafir_F"}, // 0.03%
  4818. {9684.0355467341, "LMG_Mk200_F"}, // 0.03%
  4819. {9687.10303139668, "arifle_MX_SW_F"}, // 0.03%
  4820. {9690.17051605926, "arifle_MX_SW_Black_F"}, // 0.03%
  4821. {9693.23800072183, "U_IG_Guerilla2_2"}, // 0.03%
  4822. {9696.30548538441, "U_IG_Guerilla2_1"}, // 0.03%
  4823. {9699.37297004699, "U_IG_Guerilla1_1"}, // 0.03%
  4824. {9702.44045470957, "LMG_03_F"}, // 0.03%
  4825. {9705.31622158073, "U_IG_Guerilla3_2"}, // 0.03%
  4826. {9708.1919884519, "U_IG_Guerilla3_1"}, // 0.03%
  4827. {9710.49260194883, "IEDUrbanSmall_Remote_Mag"}, // 0.02%
  4828. {9712.79321544576, "IEDLandSmall_Remote_Mag"}, // 0.02%
  4829. {9715.0938289427, "DemoCharge_Remote_Mag"}, // 0.02%
  4830. {9717.34933237106, "Exile_Item_Bandage"}, // 0.02%
  4831. {9719.53491519315, "B_Carryall_cbr"}, // 0.02%
  4832. {9721.68753600899, "10Rnd_93x64_DMR_05_Mag"}, // 0.02%
  4833. {9723.84015682483, "10Rnd_338_Mag"}, // 0.02%
  4834. {9725.98739608864, "B_FieldPack_cbr"}, // 0.02%
  4835. {9728.13463535244, "B_FieldPack_blk"}, // 0.02%
  4836. {9730.28187461624, "20Rnd_762x51_Mag"}, // 0.02%
  4837. {9732.42911388005, "10Rnd_762x51_Mag"}, // 0.02%
  4838. {9734.57635314385, "B_FieldPack_ocamo"}, // 0.02%
  4839. {9736.72359240766, "B_FieldPack_oucamo"}, // 0.02%
  4840. {9738.83640072117, "optic_DMS"}, // 0.02%
  4841. {9740.90695286841, "B_Carryall_oli"}, // 0.02%
  4842. {9742.97750501565, "B_Carryall_khk"}, // 0.02%
  4843. {9745.0120611694, "optic_LRPS"}, // 0.02%
  4844. {9747.04661732315, "optic_SOS"}, // 0.02%
  4845. {9749.00213879554, "UGL_FlareRed_F"}, // 0.02%
  4846. {9750.95766026793, "UGL_FlareYellow_F"}, // 0.02%
  4847. {9752.91318174033, "UGL_FlareGreen_F"}, // 0.02%
  4848. {9754.86870321272, "UGL_FlareWhite_F"}, // 0.02%
  4849. {9756.75224642658, "10Rnd_127x54_Mag"}, // 0.02%
  4850. {9758.56852023995, "30Rnd_556x45_Stanag"}, // 0.02%
  4851. {9760.38479405332, "30Rnd_65x39_caseless_green"}, // 0.02%
  4852. {9762.11025417602, "SmokeShellOrange"}, // 0.02%
  4853. {9763.83571429872, "SmokeShellBlue"}, // 0.02%
  4854. {9765.56117442141, "B_Carryall_ocamo"}, // 0.02%
  4855. {9767.28663454411, "B_Carryall_oucamo"}, // 0.02%
  4856. {9769.01209466681, "B_Carryall_mcamo"}, // 0.02%
  4857. {9770.69921123123, "B_Bergen_mcamo"}, // 0.02%
  4858. {9772.38632779565, "B_Bergen_rgr"}, // 0.02%
  4859. {9774.07344436007, "B_Bergen_sgg"}, // 0.02%
  4860. {9775.76056092448, "B_Bergen_blk"}, // 0.02%
  4861. {9777.37099037233, "V_PlateCarrierSpec_rgr"}, // 0.02%
  4862. {9778.98141982019, "SmokeShell"}, // 0.02%
  4863. {9780.59184926804, "SmokeShellRed"}, // 0.02%
  4864. {9782.20227871589, "SmokeShellGreen"}, // 0.02%
  4865. {9783.81270816374, "SmokeShellYellow"}, // 0.02%
  4866. {9785.42313761159, "SmokeShellPurple"}, // 0.02%
  4867. {9786.95687994288, "srifle_DMR_01_F"}, // 0.02%
  4868. {9788.49062227417, "srifle_EBR_F"}, // 0.02%
  4869. {9789.98602104718, "V_PlateCarrierSpec_mtp"}, // 0.01%
  4870. {9791.48141982018, "V_PlateCarrierSpec_blk"}, // 0.01%
  4871. {9792.96821085562, "muzzle_snds_B"}, // 0.01%
  4872. {9794.44813766651, "20Rnd_762x51_Mag"}, // 0.01%
  4873. {9795.82850576467, "V_PlateCarrierGL_mtp"}, // 0.01%
  4874. {9797.20887386283, "V_PlateCarrierGL_rgr"}, // 0.01%
  4875. {9798.58924196099, "V_PlateCarrierIAGL_dgtl"}, // 0.01%
  4876. {9799.96961005915, "V_PlateCarrierIAGL_oli"}, // 0.01%
  4877. {9801.34997815731, "V_PlateCarrierGL_blk"}, // 0.01%
  4878. {9802.68191228711, "20Rnd_556x45_UW_mag"}, // 0.01%
  4879. {9803.98559326871, "7Rnd_408_Mag"}, // 0.01%
  4880. {9805.2892742503, "5Rnd_127x108_Mag"}, // 0.01%
  4881. {9806.5929552319, "V_RebreatherIA"}, // 0.01%
  4882. {9807.89663621349, "U_I_GhillieSuit"}, // 0.01%
  4883. {9809.1747548229, "muzzle_snds_338_black"}, // 0.01%
  4884. {9810.4528734323, "muzzle_snds_B"}, // 0.01%
  4885. {9811.73099204171, "muzzle_snds_338_sand"}, // 0.01%
  4886. {9813.00911065112, "muzzle_snds_93mmg"}, // 0.01%
  4887. {9814.28722926053, "muzzle_snds_93mmg_tan"}, // 0.01%
  4888. {9815.56534786993, "muzzle_snds_338_green"}, // 0.01%
  4889. {9816.83068529325, "U_O_GhillieSuit"}, // 0.01%
  4890. {9818.09602271656, "V_RebreatherB"}, // 0.01%
  4891. {9819.36136013987, "U_B_GhillieSuit"}, // 0.01%
  4892. {9820.62669756318, "V_RebreatherIR"}, // 0.01%
  4893. {9821.87027242639, "srifle_DMR_05_hex_F"}, // 0.01%
  4894. {9823.1138472896, "srifle_DMR_05_tan_F"}, // 0.01%
  4895. {9824.3574221528, "srifle_DMR_05_blk_F"}, // 0.01%
  4896. {9825.5625054131, "srifle_LRR_F"}, // 0.01%
  4897. {9826.7675886734, "srifle_DMR_07_blk_F"}, // 0.01%
  4898. {9827.9726719337, "srifle_DMR_07_ghex_F"}, // 0.01%
  4899. {9829.177755194, "srifle_DMR_07_hex_F"}, // 0.01%
  4900. {9830.38283845429, "srifle_GM6_ghex_F"}, // 0.01%
  4901. {9831.58792171459, "srifle_LRR_tna_F"}, // 0.01%
  4902. {9832.79300497489, "srifle_GM6_F"}, // 0.01%
  4903. {9833.98503269351, "ItemWatch"}, // 0.01%
  4904. {9835.17706041213, "ItemRadio"}, // 0.01%
  4905. {9836.35084280852, "1Rnd_Smoke_Grenade_shell"}, // 0.01%
  4906. {9837.52462520491, "1Rnd_SmokeBlue_Grenade_shell"}, // 0.01%
  4907. {9838.69840760131, "1Rnd_SmokeGreen_Grenade_shell"}, // 0.01%
  4908. {9839.8721899977, "1Rnd_SmokeOrange_Grenade_shell"}, // 0.01%
  4909. {9841.0459723941, "1Rnd_SmokeYellow_Grenade_shell"}, // 0.01%
  4910. {9842.21975479049, "1Rnd_SmokePurple_Grenade_shell"}, // 0.01%
  4911. {9843.39353718688, "1Rnd_SmokeRed_Grenade_shell"}, // 0.01%
  4912. {9844.54384393535, "V_PlateCarrierSpec_rgr"}, // 0.01%
  4913. {9845.69415068382, "V_PlateCarrierIA1_dgtl"}, // 0.01%
  4914. {9846.84445743228, "V_PlateCarrierIA2_dgtl"}, // 0.01%
  4915. {9847.99476418075, "V_PlateCarrierIAGL_dgtl"}, // 0.01%
  4916. {9849.14507092922, "V_PlateCarrier2_rgr"}, // 0.01%
  4917. {9850.29537767768, "V_PlateCarrier3_rgr"}, // 0.01%
  4918. {9851.44568442615, "V_PlateCarrierGL_rgr"}, // 0.01%
  4919. {9852.59599117462, "V_PlateCarrier1_rgr"}, // 0.01%
  4920. {9853.74629792308, "V_PlateCarrier1_blk"}, // 0.01%
  4921. {9854.84182815972, "optic_AMS_snd"}, // 0.01%
  4922. {9855.93735839635, "optic_AMS_khk"}, // 0.01%
  4923. {9857.03288863299, "optic_KHS_old"}, // 0.01%
  4924. {9858.12841886962, "optic_KHS_tan"}, // 0.01%
  4925. {9859.22394910626, "optic_AMS"}, // 0.01%
  4926. {9860.31947934289, "optic_KHS_hex"}, // 0.01%
  4927. {9861.41500957952, "optic_KHS_blk"}, // 0.01%
  4928. {9862.50477386755, "30Rnd_65x39_caseless_mag_Tracer"}, // 0.01%
  4929. {9863.59453815557, "30Rnd_65x39_caseless_mag"}, // 0.01%
  4930. {9864.68430244359, "30Rnd_65x39_caseless_green_mag_Tracer"}, // 0.01%
  4931. {9865.77406673161, "30Rnd_556x45_Stanag_Tracer_Yellow"}, // 0.01%
  4932. {9866.86383101963, "30Rnd_556x45_Stanag_Tracer_Red"}, // 0.01%
  4933. {9867.95359530765, "30Rnd_556x45_Stanag_Tracer_Green"}, // 0.01%
  4934. {9869.04172331296, "srifle_DMR_04_F"}, // 0.01%
  4935. {9870.12985131826, "srifle_DMR_04_Tan_F"}, // 0.01%
  4936. {9871.10274757318, "bipod_02_F_blk"}, // 0.01%
  4937. {9872.0756438281, "bipod_03_F_oli"}, // 0.01%
  4938. {9873.04854008303, "bipod_03_F_blk"}, // 0.01%
  4939. {9874.02143633795, "bipod_02_F_tan"}, // 0.01%
  4940. {9874.99433259287, "bipod_01_F_snd"}, // 0.01%
  4941. {9875.96722884779, "bipod_01_F_blk"}, // 0.01%
  4942. {9876.8999099952, "srifle_DMR_02_sniper_F"}, // 0.01%
  4943. {9877.8325911426, "srifle_DMR_02_F"}, // 0.01%
  4944. {9878.76527229001, "srifle_DMR_02_camo_F"}, // 0.01%
  4945. {9879.68551768878, "3Rnd_UGL_FlareWhite_F"}, // 0.01%
  4946. {9880.60576308755, "3Rnd_UGL_FlareYellow_F"}, // 0.01%
  4947. {9881.52600848633, "3Rnd_UGL_FlareRed_F"}, // 0.01%
  4948. {9882.4462538851, "3Rnd_UGL_FlareGreen_F"}, // 0.01%
  4949. {9883.36649928387, "100Rnd_65x39_caseless_mag"}, // 0.01%
  4950. {9884.28674468264, "150Rnd_762x54_Box"}, // 0.01%
  4951. {9885.2024117461, "bipod_01_F_mtp"}, // 0.01%
  4952. {9886.11807880956, "bipod_02_F_hex"}, // 0.01%
  4953. {9887.02669393473, "arifle_Katiba_F"}, // 0.01%
  4954. {9887.92889530607, "Exile_Item_InstaDoc"}, // 0.01%
  4955. {9888.82357833266, "acc_flashlight"}, // 0.01%
  4956. {9889.62879305659, "V_BandollierB_blk"}, // 0.01%
  4957. {9890.43400778051, "V_BandollierB_rgr"}, // 0.01%
  4958. {9891.23922250444, "V_BandollierB_khk"}, // 0.01%
  4959. {9892.04443722837, "V_HarnessOSpec_gry"}, // 0.01%
  4960. {9892.84965195229, "V_HarnessOSpec_brn"}, // 0.01%
  4961. {9893.65486667622, "V_HarnessOGL_gry"}, // 0.01%
  4962. {9894.46008140015, "V_HarnessO_gry"}, // 0.01%
  4963. {9895.26529612407, "V_BandollierB_cbr"}, // 0.01%
  4964. {9896.070510848, "V_BandollierB_oli"}, // 0.01%
  4965. {9896.87572557193, "V_HarnessO_brn"}, // 0.01%
  4966. {9897.68094029585, "V_HarnessOGL_brn"}, // 0.01%
  4967. {9898.4756254416, "Laserdesignator_02"}, // 0.01%
  4968. {9899.27031058734, "NVGoggles_INDEP"}, // 0.01%
  4969. {9900.06499573309, "NVGoggles_OPFOR"}, // 0.01%
  4970. {9900.85968087884, "Exile_Item_FireExtinguisher"}, // 0.01%
  4971. {9901.65436602458, "Exile_Item_MobilePhone"}, // 0.01%
  4972. {9902.44905117033, "Exile_Item_SleepingMat"}, // 0.01%
  4973. {9903.24373631607, "Exile_Item_Wrench"}, // 0.01%
  4974. {9904.03842146182, "Exile_Item_Shovel"}, // 0.01%
  4975. {9904.83310660756, "Laserdesignator_03"}, // 0.01%
  4976. {9905.62779175331, "Exile_Item_Screwdriver"}, // 0.01%
  4977. {9906.42247689905, "Exile_Item_Hammer"}, // 0.01%
  4978. {9907.2171620448, "Exile_Item_OilCanister"}, // 0.01%
  4979. {9908.01184719054, "Exile_Item_CordlessScrewdriver"}, // 0.01%
  4980. {9908.80653233629, "Exile_Item_Foolbox"}, // 0.01%
  4981. {9909.60121748204, "Binocular"}, // 0.01%
  4982. {9910.39590262778, "ItemGPS"}, // 0.01%
  4983. {9911.16277379343, "150Rnd_762x54_Box_Tracer"}, // 0.01%
  4984. {9911.92964495907, "SatchelCharge_Remote_Mag"}, // 0.01%
  4985. {9912.69651612471, "5Rnd_127x108_APDS_Mag"}, // 0.01%
  4986. {9913.46338729036, "100Rnd_65x39_caseless_mag_Tracer"}, // 0.01%
  4987. {9914.230258456, "U_IG_leader"}, // 0.01%
  4988. {9914.95715055614, "arifle_Katiba_GL_F"}, // 0.01%
  4989. {9915.68404265627, "arifle_MX_F"}, // 0.01%
  4990. {9916.41093475641, "arifle_TRG20_F"}, // 0.01%
  4991. {9917.13782685655, "arifle_TRG21_F"}, // 0.01%
  4992. {9917.86471895668, "arifle_MXC_F"}, // 0.01%
  4993. {9918.50377826139, "muzzle_snds_65_TI_hex_F"}, // 0.01%
  4994. {9919.14283756609, "muzzle_snds_H_MG_khk_F"}, // 0.01%
  4995. {9919.78189687079, "muzzle_snds_B_khk_F"}, // 0.01%
  4996. {9920.4209561755, "muzzle_snds_B_snd_F"}, // 0.01%
  4997. {9921.0600154802, "muzzle_snds_58_wdm_F"}, // 0.01%
  4998. {9921.6990747849, "muzzle_snds_65_TI_blk_F"}, // 0.01%
  4999. {9922.33813408961, "muzzle_snds_H_MG_blk_F"}, // 0.01%
  5000. {9922.97719339431, "optic_Holosight"}, // 0.01%
  5001. {9923.61625269901, "acc_pointer_IR"}, // 0.01%
  5002. {9924.25531200372, "optic_DMS"}, // 0.01%
  5003. {9924.89437130842, "optic_Hamr"}, // 0.01%
  5004. {9925.53343061312, "optic_Arco"}, // 0.01%
  5005. {9926.17248991783, "muzzle_snds_H"}, // 0.01%
  5006. {9926.81154922253, "muzzle_snds_M"}, // 0.01%
  5007. {9927.45060852724, "optic_MRCO"}, // 0.01%
  5008. {9928.08966783194, "muzzle_snds_65_TI_ghex_F"}, // 0.01%
  5009. {9928.72569841956, "arifle_Mk20C_F"}, // 0.01%
  5010. {9929.36172900718, "arifle_Mk20_F"}, // 0.01%
  5011. {9929.93688238141, "V_PlateCarrierL_CTRG"}, // 0.01%
  5012. {9930.51203575564, "V_PlateCarrierH_CTRG"}, // 0.01%
  5013. {9931.08718912988, "V_Chestrig_oli"}, // 0.01%
  5014. {9931.66234250411, "V_Chestrig_blk"}, // 0.01%
  5015. {9932.23749587834, "V_Chestrig_rgr"}, // 0.01%
  5016. {9932.81264925258, "V_Chestrig_khk"}, // 0.01%
  5017. {9933.35781832768, "arifle_MXM_F"}, // 0.01%
  5018. {9933.90298740278, "arifle_SDAR_F"}, // 0.01%
  5019. {9934.37250036134, "3Rnd_SmokeBlue_Grenade_shell"}, // 0.00%
  5020. {9934.8420133199, "3Rnd_Smoke_Grenade_shell"}, // 0.00%
  5021. {9935.31152627846, "3Rnd_SmokeRed_Grenade_shell"}, // 0.00%
  5022. {9935.78103923701, "3Rnd_SmokeOrange_Grenade_shell"}, // 0.00%
  5023. {9936.25055219557, "3Rnd_SmokeYellow_Grenade_shell"}, // 0.00%
  5024. {9936.72006515413, "3Rnd_SmokeGreen_Grenade_shell"}, // 0.00%
  5025. {9937.18957811269, "3Rnd_SmokePurple_Grenade_shell"}, // 0.00%
  5026. {9937.65591868639, "srifle_DMR_03_tan_F"}, // 0.00%
  5027. {9938.12225926009, "srifle_DMR_03_F"}, // 0.00%
  5028. {9938.5885998338, "srifle_DMR_03_khaki_F"}, // 0.00%
  5029. {9939.0549404075, "srifle_DMR_06_camo_F"}, // 0.00%
  5030. {9939.5212809812, "srifle_DMR_06_olive_F"}, // 0.00%
  5031. {9939.9876215549, "srifle_DMR_03_woodland_F"}, // 0.00%
  5032. {9940.44774425429, "H_Booniehat_khk"}, // 0.00%
  5033. {9940.90786695368, "H_Booniehat_indp"}, // 0.00%
  5034. {9941.36798965307, "H_Booniehat_mcamo"}, // 0.00%
  5035. {9941.82811235245, "H_Booniehat_grn"}, // 0.00%
  5036. {9942.28823505184, "H_Booniehat_tan"}, // 0.00%
  5037. {9942.74835775123, "H_Booniehat_dgtl"}, // 0.00%
  5038. {9943.20848045062, "H_Booniehat_khk_hs"}, // 0.00%
  5039. {9943.66860315, "H_MilCap_dgtl"}, // 0.00%
  5040. {9944.12872584939, "H_Booniehat_dirty"}, // 0.00%
  5041. {9944.58884854878, "U_I_FullGhillie_sard"}, // 0.00%
  5042. {9945.04897124816, "H_MilCap_oucamo"}, // 0.00%
  5043. {9945.50909394755, "H_MilCap_mcamo"}, // 0.00%
  5044. {9945.96921664694, "H_MilCap_rucamo"}, // 0.00%
  5045. {9946.42933934633, "H_MilCap_ocamo"}, // 0.00%
  5046. {9946.88946204571, "H_MilCap_blue"}, // 0.00%
  5047. {9947.31124118682, "U_O_FullGhillie_sard"}, // 0.00%
  5048. {9947.73302032792, "U_O_FullGhillie_ard"}, // 0.00%
  5049. {9948.15479946903, "U_B_FullGhillie_sard"}, // 0.00%
  5050. {9948.57657861013, "U_B_FullGhillie_lsh"}, // 0.00%
  5051. {9948.99835775124, "U_I_FullGhillie_ard"}, // 0.00%
  5052. {9949.42013689234, "U_I_FullGhillie_lsh"}, // 0.00%
  5053. {9949.84191603345, "U_O_FullGhillie_lsh"}, // 0.00%
  5054. {9950.26369517455, "U_B_FullGhillie_ard"}, // 0.00%
  5055. {9950.65840827452, "U_B_CombatUniform_mcam_worn"}, // 0.00%
  5056. {9951.05312137448, "U_B_CTRG_1"}, // 0.00%
  5057. {9951.44783447444, "U_B_CTRG_2"}, // 0.00%
  5058. {9951.84254757441, "U_B_CTRG_3"}, // 0.00%
  5059. {9952.23726067437, "U_B_CombatUniform_mcam_tshirt"}, // 0.00%
  5060. {9952.63197377434, "U_B_CombatUniform_mcam_vest"}, // 0.00%
  5061. {9953.01540935716, "130Rnd_338_Mag"}, // 0.00%
  5062. {9953.39884493998, "U_I_G_resistanceLeader_F"}, // 0.00%
  5063. {9953.76229099005, "arifle_Mk20_GL_F"}, // 0.00%
  5064. {9954.12573704012, "arifle_MX_GL_F"}, // 0.00%
  5065. {9954.48918309019, "arifle_TRG21_GL_F"}, // 0.00%
  5066. {9954.83427511473, "V_I_G_resistanceLeader_F"}, // 0.00%
  5067. {9955.17936713927, "H_HelmetIA"}, // 0.00%
  5068. {9955.52445916381, "H_HelmetSpecB_paint2"}, // 0.00%
  5069. {9955.86955118835, "H_Cap_brn_SPECOPS"}, // 0.00%
  5070. {9956.21464321288, "H_Cap_tan_specops_US"}, // 0.00%
  5071. {9956.55973523742, "H_HelmetB"}, // 0.00%
  5072. {9956.90482726196, "H_HelmetB_paint"}, // 0.00%
  5073. {9957.2499192865, "H_HelmetB_light"}, // 0.00%
  5074. {9957.59501131104, "H_HelmetB_plain_blk"}, // 0.00%
  5075. {9957.94010333558, "H_HelmetSpecB"}, // 0.00%
  5076. {9958.28519536012, "H_HelmetSpecB_paint1"}, // 0.00%
  5077. {9958.63028738466, "H_BandMask_blk"}, // 0.00%
  5078. {9958.9753794092, "H_Bandanna_mcamo"}, // 0.00%
  5079. {9959.32047143374, "H_HelmetSpecB_blk"}, // 0.00%
  5080. {9959.66556345828, "H_Bandanna_camo"}, // 0.00%
  5081. {9960.01065548282, "H_Bandanna_sgg"}, // 0.00%
  5082. {9960.35574750736, "H_Bandanna_cbr"}, // 0.00%
  5083. {9960.7008395319, "H_Bandanna_khk_hs"}, // 0.00%
  5084. {9961.04593155644, "H_Bandanna_khk"}, // 0.00%
  5085. {9961.39102358098, "H_Cap_khaki_specops_UK"}, // 0.00%
  5086. {9961.73611560552, "H_Watchcap_blk"}, // 0.00%
  5087. {9962.08120763006, "H_Watchcap_khk"}, // 0.00%
  5088. {9962.4262996546, "H_Bandanna_gry"}, // 0.00%
  5089. {9962.77139167914, "H_Hat_camo"}, // 0.00%
  5090. {9963.09092133149, "optic_NVS"}, // 0.00%
  5091. {9963.37285926003, "U_B_CombatUniform_mcam"}, // 0.00%
  5092. {9963.64544379759, "Exile_Weapon_M1014"}, // 0.00%
  5093. {9963.91802833514, "Exile_Weapon_AK107_GL"}, // 0.00%
  5094. {9964.19061287269, "arifle_SPAR_01_GL_khk_F"}, // 0.00%
  5095. {9964.46319741024, "arifle_SPAR_01_GL_blk_F"}, // 0.00%
  5096. {9964.73578194779, "arifle_SPAR_01_snd_F"}, // 0.00%
  5097. {9965.00836648534, "arifle_SPAR_01_khk_F"}, // 0.00%
  5098. {9965.2809510229, "arifle_SPAR_01_blk_F"}, // 0.00%
  5099. {9965.55353556045, "arifle_MXM_khk_F"}, // 0.00%
  5100. {9965.826120098, "arifle_MXC_khk_F"}, // 0.00%
  5101. {9966.09870463555, "arifle_MX_SW_khk_F"}, // 0.00%
  5102. {9966.3712891731, "arifle_MX_khk_F"}, // 0.00%
  5103. {9966.64387371065, "arifle_MX_GL_khk_F"}, // 0.00%
  5104. {9966.91645824821, "arifle_CTARS_blk_F"}, // 0.00%
  5105. {9967.18904278576, "arifle_SPAR_01_GL_snd_F"}, // 0.00%
  5106. {9967.46162732331, "arifle_CTAR_GL_blk_F"}, // 0.00%
  5107. {9967.73421186086, "arifle_ARX_ghex_F"}, // 0.00%
  5108. {9968.00679639841, "arifle_ARX_blk_F"}, // 0.00%
  5109. {9968.27938093596, "arifle_AKS_F"}, // 0.00%
  5110. {9968.55196547352, "arifle_AKM_FL_F"}, // 0.00%
  5111. {9968.82455001107, "arifle_AKM_F"}, // 0.00%
  5112. {9969.09713454862, "arifle_AK12_GL_F"}, // 0.00%
  5113. {9969.36971908617, "arifle_AK12_F"}, // 0.00%
  5114. {9969.64230362372, "arifle_MX_GL_Black_F"}, // 0.00%
  5115. {9969.91488816127, "arifle_MX_Black_F"}, // 0.00%
  5116. {9970.18747269883, "arifle_MXC_Black_F"}, // 0.00%
  5117. {9970.46005723638, "arifle_MXM_Black_F"}, // 0.00%
  5118. {9970.73264177393, "arifle_CTAR_blk_F"}, // 0.00%
  5119. {9971.00522631148, "arifle_SPAR_02_blk_F"}, // 0.00%
  5120. {9971.27781084903, "arifle_ARX_hex_F"}, // 0.00%
  5121. {9971.55039538658, "arifle_SPAR_02_snd_F"}, // 0.00%
  5122. {9971.82297992414, "Exile_Weapon_VSSVintorez"}, // 0.00%
  5123. {9972.09556446169, "Exile_Weapon_SVDCamo"}, // 0.00%
  5124. {9972.36814899924, "Exile_Weapon_SVD"}, // 0.00%
  5125. {9972.64073353679, "Exile_Weapon_CZ550"}, // 0.00%
  5126. {9972.91331807434, "arifle_SPAR_02_khk_F"}, // 0.00%
  5127. {9973.18590261189, "Exile_Weapon_Taurus"}, // 0.00%
  5128. {9973.45848714945, "Exile_Weapon_TaurusGold"}, // 0.00%
  5129. {9973.731071687, "Exile_Weapon_AK74"}, // 0.00%
  5130. {9974.00365622455, "arifle_SPAR_03_snd_F"}, // 0.00%
  5131. {9974.2762407621, "arifle_SPAR_03_khk_F"}, // 0.00%
  5132. {9974.54882529965, "arifle_SPAR_03_blk_F"}, // 0.00%
  5133. {9974.77888664935, "H_HelmetB_light_desert"}, // 0.00%
  5134. {9975.00894799904, "H_HelmetB_light_grass"}, // 0.00%
  5135. {9975.23900934873, "H_HelmetB_light_sand"}, // 0.00%
  5136. {9975.46907069843, "H_HelmetB_sand"}, // 0.00%
  5137. {9975.69913204812, "H_BandMask_reaper"}, // 0.00%
  5138. {9975.92919339781, "H_BandMask_demon"}, // 0.00%
  5139. {9976.15925474751, "H_HelmetB_light_snakeskin"}, // 0.00%
  5140. {9976.3893160972, "H_HelmetB_light_black"}, // 0.00%
  5141. {9976.6193774469, "H_BandMask_khk"}, // 0.00%
  5142. {9976.84943879659, "H_Watchcap_sgg"}, // 0.00%
  5143. {9977.07950014628, "H_HelmetB_black"}, // 0.00%
  5144. {9977.30956149598, "H_HelmetB_desert"}, // 0.00%
  5145. {9977.53962284567, "H_HelmetB_snakeskin"}, // 0.00%
  5146. {9977.76968419536, "H_HelmetB_grass"}, // 0.00%
  5147. {9977.99974554506, "H_HelmetIA_camo"}, // 0.00%
  5148. {9978.22980689475, "H_ShemagOpen_tan"}, // 0.00%
  5149. {9978.45986824444, "H_HelmetIA_net"}, // 0.00%
  5150. {9978.68992959414, "H_Shemag_olive_hs"}, // 0.00%
  5151. {9978.91999094383, "H_Shemag_olive"}, // 0.00%
  5152. {9979.15005229353, "H_Shemag_tan"}, // 0.00%
  5153. {9979.38011364322, "H_Shemag_khk"}, // 0.00%
  5154. {9979.61017499291, "H_TurbanO_blk"}, // 0.00%
  5155. {9979.84023634261, "H_ShemagOpen_khk"}, // 0.00%
  5156. {9980.0702976923, "H_Watchcap_camo"}, // 0.00%
  5157. {9980.29584803514, "U_O_PilotCoveralls"}, // 0.00%
  5158. {9980.52139837797, "U_I_HeliPilotCoveralls"}, // 0.00%
  5159. {9980.74694872081, "U_I_pilotCoveralls"}, // 0.00%
  5160. {9980.97249906365, "U_B_PilotCoveralls"}, // 0.00%
  5161. {9981.19804940648, "U_I_CombatUniform_shortsleeve"}, // 0.00%
  5162. {9981.42359974932, "U_I_CombatUniform_tshirt"}, // 0.00%
  5163. {9981.64915009216, "U_I_CombatUniform"}, // 0.00%
  5164. {9981.874700435, "U_B_HeliPilotCoveralls"}, // 0.00%
  5165. {9982.04386319212, "H_Beret_gen_F"}, // 0.00%
  5166. {9982.21302594925, "H_Booniehat_tna_F"}, // 0.00%
  5167. {9982.38218870638, "H_MilCap_ghex_F"}, // 0.00%
  5168. {9982.5513514635, "H_MilCap_tna_F"}, // 0.00%
  5169. {9982.72051422063, "H_HelmetCrew_O_ghex_F"}, // 0.00%
  5170. {9982.88967697776, "H_HelmetO_ghex_F"}, // 0.00%
  5171. {9983.05883973489, "H_HelmetB_Light_tna_F"}, // 0.00%
  5172. {9983.22800249201, "H_HelmetB_Enh_tna_F"}, // 0.00%
  5173. {9983.39716524914, "H_HelmetB_tna_F"}, // 0.00%
  5174. {9983.56632800627, "H_HelmetB_TI_tna_F"}, // 0.00%
  5175. {9983.73549076339, "H_Helmet_Skate"}, // 0.00%
  5176. {9983.90465352052, "H_MilCap_gen_F"}, // 0.00%
  5177. {9984.07381627765, "U_B_SpecopsUniform_sgg"}, // 0.00%
  5178. {9984.24297903478, "H_HelmetLeaderO_ghex_F"}, // 0.00%
  5179. {9984.4121417919, "U_B_T_Soldier_F"}, // 0.00%
  5180. {9984.58130454903, "H_HelmetSpecO_ghex_F"}, // 0.00%
  5181. {9984.75046730616, "U_B_T_Soldier_SL_F"}, // 0.00%
  5182. {9984.91963006328, "B_ViperHarness_ghex_F"}, // 0.00%
  5183. {9985.08879282041, "B_ViperHarness_khk_F"}, // 0.00%
  5184. {9985.25795557754, "B_ViperHarness_oli_F"}, // 0.00%
  5185. {9985.42711833467, "B_ViperLightHarness_ghex_F"}, // 0.00%
  5186. {9985.59628109179, "B_ViperLightHarness_oli_F"}, // 0.00%
  5187. {9985.76544384892, "B_ViperLightHarness_hex_F"}, // 0.00%
  5188. {9985.93460660605, "B_ViperLightHarness_blk_F"}, // 0.00%
  5189. {9986.10376936318, "B_ViperLightHarness_khk_F"}, // 0.00%
  5190. {9986.2729321203, "U_B_CTRG_Soldier_urb_3_F"}, // 0.00%
  5191. {9986.44209487743, "U_B_CTRG_Soldier_urb_2_F"}, // 0.00%
  5192. {9986.61125763456, "U_B_CTRG_Soldier_urb_1_F"}, // 0.00%
  5193. {9986.78042039168, "U_C_Man_casual_6_F"}, // 0.00%
  5194. {9986.94958314881, "U_C_Man_casual_5_F"}, // 0.00%
  5195. {9987.11874590594, "U_C_Man_casual_4_F"}, // 0.00%
  5196. {9987.28790866307, "U_C_Man_casual_3_F"}, // 0.00%
  5197. {9987.45707142019, "B_ViperHarness_blk_F"}, // 0.00%
  5198. {9987.62623417732, "U_B_T_Soldier_AR_F"}, // 0.00%
  5199. {9987.79539693445, "B_FieldPack_ghex_F"}, // 0.00%
  5200. {9987.96455969157, "B_Carryall_ghex_F"}, // 0.00%
  5201. {9988.1337224487, "V_PlateCarrier2_rgr_noflag_F"}, // 0.00%
  5202. {9988.30288520583, "V_PlateCarrier1_rgr_noflag_F"}, // 0.00%
  5203. {9988.47204796296, "V_TacVest_gen_F"}, // 0.00%
  5204. {9988.64121072008, "V_BandollierB_ghex_F"}, // 0.00%
  5205. {9988.81037347721, "V_HarnessOGL_ghex_F"}, // 0.00%
  5206. {9988.97953623434, "V_HarnessO_ghex_F"}, // 0.00%
  5207. {9989.14869899146, "V_PlateCarrierGL_tna_F"}, // 0.00%
  5208. {9989.31786174859, "V_PlateCarrierSpec_tna_F"}, // 0.00%
  5209. {9989.48702450572, "V_PlateCarrier2_tna_F"}, // 0.00%
  5210. {9989.65618726285, "V_PlateCarrier1_tna_F"}, // 0.00%
  5211. {9989.82535001997, "B_ViperHarness_hex_F"}, // 0.00%
  5212. {9989.9945127771, "B_Bergen_mcamo_F"}, // 0.00%
  5213. {9990.16367553423, "B_Bergen_dgtl_F"}, // 0.00%
  5214. {9990.33283829136, "B_Bergen_hex_F"}, // 0.00%
  5215. {9990.50200104848, "B_Bergen_tna_F"}, // 0.00%
  5216. {9990.67116380561, "B_AssaultPack_tna_F"}, // 0.00%
  5217. {9990.84032656274, "U_C_Man_casual_1_F"}, // 0.00%
  5218. {9991.00948931986, "U_C_Man_casual_2_F"}, // 0.00%
  5219. {9991.17865207699, "U_I_C_Soldier_Para_1_F"}, // 0.00%
  5220. {9991.34781483412, "U_I_C_Soldier_Para_3_F"}, // 0.00%
  5221. {9991.51697759125, "U_I_C_Soldier_Para_4_F"}, // 0.00%
  5222. {9991.68614034837, "U_I_C_Soldier_Para_5_F"}, // 0.00%
  5223. {9991.8553031055, "U_I_C_Soldier_Bandit_1_F"}, // 0.00%
  5224. {9992.02446586263, "U_I_C_Soldier_Bandit_2_F"}, // 0.00%
  5225. {9992.19362861975, "U_O_V_Soldier_Viper_hex_F"}, // 0.00%
  5226. {9992.36279137688, "U_O_V_Soldier_Viper_F"}, // 0.00%
  5227. {9992.53195413401, "U_I_C_Soldier_Bandit_3_F"}, // 0.00%
  5228. {9992.70111689114, "U_I_C_Soldier_Bandit_4_F"}, // 0.00%
  5229. {9992.87027964826, "U_I_C_Soldier_Bandit_5_F"}, // 0.00%
  5230. {9993.03944240539, "U_O_T_FullGhillie_tna_F"}, // 0.00%
  5231. {9993.20860516252, "U_O_T_Sniper_F"}, // 0.00%
  5232. {9993.37776791964, "U_O_T_Officer_F"}, // 0.00%
  5233. {9993.54693067677, "U_O_T_Soldier_F"}, // 0.00%
  5234. {9993.7160934339, "U_I_C_Soldier_Para_2_F"}, // 0.00%
  5235. {9993.88525619103, "U_B_GEN_Commander_F"}, // 0.00%
  5236. {9994.05441894815, "U_B_T_Sniper_F"}, // 0.00%
  5237. {9994.22358170528, "U_I_C_Soldier_Camo_F"}, // 0.00%
  5238. {9994.39274446241, "U_B_T_FullGhillie_tna_F"}, // 0.00%
  5239. {9994.56190721954, "U_B_CTRG_Soldier_F"}, // 0.00%
  5240. {9994.73106997666, "U_B_CTRG_Soldier_2_F"}, // 0.00%
  5241. {9994.90023273379, "U_C_man_sport_3_F"}, // 0.00%
  5242. {9995.06939549092, "U_B_GEN_Soldier_F"}, // 0.00%
  5243. {9995.23855824804, "U_C_man_sport_2_F"}, // 0.00%
  5244. {9995.40772100517, "U_C_man_sport_1_F"}, // 0.00%
  5245. {9995.5768837623, "U_B_CTRG_Soldier_3_F"}, // 0.00%
  5246. {9995.69191443714, "H_Beret_Colonel"}, // 0.00%
  5247. {9995.80694511199, "H_Beret_02"}, // 0.00%
  5248. {9995.92197578684, "H_Beret_ocamo"}, // 0.00%
  5249. {9996.03700646168, "H_Beret_brn_SF"}, // 0.00%
  5250. {9996.15203713653, "H_Beret_grn_SF"}, // 0.00%
  5251. {9996.26706781137, "H_Beret_grn"}, // 0.00%
  5252. {9996.38209848622, "H_Beret_blk"}, // 0.00%
  5253. {9996.49712916107, "H_HelmetCrew_B"}, // 0.00%
  5254. {9996.61215983591, "H_HelmetLeaderO_oucamo"}, // 0.00%
  5255. {9996.72719051076, "H_HelmetCrew_O"}, // 0.00%
  5256. {9996.8422211856, "H_HelmetCrew_I"}, // 0.00%
  5257. {9996.95725186045, "H_PilotHelmetFighter_B"}, // 0.00%
  5258. {9997.0722825353, "H_PilotHelmetFighter_O"}, // 0.00%
  5259. {9997.18731321014, "H_PilotHelmetFighter_I"}, // 0.00%
  5260. {9997.30234388499, "H_PilotHelmetHeli_B"}, // 0.00%
  5261. {9997.41737455983, "H_PilotHelmetHeli_O"}, // 0.00%
  5262. {9997.53240523468, "H_PilotHelmetHeli_I"}, // 0.00%
  5263. {9997.64743590952, "H_HelmetB_camo"}, // 0.00%
  5264. {9997.76246658437, "H_CrewHelmetHeli_B"}, // 0.00%
  5265. {9997.87749725922, "H_CrewHelmetHeli_O"}, // 0.00%
  5266. {9997.99252793406, "H_CrewHelmetHeli_I"}, // 0.00%
  5267. {9998.10755860891, "H_HelmetO_oucamo"}, // 0.00%
  5268. {9998.22258928375, "H_Beret_red"}, // 0.00%
  5269. {9998.3376199586, "H_HelmetSpecO_blk"}, // 0.00%
  5270. {9998.45265063345, "H_HelmetO_ocamo"}, // 0.00%
  5271. {9998.56768130829, "H_HelmetLeaderO_ocamo"}, // 0.00%
  5272. {9998.68271198314, "H_HelmetSpecO_ocamo"}, // 0.00%
  5273. {9998.79548715456, "U_I_OfficerUniform"}, // 0.00%
  5274. {9998.90826232597, "U_O_Wetsuit"}, // 0.00%
  5275. {9999.02103749739, "U_I_Wetsuit"}, // 0.00%
  5276. {9999.13381266881, "U_O_CombatUniform_ocamo"}, // 0.00%
  5277. {9999.24658784023, "U_O_CombatUniform_oucamo"}, // 0.00%
  5278. {9999.35936301164, "U_O_SpecopsUniform_ocamo"}, // 0.00%
  5279. {9999.47213818306, "U_B_Wetsuit"}, // 0.00%
  5280. {9999.58491335448, "U_O_OfficerUniform_ocamo"}, // 0.00%
  5281. {9999.6976885259, "U_O_SpecopsUniform_blk"}, // 0.00%
  5282. {9999.77715704047, "Exile_Headgear_GasMask"}, // 0.00%
  5283. {9999.85662555504, "Exile_Item_ThermalScannerPro"}, // 0.00%
  5284. {9999.93609406962, "Exile_Item_Knife"}, // 0.00%
  5285. {10000.0000000001, "optic_tws"} // 0.00%
  5286. };
  5287. };
  5288. /**
  5289. Result of 100 rounds:
  5290. Exile_Item_Bandage
  5291. Exile_Item_Vishpirin
  5292. Exile_Item_Bandage
  5293. Exile_Item_Vishpirin
  5294. Exile_Item_PlasticBottleEmpty
  5295. Exile_Item_Bandage
  5296. Exile_Item_Vishpirin
  5297. Exile_Item_InstaDoc
  5298. Exile_Item_Vishpirin
  5299. Exile_Item_Can_Empty
  5300. Exile_Item_PlasticBottleEmpty
  5301. Exile_Item_PlasticBottleEmpty
  5302. Exile_Item_PlasticBottleEmpty
  5303. Exile_Item_Vishpirin
  5304. Exile_Item_Bandage
  5305. Exile_Item_Vishpirin
  5306. Exile_Item_PlasticBottleEmpty
  5307. Exile_Item_Can_Empty
  5308. Exile_Item_Vishpirin
  5309. Exile_Item_ToiletPaper
  5310. Exile_Item_Vishpirin
  5311. Exile_Item_Bandage
  5312. Exile_Item_Bandage
  5313. Exile_Item_InstaDoc
  5314. Exile_Item_Vishpirin
  5315. Exile_Item_Bandage
  5316. Exile_Item_Vishpirin
  5317. Exile_Item_InstaDoc
  5318. Exile_Item_Bandage
  5319. Exile_Item_InstaDoc
  5320. Exile_Item_Bandage
  5321. Exile_Item_Vishpirin
  5322. Exile_Item_Vishpirin
  5323. Exile_Item_InstaDoc
  5324. Exile_Item_InstaDoc
  5325. Exile_Item_Vishpirin
  5326. Exile_Item_PlasticBottleEmpty
  5327. Exile_Item_Can_Empty
  5328. Exile_Item_PlasticBottleEmpty
  5329. Exile_Item_Bandage
  5330. Exile_Item_Vishpirin
  5331. Exile_Item_Vishpirin
  5332. Exile_Item_InstaDoc
  5333. Exile_Item_Vishpirin
  5334. Exile_Item_Vishpirin
  5335. Exile_Item_Bandage
  5336. Exile_Item_Vishpirin
  5337. Exile_Item_Bandage
  5338. Exile_Item_Bandage
  5339. Exile_Item_InstaDoc
  5340. Exile_Item_Bandage
  5341. Exile_Item_Bandage
  5342. Exile_Item_ToiletPaper
  5343. Exile_Item_PlasticBottleEmpty
  5344. Exile_Item_Can_Empty
  5345. Exile_Item_InstaDoc
  5346. Exile_Item_ToiletPaper
  5347. Exile_Item_Bandage
  5348. Exile_Item_PlasticBottleEmpty
  5349. Exile_Item_Vishpirin
  5350. Exile_Item_Vishpirin
  5351. Exile_Item_Vishpirin
  5352. Exile_Item_Bandage
  5353. Exile_Item_Vishpirin
  5354. Exile_Item_Vishpirin
  5355. Exile_Item_ToiletPaper
  5356. Exile_Item_Bandage
  5357. Exile_Item_PlasticBottleEmpty
  5358. Exile_Item_Vishpirin
  5359. Exile_Item_Vishpirin
  5360. Exile_Item_Vishpirin
  5361. Exile_Item_Vishpirin
  5362. Exile_Item_PlasticBottleEmpty
  5363. Exile_Item_ToiletPaper
  5364. Exile_Item_Bandage
  5365. Exile_Item_Vishpirin
  5366. Exile_Item_Can_Empty
  5367. Exile_Item_Vishpirin
  5368. Exile_Item_InstaDoc
  5369. Exile_Item_Can_Empty
  5370. Exile_Item_Vishpirin
  5371. Exile_Item_InstaDoc
  5372. Exile_Item_Bandage
  5373. Exile_Item_Bandage
  5374. Exile_Item_Bandage
  5375. Exile_Item_Vishpirin
  5376. Exile_Item_Vishpirin
  5377. Exile_Item_Bandage
  5378. Exile_Item_Vishpirin
  5379. Exile_Item_Vishpirin
  5380. Exile_Item_Vishpirin
  5381. Exile_Item_Bandage
  5382. Exile_Item_PlasticBottleEmpty
  5383. Exile_Item_Bandage
  5384. Exile_Item_Bandage
  5385. Exile_Item_Vishpirin
  5386. Exile_Item_PlasticBottleEmpty
  5387. Exile_Item_Can_Empty
  5388. Exile_Item_Vishpirin
  5389. Exile_Item_Vishpirin
  5390. */
  5391. class Medical
  5392. {
  5393. count
  5394. half
  5395. halfIndex
  5396. sum
  5397. items[]
  5398. {
  5399. {4117.64705882353, "Exile_Item_Vishpirin"}, // 41.18%
  5400. {6176.47058823529, "Exile_Item_Bandage"}, // 20.59%
  5401. {7176.47058823529, "Exile_Item_Can_Empty"}, // 10.00%
  5402. {8176.47058823529, "Exile_Item_ToiletPaper"}, // 10.00%
  5403. {9176.47058823529, "Exile_Item_PlasticBottleEmpty"}, // 10.00%
  5404. {10000, "Exile_Item_InstaDoc"} // 8.24%
  5405. };
  5406. };
  5407. /**
  5408. Result of 100 rounds:
  5409. srifle_DMR_02_sniper_F
  5410. srifle_DMR_07_ghex_F
  5411. srifle_DMR_04_Tan_F
  5412. Exile_Item_ZipTie
  5413. muzzle_snds_B
  5414. srifle_DMR_02_F
  5415. srifle_DMR_01_F
  5416. H_BandMask_khk
  5417. srifle_GM6_F
  5418. srifle_DMR_03_woodland_F
  5419. H_HelmetB_paint
  5420. H_HelmetSpecB_blk
  5421. muzzle_snds_338_sand
  5422. MiniGrenade
  5423. srifle_DMR_04_Tan_F
  5424. srifle_LRR_tna_F
  5425. 5Rnd_127x108_Mag
  5426. srifle_DMR_03_tan_F
  5427. HandGrenade
  5428. H_MilCap_blue
  5429. HandGrenade
  5430. B_Carryall_oucamo
  5431. B_Carryall_khk
  5432. H_HelmetCrew_I
  5433. srifle_DMR_07_ghex_F
  5434. srifle_DMR_02_F
  5435. B_Carryall_cbr
  5436. 5Rnd_127x108_APDS_Mag
  5437. srifle_DMR_02_sniper_F
  5438. H_PilotHelmetHeli_O
  5439. Exile_Item_Bandage
  5440. srifle_DMR_01_F
  5441. B_Carryall_cbr
  5442. H_HelmetB_sand
  5443. H_HelmetB_snakeskin
  5444. srifle_DMR_05_blk_F
  5445. optic_KHS_hex
  5446. srifle_DMR_06_camo_F
  5447. H_MilCap_ocamo
  5448. B_Carryall_ocamo
  5449. srifle_GM6_ghex_F
  5450. srifle_LRR_tna_F
  5451. H_HelmetB_light_desert
  5452. srifle_DMR_05_hex_F
  5453. Exile_Item_ZipTie
  5454. U_O_GhillieSuit
  5455. srifle_DMR_05_blk_F
  5456. srifle_DMR_04_Tan_F
  5457. B_Carryall_oli
  5458. H_HelmetIA_camo
  5459. B_Carryall_oli
  5460. U_I_GhillieSuit
  5461. U_I_FullGhillie_lsh
  5462. H_MilCap_ocamo
  5463. srifle_DMR_03_F
  5464. Exile_Item_MobilePhone
  5465. DemoCharge_Remote_Mag
  5466. B_Carryall_khk
  5467. H_MilCap_ocamo
  5468. srifle_GM6_F
  5469. srifle_DMR_05_blk_F
  5470. srifle_DMR_05_blk_F
  5471. srifle_DMR_04_Tan_F
  5472. srifle_GM6_F
  5473. srifle_EBR_F
  5474. IEDLandSmall_Remote_Mag
  5475. srifle_DMR_02_F
  5476. H_HelmetB_paint
  5477. srifle_DMR_04_F
  5478. srifle_LRR_F
  5479. MiniGrenade
  5480. srifle_DMR_07_blk_F
  5481. H_MilCap_ocamo
  5482. optic_SOS
  5483. srifle_DMR_02_F
  5484. srifle_DMR_01_F
  5485. srifle_DMR_03_tan_F
  5486. srifle_LRR_tna_F
  5487. 5Rnd_127x108_APDS_Mag
  5488. 20Rnd_762x51_Mag
  5489. srifle_DMR_04_F
  5490. H_HelmetB_light_black
  5491. U_B_GhillieSuit
  5492. B_Carryall_oucamo
  5493. srifle_DMR_02_camo_F
  5494. srifle_DMR_05_tan_F
  5495. srifle_GM6_F
  5496. srifle_DMR_02_sniper_F
  5497. MiniGrenade
  5498. Exile_Item_ZipTie
  5499. srifle_GM6_F
  5500. U_I_GhillieSuit
  5501. H_MilCap_dgtl
  5502. U_O_GhillieSuit
  5503. B_Carryall_khk
  5504. srifle_DMR_05_tan_F
  5505. 7Rnd_408_Mag
  5506. srifle_DMR_06_camo_F
  5507. srifle_DMR_05_blk_F
  5508. srifle_LRR_tna_F
  5509. */
  5510. class Tourist
  5511. {
  5512. count
  5513. half
  5514. halfIndex
  5515. sum
  5516. items[]
  5517. {
  5518. {400, "Exile_Item_ZipTie"}, // 4.00%
  5519. {666.666666666667, "srifle_EBR_F"}, // 2.67%
  5520. {933.333333333333, "srifle_DMR_01_F"}, // 2.67%
  5521. {1168.62745098039, "Exile_Item_Vishpirin"}, // 2.35%
  5522. {1384.84366719661, "srifle_DMR_05_blk_F"}, // 2.16%
  5523. {1601.05988341282, "srifle_DMR_05_tan_F"}, // 2.16%
  5524. {1817.27609962904, "srifle_DMR_05_hex_F"}, // 2.16%
  5525. {2026.79990915285, "srifle_DMR_07_blk_F"}, // 2.10%
  5526. {2236.32371867666, "srifle_DMR_07_ghex_F"}, // 2.10%
  5527. {2445.84752820047, "srifle_DMR_07_hex_F"}, // 2.10%
  5528. {2655.37133772428, "srifle_LRR_tna_F"}, // 2.10%
  5529. {2864.89514724809, "srifle_GM6_ghex_F"}, // 2.10%
  5530. {3074.4189567719, "srifle_LRR_F"}, // 2.10%
  5531. {3283.94276629571, "srifle_GM6_F"}, // 2.10%
  5532. {3483.94276629571, "HandGrenade"}, // 2.00%
  5533. {3683.94276629571, "MiniGrenade"}, // 2.00%
  5534. {3873.94276629571, "B_Carryall_cbr"}, // 1.90%
  5535. {4063.1319554849, "srifle_DMR_04_F"}, // 1.89%
  5536. {4252.32114467409, "srifle_DMR_04_Tan_F"}, // 1.89%
  5537. {4432.32114467409, "B_Carryall_khk"}, // 1.80%
  5538. {4612.32114467409, "B_Carryall_oli"}, // 1.80%
  5539. {4782.32114467409, "U_I_GhillieSuit"}, // 1.70%
  5540. {4947.32114467409, "U_B_GhillieSuit"}, // 1.65%
  5541. {5112.32114467409, "U_O_GhillieSuit"}, // 1.65%
  5542. {5274.48330683625, "srifle_DMR_02_F"}, // 1.62%
  5543. {5436.64546899841, "srifle_DMR_02_camo_F"}, // 1.62%
  5544. {5598.80763116057, "srifle_DMR_02_sniper_F"}, // 1.62%
  5545. {5748.80763116057, "B_Carryall_ocamo"}, // 1.50%
  5546. {5898.80763116057, "B_Carryall_mcamo"}, // 1.50%
  5547. {6048.80763116057, "B_Carryall_oucamo"}, // 1.50%
  5548. {6166.4546899841, "Exile_Item_Bandage"}, // 1.18%
  5549. {6247.53577106519, "srifle_DMR_03_F"}, // 0.81%
  5550. {6328.61685214627, "srifle_DMR_03_khaki_F"}, // 0.81%
  5551. {6409.69793322735, "srifle_DMR_03_tan_F"}, // 0.81%
  5552. {6490.77901430843, "srifle_DMR_06_camo_F"}, // 0.81%
  5553. {6571.86009538951, "srifle_DMR_06_olive_F"}, // 0.81%
  5554. {6652.94117647059, "srifle_DMR_03_woodland_F"}, // 0.81%
  5555. {6732.94117647059, "APERSTripMine_Wire_Mag"}, // 0.80%
  5556. {6812.94117647059, "APERSBoundingMine_Range_Mag"}, // 0.80%
  5557. {6892.94117647059, "APERSMine_Range_Mag"}, // 0.80%
  5558. {6952.94117647059, "U_I_FullGhillie_sard"}, // 0.60%
  5559. {7009.08152734778, "10Rnd_93x64_DMR_05_Mag"}, // 0.56%
  5560. {7065.22187822497, "10Rnd_338_Mag"}, // 0.56%
  5561. {7121.22187822497, "10Rnd_762x51_Mag"}, // 0.56%
  5562. {7177.22187822497, "20Rnd_762x51_Mag"}, // 0.56%
  5563. {7232.3239190413, "optic_DMS"}, // 0.55%
  5564. {7287.3239190413, "U_B_FullGhillie_ard"}, // 0.55%
  5565. {7342.3239190413, "U_B_FullGhillie_lsh"}, // 0.55%
  5566. {7397.3239190413, "U_O_FullGhillie_sard"}, // 0.55%
  5567. {7452.3239190413, "U_O_FullGhillie_ard"}, // 0.55%
  5568. {7507.3239190413, "U_O_FullGhillie_lsh"}, // 0.55%
  5569. {7562.3239190413, "U_I_FullGhillie_ard"}, // 0.55%
  5570. {7617.3239190413, "U_I_FullGhillie_lsh"}, // 0.55%
  5571. {7672.3239190413, "U_B_FullGhillie_sard"}, // 0.55%
  5572. {7725.3851435311, "optic_SOS"}, // 0.53%
  5573. {7778.44636802089, "optic_LRPS"}, // 0.53%
  5574. {7827.56917503844, "10Rnd_127x54_Mag"}, // 0.49%
  5575. {7875.56917503844, "IEDUrbanSmall_Remote_Mag"}, // 0.48%
  5576. {7923.56917503844, "IEDLandSmall_Remote_Mag"}, // 0.48%
  5577. {7971.56917503844, "DemoCharge_Remote_Mag"}, // 0.48%
  5578. {8018.62799856785, "Exile_Item_InstaDoc"}, // 0.47%
  5579. {8058.62799856785, "H_MilCap_rucamo"}, // 0.40%
  5580. {8098.62799856785, "H_MilCap_blue"}, // 0.40%
  5581. {8138.62799856785, "H_MilCap_oucamo"}, // 0.40%
  5582. {8178.62799856785, "H_MilCap_mcamo"}, // 0.40%
  5583. {8218.62799856785, "H_MilCap_ocamo"}, // 0.40%
  5584. {8258.62799856785, "H_MilCap_dgtl"}, // 0.40%
  5585. {8297.40350877193, "muzzle_snds_B"}, // 0.39%
  5586. {8336, "20Rnd_762x51_Mag"}, // 0.39%
  5587. {8370, "5Rnd_127x108_Mag"}, // 0.34%
  5588. {8404, "7Rnd_408_Mag"}, // 0.34%
  5589. {8437.33333333333, "muzzle_snds_338_sand"}, // 0.33%
  5590. {8470.66666666667, "muzzle_snds_338_green"}, // 0.33%
  5591. {8504, "muzzle_snds_93mmg"}, // 0.33%
  5592. {8537.33333333334, "muzzle_snds_338_black"}, // 0.33%
  5593. {8570.66666666667, "muzzle_snds_93mmg_tan"}, // 0.33%
  5594. {8604, "muzzle_snds_B"}, // 0.33%
  5595. {8635.08808290156, "ItemWatch"}, // 0.31%
  5596. {8666.17616580311, "ItemRadio"}, // 0.31%
  5597. {8696.17616580311, "H_HelmetSpecB_paint1"}, // 0.30%
  5598. {8726.17616580311, "H_HelmetB_paint"}, // 0.30%
  5599. {8756.17616580311, "H_HelmetB_light"}, // 0.30%
  5600. {8786.17616580311, "H_HelmetB_plain_blk"}, // 0.30%
  5601. {8816.17616580311, "H_HelmetB"}, // 0.30%
  5602. {8846.17616580311, "H_HelmetSpecB_paint2"}, // 0.30%
  5603. {8876.17616580311, "H_HelmetIA"}, // 0.30%
  5604. {8906.17616580311, "H_HelmetSpecB_blk"}, // 0.30%
  5605. {8936.17616580311, "H_HelmetSpecB"}, // 0.30%
  5606. {8964.74759437454, "optic_KHS_tan"}, // 0.29%
  5607. {8993.31902294597, "optic_KHS_old"}, // 0.29%
  5608. {9021.8904515174, "optic_KHS_hex"}, // 0.29%
  5609. {9050.46188008883, "optic_KHS_blk"}, // 0.29%
  5610. {9079.03330866026, "optic_AMS_snd"}, // 0.29%
  5611. {9107.60473723169, "optic_AMS_khk"}, // 0.29%
  5612. {9136.17616580312, "optic_AMS"}, // 0.29%
  5613. {9156.90155440416, "Laserdesignator_03"}, // 0.21%
  5614. {9177.62694300519, "Laserdesignator_02"}, // 0.21%
  5615. {9198.35233160623, "NVGoggles_INDEP"}, // 0.21%
  5616. {9219.07772020727, "NVGoggles_OPFOR"}, // 0.21%
  5617. {9239.8031088083, "Exile_Item_SleepingMat"}, // 0.21%
  5618. {9260.52849740934, "ItemGPS"}, // 0.21%
  5619. {9281.25388601038, "Exile_Item_Wrench"}, // 0.21%
  5620. {9301.97927461141, "Exile_Item_Shovel"}, // 0.21%
  5621. {9322.70466321245, "Exile_Item_Screwdriver"}, // 0.21%
  5622. {9343.43005181349, "Exile_Item_OilCanister"}, // 0.21%
  5623. {9364.15544041452, "Exile_Item_Hammer"}, // 0.21%
  5624. {9384.88082901556, "Exile_Item_FireExtinguisher"}, // 0.21%
  5625. {9405.6062176166, "Exile_Item_CordlessScrewdriver"}, // 0.21%
  5626. {9426.33160621763, "Exile_Item_Foolbox"}, // 0.21%
  5627. {9447.05699481867, "Exile_Item_MobilePhone"}, // 0.21%
  5628. {9467.78238341971, "Binocular"}, // 0.21%
  5629. {9487.78238341971, "H_HelmetB_light_grass"}, // 0.20%
  5630. {9507.78238341971, "5Rnd_127x108_APDS_Mag"}, // 0.20%
  5631. {9527.78238341971, "H_HelmetIA_net"}, // 0.20%
  5632. {9547.78238341971, "H_HelmetIA_camo"}, // 0.20%
  5633. {9567.78238341971, "H_HelmetB_grass"}, // 0.20%
  5634. {9587.78238341971, "H_HelmetB_snakeskin"}, // 0.20%
  5635. {9607.78238341971, "H_HelmetB_desert"}, // 0.20%
  5636. {9627.78238341971, "H_HelmetB_black"}, // 0.20%
  5637. {9647.78238341971, "H_HelmetB_light_snakeskin"}, // 0.20%
  5638. {9667.78238341971, "H_HelmetB_light_desert"}, // 0.20%
  5639. {9687.78238341971, "H_HelmetB_light_black"}, // 0.20%
  5640. {9707.78238341971, "H_HelmetB_light_sand"}, // 0.20%
  5641. {9727.78238341971, "H_HelmetB_sand"}, // 0.20%
  5642. {9747.78238341971, "H_BandMask_khk"}, // 0.20%
  5643. {9767.78238341971, "H_BandMask_demon"}, // 0.20%
  5644. {9787.78238341971, "H_BandMask_reaper"}, // 0.20%
  5645. {9803.78238341971, "SatchelCharge_Remote_Mag"}, // 0.16%
  5646. {9813.78238341971, "H_CrewHelmetHeli_I"}, // 0.10%
  5647. {9823.78238341971, "H_HelmetLeaderO_ocamo"}, // 0.10%
  5648. {9833.78238341971, "H_HelmetO_ocamo"}, // 0.10%
  5649. {9843.78238341971, "H_HelmetSpecO_blk"}, // 0.10%
  5650. {9853.78238341971, "H_HelmetSpecO_ocamo"}, // 0.10%
  5651. {9863.78238341971, "H_HelmetCrew_B"}, // 0.10%
  5652. {9873.78238341971, "H_HelmetCrew_O"}, // 0.10%
  5653. {9883.78238341971, "H_HelmetCrew_I"}, // 0.10%
  5654. {9893.78238341971, "H_PilotHelmetFighter_B"}, // 0.10%
  5655. {9903.78238341971, "H_PilotHelmetFighter_O"}, // 0.10%
  5656. {9913.78238341971, "H_PilotHelmetFighter_I"}, // 0.10%
  5657. {9923.78238341971, "H_PilotHelmetHeli_B"}, // 0.10%
  5658. {9933.78238341971, "H_PilotHelmetHeli_O"}, // 0.10%
  5659. {9943.78238341971, "H_PilotHelmetHeli_I"}, // 0.10%
  5660. {9953.78238341971, "H_HelmetB_camo"}, // 0.10%
  5661. {9963.78238341971, "H_HelmetLeaderO_oucamo"}, // 0.10%
  5662. {9973.78238341971, "H_CrewHelmetHeli_O"}, // 0.10%
  5663. {9983.78238341971, "H_HelmetO_oucamo"}, // 0.10%
  5664. {9993.78238341971, "H_CrewHelmetHeli_B"}, // 0.10%
  5665. {9995.85492227981, "Exile_Headgear_GasMask"}, // 0.02%
  5666. {9997.92746113991, "Exile_Item_ThermalScannerPro"}, // 0.02%
  5667. {10000, "Exile_Item_Knife"} // 0.02%
  5668. };
  5669. };
  5670.  
  5671. };
  5672.  
  5673. class CfgSettings
  5674. {
  5675. ///////////////////////////////////////////////////////////////////////
  5676. // Community Base Addons
  5677. ///////////////////////////////////////////////////////////////////////
  5678. class CBA
  5679. {
  5680. // Set this to 1 if you want to have CBA support
  5681. useStackedEH = 0;
  5682.  
  5683. // If you set this to 1 ...........................................
  5684. iReallyWantToGetHackedAndImRetarded = 0;
  5685. };
  5686.  
  5687. ///////////////////////////////////////////////////////////////////////
  5688. // GARBAGE COLLECTOR
  5689. ///////////////////////////////////////////////////////////////////////
  5690. class GarbageCollector
  5691. {
  5692. /*
  5693. Remark:
  5694. In 0.9.35 and below, Exile has checked if a player was nearby and then delayed
  5695. the deletion. This check has been removed to save server performance.
  5696.  
  5697. Do NOT touch these if you are not 10000% sure what you do!
  5698. */
  5699. class Ingame
  5700. {
  5701. // Dropped items without fissix
  5702. class GroundWeaponHolder
  5703. {
  5704. lifeTime = 10;
  5705. interval = 5;
  5706. };
  5707.  
  5708. // Dropped items with fissix
  5709. class WeaponHolderSimulated
  5710. {
  5711. lifeTime = 10;
  5712. interval = 5;
  5713. };
  5714.  
  5715. // Corpses and wrecks
  5716. class AllDead
  5717. {
  5718. lifeTime = 15;
  5719. interval = 5;
  5720. };
  5721.  
  5722. // Loot spawned inside a building
  5723. class Loot
  5724. {
  5725. lifeTime = 8;
  5726. interval = 1;
  5727. };
  5728.  
  5729. // Never touch this or you will break your sever!
  5730. class Groups
  5731. {
  5732. interval = 0.5;
  5733. };
  5734. };
  5735.  
  5736. class Database
  5737. {
  5738. // Remove all deleted items from the database after X days
  5739. permanentlyDeleteTime = 3;
  5740.  
  5741. // Remove all territories (and contructions + containers in it) that were not paid after X days
  5742. territoryLifeTime = 7;
  5743.  
  5744. // Remove all containers outside of territories that have not been used for X days
  5745. // Example: Tents
  5746. containerLifeTime = 10;
  5747.  
  5748. // Remove all constructions outside of territories that are older than X days or not moved for X days
  5749. // Example: Work Benches
  5750. constructionLifeTime = 2;
  5751.  
  5752. // Remove all vehicles that were not moved/used for X days
  5753. vehicleLifeTime = 3;
  5754.  
  5755. // Set safe as abandoned
  5756. abandonedTime = 7;
  5757.  
  5758. // Deletes a base X days after the flag is stolen if the ransom money isn't paid
  5759. stolenFlagLifeTime = 3;
  5760.  
  5761. // Sets door & safe pins to 0000 and marks safes to abandoned X days after the flag is stolen if the ransom money isn't paid
  5762. unlockLifeTime = 2;
  5763. };
  5764. };
  5765.  
  5766. ///////////////////////////////////////////////////////////////////////
  5767. // RESPECT, YO
  5768. ///////////////////////////////////////////////////////////////////////
  5769. class Respect
  5770. {
  5771. /**
  5772. * Defines the factor of respect you gain for every pop tab in revenue
  5773. *
  5774. * Default: Get 1 respect for every 10 pop tabs
  5775. */
  5776. tradingRespectFactor = 0.1;
  5777.  
  5778. /**
  5779. * Defines the the minimum amount of Respect earned/lost for a kill
  5780. */
  5781. minRespectTransfer = 50;
  5782.  
  5783. /**
  5784. * Defines the amount of respect earned/lost for certain types of frags
  5785. */
  5786. class Frags
  5787. {
  5788. domination = 80; // Keeps killing the same guy
  5789. letItRain = 150; // MG, also vehicle MGs
  5790. humiliation = 300; // Axe
  5791. passenger = 400; // Out of car/chopper/boat
  5792. roadKill = 200; // :)
  5793. bigBird = 600; // Roadkill, but with chopper/plane
  5794. chuteGreaterChopper = 1000; // Someone flies into chute and chopper/plane explodes
  5795. };
  5796.  
  5797. class Percentages
  5798. {
  5799. unlucky = 1; // Dying for an unknown reason costs you 1% respect
  5800. crash = 1; // Crashing your car costs you 1% respect
  5801. suicide = 2; // Comitting suicide costs you 2% of your respect
  5802. friendyFire = 3; // Friendly fire costs you 3%
  5803. npc = 4; // Being killed by an NPC costs you 4%
  5804. bambiKill = 5; // Killing a bambi costs you 5%
  5805. frag = 5; // Killing someone will get you 5% and remove 5% from the victim
  5806. };
  5807.  
  5808. class Handcuffs
  5809. {
  5810. trapping = -50; // A handcuffs B
  5811. breakingFree = 100; // B broke free
  5812. releasedByHero = 100; // C releases B
  5813. releasedByHostageTaker = 50; // A releases B
  5814. };
  5815.  
  5816. class Bonus
  5817. {
  5818. // Bonus per full 100m
  5819. per100mDistance = 10;
  5820.  
  5821. // First blood after server restart
  5822. firstBlood = 100;
  5823.  
  5824. // If you kill someone while you are in your own territory
  5825. homie = 20;
  5826.  
  5827. // If you kill someone who is in his own territory
  5828. raid = 20;
  5829.  
  5830. /*
  5831. Example with killstreak = 50
  5832.  
  5833. Frag Factor Bonus
  5834. 2 * 50 +100
  5835. 3 * 50 +150
  5836. 4 * 50 +200
  5837. 5 * 50 +250
  5838. */
  5839. killStreak = 50;
  5840.  
  5841. // Kills within this amount of seconds stack (default: 2 minutes)
  5842. killStreakTimeout = 120;
  5843. };
  5844. };
  5845.  
  5846. ///////////////////////////////////////////////////////////////////////
  5847. // KILLFEED MAN!
  5848. ///////////////////////////////////////////////////////////////////////
  5849.  
  5850. class KillFeed
  5851. {
  5852. // Shows a kill feed for well kills
  5853. showKillFeed = 1;
  5854. };
  5855.  
  5856. ///////////////////////////////////////////////////////////////////////
  5857. // PLAYER SPAWN CONFIGURATION
  5858. ///////////////////////////////////////////////////////////////////////
  5859. class BambiSettings
  5860. {
  5861. /**
  5862. * Loadout of new bambi players
  5863. *
  5864. * (They will always spawn with a bambi overall - you cannot
  5865. * change the loadout uniform)
  5866. */
  5867. loadOut[] =
  5868. {
  5869. "ItemCompass",
  5870. "ItemMap", // Because why not
  5871. "Exile_Item_XM8",
  5872. "ItemRadio",
  5873. "Exile_Item_PlasticBottleFreshWater"
  5874. };
  5875.  
  5876. /**
  5877. * Enables or disables parachute spawning.
  5878. *
  5879. * 1 = On
  5880. * 0 = Off
  5881. */
  5882. parachuteSpawning = 1;
  5883.  
  5884. /**
  5885. * Enables or disables halo jumping. Only applies
  5886. * if parachute spawning is enabled.
  5887. *
  5888. * Remember that if you enable halo jump, it is adviced
  5889. * to adjust the parachuteDropHeight to something around
  5890. * 1km or so.
  5891. *
  5892. * 1 = On
  5893. * 0 = Off
  5894. */
  5895. haloJump = 1;
  5896.  
  5897. /**
  5898. * Parachute drop height in meters.
  5899. */
  5900. parachuteDropHeight = 1000;
  5901.  
  5902. /**
  5903. * Number of minutes where a fresh spawned player remains in the
  5904. * bambi state. It will end the bambi state after this timeout
  5905. * expired or when they pick up their first weapon. Whatever
  5906. * happens first.
  5907. */
  5908. protectionDuration = 5;
  5909.  
  5910. /**
  5911. * Radius of spawn zones around the center of spawn zone markers.
  5912. */
  5913. spawnZoneRadius = 500;
  5914.  
  5915. /**
  5916. * These vehicles spawn on server restart close to spawn zones.
  5917. * They are non-persistent and will despawn on server restart.
  5918. * Basically they are just used to get away from the spawn zone
  5919. * faster.
  5920. *
  5921. * {Number of vehicles *per* spawn zone, vehicle class name}
  5922. */
  5923. spawnZoneVehicles[] =
  5924. {
  5925. {5, "Exile_Bike_OldBike"},
  5926. {5, "Exile_Bike_MountainBike"}
  5927. };
  5928. };
  5929.  
  5930. ///////////////////////////////////////////////////////////////////////
  5931. // VEHICLE SPAWN CONFIGURATION
  5932. ///////////////////////////////////////////////////////////////////////
  5933.  
  5934. class VehicleSpawn
  5935. {
  5936. /**
  5937. * Grid Size for vehicle spawning,
  5938. * smaller the number more vehicles,
  5939. * you get the point
  5940. */
  5941. vehiclesGridSize = 2200;
  5942.  
  5943. /**
  5944. * Vehicle ammount per grid
  5945. * kinda self explanitory
  5946. */
  5947. vehiclesGridAmount = 2;
  5948.  
  5949. /**
  5950. * Creates global markers for vehicle spawn tweeking,
  5951. * after you are satisfied with vehicle ammount and spread set this to 0.
  5952. */
  5953. vehiclesDebugMarkers = 0;
  5954.  
  5955. /**
  5956. * The server will apply random damage up to this value when spawning a vehicle.
  5957. */
  5958. damageChance = 20; // 20% chance for a vehicle HITPOINT to be damaged
  5959. maximumDamage = 0.9;
  5960.  
  5961. /**
  5962. * If "randmizeFuel" is set to 1, vehicles will spawn with randomized
  5963. * fuel. In this case, "fuel" controls the percentage of fuel that
  5964. * can be in the vehicle at a maximum. For example, if you set this to
  5965. * 0.5, then vehicles will spawn with something random between 0% and 50%.
  5966. *
  5967. * If "randomizeFuel" is set to 0, all vehicles will spawn exactly the
  5968. * fuel percentage defined in "fuel". For example, setting this to 0.5
  5969. * will spawn all vehicles with 50% fuel. Setting it to 0 would spawn
  5970. * all vehicles without fuel.
  5971. */
  5972. randomizeFuel = 1;
  5973. fuel = 1;
  5974.  
  5975. /**
  5976. * Works exactly the same as the fuel setting ^
  5977. */
  5978. randomizeAmmo = 1;
  5979. ammo = 1;
  5980.  
  5981. // Stuff to spawn on water
  5982. water[] =
  5983. {
  5984. "Exile_Boat_MotorBoat_Police",
  5985. "Exile_Boat_MotorBoat_Orange",
  5986. "Exile_Boat_MotorBoat_White",
  5987. "Exile_Boat_RubberDuck_CSAT",
  5988. "Exile_Boat_RubberDuck_Digital",
  5989. "Exile_Boat_RubberDuck_Orange",
  5990. "Exile_Boat_RubberDuck_Blue",
  5991. "Exile_Boat_RubberDuck_Black",
  5992. "Exile_Boat_SDV_CSAT",
  5993. "Exile_Boat_SDV_Digital",
  5994. "Exile_Boat_SDV_Grey"
  5995. };
  5996.  
  5997. // Stuff to spawn on roads
  5998. ground[] =
  5999. {
  6000. "Exile_Bike_QuadBike_Black",
  6001. "Exile_Bike_QuadBike_Blue",
  6002. "Exile_Bike_QuadBike_Red",
  6003. "Exile_Bike_QuadBike_White",
  6004. "Exile_Bike_QuadBike_Nato",
  6005. "Exile_Bike_QuadBike_Csat",
  6006. "Exile_Bike_QuadBike_Fia",
  6007. "Exile_Bike_QuadBike_Guerilla01",
  6008. "Exile_Bike_QuadBike_Guerilla02",
  6009. "Exile_Car_Volha_Blue",
  6010. "Exile_Car_Volha_White",
  6011. "Exile_Car_Lada_Green",
  6012. "Exile_Car_Lada_Taxi",
  6013. "Exile_Car_TowTractor_White",
  6014. "Exile_Car_UAZ_Open_Green",
  6015. "Exile_Car_UAZ_Green",
  6016. "Exile_Car_LandRover_Ambulance_Desert",
  6017. "Exile_Car_Tractor_Red",
  6018. "Exile_Car_OldTractor_Red",
  6019. "Exile_Car_Octavius_White"
  6020. };
  6021.  
  6022. /**
  6023. * Enables or disables nightvision optics on ALL vehicles
  6024. *
  6025. * 0 = off
  6026. * 1 = on
  6027. */
  6028. nightVision = 1;
  6029.  
  6030. /**
  6031. * Enables or disables thermal optics on ALL vehicles
  6032. *
  6033. * 0 = off
  6034. * 1 = on
  6035. */
  6036. thermalVision = 0;
  6037.  
  6038. /**
  6039. * Set this to 1 to unlock vehicles on server boot if they are in safe zones
  6040. *
  6041. * 0 = off
  6042. * 1 = on
  6043. */
  6044. unlockInSafeZonesAfterRestart = 1;
  6045. };
  6046.  
  6047. class Weather
  6048. {
  6049. /*
  6050. You can define multiple "keyframes" for the weather to change. The server will pick
  6051. a keyframe randomly to simulate the weather. It will change the weather-keyframes
  6052. based on the following interval
  6053. */
  6054. interval = 30;
  6055.  
  6056. /*
  6057. Add the keyframes here. The server will pick one random, so if you want one
  6058. weather type of be more dominant compared to others, add it multiple times
  6059. */
  6060. //keyframes[] = {"Sunny", "Cloudy", "Thunderstorm"};
  6061. keyframes[] = {"Sunny"};
  6062.  
  6063. /*
  6064. This is a keyframe. Look up the BIKI to get more details about the parameters
  6065.  
  6066. Be sure to design the fog settings at a view distance of 1,600m as this is the
  6067. limit in multiplayer by default
  6068.  
  6069. https://community.bistudio.com/wiki/fogParams
  6070. https://community.bistudio.com/wiki/overcast
  6071. https://community.bistudio.com/wiki/setWaves
  6072. https://community.bistudio.com/wiki/setWindStr
  6073. https://community.bistudio.com/wiki/setGusts
  6074. https://community.bistudio.com/wiki/setRain
  6075. https://community.bistudio.com/wiki/setLightnings
  6076. https://community.bistudio.com/wiki/setRainbow
  6077. */
  6078. class Sunny
  6079. {
  6080. fogValue = 0.1;
  6081. fogDecay = 0.2;
  6082. fogBase = 5;
  6083. overcast = 0.2;
  6084. waves = 0.2;
  6085. wind = 0.25;
  6086. gusts = 0.1;
  6087. rain = 0;
  6088. lightnings = 0;
  6089. rainbows = 0;
  6090. };
  6091.  
  6092. class Cloudy
  6093. {
  6094. fogValue = 0.2;
  6095. fogDecay = 0.1;
  6096. fogBase = 5;
  6097. overcast = 0.4;
  6098. waves = 0.4;
  6099. wind = 0.25;
  6100. gusts = 0.5;
  6101. rain = 0.1;
  6102. lightnings = 0.1;
  6103. rainbows = 1;
  6104. };
  6105.  
  6106. class Thunderstorm
  6107. {
  6108. fogValue = 0.7;
  6109. fogDecay = 0.2;
  6110. fogBase = 5;
  6111. overcast = 1;
  6112. waves = 1;
  6113. wind = 0.25;
  6114. gusts = 0.5;
  6115. rain = 1;
  6116. lightnings = 1;
  6117. rainbows = 0.5;
  6118. };
  6119. };
  6120.  
  6121. class Time
  6122. {
  6123. // Uses Dedicated Server time as ingame Time
  6124. useRealTime = 0;
  6125.  
  6126. // Will overide RealTime
  6127. useStaticTime = 1;
  6128.  
  6129. // time in ARMA FORMAT << CONFIG
  6130. // https://community.bistudio.com/wiki/setDate
  6131.  
  6132. staticTime[] = {2039,10,24,15,30};
  6133. };
  6134.  
  6135.  
  6136. class RCON
  6137. {
  6138. /*
  6139. Note that for this to work you need to have serverCommandPassowrd defined in config.cfg and BE enabled
  6140. */
  6141.  
  6142. // This needs to match config.cfg serverCommandPassword
  6143. serverPassword = "";
  6144.  
  6145. // Autolocks server until its ready to accept players
  6146. useAutoLock = 0;
  6147.  
  6148. // Server will autoLock at that time before restart (minutes)
  6149. restartAutoLock = 3;
  6150.  
  6151. /*
  6152. Number of hours and minutes of your restart period.
  6153.  
  6154. Examples:
  6155.  
  6156. {4, 0} = Every 4 hours
  6157. {1, 30} = Every one and a half hour (who the hell would do this?)
  6158. */
  6159. restartTimer[] = {3, 0};
  6160.  
  6161. /*
  6162. Kicks players before restart to prevent gear loss.
  6163. We strongely recommend to use this!
  6164.  
  6165. 0 = off
  6166. 1 = on
  6167. */
  6168. useAutoKick = 0;
  6169.  
  6170. /*
  6171. Number of minutes before the server kicks players that did
  6172. not disconnect before the restart. Should at least be two
  6173. minutes!
  6174. */
  6175. kickTime = 2;
  6176.  
  6177. /*
  6178. Self-explanatory
  6179.  
  6180. 0 = off
  6181. 1 = on
  6182. */
  6183. useRestartMessages = 0;
  6184.  
  6185. /*
  6186. Number of minutes before the restart to inform your players.
  6187.  
  6188. Only use full minutes here. Value like 5.5 have not been tested.
  6189. */
  6190. restartWarningTime[] = {15, 10, 5, 3};
  6191.  
  6192. /*
  6193. If set to 1 server will execute '#shutdown',
  6194. to try to shutdown the server
  6195. */
  6196.  
  6197. useShutdown = 0;
  6198. };
  6199.  
  6200. class ServerSettings
  6201. {
  6202. /*
  6203. Support for custom server FSM if wanted
  6204. */
  6205. serverFSM = "exile_server\fsm\main.fsm";
  6206.  
  6207. /*
  6208. If this is enabled, Exile developers will spawn with a ton of pop tabs.
  6209. We will have a hard time debugging things if you disable this.
  6210. */
  6211. devFriendyMode = 1;
  6212.  
  6213. devs[] =
  6214. {
  6215. {"76561197985241690","[EXILE|DEV] Eichi"},
  6216. {"76561198022879703","[EXILE|DEV] Grim"},
  6217. {"76561198075905447","[EXILE|DEV] Vishpala"},
  6218. {"76561197968613061","[EXILE|DEV] Niuva"}
  6219. };
  6220. };
  6221.  
  6222. class Events
  6223. {
  6224. /*
  6225. A list of events that are active
  6226. */
  6227. enabledEvents[] = {"SupplyBox", "AbandonedSafe", "AmbientFlyOver", "EarthQuake"};
  6228.  
  6229. class EarthQuake
  6230. {
  6231. type = "spawn";
  6232. function = "ExileServer_system_event_earthQuake_start";
  6233. minTime = 60;
  6234. maxTime = 180;
  6235. minimumPlayersOnline = 1;
  6236. };
  6237.  
  6238. class SupplyBox
  6239. {
  6240. /*
  6241. Drops a supply box on a parachute next to a random airport on the map.
  6242. The box may contain items. The box can be transported to a territory
  6243. and installed to become a normal storage container.
  6244. */
  6245. type = "spawn";
  6246. function = "ExileServer_system_event_supplyBox_start";
  6247. minTime = 60; // minutes
  6248. maxTime = 180; // minutes
  6249. minimumPlayersOnline = 10;
  6250. dropRadius = 500; // 500m around an airport (including the main airport on Altis!)
  6251. dropAltitude = 100; // altitude of the drop
  6252. markerTime = 10; // minutes
  6253.  
  6254. /*
  6255. These are different types of boxes can be dropped.
  6256. You can specify the cargo a box should contain.
  6257. The type of box is chosen randomly from the following list.
  6258. Add a type multiple times to increase the chance of being used.
  6259. */
  6260. types[] = {"Beer", "Beer", "Tools", "Food", "Food", "RepairParts"};
  6261.  
  6262. class BoxTypes
  6263. {
  6264. class Beer
  6265. {
  6266. items[] =
  6267. {
  6268. {"Exile_Item_Beer", 24}
  6269. };
  6270. };
  6271.  
  6272. class Food
  6273. {
  6274. items[] =
  6275. {
  6276. {"Exile_Item_BBQSandwich", 5},
  6277. {"Exile_Item_Catfood", 5},
  6278. {"Exile_Item_ChristmasTinner", 5},
  6279. {"Exile_Item_GloriousKnakworst", 5},
  6280. {"Exile_Item_SausageGravy", 5},
  6281. {"Exile_Item_Surstromming", 5},
  6282. {"Exile_Item_CanOpener", 1},
  6283. {"Exile_Item_CookingPot", 1},
  6284. {"Exile_Item_Matches", 1}
  6285. };
  6286. };
  6287.  
  6288. class Tools
  6289. {
  6290. items[] =
  6291. {
  6292. {"Exile_Item_Wrench", 1},
  6293. {"Exile_Item_Shovel", 1},
  6294. {"Exile_Item_Screwdriver", 1},
  6295. {"Exile_Item_Pliers", 1},
  6296. {"Exile_Item_Handsaw", 1},
  6297. {"Exile_Item_FireExtinguisher", 1},
  6298. {"Exile_Item_DuctTape", 1}
  6299. };
  6300. };
  6301.  
  6302. class RepairParts
  6303. {
  6304. items[] =
  6305. {
  6306. {"Exile_Item_CarWheel", 8},
  6307. {"Exile_Item_FuelCanisterFull", 4},
  6308. {"Exile_Item_OilCanister", 1},
  6309. {"Exile_Item_Grinder", 1},
  6310. {"Exile_Item_CordlessScrewdriver", 1}
  6311. };
  6312. };
  6313. };
  6314. };
  6315.  
  6316. class AbandonedSafe
  6317. {
  6318. type = "spawn";
  6319. function = "ExileServer_system_event_abandonedSafe_start";
  6320. minTime = 60; // minutes
  6321. maxTime = 120; // minutes
  6322. minimumPlayersOnline = 0;
  6323. markerTime = 15; // minutes
  6324. };
  6325.  
  6326. class AmbientFlyOver
  6327. {
  6328. type = "call";
  6329. function = "ExileServer_system_event_ambientFlyOver_start";
  6330. minTime = 30; // minutes
  6331. maxTime = 90; // minutes
  6332. minimumPlayersOnline = 1;
  6333. };
  6334. };
  6335.  
  6336. class Logging
  6337. {
  6338. /*
  6339. If logging is enabled separate logs will be made in the sql logs folder for each type
  6340. */
  6341. traderLogging = 1;
  6342. deathLogging = 1;
  6343. territoryLogging = 1;
  6344. };
  6345. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement