TDBGaming

[Release] Custom Esseker traders & map addons

7 posts in this topic

Originally i was not planning on releasing any of these as I have always liked having custom stuff for my own server however with the release of Tanoa i have decided to abandon the Esseker project and start one on Tanoa.

My aim when creating the traders was to keep them away from military areas and try and get them looking like true survivor camps. A lot of the trader zones are using pre existing Esseker location props and when Esseker is updated next (currently 0.8) they may need editing. I wanted a Russian roulette at each trader zone but was not able to do this so instead have multiple Russian roulette traders but only a single area to play at. Due to this the Russian roulette area is required even if you only want to use a single trader zone unless you plan to edit and remove the trader.

All of these require CUP Terrains Core but as this is a requirement of Esseker it should not be a problem.

Everything is in its own file so if you only want some but not others you can just skip what you do not want (with the exception of Russian roulette and config info stored in initServer.sqf)

None of these have been tested on Exile 1.0.0 (tested on 0.9.8) but should work OK providing the code for traders has not changed.

 

[INSTALLATION]

These instructions assume you wish to use everything and have no other custom content.

Create 2 folders in your mission file called "Traders" and "mapcontent"

Inside the Traders folder you have just made, create a new file for each of the sqf files below (Traders only not military or bridge) and paste the code into them. Make sure you have named them correctly or you will get errors. Now do the same for the mapcontent folder and the remaining 2 military camps and bridge.

Edit your initPlayerLocal.sqf so that it looks like this

Spoiler

///////////////////////////////////////////////////////////////////////////////
// Static Objects
///////////////////////////////////////////////////////////////////////////////

// Taken away for now
//#include "initServer.sqf"

if (!hasInterface || isServer) exitWith {};

#include "Traders\WeissCollageTraders.sqf"
#include "Traders\ChardakResortTraders.sqf"
#include "Traders\ESPetrolTraders.sqf"
#include "Traders\RussianRouletteTraders.sqf"
#include "Traders\AirTraders.sqf"
#include "Traders\BoatTraders.sqf"

 

Edit your initServer.sqf so it looks like this

Spoiler

#include "Traders\ChardakResortTraderCity.sqf";
#include "Traders\WeissCollageTraderCity.sqf";
#include "Traders\ESPetrolTraderCity.sqf";
#include "Traders\RussianRouletteArea.sqf";
#include "Traders\AirTraderCamp.sqf";
#include "Traders\BoatTraderCamp.sqf";

#include "mapcontent\bridge.sqf";
#include "mapcontent\MilitaryBaseIgman.sqf";
#include "mapcontent\MilitaryBaseCampSpencer.sqf";
///////////////////////////////////////////////////////////////////////////////////////////////////
// Russian Roulette
///////////////////////////////////////////////////////////////////////////////////////////////////

_objects = [];

{
    private ["_object"];

    _object = (_x select 0) createVehicle [0,0,0];
    _object setDir (deg (_x select 2));
    _object setPosWorld (_x select 1);
    _object allowDamage false;
    _object enableSimulation (_x select 3);
    _object enableSimulationGlobal (_x select 3);; // :)
}
forEach _objects;

ExileRouletteChairs = [];

ExileRouletteChairPositions = 
[
/*
hint str (getPosWorld cursortarget); copyToClipboard str(getPosWorld cursortarget); - Use in debug to get position
hint str (rad x); copyToClipboard str (rad x); - use in debug to get radius. Replace X with Deg direction
*/
[[2750.7,3696.45,191.638], 0],          //North
[[2749.7,3692.54,191.637], 3.29906],    //South
[[2751.67,3694.87,191.638], 1.75568], 	//North East
[[2748.72,3694.09,191.638], 4.96408],   //South West
[[2751.33,3693.62,191.637], 1.52638],   //South East
[[2749.01,3695.33,191.638], 4.70185]    //North West
];

{
    private ["_chair"];

    _chair = "Land_ChairWood_F" createVehicle [0, 0, 0];
    _chair setDir (deg (_x select 1));
    _chair setPosWorld (_x select 0);
    _chair allowDamage false;
    _chair enableSimulationGlobal true;

    ExileRouletteChairs pushBack _chair;
}
forEach ExileRouletteChairPositions;

///////////////////////////////////////////////////////////////////////////////////////////////////
// Concrete Mixers
///////////////////////////////////////////////////////////////////////////////////////////////////

_concreteMixers = 
[
	[[7357.66,5309.82,34.6739], 280.89],	//Weiss Collage Trader City
	[[10099,7947.72,67.4043], 280.89],		//Chardak Resort Trader City
    [[3946.02,9324.07,150.422], 150]        //ES Petrol Trader City
];

{
	_concreteMixer = "Exile_ConcreteMixer" createVehicle (_x select 0);
	_concreteMixer setDir (_x select 1);
	_concreteMixer setPosASL (_x select 0);
    _concreteMixer allowDamage false;
    _concreteMixer enableSimulationGlobal true;
}
forEach _concreteMixers;

 

 

**EDIT**

Knew i was forgetting something... map markers.

Add this to your mission.sqm making sure the class Item numbers are in correct order and adds up in "Items=" etc

Spoiler

class Item4
		{
			position[]={7362.7344,33.881004,5310.6533};
			name="WeissCollegeTraderCity";
			text="Weiss College Trader City";
			type="ExileTraderZone";
			markerType="ELLIPSE";
			colorName="ColorBlack";
			fillName="Border";
			alpha=0;
			a=175;
			b=175;
			drawBorder=1;
		};
		class Item5
		{
			position[]={7362.7344,33.881004,5310.6533};
			name="TraderZoneWeissCollegeIcon";
			text="";
			type="ExileTraderZoneIcon";
		};
		class Item6
		{
			position[]={3966.3447,150.27356,9260.5205};
			name="ESPetrolTraderCity";
			text="ES Petrol Trader City";
			type="ExileTraderZone";
			markerType="ELLIPSE";
			colorName="ColorBlack";
			fillName="Border";
			alpha=0;
			a=175;
			b=175;
			drawBorder=1;
		};
		class Item7
		{
			position[]={3966.3447,150.27356,9260.5205};
			name="TraderZoneESPetrolIcon";
			text="";
			type="ExileTraderZoneIcon";
		};
		class Item8
		{
			position[]={10129.45,66.905304,7948.25};
			name="ChardakResortTraderCity";
			text="Chardak Resort Trader City";
			type="ExileTraderZone";
			markerType="ELLIPSE";
			colorName="ColorBlack";
			fillName="Border";
			alpha=0;
			a=175;
			b=175;
			drawBorder=1;
		};
		class Item9
		{
			position[]={10129.45,66.905304,7948.25};
			name="TraderZoneChardakResortIcon";
			text="";
			type="ExileTraderZoneIcon";
		};
		class Item10
		{
			position[]={10812.323,10.025935,4835.2715};
			name="AirTraderCamp";
			text="Air Trader Camp";
			type="ExileTraderZone";
			markerType="ELLIPSE";
			colorName="ColorBlack";
			fillName="Border";
			alpha=0;
			a=175;
			b=175;
			drawBorder=1;
		};
		class Item11
		{
			position[]={10812.323,10.025935,4835.2715};
			name="AirTraderIcon";
			text="";
			type="ExileTraderZoneIcon";
		};
		class Item12
		{
			position[]={5734.5332,-0.77071255,5435.751};
			name="BoatTraderCamp";
			text="Boat Trader Camp";
			type="ExileTraderZone";
			markerType="ELLIPSE";
			colorName="ColorBlack";
			fillName="Border";
			alpha=0;
			a=175;
			b=175;
			drawBorder=1;
		};
		class Item13
		{
			position[]={5734.5332,-0.77071255,5435.751};
			name="BoatTraderIcon";
			text="";
			type="ExileTraderZoneIcon";
		};

 

 

[TRADER ZONES]

Weiss Collage

Photos

Spoiler

20160712171407_1.jpg

20160712171320_1.jpg

20160712171327_1.jpg

20160712171335_1.jpg

20160712171344_1.jpg

20160712171352_1.jpg

20160712171359_1.jpg

20160712171421_1.jpg

Eden Editor Code (May be additional items that are commented out in final code)

Spoiler

version=52;
class EditorData
{
	moveGridStep=1;
	angleGridStep=0.2617994;
	scaleGridStep=1;
	autoGroupingDist=10;
	toggles=1;
	class ItemIDProvider
	{
		nextID=630;
	};
	class Camera
	{
		pos[]={7269.5625,137.35951,5378.0376};
		dir[]={0.60421783,-0.75054526,-0.267768};
		up[]={0.68630773,0.66066015,-0.3041476};
		aside[]={-0.40517956,-2.0849984e-007,-0.91428584};
	};
};
binarizationWanted=0;
addons[]=
{
	"exile_client",
	"A3_Structures_F_EPC_Civ_InfoBoards",
	"CST_Misc_Walls",
	"A3_Structures_F_Walls",
	"A3_Structures_F_Civ_Constructions",
	"A3_Characters_F",
	"CUP_Editor_Signs_Config",
	"CUP_A2_EditorObjects",
	"A3_Structures_F_Ind_Factory",
	"CUP_Misc3_Config",
	"A3_Structures_F_Civ_Garbage",
	"A3_Structures_F_EPB_Civ_Garbage",
	"A3_Structures_F_EPC_Civ_Garbage",
	"A3_Structures_F_Households_Slum",
	"A3_Structures_F_Wrecks",
	"A3_Structures_F_EPA_Mil_Scrapyard",
	"CUP_Editor_Structures_Config",
	"CUP_CAStructures_E_Misc_Misc_Interier",
	"A3_Structures_F_Furniture",
	"A3_Structures_F_Heli_Items_Electronics",
	"A3_Structures_F_Bootcamp_Items_Electronics",
	"A3_Structures_F_EPA_Items_Food",
	"CUP_CAMisc",
	"A3_Structures_F_Heli_Furniture",
	"A3_Structures_F_Civ_Camping",
	"SAR_ru_architecture",
	"A3_Structures_F_EPB_Items_Luggage",
	"A3_Structures_F_Heli_Civ_Constructions",
	"MBG_Noe_Buildings",
	"A3_Structures_F_Ind_FuelStation",
	"CUP_Ind_Tank",
	"A3_Structures_F_Mil_Helipads"
};
class AddonsMetaData
{
	class List
	{
		items=22;
		class Item0
		{
			className="exile_client";
			name="exile_client";
		};
		class Item1
		{
			className="A3_Structures_F_EPC";
			name="Arma 3 Win Episode - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item2
		{
			className="CST_Misc_Walls";
			name="CST_Misc_Walls";
		};
		class Item3
		{
			className="A3_Structures_F";
			name="Arma 3 Alpha - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item4
		{
			className="A3_Characters_F";
			name="Arma 3 Alpha - Characters and Clothing";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item5
		{
			className="CUP_Editor_Signs_Config";
			name="CUP_Editor_Signs_Config";
		};
		class Item6
		{
			className="CUP_A2_EditorObjects";
			name="CUP_A2_EditorObjects";
			author="MemphisBelle";
		};
		class Item7
		{
			className="A3_Structures_F_Ind";
			name="Arma 3 Alpha - Industry complexes";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item8
		{
			className="CUP_Misc3_Config";
			name="CUP_Misc3_Config";
		};
		class Item9
		{
			className="A3_Structures_F_EPB";
			name="Arma 3 Adapt Episode - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item10
		{
			className="A3_Structures_F_Households";
			name="Arma 3 Alpha - Houses";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item11
		{
			className="A3_Structures_F_Wrecks";
			name="Arma 3 Alpha - Vehicle wrecks";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item12
		{
			className="A3_Structures_F_EPA";
			name="Arma 3 Survive Episode - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item13
		{
			className="CUP_Editor_Structures_Config";
			name="CUP_Editor_Structures_Config";
		};
		class Item14
		{
			className="CUP_CAStructures_E_Misc_Misc_Interier";
			name="CUP_CAStructures_E_Misc_Misc_Interier";
		};
		class Item15
		{
			className="A3_Structures_F_Heli";
			name="Arma 3 Helicopters - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item16
		{
			className="A3_Structures_F_Bootcamp";
			name="Arma 3 Bootcamp Update - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item17
		{
			className="CUP_CAMisc";
			name="CUP_CAMisc";
		};
		class Item18
		{
			className="SAR_ru_architecture";
			name="SAR_ru_architecture";
		};
		class Item19
		{
			className="MBG_Noe_Buildings";
			name="MBG_Noe_Buildings";
		};
		class Item20
		{
			className="CUP_Ind_Tank";
			name="CUP_Ind_Tank";
		};
		class Item21
		{
			className="A3_Structures_F_Mil";
			name="Arma 3 - Military Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
	};
};
randomSeed=8234325;
class ScenarioData
{
	author="Mr Health And Safety";
	class Header
	{
		gameType="Sandbox";
	};
};
class CustomAttributes
{
	class Category0
	{
		name="Multiplayer";
		class Attribute0
		{
			property="RespawnButton";
			expression="true";
			class Value
			{
				class data
				{
					class type
					{
						type[]=
						{
							"SCALAR"
						};
					};
					value=1;
				};
			};
		};
		class Attribute1
		{
			property="RespawnTemplates";
			expression="true";
			class Value
			{
				class data
				{
					class type
					{
						type[]=
						{
							"ARRAY"
						};
					};
					class value
					{
						items=1;
						class Item0
						{
							class data
							{
								class type
								{
									type[]=
									{
										"STRING"
									};
								};
								value="Exile";
							};
						};
					};
				};
			};
		};
		class Attribute2
		{
			property="SharedObjectives";
			expression="if (isMultiplayer) then {[_value] spawn bis_fnc_sharedObjectives;};";
			class Value
			{
				class data
				{
					class type
					{
						type[]=
						{
							"SCALAR"
						};
					};
					value=0;
				};
			};
		};
		nAttributes=3;
	};
};
class Mission
{
	class Intel
	{
		timeOfChanges=1800.0002;
		startWeather=0.80000001;
		startWind=0.1;
		startWaves=0.1;
		forecastWeather=0.80000001;
		forecastWind=0.1;
		forecastWaves=0.1;
		forecastLightnings=0.1;
		year=2001;
		month=3;
		day=5;
		startFogDecay=0.014;
		forecastFogDecay=0.014;
	};
	class Entities
	{
		items=227;
		class Item0
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7341.7734,42.579777,5311.3003};
						angles[]={0,0.5523572,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=7;
					type="Exile_Trader_Office";
					class CustomAttributes
					{
						class Attribute0
						{
							property="pitch";
							expression="_this setpitch _value;";
							class Value
							{
								class data
								{
									class type
									{
										type[]=
										{
											"SCALAR"
										};
									};
									value=1.04;
								};
							};
						};
						nAttributes=1;
					};
				};
			};
			class Attributes
			{
			};
			id=6;
		};
		class Item1
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7338.8076,43.614021,5315.4849};
				angles[]={0,4.8822632,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=12;
			type="Exile_Sign_Office";
		};
		class Item2
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7340.5625,43.545013,5313.0386};
				angles[]={0,4.1646233,0.0014648439};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=15;
			type="MapBoard_seismic_F";
			atlOffset=3.8146973e-006;
		};
		class Item3
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7338.2388,42.5728,5312.2622};
				angles[]={0,3.3294883,0.0014648439};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=27;
			type="Exile_Construction_Safe_Preview";
		};
		class Item4
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7376.7231,34.828293,5324.2617};
				angles[]={0,3.3520517,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=28;
			type="Land_wall_tin_4";
			atlOffset=0.39493561;
		};
		class Item5
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7340.9556,43.124386,5307.7974};
				angles[]={0,0.34251434,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=29;
			type="Land_wall_tin_4_2";
		};
		class Item6
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7354.001,39.25975,5329.855};
						angles[]={0,6.1201138,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=31;
					type="Exile_Guard_01";
				};
			};
			class Attributes
			{
			};
			id=30;
		};
		class Item7
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7362.9458,39.259708,5328.583};
						angles[]={0,0.40906841,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=33;
					type="Exile_Guard_02";
				};
			};
			class Attributes
			{
			};
			id=32;
		};
		class Item8
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7342.0459,42.574268,5305.7935};
						angles[]={0,3.3426838,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=35;
					type="Exile_Guard_03";
				};
			};
			class Attributes
			{
			};
			id=34;
		};
		class Item9
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7352.4932,42.579536,5307.4585};
						angles[]={0,0.18847033,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=67;
					type="Exile_Trader_Armory";
				};
			};
			class Attributes
			{
			};
			id=66;
		};
		class Item10
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7350.645,42.590565,5321.8027};
						angles[]={0,2.874042,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=69;
					type="Exile_Trader_Equipment";
				};
			};
			class Attributes
			{
			};
			id=68;
		};
		class Item11
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7368.4575,42.59668,5317.5483};
						angles[]={0,4.8783755,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=71;
					type="Exile_Trader_Food";
				};
			};
			class Attributes
			{
			};
			id=70;
		};
		class Item12
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7368.6548,42.58744,5323.1514};
						angles[]={0,4.793293,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=73;
					type="Exile_Trader_Hardware";
				};
			};
			class Attributes
			{
			};
			id=72;
		};
		class Item13
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7357.6089,42.577251,5305.2222};
						angles[]={0,5.8302836,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=77;
					type="Exile_Trader_SpecialOperations";
				};
			};
			class Attributes
			{
			};
			id=76;
		};
		class Item14
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7328.1572,34.30114,5295.1528};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=81;
					type="Exile_Trader_Vehicle";
				};
			};
			class Attributes
			{
			};
			id=80;
		};
		class Item15
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7373.4063,34.682453,5324.0024};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=83;
					type="Exile_Trader_WasteDump";
				};
			};
			class Attributes
			{
			};
			id=82;
		};
		class Item16
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7340.6064,35.268665,5303.6948};
				angles[]={0,4.7804408,0.0038136009};
			};
			side="Empty";
			class Attributes
			{
			};
			id=87;
			type="Land_Pallet_vertical_F";
			atlOffset=0.65228653;
		};
		class Item17
		{
			dataType="Group";
			side="West";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7345.5156,42.647251,5303.5};
					};
					side="West";
					flags=7;
					class Attributes
					{
						isPlayer=1;
					};
					id=91;
					type="B_G_Soldier_AR_F";
					atlOffset=0.073932648;
				};
			};
			class Attributes
			{
			};
			id=90;
			atlOffset=0.073932648;
		};
		class Item18
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7336.3643,34.458717,5302.2236};
				angles[]={0,1.6969573,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=104;
			type="CUP_sign_leftDirection_new";
			atlOffset=-1.0615997;
		};
		class Item19
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7325.8091,35.154629,5297.0947};
				angles[]={0,0.19863394,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=117;
			type="CUP_A2_smalltable";
		};
		class Item20
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7357.6577,34.673935,5309.8228};
				angles[]={6.2717133,4.8923006,0.00034526698};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=127;
			type="Exile_ConcreteMixer";
		};
		class Item21
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7377.4404,35.847733,5319.2803};
				angles[]={0,4.8351164,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=128;
			type="Land_Factory_Conv1_Main_F";
			atlOffset=0.50253296;
		};
		class Item22
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7386.2168,34.62413,5316.9277};
				angles[]={0,1.7075959,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=132;
			type="Land_Misc_GContainer_Big";
		};
		class Item23
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7386.5605,35.462376,5317.9199};
				angles[]={0,4.8456573,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=133;
			type="CUP_A2_garbage_paleta";
		};
		class Item24
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7382.0244,35.152691,5321.4438};
				angles[]={0,4.8557096,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=136;
			type="Land_wall_tin_4";
		};
		class Item25
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7379.0981,35.160816,5317.0713};
				angles[]={0,0.22129653,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=137;
			type="Land_wall_tin_4";
		};
		class Item26
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7380.4385,34.899551,5323.5864};
				angles[]={0,3.3142076,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=138;
			type="Land_wall_tin_4";
			atlOffset=0.46619415;
		};
		class Item27
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7380.2109,35.078121,5321.6509};
				angles[]={6.273561,0,6.2757802};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=139;
			type="Land_GarbageBags_F";
		};
		class Item28
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7385.541,33.920441,5319.1333};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=141;
			type="Land_Garbage_square5_F";
		};
		class Item29
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7388.3159,33.500233,5319.584};
				angles[]={0,0,6.0984826};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=142;
			type="Land_Garbage_square3_F";
		};
		class Item30
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7388.0337,33.540436,5317.0366};
				angles[]={0,0,6.0984826};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=143;
			type="Land_Garbage_square5_F";
		};
		class Item31
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7372.1387,35.330727,5319.7339};
				angles[]={0,4.8291216,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=144;
			type="Land_Garbage_line_F";
			atlOffset=0.58958817;
		};
		class Item32
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7377.1855,35.333294,5319.147};
				angles[]={0,4.8291216,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=145;
			type="Land_Garbage_line_F";
			atlOffset=0.64034271;
		};
		class Item33
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7376.9834,35.421486,5323.166};
				angles[]={6.273561,3.2753003,6.2757802};
			};
			side="Empty";
			class Attributes
			{
			};
			id=146;
			type="Land_GarbageContainer_open_F";
			atlOffset=0.80203629;
		};
		class Item34
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7375.1577,34.395088,5324.814};
				angles[]={0,3.2681816,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=147;
			type="Land_GarbageBin_01_F";
		};
		class Item35
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7371.0562,35.328106,5324.9209};
				angles[]={0,3.3102548,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=149;
			type="Exile_Sign_WasteDump";
			atlOffset=0.40604782;
		};
		class Item36
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7340.3447,35.301479,5302.4092};
				angles[]={0,4.5928659,0.0038136009};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=151;
			type="Land_Pallet_vertical_F";
		};
		class Item37
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7358.1396,41.167683,5326.6196};
				angles[]={0,3.2927051,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=152;
			type="Exile_Sign_TraderCity";
			atlOffset=4.814537;
		};
		class Item38
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7332.0059,33.881004,5319.0547};
				angles[]={0,0.0062727383,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=166;
			type="CUP_A2_OA_path_2250";
		};
		class Item39
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7353.021,33.536549,5337.3076};
				angles[]={0.14072795,3.9786096,6.2415423};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=168;
			type="CUP_A2_OA_path_3025";
		};
		class Item40
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7344.7583,33.865574,5334.2314};
				angles[]={0.066566475,4.6051426,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=169;
			type="CUP_A2_OA_path_6";
		};
		class Item41
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7337.9829,33.881001,5331.4043};
				angles[]={0,0.43396148,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=170;
			type="CUP_A2_OA_path_6010";
		};
		class Item42
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.1143,32.139164,5342.2451};
				angles[]={0.2529687,3.9707911,6.1835146};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=174;
			type="CUP_A2_OA_path_6konec";
		};
		class Item43
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7330.6563,33.94817,5308.0928};
				angles[]={0,6.1738563,6.2332273};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=175;
			type="CUP_A2_OA_path_1575";
		};
		class Item44
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7330.9448,34.012844,5295.3281};
				angles[]={0,6.1686583,6.1588321};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=176;
			type="CUP_A2_OA_path_6konec";
		};
		class Item45
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7336.2573,35.624191,5298.5151};
				angles[]={0,1.7129016,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=179;
			type="Exile_Sign_TraderCity";
		};
		class Item46
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.8281,39.695156,5330.8979};
				angles[]={0.00034526698,0.15052281,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=183;
			type="CUP_A2_bagfencecorner";
		};
		class Item47
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7352.9111,39.69521,5332.6035};
				angles[]={0.00034526698,4.8699427,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=184;
			type="CUP_A2_bagfencecorner";
		};
		class Item48
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.9893,39.69949,5331.4585};
				angles[]={0.00034526698,0.15903601,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=185;
			type="CUP_A2_bagfencelong";
		};
		class Item49
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7354.8672,39.699478,5332.729};
				angles[]={0.00034526698,0.13341531,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=186;
			type="CUP_A2_bagfencelong";
		};
		class Item50
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7357.7813,39.699444,5332.356};
				angles[]={0.00034526698,0.13341531,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=187;
			type="CUP_A2_bagfencelong";
		};
		class Item51
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.4072,39.699467,5331.9033};
				angles[]={0.00034526698,0.15522404,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=188;
			type="CUP_A2_bagfencelong";
		};
		class Item52
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.9478,39.700424,5328.999};
				angles[]={0.00034526698,1.7126279,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=189;
			type="CUP_A2_bagfencelong";
		};
		class Item53
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.7124,39.688858,5327.1514};
				angles[]={0.00034526698,1.7958511,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=190;
			type="CUP_A2_bagfenceend";
		};
		class Item54
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7352.3916,39.700527,5330.6821};
				angles[]={0.00034526698,4.872973,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=191;
			type="CUP_A2_bagfencelong";
		};
		class Item55
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7352.1294,39.688942,5328.8809};
				angles[]={0.00034526698,1.7139121,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=192;
			type="CUP_A2_bagfenceend";
		};
		class Item56
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7348.8911,34.707985,5339.4043};
				angles[]={0,0.1378015,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=195;
			type="Land_Slums01_8m";
			atlOffset=0.80647278;
		};
		class Item57
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7324.8296,35.116348,5296.4668};
				angles[]={0,4.9258699,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=198;
			type="Land_cargo_house_slum_F";
		};
		class Item58
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7328.8057,35.53516,5293.0981};
				angles[]={0,0.15155141,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=200;
			type="Land_cargo_addon02_V2_F";
			atlOffset=0.88220978;
		};
		class Item59
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7334.0015,34.889984,5291.7813};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=201;
			type="Land_Wreck_Van_F";
		};
		class Item60
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7341.8223,34.875332,5340.3955};
				angles[]={0,0.13973042,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=205;
			type="Land_Slums01_8m";
			atlOffset=0.78125763;
		};
		class Item61
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7334.5796,34.983803,5341.0103};
				angles[]={0,0.1378015,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=206;
			type="Land_Slums01_8m";
			atlOffset=0.59309387;
		};
		class Item62
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7329.2026,35.488014,5331.3706};
				angles[]={0,4.8603759,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=207;
			type="Land_Slums01_8m";
			atlOffset=0.65925217;
		};
		class Item63
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7327.8965,35.35297,5323.8149};
				angles[]={0,4.8526459,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=208;
			type="Land_Slums01_8m";
			atlOffset=0.67837906;
		};
		class Item64
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7326.542,35.326565,5316.1895};
				angles[]={0,4.8814564,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=209;
			type="Land_Slums01_8m";
			atlOffset=0.69098663;
		};
		class Item65
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7325.2607,35.557819,5308.8306};
				angles[]={0,4.8693724,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=210;
			type="Land_Slums01_8m";
			atlOffset=0.68463898;
		};
		class Item66
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7324.0439,35.912312,5301.4917};
				angles[]={0,4.8681226,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=211;
			type="Land_Slums01_8m";
			atlOffset=0.65542221;
		};
		class Item67
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7323.0161,35.851128,5295.2437};
				angles[]={0,4.9300661,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=212;
			type="Land_Slums01_8m";
			atlOffset=0.70746994;
		};
		class Item68
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7326.0708,35.553623,5290.7568};
				angles[]={0,3.3407416,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=213;
			type="Land_Slums01_8m";
			atlOffset=0.6037674;
		};
		class Item69
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7333.6113,35.305614,5288.9609};
				angles[]={0,3.4270377,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=214;
			type="Land_Slums01_8m";
			atlOffset=0.60322571;
		};
		class Item70
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7340.9702,35.112465,5287.353};
				angles[]={0,3.2931473,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=215;
			type="Land_Slums01_8m";
			atlOffset=0.70746231;
		};
		class Item71
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7342.8594,35.112461,5287.0093};
				angles[]={0,3.2905397,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=216;
			type="Land_Slums01_8m";
			atlOffset=0.70746231;
		};
		class Item72
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7328.834,34.798565,5292.5874};
				angles[]={6.2000446,4.3969941,6.2415438};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=219;
			type="LADAWreck";
		};
		class Item73
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7339.3896,34.765396,5294.6074};
				angles[]={0,2.910027,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=220;
			type="Land_Wreck_CarDismantled_F";
		};
		class Item74
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7343.6841,35.155602,5292.2954};
				angles[]={0,2.0021672,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=221;
			type="Land_Wreck_Truck_F";
		};
		class Item75
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7343.7778,35.054924,5289.0161};
				angles[]={0,1.7337121,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=222;
			type="Land_Wreck_Truck_dropside_F";
		};
		class Item76
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7337.6875,35.105404,5291.2231};
				angles[]={0,2.4905717,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=223;
			type="Land_Scrap_MRAP_01_F";
		};
		class Item77
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7325.2212,37.13356,5297.5088};
				angles[]={0,3.3319621,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=224;
			type="Exile_Sign_Vehicles";
			atlOffset=1.3378525;
		};
		class Item78
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7323.6519,34.754654,5294.1787};
				angles[]={0,0.2129795,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=225;
			type="CUP_lobby_case";
		};
		class Item79
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7325.7671,35.241238,5296.3472};
				angles[]={0,3.0464764,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=226;
			type="Land_Chair_EP1";
			atlOffset=0.24088287;
		};
		class Item80
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7344.3853,49.564007,5300.7524};
						angles[]={0,6.1201138,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=230;
					type="Exile_Guard_01";
				};
			};
			class Attributes
			{
			};
			id=229;
		};
		class Item81
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7351.8916,43.925907,5303.9297};
				angles[]={0,3.3304632,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=259;
			type="Exile_Sign_Armory";
			atlOffset=0.31246567;
		};
		class Item82
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7350.9712,43.63179,5316.8252};
				angles[]={0,4.9254284,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=260;
			type="Exile_Sign_Equipment";
		};
		class Item83
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.708,43.631451,5313.5015};
				angles[]={0,0.12626229,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=262;
			type="Exile_Sign_Food";
		};
		class Item84
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7356.5581,43.209,5321.0049};
				angles[]={0,1.7666937,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=264;
			type="Exile_Sign_Hardware";
			atlOffset=3.6085968;
		};
		class Item85
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7348.0674,43.627728,5315.7163};
				angles[]={0,0.16621535,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=266;
			type="Exile_Sign_Locker";
		};
		class Item86
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.8076,43.622673,5308.4609};
				angles[]={0,3.3332779,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=267;
			type="Exile_Sign_SpecialOperations";
		};
		class Item87
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7349.855,42.589413,5315.3525};
				angles[]={0,0.10358005,0.0014648439};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=288;
			type="Exile_Locker";
		};
		class Item88
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7346.2026,42.583881,5315.8042};
				angles[]={0,0.10358005,0.0014648439};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=290;
			type="Exile_Locker";
		};
		class Item89
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.353,43.148209,5318.6455};
				angles[]={0,0.14729537,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=291;
			type="Land_wall_tin_4_2";
		};
		class Item90
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.8413,43.148453,5319.1943};
				angles[]={0,0.23577344,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=292;
			type="Land_wall_tin_4_2";
		};
		class Item91
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7357.9712,43.146706,5319.1777};
				angles[]={0,1.6405685,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=293;
			type="Land_wall_tin_4_2";
		};
		class Item92
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7357.6108,43.140469,5315.333};
				angles[]={0,1.6724721,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=294;
			type="Land_wall_tin_4_2";
		};
		class Item93
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.2061,43.167656,5314.335};
				angles[]={6.2816033,1.7561857,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=295;
			type="Land_Icebox_F";
			atlOffset=7.6748848;
		};
		class Item94
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.6069,42.598282,5317.6675};
				angles[]={6.2816033,1.7266624,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=296;
			type="Land_CashDesk_F";
		};
		class Item95
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7363.9019,43.070118,5313.9297};
				angles[]={6.2816033,3.2675886,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=298;
			type="Fridge_01_closed_F";
			atlOffset=7.843544;
		};
		class Item96
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7363.0215,43.26696,5313.835};
				angles[]={6.2816033,3.3043346,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=299;
			type="Land_WaterCooler_01_old_F";
			atlOffset=7.8197823;
		};
		class Item97
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.541,43.142654,5314.6509};
			};
			side="Empty";
			class Attributes
			{
			};
			id=355;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.54927444;
		};
		class Item98
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.4883,43.142357,5314.4673};
				angles[]={0,2.0912709,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=356;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.54896164;
		};
		class Item99
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.3257,43.142666,5314.6655};
				angles[]={0,1.5216556,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=357;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.54899597;
		};
		class Item100
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.3037,43.142376,5314.5049};
				angles[]={0,0.32417774,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=358;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.54896927;
		};
		class Item101
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.1421,43.142689,5314.7163};
				angles[]={0,0.018016068,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=359;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.54898453;
		};
		class Item102
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.1299,43.142403,5314.543};
				angles[]={0,1.885554,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=360;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.5489769;
		};
		class Item103
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.4478,43.140491,5314.1943};
				angles[]={0,4.8731518,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=362;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.54754257;
		};
		class Item104
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.4365,43.137634,5314.0176};
				angles[]={0,1.7374189,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=363;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.54497147;
		};
		class Item105
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.2773,43.14127,5314.2305};
				angles[]={0,2.5485902,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=364;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.54830551;
		};
		class Item106
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.2505,43.147404,5314.0679};
				angles[]={0,5.4336553,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=365;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.55470657;
		};
		class Item107
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.0952,43.146198,5314.2593};
				angles[]={0,0.97987831,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=366;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.5532341;
		};
		class Item108
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.0605,43.137512,5314.1157};
				angles[]={0,2.9581127,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=367;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.54478455;
		};
		class Item109
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.3564,43.148064,5313.8022};
				angles[]={0,5.3542719,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=369;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55576324;
		};
		class Item110
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.3159,43.147804,5313.6455};
				angles[]={0,3.3173311,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=370;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55576324;
		};
		class Item111
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.1733,43.148075,5313.8369};
				angles[]={0,2.5920327,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=371;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55576706;
		};
		class Item112
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.1196,43.147812,5313.6812};
				angles[]={0,5.1647592,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=372;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55576706;
		};
		class Item113
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.9766,43.148067,5313.8638};
				angles[]={0,0.051356666,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=373;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55576706;
		};
		class Item114
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.9551,43.154385,5313.7153};
				angles[]={0,2.2212176,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=374;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.56232452;
		};
		class Item115
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.2026,43.678146,5320.3926};
				angles[]={0,3.2444506,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=394;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.0776176;
		};
		class Item116
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.7681,43.66663,5320.4556};
				angles[]={0,3.4341888,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=395;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.0658607;
		};
		class Item117
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.5332,43.672535,5320.4429};
				angles[]={0,3.0791738,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=396;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.071846;
		};
		class Item118
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.2607,43.684723,5320.4053};
				angles[]={0,3.190814,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=397;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.0839119;
		};
		class Item119
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.9912,43.671146,5320.4072};
				angles[]={0,2.9970846,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=398;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.0704002;
		};
		class Item120
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.3579,43.674789,5320.5293};
			};
			side="Empty";
			class Attributes
			{
			};
			id=399;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.0740051;
		};
		class Item121
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.2861,43.473003,5320.4751};
				angles[]={5.0614548,0,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=401;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.8723259;
		};
		class Item122
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.5981,43.464005,5320.498};
				angles[]={5.0614548,6.263515,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=402;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.86320877;
		};
		class Item123
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.876,43.451004,5320.4609};
				angles[]={5.0614548,0.14049901,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=403;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.85020065;
		};
		class Item124
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.1948,43.453003,5320.376};
				angles[]={5.0614548,0,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=404;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.85225677;
		};
		class Item125
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.2241,43.082012,5320.5479};
				angles[]={5.0614548,6.2524328,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=406;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.48122787;
		};
		class Item126
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.5601,43.108013,5320.5361};
				angles[]={5.0614548,0.13365731,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=407;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.507164;
		};
		class Item127
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.873,43.105011,5320.4038};
				angles[]={5.0614548,0.11550589,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=408;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.50429535;
		};
		class Item128
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.1597,43.103012,5320.376};
				angles[]={5.0614548,6.2279983,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=409;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.50227356;
		};
		class Item129
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.207,42.680302,5320.4556};
				angles[]={0,2.078949,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=411;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.079669952;
		};
		class Item130
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.4644,42.673286,5320.397};
			};
			side="Empty";
			class Attributes
			{
			};
			id=412;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.072685242;
		};
		class Item131
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.3198,42.732521,5320.415};
				angles[]={0,0.63465178,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=413;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.13192749;
		};
		class Item132
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.7363,42.677322,5320.4082};
				angles[]={0,4.7446642,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=415;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.076637268;
		};
		class Item133
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.8999,42.690788,5320.3999};
				angles[]={0,4.689826,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=416;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.090072632;
		};
		class Item134
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.9829,42.721004,5320.3911};
				angles[]={0,4.7519555,6.1086521};
			};
			side="Empty";
			class Attributes
			{
			};
			id=417;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.12028503;
		};
		class Item135
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.124,42.690315,5320.4028};
				angles[]={0,1.7461205,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=418;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.089542389;
		};
		class Item136
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.377,42.915684,5315.6069};
				angles[]={0,0.15238822,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=463;
			type="CUP_A2_box_c";
			atlOffset=0.32119751;
		};
		class Item137
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.7568,42.915722,5316.2993};
				angles[]={0,1.6752534,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=465;
			type="CUP_A2_box_c";
			atlOffset=0.32220078;
		};
		class Item138
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.7217,43.5252,5315.8481};
				angles[]={0,1.7141364,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=466;
			type="CUP_A2_box_c";
			atlOffset=0.93180084;
		};
		class Item139
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.9907,42.631683,5320.3091};
				angles[]={6.2816033,4.6292477,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=468;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.030845642;
		};
		class Item140
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.1318,42.621258,5320.2251};
				angles[]={6.2816033,0.014924265,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=469;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.020519257;
		};
		class Item141
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.2979,42.622604,5320.2026};
				angles[]={6.2816033,4.2716694,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=470;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.021858215;
		};
		class Item142
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.4512,42.618874,5320.145};
				angles[]={6.2816033,5.6813269,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=471;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.018180847;
		};
		class Item143
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.9854,42.994438,5320.3296};
				angles[]={0,0.066524811,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=472;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.39719391;
		};
		class Item144
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.1616,42.994076,5320.2666};
				angles[]={0,0.76261729,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=473;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.39688873;
		};
		class Item145
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.2969,42.995281,5320.1665};
				angles[]={0,0.45142946,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=474;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.39822006;
		};
		class Item146
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.4512,42.993195,5320.1113};
				angles[]={0,0.85068476,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=475;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.3961792;
		};
		class Item147
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.9829,43.759274,5320.3037};
				angles[]={0,2.1830976,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=476;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.1620674;
		};
		class Item148
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.1387,43.758247,5320.2573};
				angles[]={0,0.60567904,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=477;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.1610794;
		};
		class Item149
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.292,43.757145,5320.2139};
				angles[]={0,5.7528152,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=478;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.1600075;
		};
		class Item150
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.4326,43.755627,5320.1528};
				angles[]={0,0.075669996,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=479;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.1585503;
		};
		class Item151
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.3311,43.72966,5313.7573};
				angles[]={6.2828403,3.2881253,6.2766528};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=483;
			type="Land_CerealsBox_F";
		};
		class Item152
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.0615,43.731434,5313.7891};
				angles[]={6.2828403,3.1180315,6.2766528};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=484;
			type="Land_CerealsBox_F";
		};
		class Item153
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.7329,43.733585,5313.7998};
				angles[]={6.2828403,3.4450529,6.2766528};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=485;
			type="Land_CerealsBox_F";
		};
		class Item154
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.1011,42.627995,5320.1558};
				angles[]={6.2816033,4.7204971,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=486;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.027122498;
		};
		class Item155
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.2847,42.625366,5320.1665};
				angles[]={6.2816033,4.4500585,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=487;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.024429321;
		};
		class Item156
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.4438,42.624027,5320.1011};
				angles[]={6.2816033,5.7268553,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=488;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.023155212;
		};
		class Item157
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.6196,42.629005,5320.0771};
				angles[]={6.2816033,5.2321577,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=489;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.028129578;
		};
		class Item158
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.1255,42.999855,5320.145};
				angles[]={0,3.7035143,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=490;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.39899445;
		};
		class Item159
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.3066,43.006054,5320.1787};
				angles[]={0,4.9839888,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=491;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.40509415;
		};
		class Item160
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.4624,43.000084,5320.1021};
				angles[]={0,5.3695083,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=492;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.39920807;
		};
		class Item161
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.6455,42.997353,5320.0947};
				angles[]={0,3.6820123,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=493;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.3964386;
		};
		class Item162
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.1987,43.743259,5320.1509};
			};
			side="Empty";
			class Attributes
			{
			};
			id=498;
			type="Exile_Cosmetic_InstantCoffee";
			atlOffset=1.1433525;
		};
		class Item163
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.5103,43.755283,5320.1094};
				angles[]={0,0.27223143,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=499;
			type="Exile_Cosmetic_InstantCoffee";
			atlOffset=1.1553612;
		};
		class Item164
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.3154,43.216568,5313.8447};
				angles[]={0,1.7420009,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=500;
			type="Exile_Cosmetic_Moobar";
			atlOffset=0.62766647;
		};
		class Item165
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.0767,43.202366,5313.8428};
				angles[]={0,1.617041,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=501;
			type="Exile_Cosmetic_Moobar";
			atlOffset=0.61352921;
		};
		class Item166
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.8008,43.207958,5313.8589};
				angles[]={0,1.9185151,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=502;
			type="Exile_Cosmetic_Moobar";
			atlOffset=0.61916351;
		};
		class Item167
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.3677,42.890419,5313.8193};
				angles[]={0,4.328723,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=503;
			type="Exile_Cosmetic_CockONut";
			atlOffset=0.30003357;
		};
		class Item168
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.1504,42.897408,5313.7822};
				angles[]={0,3.370683,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=504;
			type="Exile_Cosmetic_CockONut";
			atlOffset=0.30713654;
		};
		class Item169
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.9619,42.899143,5313.9614};
				angles[]={0,3.2925394,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=505;
			type="Exile_Cosmetic_CockONut";
			atlOffset=0.30863571;
		};
		class Item170
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.7769,42.899784,5313.8271};
				angles[]={0,3.7634714,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=506;
			type="Exile_Cosmetic_CockONut";
			atlOffset=0.30953598;
		};
		class Item171
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.5273,43.363102,5317.0264};
				angles[]={0,2.1671944,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=507;
			type="Exile_Cosmetic_Magazine01";
			atlOffset=0.007850647;
		};
		class Item172
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.8882,43.364719,5316.9155};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=508;
			type="Exile_Cosmetic_Magazine02";
			atlOffset=0.0094680786;
		};
		class Item173
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.6528,43.362328,5316.9995};
				angles[]={0,4.6932135,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=509;
			type="Exile_Cosmetic_Magazine03";
			atlOffset=0.0070762634;
		};
		class Item174
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.8501,43.368202,5316.416};
				angles[]={0,2.9599438,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=510;
			type="Exile_Cosmetic_Magazine04";
			atlOffset=0.012950897;
		};
		class Item175
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7342.7793,43.688072,5311.7104};
				angles[]={0,5.3579187,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=521;
			type="Computer";
			atlOffset=0.92789841;
		};
		class Item176
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7369.2905,43.070026,5322.73};
				angles[]={0.006394445,1.7648971,6.2707701};
			};
			side="Empty";
			class Attributes
			{
			};
			id=522;
			type="Land_Workbench_01_F";
			atlOffset=4.0139809;
		};
		class Item177
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7366.8936,42.685608,5324.4707};
				angles[]={0.006394445,3.7467813,6.2707701};
			};
			side="Empty";
			class Attributes
			{
			};
			id=535;
			type="Land_CarBattery_02_F";
			atlOffset=4.0397758;
		};
		class Item178
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7366.3315,42.732971,5324.5181};
				angles[]={0.006394445,0,6.2707701};
			};
			side="Empty";
			class Attributes
			{
			};
			id=536;
			type="Land_CarBattery_01_F";
			atlOffset=4.0464554;
		};
		class Item179
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7366.0508,43.487446,5319.7881};
				angles[]={0,4.4859524,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=537;
			type="Exile_Cosmetic_Axe";
			atlOffset=0.57865524;
		};
		class Item180
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7369.582,43.380489,5323.7344};
				angles[]={0.006394445,0,6.2707701};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=538;
			type="Exile_Cosmetic_Foolbox";
		};
		class Item181
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7369.1602,43.395763,5321.8296};
				angles[]={0.006394445,0,6.2707701};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=539;
			type="Exile_Cosmetic_Knife";
		};
		class Item182
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7366.9907,43.452164,5319.4409};
				angles[]={0,4.6642513,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=540;
			type="Exile_Cosmetic_Shovel";
			atlOffset=0.81223679;
		};
		class Item183
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.8394,43.555134,5319.5293};
				angles[]={0,4.5861773,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=541;
			type="Exile_Cosmetic_SledgeHammer";
		};
		class Item184
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7378.1904,38.560787,5321.1328};
						angles[]={0,0.19270076,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=543;
					type="Exile_Guard_03";
				};
			};
			class Attributes
			{
			};
			id=542;
		};
		class Item185
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7353.8174,43.480968,5305.0972};
				angles[]={0,4.878067,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=562;
			type="Land_PaperBox_open_full_F";
		};
		class Item186
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7350.3315,43.516167,5305.9258};
				angles[]={0,1.5751407,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=563;
			type="Land_PaperBox_closed_F";
		};
		class Item187
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7350.9341,43.480007,5308.7095};
				angles[]={0,1.7119331,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=564;
			type="Land_PaperBox_open_empty_F";
		};
		class Item188
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7354.3125,43.323078,5307.5996};
				angles[]={0,1.7851614,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=565;
			type="Land_Pallet_MilBoxes_F";
		};
		class Item189
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7352.3633,43.079102,5306.8438};
				angles[]={6.2816033,3.5018215,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=579;
			type="Land_CampingChair_V2_F";
			atlOffset=4.0148239;
		};
		class Item190
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7358.9863,43.501865,5303.5283};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=580;
			type="Exile_Cosmetic_UAV";
		};
		class Item191
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.2944,43.763763,5303.7939};
				angles[]={6.2816033,2.7889383,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=581;
			type="Exile_Cosmetic_MG";
		};
		class Item192
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.1782,43.516617,5303.1479};
				angles[]={0,0.17765389,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=582;
			type="Land_PaperBox_closed_F";
		};
		class Item193
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.5483,43.516769,5303.4014};
				angles[]={0,0.16617131,6.2822089};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=583;
			type="Land_PaperBox_closed_F";
		};
		class Item194
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.6797,43.516689,5306.2383};
				angles[]={0,3.275316,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=584;
			type="Land_PaperBox_closed_F";
		};
		class Item195
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.8364,43.516808,5306.7871};
				angles[]={0,3.176887,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=585;
			type="Land_PaperBox_closed_F";
		};
		class Item196
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.7163,43.630756,5304.1509};
				angles[]={6.2816033,2.4862258,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=587;
			type="land_Objects9";
		};
		class Item197
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7355.6758,43.735249,5307.6206};
				angles[]={0,4.8490648,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=588;
			type="CUP_A2_map_for_briefing";
			atlOffset=1.2416611;
		};
		class Item198
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7344.9087,43.091751,5320.415};
				angles[]={0,0,0.0014648439};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=589;
			type="Land_LuggageHeap_03_F";
			atlOffset=0.00088882446;
		};
		class Item199
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7345.7178,43.093002,5319.5078};
				angles[]={0,3.3286796,0.0014648439};
			};
			side="Empty";
			class Attributes
			{
			};
			id=590;
			type="Land_LuggageHeap_01_F";
			atlOffset=4.0200577;
		};
		class Item200
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7348.4307,42.890347,5324.6323};
				angles[]={0,0,0.0014648439};
			};
			side="Empty";
			class Attributes
			{
			};
			id=591;
			type="Land_LuggageHeap_02_F";
			atlOffset=4.0246468;
		};
		class Item201
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7349.8755,43.160862,5326.2832};
				angles[]={0,0,6.2818937};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=592;
			type="Land_LuggageHeap_05_F";
		};
		class Item202
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7345.0542,43.105675,5318.2866};
				angles[]={0,4.821701,6.2819896};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=593;
			type="Land_LuggageHeap_04_F";
			atlOffset=0.024051666;
		};
		class Item203
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7347.2451,43.263527,5322.0283};
				angles[]={0,0.10235088,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=594;
			type="CUP_A2_backpackheap";
			atlOffset=0.12330627;
		};
		class Item204
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7341.3579,43.517212,5322.3809};
				angles[]={0,1.8155656,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=596;
			type="Land_PaperBox_closed_F";
		};
		class Item205
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7342.0532,43.517227,5325.6973};
				angles[]={0,1.9434677,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=597;
			type="Land_PaperBox_closed_F";
		};
		class Item206
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7347.8252,43.48048,5317.4468};
				angles[]={0,0.1935804,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=600;
			type="Land_PaperBox_open_empty_F";
		};
		class Item207
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7347.7402,43.999466,5317.332};
				angles[]={0,1.7042451,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=601;
			type="CUP_A2_backpackheap";
			atlOffset=0.85913086;
		};
		class Item208
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.5503,43.072132,5324.2168};
				angles[]={0,5.0045462,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=602;
			type="Land_ToolTrolley_02_F";
			atlOffset=4.0332794;
		};
		class Item209
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.0942,43.0937,5320.3066};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=603;
			type="Land_ToolTrolley_01_F";
		};
		class Item210
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7374.2832,42.610424,5322.5815};
						angles[]={0,6.1201138,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=605;
					type="Exile_Guard_01";
					atlOffset=0.089168549;
				};
			};
			class Attributes
			{
			};
			id=604;
			atlOffset=0.089168549;
		};
		class Item211
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7346.9355,34.938423,5290.2119};
				angles[]={0,1.666899,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=608;
			type="Land_Slums01_8m";
			atlOffset=0.53342438;
		};
		class Item212
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7347.3838,34.896687,5294.1992};
				angles[]={0,1.6829858,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=609;
			type="Land_Slums01_8m";
			atlOffset=0.49168777;
		};
		class Item213
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7388.8936,27.137768,5351.4248};
				angles[]={0,2.0342271,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=610;
			type="land_Objects116";
			atlOffset=0.25199509;
		};
		class Item214
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7393.873,29.92338,5352.749};
				angles[]={0,0.038978804,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=611;
			type="Exile_Sign_RussianRoulette";
			atlOffset=0.25844574;
		};
		class Item215
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7393.6445,27.170277,5353.7075};
				angles[]={0.0066682254,0,6.2631893};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=612;
			type="Land_MBG_aut_zast";
		};
		class Item216
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7394.4878,25.603682,5353.249};
						angles[]={0,2.7545865,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=614;
					type="Exile_Trader_RussianRoulette";
				};
			};
			class Attributes
			{
			};
			id=613;
		};
		class Item217
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7373.5034,35.390877,5317.3818};
				angles[]={6.2733107,0.068761945,6.2741556};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=615;
			type="Land_Pallet_vertical_F";
		};
		class Item218
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.4146,35.364651,5321.4023};
				angles[]={0.015077679,5.3896613,0.010042505};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=616;
			type="Land_Pallet_vertical_F";
		};
		class Item219
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7341.2754,35.305042,5302.3032};
				angles[]={0,4.3686643,0.0038136009};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=617;
			type="Land_Pallet_vertical_F";
		};
		class Item220
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7378.2656,39.299564,5317.6582};
				angles[]={0.0046193614,3.083235,0.0054482277};
			};
			side="Empty";
			class Attributes
			{
			};
			id=618;
			type="Land_Pallet_vertical_F";
			atlOffset=3.9438171;
		};
		class Item221
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7379.8633,39.307873,5317.7451};
				angles[]={0.0046193614,3.3711202,0.0054482277};
			};
			side="Empty";
			class Attributes
			{
			};
			id=619;
			type="Land_Pallet_vertical_F";
			atlOffset=3.9633408;
		};
		class Item222
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7384.7822,35.294876,5305.2168};
				angles[]={0,1.7830223,0.00084572798};
			};
			side="Empty";
			class Attributes
			{
			};
			id=620;
			type="Land_Pallet_vertical_F";
			atlOffset=0.67849731;
		};
		class Item223
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7380.1655,35.29377,5304.8667};
				angles[]={0,3.318886,0.00048828125};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=621;
			type="Land_Pallet_vertical_F";
		};
		class Item224
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7401.3452,26.222992,5346.4946};
				angles[]={0,2.8798501,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=622;
			type="Land_FuelStation_Feed_F";
		};
		class Item225
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7402.0571,26.817848,5345.127};
				angles[]={0.0016914561,6.0370755,6.2631893};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=628;
			type="Land_Ind_TankSmall";
		};
		class Item226
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7309.5435,35.203495,5350.6338};
				angles[]={0.073202357,0,6.1884694};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=629;
			type="Land_HelipadCivil_F";
		};
	};
};

 

WeissCollageTraderCity.sqf

Spoiler

private _objects = [
	["Exile_Sign_Office",[7338.81,5315.48,42.573],[[-0.985606,0.169058,0],[0,0,1]],[false,false]],
	["MapBoard_seismic_F",[7340.56,5313.04,42.5761],[[-0.853689,-0.520781,-0.00125052],[-0.00146484,0,0.999999]],[false,false]],
	["Exile_Construction_Safe_Preview",[7338.24,5312.26,42.5728],[[-0.186792,-0.982399,-0.000273621],[-0.00146484,0,0.999999]],[false,false]],
	["Land_wall_tin_4",[7376.72,5324.26,34.2759],[[-0.208909,-0.977935,0],[0,0,1]],[false,false]],
	["Land_wall_tin_4_2",[7340.96,5307.8,42.576],[[0.335856,0.941913,0],[0,0,1]],[false,false]],
	//["Exile_Guard_01",[7354,5329.85,39.2598],[[-0.16235,0.986733,0],[0,0,1]],[false,false]],
	//["Exile_Guard_02",[7362.95,5328.58,39.2597],[[0.397755,0.917492,0],[0,0,1]],[false,false]],
	//["Exile_Guard_03",[7342.05,5305.79,42.5743],[[-0.199739,-0.979849,0],[0,0,1]],[false,false]],
	["Land_Pallet_vertical_F",[7340.61,5303.69,34.5333],[[-0.997678,0.0679993,-0.00380476],[-0.00381359,0,0.999993]],[false,false]],
	//["B_G_Soldier_AR_F",[7345.52,5303.5,42.6473],[[0,1,0],[0,0,1]],[false,false]],
	["CUP_sign_leftDirection_new",[7336.36,5302.22,32.8194],[[0.992052,-0.125827,0],[0,0,1]],[false,false]],
	["CUP_A2_smalltable",[7325.81,5297.09,34.7547],[[0.19733,0.980337,0],[0,0,1]],[false,false]],
	//["Exile_ConcreteMixer",[7357.66,5309.82,34.6739],[[-0.983859,0.178935,0.00171312],[-0.000345267,-0.0114718,0.999934]],[false,false]],
	["Land_Factory_Conv1_Main_F",[7377.44,5319.28,35.1447],[[-0.992478,0.12242,0],[0,0,1]],[false,false]],
	["Land_Misc_GContainer_Big",[7386.22,5316.93,33.8405],[[0.990658,-0.136373,0],[0,0,1]],[false,false]],
	["CUP_A2_garbage_paleta",[7386.56,5317.92,35.2061],[[-0.991133,0.132874,0],[0,0,1]],[false,false]],
	["Land_wall_tin_4",[7382.02,5321.44,34.6003],[[-0.989747,0.14283,0],[0,0,1]],[false,false]],
	["Land_wall_tin_4",[7379.1,5317.07,34.6085],[[0.219495,0.975614,0],[0,0,1]],[false,false]],
	["Land_wall_tin_4",[7380.44,5323.59,34.3472],[[-0.171759,-0.985139,0],[0,0,1]],[false,false]],
	["Land_GarbageBags_F",[7380.21,5321.65,34.639],[[0,0.999954,0.00962416],[0.00740504,-0.00962389,0.999926]],[false,false]],
	["Land_Garbage_square5_F",[7385.54,5319.13,33.881],[[0,1,0],[0,0,1]],[false,false]],
	["Land_Garbage_square3_F",[7388.32,5319.58,33.4461],[[0,1,0],[0.183654,0,0.982991]],[false,false]],
	["Land_Garbage_square5_F",[7388.03,5317.04,33.4947],[[0,1,0],[0.183654,0,0.982991]],[false,false]],
	["Land_Garbage_line_F",[7372.14,5319.73,35.2806],[[-0.993194,0.116468,0],[0,0,1]],[false,false]],
	["Land_Garbage_line_F",[7377.19,5319.15,35.2831],[[-0.993194,0.116468,0],[0,0,1]],[false,false]],
	["Land_GarbageContainer_open_F",[7376.98,5323.17,34.683],[[-0.133306,-0.991038,-0.00855114],[0.00740504,-0.00962389,0.999926]],[false,false]],
	["Land_GarbageBin_01_F",[7375.16,5324.81,33.881],[[-0.126251,-0.991998,0],[0,0,1]],[false,false]],
	["Exile_Sign_WasteDump",[7371.06,5324.92,34.2871],[[-0.167864,-0.98581,0],[0,0,1]],[false,false]],
	["Land_Pallet_vertical_F",[7340.34,5302.41,34.5661],[[-0.992858,-0.119239,-0.00378638],[-0.00381359,0,0.999993]],[false,false]],
	["Exile_Sign_TraderCity",[7358.14,5326.62,39.4245],[[-0.150538,-0.988604,0],[0,0,1]],[false,false]],
	["CUP_A2_OA_path_2250",[7332.01,5319.05,33.881],[[0.0062727,0.99998,0],[0,0,1]],[false,false]],
	["CUP_A2_OA_path_3025",[7353.02,5337.31,32.8682],[[-0.742005,-0.658724,0.124544],[0.0416309,0.140142,0.989256]],[false,false]],
	["CUP_A2_OA_path_6",[7344.76,5334.23,33.8433],[[-0.994255,-0.106804,0.00712008],[0,0.0665173,0.997785]],[false,false]],
	["CUP_A2_OA_path_6010",[7337.98,5331.4,33.881],[[0.420468,0.907307,0],[0,0,1]],[false,false]],
	["CUP_A2_OA_path_6konec",[7361.11,5342.25,31.3889],[[-0.73373,-0.635605,0.240095],[0.0995058,0.249037,0.963369]],[false,false]],
	["CUP_A2_OA_path_1575",[7330.66,5308.09,33.9579],[[-0.108975,0.99403,0.00544873],[0.0499373,0,0.998752]],[false,false]],
	["CUP_A2_OA_path_6konec",[7330.94,5295.33,33.9686],[[-0.113394,0.993449,0.0141741],[0.124033,0,0.992278]],[false,false]],
	["Exile_Sign_TraderCity",[7336.26,5298.52,33.881],[[0.98992,-0.141627,0],[0,0,1]],[false,false]],
	["CUP_A2_bagfencecorner",[7364.83,5330.9,39.2571],[[0.149955,0.988693,-0.000341363],[0,0.000345267,1]],[false,false]],
	["CUP_A2_bagfencecorner",[7352.91,5332.6,39.257],[[-0.987614,0.156903,-5.41733e-005],[0,0.000345267,1]],[false,false]],
	["CUP_A2_bagfencelong",[7362.99,5331.46,39.257],[[0.158366,0.98738,-0.00034091],[0,0.000345267,1]],[false,false]],
	["CUP_A2_bagfencelong",[7354.87,5332.73,39.257],[[0.13302,0.991113,-0.000342199],[0,0.000345267,1]],[false,false]],
	["CUP_A2_bagfencelong",[7357.78,5332.36,39.2569],[[0.13302,0.991113,-0.000342199],[0,0.000345267,1]],[false,false]],
	["CUP_A2_bagfencelong",[7360.41,5331.9,39.257],[[0.154601,0.987977,-0.000341116],[0,0.000345267,1]],[false,false]],
	["CUP_A2_bagfencelong",[7364.95,5329,39.2579],[[0.989959,-0.141357,4.88057e-005],[0,0.000345267,1]],[false,false]],
	["CUP_A2_bagfenceend",[7364.71,5327.15,39.2589],[[0.974782,-0.22316,7.70497e-005],[0,0.000345267,1]],[false,false]],
	["CUP_A2_bagfencelong",[7352.39,5330.68,39.258],[[-0.987134,0.159895,-5.52064e-005],[0,0.000345267,1]],[false,false]],
	["CUP_A2_bagfenceend",[7352.13,5328.88,39.259],[[0.989776,-0.142628,4.92447e-005],[0,0.000345267,1]],[false,false]],
	["Land_Slums01_8m",[7348.89,5339.4,34.184],[[0.137366,0.99052,0],[0,0,1]],[false,false]],
	["Land_cargo_house_slum_F",[7324.83,5296.47,34.5889],[[-0.977299,0.211863,0],[0,0,1]],[false,false]],
	["Land_cargo_addon02_V2_F",[7328.81,5293.1,34.9878],[[0.150972,0.988538,0],[0,0,1]],[false,false]],
	["Land_Wreck_Van_F",[7334,5291.78,33.881],[[0,1,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7341.82,5340.4,34.3513],[[0.139276,0.990254,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7334.58,5341.01,34.4598],[[0.137366,0.99052,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7329.2,5331.37,34.964],[[-0.98907,0.147447,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7327.9,5323.81,34.829],[[-0.99018,0.139797,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7326.54,5316.19,34.8026],[[-0.985742,0.168263,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7325.26,5308.83,35.0338],[[-0.987703,0.156339,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7324.04,5301.49,35.3883],[[-0.987898,0.155105,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7323.02,5295.24,35.3271],[[-0.976402,0.215962,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7326.07,5290.76,35.0296],[[-0.197835,-0.980235,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7333.61,5288.96,34.7816],[[-0.281585,-0.959536,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7340.97,5287.35,34.5885],[[-0.150975,-0.988538,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7342.86,5287.01,34.5885],[[-0.148397,-0.988928,0],[0,0,1]],[false,false]],
	//["LADAWreck",[7328.83,5292.59,34.0679],[[-0.94985,-0.312407,0.0136795],[0.0416295,-0.0829729,0.995682]],[false,false]],
	["Land_Wreck_CarDismantled_F",[7339.39,5294.61,33.881],[[0.229502,-0.973308,0],[0,0,1]],[false,false]],
	["Land_Wreck_Truck_F",[7343.68,5292.3,33.881],[[0.908393,-0.418117,0],[0,0,1]],[false,false]],
	["Land_Wreck_Truck_dropside_F",[7343.78,5289.02,33.881],[[0.986759,-0.162196,0],[0,0,1]],[false,false]],
	["Land_Scrap_MRAP_01_F",[7337.69,5291.22,33.881],[[0.605999,-0.795466,0],[0,0,1]],[false,false]],
	["Exile_Sign_Vehicles",[7325.22,5297.51,36.0925],[[-0.189222,-0.981934,0],[0,0,1]],[false,false]],
	["CUP_lobby_case",[7323.65,5294.18,34.7547],[[0.211373,0.977405,0],[0,0,1]],[false,false]],
	["Land_Chair_EP1",[7325.77,5296.35,34.7512],[[0.0949729,-0.99548,0],[0,0,1]],[false,false]],
	//["Exile_Guard_01",[7344.39,5300.75,49.564],[[-0.16235,0.986733,0],[0,0,1]],[false,false]],
	["Exile_Sign_Armory",[7351.89,5303.93,42.8849],[[-0.18775,-0.982217,0],[0,0,1]],[false,false]],
	["Exile_Sign_Equipment",[7350.97,5316.83,42.5907],[[-0.977393,0.211432,0],[0,0,1]],[false,false]],
	["Exile_Sign_Food",[7362.71,5313.5,42.5904],[[0.125927,0.99204,0],[0,0,1]],[false,false]],
	["Exile_Sign_Hardware",[7356.56,5321,42.1679],[[0.980873,-0.194647,0],[0,0,1]],[false,false]],
	["Exile_Sign_Locker",[7348.07,5315.72,42.5867],[[0.165451,0.986218,0],[0,0,1]],[false,false]],
	["Exile_Sign_SpecialOperations",[7359.81,5308.46,42.5816],[[-0.190514,-0.981685,0],[0,0,1]],[false,false]],
	["Exile_Locker",[7349.85,5315.35,42.5894],[[0.103395,0.99464,0.000151457],[-0.00146484,0,0.999999]],[false,false]],
	["Exile_Locker",[7346.2,5315.8,42.5839],[[0.103395,0.99464,0.000151457],[-0.00146484,0,0.999999]],[false,false]],
	["Land_wall_tin_4_2",[7367.35,5318.65,42.5998],[[0.146763,0.989172,0],[0,0,1]],[false,false]],
	["Land_wall_tin_4_2",[7364.84,5319.19,42.6],[[0.233595,0.972334,0],[0,0,1]],[false,false]],
	["Land_wall_tin_4_2",[7357.97,5319.18,42.5983],[[0.997567,-0.0697156,0],[0,0,1]],[false,false]],
	["Land_wall_tin_4_2",[7357.61,5315.33,42.592],[[0.994835,-0.101501,0],[0,0,1]],[false,false]],
	["Land_Icebox_F",[7368.21,5314.33,42.5454],[[0.982865,-0.184329,-0.000291603],[0,-0.00158197,0.999999]],[false,false]],
	//["Land_CashDesk_F",[7367.61,5317.67,42.5983],[[0.987877,-0.155236,-0.000245578],[0,-0.00158197,0.999999]],[false,false]],
	["Fridge_01_closed_F",[7363.9,5313.93,42.5516],[[-0.125663,-0.992072,-0.00156943],[0,-0.00158197,0.999999]],[false,false]],
	["Land_WaterCooler_01_old_F",[7363.02,5313.83,42.5349],[[-0.162025,-0.986785,-0.00156107],[0,-0.00158197,0.999999]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[7368.54,5314.65,43.1427],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[7368.49,5314.47,43.1424],[[0.867583,-0.497292,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[7368.33,5314.67,43.1427],[[0.998793,0.049121,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[7368.3,5314.5,43.1424],[[0.318529,0.947913,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[7368.14,5314.72,43.1427],[[0.0180151,0.999838,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[7368.13,5314.54,43.1424],[[0.950871,-0.309586,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[7368.45,5314.19,43.1405],[[-0.987105,0.160071,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[7368.44,5314.02,43.1376],[[0.986151,-0.165853,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[7368.28,5314.23,43.1413],[[0.558853,-0.829266,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[7368.25,5314.07,43.1474],[[-0.75097,0.660336,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[7368.1,5314.26,43.1462],[[0.83043,0.557124,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[7368.06,5314.12,43.1375],[[0.182452,-0.983215,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[7368.36,5313.8,43.1481],[[-0.80097,0.598705,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[7368.32,5313.65,43.1478],[[-0.174835,-0.984598,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[7368.17,5313.84,43.1481],[[0.522312,-0.852754,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[7368.12,5313.68,43.1478],[[-0.899414,0.437099,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[7367.98,5313.86,43.1481],[[0.0513341,0.998682,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[7367.96,5313.72,43.1544],[[0.795829,-0.605522,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[7359.2,5320.39,43.6781],[[-0.102677,-0.994715,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[7359.77,5320.46,43.6666],[[-0.288439,-0.957498,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[7359.53,5320.44,43.6725],[[0.0623783,-0.998053,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[7360.26,5320.41,43.6847],[[-0.0492015,-0.998789,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[7359.99,5320.41,43.6711],[[0.144006,-0.989577,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[7359.36,5320.53,43.6748],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Cheathas",[7359.29,5320.48,43.473],[[0,0.34202,0.939693],[0,-0.939693,0.34202]],[false,false]],
	["Exile_Cosmetic_Cheathas",[7359.6,5320.5,43.464],[[-0.019669,0.341954,0.939511],[0,-0.939693,0.34202]],[false,false]],
	["Exile_Cosmetic_Cheathas",[7359.88,5320.46,43.451],[[0.140037,0.33865,0.930433],[0,-0.939693,0.34202]],[false,false]],
	["Exile_Cosmetic_Cheathas",[7360.19,5320.38,43.453],[[0,0.34202,0.939693],[0,-0.939693,0.34202]],[false,false]],
	["Exile_Cosmetic_BeefParts",[7359.22,5320.55,43.082],[[-0.0307476,0.341858,0.939248],[0,-0.939693,0.34202]],[false,false]],
	["Exile_Cosmetic_BeefParts",[7359.56,5320.54,43.108],[[0.13326,0.33897,0.931312],[0,-0.939693,0.34202]],[false,false]],
	["Exile_Cosmetic_BeefParts",[7359.87,5320.4,43.105],[[0.115249,0.339741,0.933431],[0,-0.939693,0.34202]],[false,false]],
	["Exile_Cosmetic_BeefParts",[7360.16,5320.38,43.103],[[-0.055159,0.341499,0.938262],[0,-0.939693,0.34202]],[false,false]],
	["Exile_Cosmetic_EMRE",[7359.21,5320.46,42.6803],[[0.873645,-0.486564,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EMRE",[7359.46,5320.4,42.6733],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EMRE",[7359.32,5320.42,42.7325],[[0.592897,0.805278,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EMRE",[7359.74,5320.41,42.6773],[[-0.999479,0.0322696,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EMRE",[7359.9,5320.4,42.6908],[[-0.999745,-0.0225611,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EMRE",[7359.98,5320.39,42.721],[[-0.984037,0.0395562,0.173513],[0.173648,0,0.984808]],[false,false]],
	["Exile_Cosmetic_EMRE",[7360.12,5320.4,42.6903],[[0.98467,-0.174427,0],[0,0,1]],[false,false]],
	["CUP_A2_box_c",[7368.38,5315.61,42.9157],[[0.151799,0.988411,0],[0,0,1]],[false,false]],
	["CUP_A2_box_c",[7368.76,5316.3,42.9157],[[0.994549,-0.104267,0],[0,0,1]],[false,false]],
	["CUP_A2_box_c",[7368.72,5315.85,43.5252],[[0.989744,-0.14285,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[7360.99,5320.31,42.6317],[[-0.996546,-0.0830455,-0.000131376],[0,-0.00158197,0.999999]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[7361.13,5320.23,42.6213],[[0.0149237,0.999887,0.00158179],[0,-0.00158197,0.999999]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[7361.3,5320.2,42.6226],[[-0.904445,-0.42659,-0.000674853],[0,-0.00158197,0.999999]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[7361.45,5320.15,42.6189],[[-0.566175,0.824284,0.00130399],[0,-0.00158197,0.999999]],[false,false]],
	["Exile_Cosmetic_MacasCheese",[7360.99,5320.33,42.9981],[[0.0664758,0.997788,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_MacasCheese",[7361.16,5320.27,42.9977],[[0.690816,0.72303,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_MacasCheese",[7361.3,5320.17,42.9989],[[0.436252,0.899824,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_MacasCheese",[7361.45,5320.11,42.9968],[[0.751732,0.659469,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_DogFood",[7360.98,5320.3,43.7629],[[0.818328,-0.574752,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_DogFood",[7361.14,5320.26,43.7619],[[0.56932,0.822116,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_DogFood",[7361.29,5320.21,43.7608],[[-0.505853,0.86262,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_DogFood",[7361.43,5320.15,43.7593],[[0.0755978,0.997138,0],[0,0,1]],[false,false]],
	["Land_CerealsBox_F",[7365.33,5313.76,43.5711],[[-0.146006,-0.989284,0.000612437],[0.00653245,-0.000345048,0.999979]],[false,false]],
	["Land_CerealsBox_F",[7365.06,5313.79,43.5729],[[0.0235585,-0.999722,-0.000498857],[0.00653245,-0.000345048,0.999979]],[false,false]],
	["Land_CerealsBox_F",[7364.73,5313.8,43.575],[[-0.298818,-0.954309,0.00162276],[0.00653245,-0.000345048,0.999979]],[false,false]],
	["Exile_Cosmetic_CatFood",[7362.1,5320.16,42.628],[[-0.999967,0.00810805,1.28267e-005],[0,-0.00158197,0.999999]],[false,false]],
	["Exile_Cosmetic_CatFood",[7362.28,5320.17,42.6254],[[-0.965788,-0.259332,-0.000410256],[0,-0.00158197,0.999999]],[false,false]],
	["Exile_Cosmetic_CatFood",[7362.44,5320.1,42.624],[[-0.528073,0.849198,0.00134341],[0,-0.00158197,0.999999]],[false,false]],
	["Exile_Cosmetic_CatFood",[7362.62,5320.08,42.629],[[-0.867934,0.496679,0.000785732],[0,-0.00158197,0.999999]],[false,false]],
	["Exile_Cosmetic_Surstromming",[7362.13,5320.15,42.9999],[[-0.532813,-0.846233,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Surstromming",[7362.31,5320.18,43.0061],[[-0.963343,0.268273,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Surstromming",[7362.46,5320.1,43.0001],[[-0.791755,0.610839,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Surstromming",[7362.65,5320.09,42.9974],[[-0.514496,-0.857493,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_InstantCoffee",[7362.2,5320.15,43.7442],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_InstantCoffee",[7362.51,5320.11,43.7563],[[0.268881,0.963173,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Moobar",[7365.32,5313.84,43.2193],[[0.98538,-0.170369,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Moobar",[7365.08,5313.84,43.2051],[[0.998931,-0.0462282,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Moobar",[7364.8,5313.86,43.2107],[[0.940153,-0.340754,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CockONut",[7365.37,5313.82,42.8916],[[-0.927299,-0.374322,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CockONut",[7365.15,5313.78,42.8986],[[-0.227092,-0.973873,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CockONut",[7364.96,5313.96,42.9003],[[-0.150374,-0.988629,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CockONut",[7364.78,5313.83,42.901],[[-0.582563,-0.812785,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine01",[7360.53,5317.03,43.3638],[[0.827364,-0.561666,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine02",[7360.89,5316.92,43.3655],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine03",[7362.65,5317,43.3631],[[-0.999816,-0.0191743,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine04",[7362.85,5316.42,43.3689],[[0.180652,-0.983547,0],[0,0,1]],[false,false]],
	["Computer",[7342.78,5311.71,43.5076],[[-0.798781,0.601622,0],[0,0,1]],[false,false]],
	//["Land_Workbench_01_F",[7369.29,5322.73,42.5733],[[0.981146,-0.192958,-0.0109482],[0.0124149,0.00639391,0.999902]],[false,false]],
	["Land_CarBattery_02_F",[7366.89,5324.47,42.5991],[[-0.568873,-0.822333,0.0123216],[0.0124149,0.00639391,0.999902]],[false,false]],
	["Land_CarBattery_01_F",[7366.33,5324.52,42.6058],[[0,0.99998,-0.0063944],[0.0124149,0.00639391,0.999902]],[false,false]],
	["Exile_Cosmetic_Axe",[7366.05,5319.79,43.3769],[[-0.974473,-0.224507,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Foolbox",[7369.58,5323.73,43.3801],[[0,0.99998,-0.0063944],[0.0124149,0.00639391,0.999902]],[false,false]],
	["Exile_Cosmetic_Knife",[7369.16,5321.83,43.3975],[[0,0.99998,-0.0063944],[0.0124149,0.00639391,0.999902]],[false,false]],
	["Exile_Cosmetic_Shovel",[7366.99,5319.44,43.4132],[[-0.998842,-0.0481191,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_SledgeHammer",[7367.84,5319.53,43.433],[[-0.992046,-0.125877,0],[0,0,1]],[false,false]],
	//["Exile_Guard_03",[7378.19,5321.13,38.5608],[[0.19151,0.981491,0],[0,0,1]],[false,false]],
	["Land_PaperBox_open_full_F",[7353.82,5305.1,42.873],[[-0.986307,0.164921,0],[0,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[7350.33,5305.93,42.873],[[0.999991,-0.00434437,0],[0,0,1]],[false,false]],
	["Land_PaperBox_open_empty_F",[7350.93,5308.71,42.873],[[0.990057,-0.140669,0],[0,0,1]],[false,false]],
	["Land_Pallet_MilBoxes_F",[7354.31,5307.6,42.873],[[0.977112,-0.212727,0],[0,0,1]],[false,false]],
	//["Land_CampingChair_V2_F",[7352.36,5306.84,42.5726],[[-0.352488,-0.935815,-0.00148043],[0,-0.00158197,0.999999]],[false,false]],
	["Exile_Cosmetic_UAV",[7358.99,5303.53,43.356],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_MG",[7359.29,5303.79,42.5749],[[0.34539,-0.938458,-0.00148461],[0,-0.00158197,0.999999]],[false,false]],
	["Land_PaperBox_closed_F",[7365.18,5303.15,42.8734],[[0.176721,0.984261,-0.000149459],[0.000845734,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[7362.55,5303.4,42.8736],[[0.165408,0.986225,-0.000161502],[0.000976388,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[7365.68,5306.24,42.8735],[[-0.133325,-0.991072,0.000112758],[0.000845734,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[7362.84,5306.79,42.8736],[[-0.035287,-0.999377,2.98435e-005],[0.000845734,0,1]],[false,false]],
	["land_Objects9",[7360.72,5304.15,42.5748],[[0.60945,-0.792823,-0.00125422],[0,-0.00158197,0.999999]],[false,false]],
	["CUP_A2_map_for_briefing",[7355.68,5307.62,43.8209],[[-0.990674,0.136251,0],[0,0,1]],[false,false]],
	["Land_LuggageHeap_03_F",[7344.91,5320.42,42.5818],[[0,1,0],[-0.00146484,0,0.999999]],[false,false]],
	["Land_LuggageHeap_01_F",[7345.72,5319.51,42.5794],[[-0.185997,-0.98255,-0.000272457],[-0.00146484,0,0.999999]],[false,false]],
	["Land_LuggageHeap_02_F",[7348.43,5324.63,42.5841],[[0,1,0],[-0.00146484,0,0.999999]],[false,false]],
	["Land_LuggageHeap_05_F",[7349.88,5326.28,42.7495],[[0,1,0],[0.00129158,0,0.999999]],[false,false]],
	["Land_LuggageHeap_04_F",[7345.05,5318.29,42.6056],[[-0.994031,0.109095,0.0011886],[0.00119573,0,0.999999]],[false,false]],
	["CUP_A2_backpackheap",[7347.25,5322.03,42.9968],[[0.102172,0.994767,-7.0528e-005],[0.000690285,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[7341.36,5322.38,42.874],[[0.970193,-0.242332,0],[0,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[7342.05,5325.7,42.874],[[0.931358,-0.364105,0],[0,0,1]],[false,false]],
	["Land_PaperBox_open_empty_F",[7347.83,5317.45,42.8734],[[0.192374,0.981322,0],[0,0,1]],[false,false]],
	["CUP_A2_backpackheap",[7347.74,5317.33,43.7326],[[0.991109,-0.133053,0],[0,0,1]],[false,false]],
	["Land_ToolTrolley_02_F",[7367.55,5324.22,42.5926],[[-0.957625,0.288019,0],[0,0,1]],[false,false]],
	["Land_ToolTrolley_01_F",[7364.09,5320.31,42.6016],[[0,1,0],[0,0,1]],[false,false]],
	//["Exile_Guard_01",[7374.28,5322.58,42.6104],[[-0.16235,0.986733,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7346.94,5290.21,34.4144],[[0.995386,-0.0959548,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[7347.38,5294.2,34.3727],[[0.993713,-0.111954,0],[0,0,1]],[false,false]],
	["land_Objects116",[7388.89,5351.42,25.9927],[[0.894524,-0.44702,0],[0,0,1]],[false,false]],
	["Exile_Sign_RussianRoulette",[7393.87,5352.75,28.8823],[[0.0389689,0.99924,0],[0,0,1]],[false,false]],
	["Land_MBG_aut_zast",[7393.64,5353.71,25.6894],[[0,0.999978,-0.00666818],[0.0199947,0.00666684,0.999778]],[false,false]],
	["Land_Pallet_vertical_F",[7373.5,5317.38,34.6556],[[0.068705,0.997594,0.00923103],[0.00902981,-0.00987436,0.99991]],[false,false]],
	["Land_Pallet_vertical_F",[7364.41,5321.4,34.6294],[[-0.779246,0.62648,-0.0172733],[-0.0100423,0.0150763,0.999836]],[false,false]],
	["Land_Pallet_vertical_F",[7341.28,5302.3,34.5697],[[-0.941499,-0.336996,-0.00359052],[-0.00381359,0,0.999993]],[false,false]],
	["Land_Pallet_vertical_F",[7378.27,5317.66,38.5642],[[0.0583236,-0.998286,0.00492924],[-0.0054482,0.00461928,0.999974]],[false,false]],
	["Land_Pallet_vertical_F",[7379.86,5317.75,38.5725],[[-0.227514,-0.973769,0.00325865],[-0.0054482,0.00461928,0.999974]],[false,false]],
	["Land_Pallet_vertical_F",[7384.78,5305.22,34.5595],[[0.977564,-0.210636,0.000826754],[-0.000845728,0,1]],[false,false]],
	["Land_Pallet_vertical_F",[7380.17,5304.87,34.5584],[[-0.176366,-0.984325,-8.61162e-005],[-0.000488281,0,1]],[false,false]],
	["Land_FuelStation_Feed_F",[7401.35,5346.49,25.4731],[[0.258764,-0.965941,0],[0,0,1]],[false,false]],
	["Land_Ind_TankSmall",[7402.06,5345.13,25.4605],[[-0.243584,0.969874,0.00323088],[0.0199947,0.00169112,0.999799]],[false,false]],
	["Land_HelipadCivil_F",[7309.54,5350.63,35.2035],[[0,0.997322,-0.073137],[0.0945745,0.0728092,0.992852]],[false,false]]
];
{
	private _object = (_x select 0) createVehicle [0,0,0];
	_object setPosASL (_x select 1);
	_object setVectorDirAndUp (_x select 2);
	_object enableSimulationGlobal ((_x select 3) select 0);
	_object allowDamage ((_x select 3) select 1);
} forEach _objects;

 

WeissCollageTraders.sqf

Spoiler

    ///////////////////////////////////////////////////////////////////////////
    // Russian Roulette
    ///////////////////////////////////////////////////////////////////////////
    [
        "Exile_Trader_RussianRoulette",
        "",
        "GreekHead_A3_01",
        ["HubStandingUA_move1", "HubStandingUA_move2", "HubStandingUA_idle1", "HubStandingUA_idle2", "HubStandingUA_idle3"],
        [7394.49,5353.25,0.00177002],
        157.826
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Hardware Trader
    ///////////////////////////////////////////////////////////////////////////
    _workBench = "Land_Workbench_01_F" createVehicleLocal [0,0,0];
    _workBench setDir 89.6255;
    _workBench setPosATL [7369.29,5322.73,8.70644];

    _trader = 
    [
        "Exile_Trader_Hardware",
        "Exile_Trader_Hardware",
        "WhiteHead_17",
        ["InBaseMoves_sitHighUp1"],
        [0, 0, -0.5],
        170,
        _workBench
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Fast Food Trader
    ///////////////////////////////////////////////////////////////////////////
    _cashDesk = "Land_CashDesk_F" createVehicleLocal [0,0,0];
    _cashDesk setDir 100.26;
    _cashDesk setPosATL [7367.61,5317.67,8.71568];

    _microwave = "Land_Microwave_01_F" createVehicleLocal [0,0,0];
    _cashDesk disableCollisionWith _microwave;         
    _microwave disableCollisionWith _cashDesk; 
    _microwave attachTo [_cashDesk, [-0.6, 0.2, 1.1]];

    _ketchup = "Land_Ketchup_01_F" createVehicleLocal [0,0,0];
    _cashDesk disableCollisionWith _ketchup;         
    _ketchup disableCollisionWith _cashDesk; 
    _ketchup attachTo [_cashDesk, [-0.6, 0, 1.1]];

    _mustard = "Land_Mustard_01_F" createVehicleLocal [0,0,0];
    _cashDesk disableCollisionWith _mustard;         
    _mustard disableCollisionWith _cashDesk; 
    _mustard attachTo [_cashDesk, [-0.5, -0.05, 1.1]];

    _trader = 
    [
        "Exile_Trader_Food",
        "Exile_Trader_Food",
        "GreekHead_A3_01",
        ["InBaseMoves_table1"],
        [0.1, 0.5, 0.2],
        170,
        _cashDesk
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Armory Trader
    ///////////////////////////////////////////////////////////////////////////
    _chair = "Land_CampingChair_V2_F" createVehicleLocal [0,0,0];
    _chair setDir 187.137;    //10.799 - 187.137 
    _chair setPosATL [7352.36,5306.84,8.70959];

    _trader = 
    [
        "Exile_Trader_Armory",
        "Exile_Trader_Armory",
        "PersianHead_A3_02",
        ["InBaseMoves_SittingRifle1"],
        [0, -0.15, -0.45],
        170,
        _chair
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Equipment Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_Equipment",
        "Exile_Trader_Equipment",
        "WhiteHead_19",
        ["InBaseMoves_Lean1"],
        [7350.80,5322.16,8.70959],
        183.897
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Specops Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_SpecialOperations",
        "Exile_Trader_SpecialOperations",
        "AfricanHead_02",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [7357.54,5306.24,8.69785],
        334.051
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Office Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_Office",
        "Exile_Trader_Office",
        "GreekHead_A3_04",
        ["HubBriefing_scratch", "HubBriefing_stretch", "HubBriefing_think", "HubBriefing_lookAround1", "HubBriefing_lookAround2"],
        [7341.77,5311.3,8.69877],
        31.6477
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Waste Dump Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_WasteDump",
        "Exile_Trader_WasteDump",
        "GreekHead_A3_01",
        ["HubStandingUA_move1", "HubStandingUA_move2", "HubStandingUA_idle1", "HubStandingUA_idle2", "HubStandingUA_idle3"],
        [7373.41,5324,0.801449],
        0
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Vehicle Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_Vehicle",
        "Exile_Trader_Vehicle",
        "WhiteHead_11",
        ["InBaseMoves_repairVehicleKnl", "InBaseMoves_repairVehiclePne"],
        [7327.55,5293.98,0.00143433],
        123
    ]
    call ExileClient_object_trader_create;

    _carWreck = "LADAWreck" createVehicleLocal [0,0,0];
    _carWreck setDir 47.2728;
    _carWreck setPosATL [7328.83,5292.59, 0.0208359];

    ///////////////////////////////////////////////////////////////////////////
    // Guard - Entrance path side
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_01",
        "",
        "WhiteHead_17",
        ["InBaseMoves_patrolling1","InBaseMoves_patrolling2"],
        [7354,5329.85,5.37856],
        356.381
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard - Entrance waste side
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_02",
        "",
        "WhiteHead_03",
        ["InBaseMoves_patrolling2","InBaseMoves_patrolling1"],
        [7362.95,5328.58,5.37836],
        14.3247
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard - Behind office trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_03",
        "",
        "AfricanHead_03",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [7342.05,5305.79,8.69377],
        188.602
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard - Top of stairwell
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_01",
        "",
        "WhiteHead_17",
        ["InBaseMoves_patrolling1","InBaseMoves_patrolling2"],
        [7344.39,5300.75,15.683],
        183.364
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard - Above waste trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_03",
        "",
        "AfricanHead_03",
        ["InBaseMoves_patrolling1","InBaseMoves_patrolling2"],
        [7378.19,5321.13,4.67978],
        13.5269
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard - Behind hardware trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_01",
        "",
        "WhiteHead_17",
        ["InBaseMoves_patrolling2","InBaseMoves_patrolling1"],
        [7374.28,5322.58,8.6428],
        11.8113
    ]
    call ExileClient_object_trader_create;

 

Chardak Resort

Photos

Spoiler

20160712170900_1.jpg

20160712170909_1.jpg

20160712170921_1.jpg

20160712170930_1.jpg

20160712170944_1.jpg

20160712171002_1.jpg

20160712171014_1.jpg

20160712171032_1.jpg

20160712171055_1.jpg

Eden Editor Code (May be additional items that are commented out in final code)

Spoiler

version=52;
class EditorData
{
	moveGridStep=1;
	angleGridStep=0.2617994;
	scaleGridStep=1;
	autoGroupingDist=10;
	toggles=1;
	class ItemIDProvider
	{
		nextID=421;
	};
	class Camera
	{
		pos[]={10088.817,72.756042,7868.0273};
		dir[]={0.50011462,-0.092901945,0.86110157};
		up[]={0.046868645,0.99541557,0.080707535};
		aside[]={0.86478913,-8.9152018e-006,-0.50227898};
	};
};
binarizationWanted=0;
addons[]=
{
	"A3_Structures_F_Walls",
	"A3_Structures_F_Wrecks",
	"CUP_Misc3_Config",
	"exile_client",
	"SAR_ru_architecture",
	"A3_Structures_F_Ind_Factory",
	"CUP_A1_EditorObjects",
	"A3_Structures_F_Heli_Furniture",
	"CUP_CAMisc",
	"CUP_A2_EditorObjects",
	"A3_Structures_F_EPC_Civ_InfoBoards",
	"A3_Structures_F_Heli_Items_Electronics",
	"CUP_Editor_Structures_Config",
	"A3_Structures_F_Furniture",
	"A3_Structures_F_Bootcamp_Items_Electronics",
	"A3_Structures_F_EPA_Mil_Scrapyard",
	"A3_Structures_F_EPB_Items_Luggage",
	"A3_Structures_F_Civ_Constructions",
	"A3_Structures_F_Heli_Civ_Constructions",
	"A3_Structures_F_Items_Electronics",
	"A3_Structures_F_Items_Tools",
	"A3_Structures_F_Kart_Civ_SportsGrounds",
	"CUP_CWA_Misc",
	"A3_Structures_F_EPA_Civ_Constructions",
	"CUP_Zakladna_DBE1",
	"CUP_Buildings_Config",
	"CUP_CWA_Buildings_C",
	"CUP_ibr_plants",
	"A3_Structures_F_Civ_Garbage",
	"A3_Structures_F_Heli_Civ_Garbage",
	"A3_Roads_F",
	"CUP_Editor_Plants_Config",
	"A3_Structures_F_Civ_Camping",
	"A3_Structures_F_Mil_Helipads"
};
class AddonsMetaData
{
	class List
	{
		items=24;
		class Item0
		{
			className="A3_Structures_F";
			name="Arma 3 - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item1
		{
			className="A3_Structures_F_Wrecks";
			name="Arma 3 - Vehicle Wrecks";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item2
		{
			className="CUP_Misc3_Config";
			name="CUP_Misc3_Config";
		};
		class Item3
		{
			className="exile_client";
			name="exile_client";
		};
		class Item4
		{
			className="SAR_ru_architecture";
			name="SAR_ru_architecture";
		};
		class Item5
		{
			className="A3_Structures_F_Ind";
			name="Arma 3 - Industrial Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item6
		{
			className="CUP_A1_EditorObjects";
			name="CUP_A1_EditorObjects";
			author="NeoArmageddon";
		};
		class Item7
		{
			className="A3_Structures_F_Heli";
			name="Arma 3 Helicopters - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item8
		{
			className="CUP_CAMisc";
			name="CUP_CAMisc";
		};
		class Item9
		{
			className="CUP_A2_EditorObjects";
			name="CUP_A2_EditorObjects";
			author="MemphisBelle";
		};
		class Item10
		{
			className="A3_Structures_F_EPC";
			name="Arma 3 Win Episode - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item11
		{
			className="CUP_Editor_Structures_Config";
			name="CUP_Editor_Structures_Config";
		};
		class Item12
		{
			className="A3_Structures_F_Bootcamp";
			name="Arma 3 Bootcamp Update - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item13
		{
			className="A3_Structures_F_EPA";
			name="Arma 3 Survive Episode - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item14
		{
			className="A3_Structures_F_EPB";
			name="Arma 3 Adapt Episode - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item15
		{
			className="A3_Structures_F_Kart";
			name="Arma 3 Karts - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item16
		{
			className="CUP_CWA_Misc";
			name="CUP_CWA_Misc";
		};
		class Item17
		{
			className="CUP_Zakladna_DBE1";
			name="CUP_Zakladna_DBE1";
		};
		class Item18
		{
			className="CUP_Buildings_Config";
			name="CUP_Buildings_Config";
		};
		class Item19
		{
			className="CUP_CWA_Buildings_C";
			name="CUP_CWA_Buildings_C";
		};
		class Item20
		{
			className="CUP_ibr_plants";
			name="CUP_ibr_plants";
		};
		class Item21
		{
			className="A3_Roads_F";
			name="Arma 3 - Roads";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item22
		{
			className="CUP_Editor_Plants_Config";
			name="CUP_Editor_Plants_Config";
		};
		class Item23
		{
			className="A3_Structures_F_Mil";
			name="Arma 3 - Military Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
	};
};
randomSeed=3613756;
class ScenarioData
{
	author="Mr Health And Safety";
};
class Mission
{
	class Intel
	{
		timeOfChanges=1800.0002;
		startWeather=0;
		startWind=0.1;
		startWaves=0.1;
		forecastWeather=0;
		forecastWind=0.1;
		forecastWaves=0.1;
		forecastLightnings=0.1;
		rainForced=1;
		year=2001;
		month=3;
		day=5;
		hour=10;
		startFogDecay=0.014;
		forecastFogDecay=0.014;
	};
	class Entities
	{
		items=251;
		class Item0
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10178.226,66.141861,7934.4238};
				angles[]={0,2.1080303,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=0;
			type="Land_Slums01_8m";
			atlOffset=-0.27391052;
		};
		class Item1
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10100.226,68.168922,7900.6011};
				angles[]={0,0.95121461,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=1;
			type="Land_Slums01_8m";
			atlOffset=0.47762299;
		};
		class Item2
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10095.91,68.325264,7907.3164};
				angles[]={0,1.0648203,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=2;
			type="Land_Slums01_8m";
			atlOffset=0.18631744;
		};
		class Item3
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10093.171,68.728073,7914.6782};
				angles[]={0,1.3800383,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=3;
			type="Land_Slums01_8m";
			atlOffset=0.54486847;
		};
		class Item4
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10092.776,68.205917,7922.5322};
				angles[]={0,1.6883423,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=4;
			type="Land_Slums01_8m";
			atlOffset=0.2961731;
		};
		class Item5
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10093.147,68.274918,7930.4438};
				angles[]={0,1.5738358,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=5;
			type="Land_Slums01_8m";
			atlOffset=0.48625946;
		};
		class Item6
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10093.379,68.430328,7938.4067};
				angles[]={0,1.6524661,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=6;
			type="Land_Slums01_8m";
			atlOffset=0.53273773;
		};
		class Item7
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10093.927,68.792061,7946.3589};
				angles[]={0,1.645563,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=7;
			type="Land_Slums01_8m";
			atlOffset=0.49855042;
		};
		class Item8
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10094.519,69.132133,7954.2681};
				angles[]={0,1.663753,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=8;
			type="Land_Slums01_8m";
			atlOffset=-0.083351135;
		};
		class Item9
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10094.991,69.83007,7958.3438};
				angles[]={0,4.7890086,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=9;
			type="Land_Slums01_8m";
			atlOffset=-0.00032043457;
		};
		class Item10
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10094.349,70.394012,7962.2021};
				angles[]={0,1.4237877,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=10;
			type="Land_Slums01_8m";
			atlOffset=-0.23802185;
		};
		class Item11
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10093.949,71.188492,7966.3682};
				angles[]={0,4.5922213,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=11;
			type="Land_Slums01_8m";
			atlOffset=0.13877106;
		};
		class Item12
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10094.13,72.087433,7974.0161};
				angles[]={0,4.8878365,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=12;
			type="Land_Slums01_8m";
			atlOffset=0.52724457;
		};
		class Item13
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10096.757,72.069649,7981.3022};
				angles[]={0,5.2468624,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=13;
			type="Land_Slums01_8m";
			atlOffset=0.21734619;
		};
		class Item14
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10102.589,72.085167,7985.5874};
				angles[]={0,6.0426645,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=14;
			type="Land_Slums01_8m";
			atlOffset=0.53466797;
		};
		class Item15
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10110.376,72.11422,7986.4106};
				angles[]={0,0.059525695,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=15;
			type="Land_Slums01_8m";
			atlOffset=0.44120026;
		};
		class Item16
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10117.02,72.115829,7988.9766};
				angles[]={0,5.5193429,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=17;
			type="Land_Slums01_8m";
			atlOffset=0.59162903;
		};
		class Item17
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10122.73,72.385963,7994.1147};
				angles[]={0,5.6233306,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=19;
			type="Land_Slums01_8m";
			atlOffset=-0.30895233;
		};
		class Item18
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10180.259,66.89444,7937.9092};
				angles[]={0,2.1080303,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=24;
			type="Land_Slums01_8m";
			atlOffset=-1.0878448;
		};
		class Item19
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10170.397,66.327415,7920.6489};
				angles[]={0,5.4082317,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=25;
			type="Land_Slums01_8m";
			atlOffset=0.41870117;
		};
		class Item20
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.525,66.53434,7914.4336};
				angles[]={0,5.3615079,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=26;
			type="Land_Slums01_8m";
			atlOffset=0.00026702881;
		};
		class Item21
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.286,67.063065,7910.8882};
				angles[]={0,2.1080303,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=27;
			type="Land_Slums01_8m";
			atlOffset=0.0040740967;
		};
		class Item22
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10161.618,67.602043,7907.751};
				angles[]={0,5.2639513,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=28;
			type="Land_Slums01_8m";
			atlOffset=-0.041061401;
		};
		class Item23
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10158.648,68.714287,7904.7153};
				angles[]={0,2.3092179,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=29;
			type="Land_Slums01_8m";
			atlOffset=-0.05431366;
		};
		class Item24
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10156.515,69.320984,7901.9194};
				angles[]={0,5.4257441,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=30;
			type="Land_Slums01_8m";
			atlOffset=0.23171234;
		};
		class Item25
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10151.406,69.503159,7896.0894};
				angles[]={0,5.4701934,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=31;
			type="Land_Slums01_8m";
			atlOffset=0.14863586;
		};
		class Item26
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10111.711,68.38607,7889.9771};
				angles[]={0,3.5319467,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=32;
			type="Land_Slums01_8m";
			atlOffset=0.53540802;
		};
		class Item27
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10119.263,68.384186,7888.3804};
				angles[]={0,3.1791308,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=33;
			type="Land_Slums01_8m";
			atlOffset=0.53308105;
		};
		class Item28
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10127.007,68.398422,7888.3423};
				angles[]={0,3.1532881,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=34;
			type="Land_Slums01_8m";
			atlOffset=0.21458435;
		};
		class Item29
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10131.169,69.12249,7888.0576};
				angles[]={0,0.053823978,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=35;
			type="Land_Slums01_8m";
			atlOffset=0.41176605;
		};
		class Item30
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10138.618,69.427307,7888.3618};
				angles[]={0,6.18084,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=36;
			type="Land_Slums01_8m";
			atlOffset=0.091445923;
		};
		class Item31
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10102.014,68.489532,7893.8403};
				angles[]={0.048457891,0,6.2182555};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=41;
			type="Land_Wreck_Van_F";
		};
		class Item32
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10190.438,65.102371,7920.3774};
				angles[]={6.2047482,1.0184151,6.256588};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=43;
			type="Land_Wreck_Truck_dropside_F";
			atlOffset=3.8146973e-006;
		};
		class Item33
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10099.759,68.786758,7878.8027};
				angles[]={0.017135333,5.488771,6.2640328};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=45;
			type="Land_Wreck_Offroad_F";
		};
		class Item34
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10176.125,66.748817,7922.4492};
				angles[]={6.2690926,0,6.2129374};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=46;
			type="Land_Wreck_Hunter_F";
		};
		class Item35
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10097.602,68.295654,7878.2935};
				angles[]={0,3.596015,6.2568154};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=47;
			type="Land_CncBlock_Stripes";
		};
		class Item36
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10100.59,68.063347,7890.6509};
				angles[]={0.030304115,3.596015,6.2363801};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=49;
			type="Land_CncBlock_Stripes";
		};
		class Item37
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10190.164,64.226402,7918.4707};
				angles[]={6.2405028,2.3590045,6.256588};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=50;
			type="Land_CncBlock_Stripes";
			atlOffset=-3.8146973e-006;
		};
		class Item38
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10179.055,65.075996,7923.355};
				angles[]={6.2550058,2.0628874,6.2269683};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=51;
			type="Land_CncBlock_Stripes";
		};
		class Item39
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10156.758,67.535759,7937.4849};
				angles[]={6.2455444,6.0471358,6.275465};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=57;
			type="Land_Wreck_CarDismantled_F";
			atlOffset=0.07485199;
		};
		class Item40
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10124.829,76.440773,7981.8745};
						angles[]={0,0.0034013474,0};
					};
					side="Independent";
					flags=3;
					class Attributes
					{
					};
					id=79;
					type="Exile_Trader_Armory";
					atlOffset=3.4986191;
				};
			};
			class Attributes
			{
			};
			id=78;
			atlOffset=3.4986191;
		};
		class Item41
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10108.71,76.717712,7975.415};
						angles[]={0,5.0985012,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=81;
					type="Exile_Trader_Equipment";
					atlOffset=0.0009765625;
				};
			};
			class Attributes
			{
			};
			id=80;
			atlOffset=0.0009765625;
		};
		class Item42
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10159.589,73.916298,7974.5005};
						angles[]={0,1.9919746,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=83;
					type="Exile_Trader_Food";
				};
			};
			class Attributes
			{
			};
			id=82;
		};
		class Item43
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10102.976,76.730736,7973.9399};
						angles[]={0,1.8493069,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=85;
					type="Exile_Trader_Hardware";
				};
			};
			class Attributes
			{
			};
			id=84;
		};
		class Item44
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10150.116,72.336952,7978.25};
						angles[]={0,3.6026707,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=87;
					type="Exile_Trader_Office";
				};
			};
			class Attributes
			{
			};
			id=86;
		};
		class Item45
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10140.588,66.666267,7925.7412};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=89;
					type="Exile_Trader_RussianRoulette";
					atlOffset=-0.0088272095;
				};
			};
			class Attributes
			{
			};
			id=88;
			atlOffset=-0.0088272095;
		};
		class Item46
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10128.627,76.42363,7985.2393};
						angles[]={0,4.9602008,0};
					};
					side="Independent";
					flags=3;
					class Attributes
					{
					};
					id=91;
					type="Exile_Trader_SpecialOperations";
					atlOffset=2.667305;
				};
			};
			class Attributes
			{
			};
			id=90;
			atlOffset=2.667305;
		};
		class Item47
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10114.642,66.979683,7927.6089};
						angles[]={0,2.2346489,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=93;
					type="Exile_Trader_VehicleCustoms";
				};
			};
			class Attributes
			{
			};
			id=92;
		};
		class Item48
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10154.95,66.614403,7938.6914};
						angles[]={0,4.0831628,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=95;
					type="Exile_Trader_Vehicle";
					atlOffset=0.0028610229;
				};
			};
			class Attributes
			{
			};
			id=94;
			atlOffset=0.0028610229;
		};
		class Item49
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10147.5,66.909676,7949.2998};
						angles[]={0,3.4145479,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=97;
					type="Exile_Trader_WasteDump";
				};
			};
			class Attributes
			{
			};
			id=96;
		};
		class Item50
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10099.021,67.404251,7947.7158};
				angles[]={6.2055264,0.57182181,0.0069053532};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=98;
			type="Exile_ConcreteMixer";
			atlOffset=-7.6293945e-006;
		};
		class Item51
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10127.515,73.665863,7978.71};
				angles[]={0,0.39267877,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=102;
			type="Exile_Sign_Armory";
			atlOffset=1.9264297;
		};
		class Item52
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10120.648,77.663559,7984.4351};
				angles[]={0,1.9658684,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=103;
			type="Exile_Sign_Armory_Small";
		};
		class Item53
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.113,72.914215,7970.5332};
				angles[]={0,0.40339312,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=104;
			type="Exile_Sign_Equipment";
			atlOffset=0.88269806;
		};
		class Item54
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10101.115,77.834404,7980.77};
				angles[]={0,1.9681445,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=105;
			type="Exile_Sign_Equipment_Small";
			atlOffset=5.6830292;
		};
		class Item55
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10155.74,75.404709,7969.1528};
				angles[]={0,0.3850719,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=106;
			type="Exile_Sign_Food";
			atlOffset=0.28015137;
		};
		class Item56
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.308,74.537056,7968.8994};
				angles[]={0,0.39756748,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=107;
			type="Exile_Sign_Food_Small";
			atlOffset=2.3955841;
		};
		class Item57
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.109,73.954292,7970.5332};
				angles[]={0,0.4064354,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=108;
			type="Exile_Sign_Hardware";
			atlOffset=1.9227753;
		};
		class Item58
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10099.217,77.893814,7976.3022};
				angles[]={0,1.969292,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=109;
			type="Exile_Sign_Hardware_Small";
		};
		class Item59
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10108.568,67.889336,7913.6709};
				angles[]={0,3.9583445,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=110;
			type="Exile_Sign_Locker";
		};
		class Item60
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10138.98,71.878502,7965.6689};
				angles[]={0,0.40535578,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=111;
			type="Exile_Sign_Office";
			atlOffset=2.4602356;
		};
		class Item61
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10146.831,72.927864,7976.7632};
				angles[]={0,1.9669641,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=112;
			type="Exile_Sign_Office_Small";
			atlOffset=0.96465302;
		};
		class Item62
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10141.081,68.108818,7924.9292};
				angles[]={0,2.708919,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=113;
			type="Exile_Sign_RussianRoulette";
		};
		class Item63
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10127.507,72.655289,7978.7017};
				angles[]={0,0.39599565,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=115;
			type="Exile_Sign_SpecialOperations";
			atlOffset=0.91585541;
		};
		class Item64
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10122.527,77.588554,7988.9126};
				angles[]={0,1.972291,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=116;
			type="Exile_Sign_SpecialOperations_Small";
			atlOffset=3.5732498;
		};
		class Item65
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10113.739,68.59111,7928.7368};
				angles[]={0,5.5521517,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=117;
			type="Exile_Sign_VehicleCustoms";
			atlOffset=0.41011047;
		};
		class Item66
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10158.311,67.963951,7940.6738};
				angles[]={0,1.3743695,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=119;
			type="Exile_Sign_Vehicles";
		};
		class Item67
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10141.178,68.344986,7952.5996};
				angles[]={0,0.33240485,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=121;
			type="Exile_Sign_WasteDump";
			atlOffset=0.027877808;
		};
		class Item68
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10107.608,67.415619,7910.6138};
				angles[]={0,2.370332,6.2814941};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=125;
			type="Exile_Locker";
		};
		class Item69
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.153,67.418076,7909.1758};
				angles[]={0,2.370332,6.2814941};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=129;
			type="Exile_Locker";
		};
		class Item70
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10102.608,67.424072,7911.3462};
				angles[]={0,3.9524081,6.2814941};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=130;
			type="Exile_Locker";
		};
		class Item71
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10103.654,67.422302,7910.1357};
				angles[]={0,3.93993,6.2814941};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=131;
			type="Exile_Locker";
		};
		class Item72
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10143.418,67.81144,7924.7295};
				angles[]={0,1.1769761,6.2807198};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=133;
			type="land_Objects116";
		};
		class Item73
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10144.686,67.863457,7952.8203};
				angles[]={0,1.9410161,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=134;
			type="Land_Factory_Conv1_Main_F";
			atlOffset=0.3125;
		};
		class Item74
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10132.342,67.860992,7957.7124};
				angles[]={0,1.9591945,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=135;
			type="Land_Factory_Conv1_10_F";
		};
		class Item75
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10127.319,68.026001,7959.8701};
				angles[]={6.2534294,5.1492558,6.2763495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=136;
			type="Land_Misc_GContainer_Big";
			atlOffset=0.015167236;
		};
		class Item76
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10126.991,68.730103,7959.7031};
				angles[]={0,2.3621116,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=137;
			type="CUP_A1_garbage_paleta";
			atlOffset=1.1828995;
		};
		class Item77
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10149.826,73.009644,7979.0635};
				angles[]={0,0,6.281002};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=147;
			type="Land_OfficeChair_01_F";
		};
		class Item78
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10149.612,72.758438,7977.7935};
				angles[]={0,3.5416961,6.281002};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=149;
			type="OfficeTable_01_old_F";
		};
		class Item79
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10149.497,73.361542,7977.8599};
				angles[]={0,1.9408963,6.281002};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=150;
			type="Computer";
		};
		class Item80
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10150.68,73.734566,7979.5972};
				angles[]={0,0.41619715,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=151;
			type="CUP_A2_map_for_briefing";
			atlOffset=1.4859314;
		};
		class Item81
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10150.098,73.304428,7973.0005};
				angles[]={0,2.7291329,6.281002};
			};
			side="Empty";
			class Attributes
			{
			};
			id=156;
			type="MapBoard_seismic_F";
			atlOffset=1.3672867;
		};
		class Item82
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10147.748,73.396477,7976.6431};
				angles[]={0,5.1301022,6.281002};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=157;
			type="land_Objects9";
		};
		class Item83
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10151.752,73.112442,7975.7725};
				angles[]={0,1.9799905,6.281002};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=159;
			type="Land_OfficeCabinet_01_F";
			atlOffset=7.6293945e-006;
		};
		class Item84
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10152.571,72.330147,7978.3457};
				angles[]={0,5.1017656,6.281002};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=161;
			type="CUP_A2_table_drawer";
		};
		class Item85
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10152.547,73.222618,7978.332};
				angles[]={0,1.9182307,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=162;
			type="Land_Printer_01_F";
			atlOffset=0.70727539;
		};
		class Item86
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.66,73.909721,7974.0767};
				angles[]={0,3.5578077,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=164;
			type="CUP_shelf";
		};
		class Item87
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10160.396,73.914177,7974.2285};
				angles[]={0,5.1278811,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=165;
			type="Land_CashDesk_F";
		};
		class Item88
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.16,74.589775,7969.6812};
				angles[]={0,3.5590618,6.2823396};
			};
			side="Empty";
			class Attributes
			{
			};
			id=166;
			type="Land_WaterCooler_01_old_F";
			atlOffset=2.8577042;
		};
		class Item89
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10161.028,74.535889,7970.856};
				angles[]={0,3.5359342,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=176;
			type="CUP_icebox";
		};
		class Item90
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.551,73.911507,7974.8838};
				angles[]={0,0.37522975,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=177;
			type="CUP_shelf";
		};
		class Item91
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.709,74.819084,7974.7158};
				angles[]={0,0.99945885,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=178;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.90940094;
		};
		class Item92
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.692,75.170822,7974.7095};
			};
			side="Empty";
			class Attributes
			{
			};
			id=179;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=1.2594376;
		};
		class Item93
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.558,75.166985,7973.3394};
			};
			side="Empty";
			class Attributes
			{
			};
			id=180;
			type="Exile_Cosmetic_Magazine01";
			atlOffset=1.2579117;
		};
		class Item94
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.729,74.813377,7973.7095};
			};
			side="Empty";
			class Attributes
			{
			};
			id=181;
			type="Exile_Cosmetic_Magazine02";
			atlOffset=0.90444946;
		};
		class Item95
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.561,74.458908,7973.3291};
				angles[]={0,1.4017427,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=182;
			type="Exile_Cosmetic_Magazine03";
			atlOffset=0.54983521;
		};
		class Item96
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.315,74.468872,7973.8569};
				angles[]={0,0.8453263,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=183;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.55885315;
		};
		class Item97
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.537,74.10862,7973.3315};
				angles[]={0,0.69133693,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=184;
			type="Exile_Cosmetic_Magazine04";
			atlOffset=0.19953156;
		};
		class Item98
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.181,74.811348,7973.458};
				angles[]={0,5.3449545,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=185;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.9012146;
		};
		class Item99
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.609,75.176163,7974.3765};
			};
			side="Empty";
			class Attributes
			{
			};
			id=186;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=1.2663956;
		};
		class Item100
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.466,74.818108,7974.1235};
				angles[]={0,2.3383038,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=187;
			type="Exile_Cosmetic_CockONut";
			atlOffset=0.90940857;
		};
		class Item101
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.855,74.472961,7975.1411};
			};
			side="Empty";
			class Attributes
			{
			};
			id=188;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.56170654;
		};
		class Item102
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.459,74.821968,7975.2354};
			};
			side="Empty";
			class Attributes
			{
			};
			id=189;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.91038513;
		};
		class Item103
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.187,74.470703,7974.5337};
			};
			side="Empty";
			class Attributes
			{
			};
			id=190;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55888367;
		};
		class Item104
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.25,74.095833,7974.5713};
			};
			side="Empty";
			class Attributes
			{
			};
			id=191;
			type="Exile_Cosmetic_InstantCoffee";
			atlOffset=0.18505859;
		};
		class Item105
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.474,74.811272,7974.1279};
				angles[]={0,5.9344144,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=192;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.90332031;
		};
		class Item106
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.725,74.459587,7974.6733};
			};
			side="Empty";
			class Attributes
			{
			};
			id=193;
			type="Exile_Cosmetic_Moobar";
			atlOffset=0.55261993;
		};
		class Item107
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.122,75.171867,7974.3496};
			};
			side="Empty";
			class Attributes
			{
			};
			id=194;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=1.2599945;
		};
		class Item108
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.25,74.114731,7973.6309};
				angles[]={0,4.6967306,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=195;
			type="Exile_Cosmetic_Raisins";
			atlOffset=0.20465851;
		};
		class Item109
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.5,74.113411,7974.2344};
			};
			side="Empty";
			class Attributes
			{
			};
			id=196;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.20185852;
		};
		class Item110
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.757,75.166901,7973.772};
				angles[]={0,0.46908236,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=197;
			type="Exile_Cosmetic_Magazine01";
			atlOffset=1.2579956;
		};
		class Item111
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.957,75.167389,7974.2148};
			};
			side="Empty";
			class Attributes
			{
			};
			id=198;
			type="Exile_Cosmetic_Magazine01";
			atlOffset=1.2586517;
		};
		class Item112
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10166.116,75.171913,7974.5728};
				angles[]={0,0.83535653,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=199;
			type="Exile_Cosmetic_Magazine01";
			atlOffset=1.2633133;
		};
		class Item113
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.564,74.812363,7973.3345};
				angles[]={0,0.55997634,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=200;
			type="Exile_Cosmetic_Magazine02";
			atlOffset=0.90329742;
		};
		class Item114
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.918,74.812515,7974.1616};
				angles[]={0,0.69126487,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=201;
			type="Exile_Cosmetic_Magazine02";
			atlOffset=0.90374756;
		};
		class Item115
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10166.125,74.813118,7974.6191};
				angles[]={0,0.73054475,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=202;
			type="Exile_Cosmetic_Magazine02";
			atlOffset=0.90452576;
		};
		class Item116
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.759,74.45768,7973.7891};
				angles[]={0,0.37527084,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=203;
			type="Exile_Cosmetic_Magazine03";
			atlOffset=0.54877472;
		};
		class Item117
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.932,74.457939,7974.2153};
				angles[]={0,0.65322524,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=204;
			type="Exile_Cosmetic_Magazine03";
			atlOffset=0.54917908;
		};
		class Item118
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10166.118,74.457985,7974.7002};
				angles[]={0,0.14521563,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=205;
			type="Exile_Cosmetic_Magazine03";
			atlOffset=0.54938507;
		};
		class Item119
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.729,74.106842,7973.7627};
				angles[]={0,0.32923171,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=206;
			type="Exile_Cosmetic_Magazine04";
			atlOffset=0.19791412;
		};
		class Item120
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.911,74.106682,7974.2036};
				angles[]={0,0.089356788,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=207;
			type="Exile_Cosmetic_Magazine04";
			atlOffset=0.19790649;
		};
		class Item121
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10166.101,74.106628,7974.6543};
				angles[]={0,1.3689209,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=208;
			type="Exile_Cosmetic_Magazine04";
			atlOffset=0.19801331;
		};
		class Item122
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.253,75.163383,7973.6001};
				angles[]={0,2.6903727,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=209;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=1.2533112;
		};
		class Item123
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.841,74.819778,7974.8613};
			};
			side="Empty";
			class Attributes
			{
			};
			id=210;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.91020966;
		};
		class Item124
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.729,74.819626,7974.5703};
				angles[]={0,1.8748922,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=211;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.90995789;
		};
		class Item125
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.556,74.813492,7974.2983};
				angles[]={0,4.2338724,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=212;
			type="Exile_Cosmetic_CockONut";
			atlOffset=0.90486908;
		};
		class Item126
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.265,74.811386,7973.5903};
				angles[]={0,4.2291842,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=213;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.90132904;
		};
		class Item127
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.272,74.811134,7973.7778};
				angles[]={0,2.2281034,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=214;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.9010849;
		};
		class Item128
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.184,74.469032,7973.4634};
			};
			side="Empty";
			class Attributes
			{
			};
			id=215;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.55890656;
		};
		class Item129
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.294,74.46891,7973.6426};
				angles[]={0,0.66072839,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=216;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.55887604;
		};
		class Item130
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.661,74.459999,7974.4492};
				angles[]={0,1.5277271,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=217;
			type="Exile_Cosmetic_Moobar";
			atlOffset=0.55297852;
		};
		class Item131
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.424,74.114479,7974.063};
				angles[]={0,2.5625472,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=218;
			type="Exile_Cosmetic_Raisins";
			atlOffset=0.2045517;
		};
		class Item132
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.568,74.114693,7974.5264};
				angles[]={0,4.6967306,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=219;
			type="Exile_Cosmetic_Raisins";
			atlOffset=0.20488739;
		};
		class Item133
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.507,75.169449,7974.229};
				angles[]={0,0.45152348,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=220;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=1.2579041;
		};
		class Item134
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.914,75.16938,7975.2319};
				angles[]={0,5.357398,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=221;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=1.2581863;
		};
		class Item135
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.524,74.816902,7974.3955};
				angles[]={0,4.9547806,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=222;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.90899658;
		};
		class Item136
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.553,74.811554,7974.2637};
				angles[]={0,4.4925494,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=223;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.90367126;
		};
		class Item137
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.755,74.475151,7974.8652};
				angles[]={0,5.7250338,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=224;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.56381226;
		};
		class Item138
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.627,74.475098,7974.5684};
				angles[]={0,0.56849617,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=225;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.56365204;
		};
		class Item139
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.61,74.105774,7974.5654};
				angles[]={0,3.9707725,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=226;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.19431305;
		};
		class Item140
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.781,74.113701,7974.8452};
				angles[]={0,2.9452682,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=227;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.20238495;
		};
		class Item141
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.512,74.096664,7975.2554};
				angles[]={0,1.5966156,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=228;
			type="Exile_Cosmetic_InstantCoffee";
			atlOffset=0.18611145;
		};
		class Item142
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.071,74.470879,7974.3042};
				angles[]={0,0.62791485,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=229;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55896759;
		};
		class Item143
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.265,74.470818,7974.8398};
				angles[]={0,2.3105409,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=230;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55906677;
		};
		class Item144
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.258,74.470764,7974.686};
				angles[]={0,2.0366802,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=231;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55900574;
		};
		class Item145
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.484,74.822273,7975.3682};
				angles[]={0,1.4576453,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=232;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.91070557;
		};
		class Item146
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.461,74.822403,7975.1172};
				angles[]={0,3.837575,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=233;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.91082001;
		};
		class Item147
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.361,74.82209,7975.0454};
				angles[]={0,5.2165551,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=234;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.91042328;
		};
		class Item148
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.361,74.822311,7974.9438};
				angles[]={0,4.4513607,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=235;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.91064453;
		};
		class Item149
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.228,75.171593,7974.5527};
				angles[]={0,1.7637156,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=236;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=1.2598114;
		};
		class Item150
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10152.401,74.166084,7972.9434};
				angles[]={0,5.0633249,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=237;
			type="CUP_A2_box_c";
			atlOffset=0.24514771;
		};
		class Item151
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10153.741,74.164505,7971.4341};
				angles[]={0,4.0777655,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=238;
			type="CUP_A2_box_c";
			atlOffset=0.24469757;
		};
		class Item152
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10152.357,74.165718,7971.8501};
				angles[]={0,3.0488579,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=239;
			type="CUP_A2_box_c";
			atlOffset=0.24474335;
		};
		class Item153
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10152.266,74.795776,7972.3843};
				angles[]={0,5.0633249,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=240;
			type="CUP_A2_box_c";
			atlOffset=0.87472534;
		};
		class Item154
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10152.88,74.165421,7972.75};
				angles[]={0,5.0633249,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=241;
			type="CUP_A2_box_c";
			atlOffset=0.24488831;
		};
		class Item155
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10153.053,74.164764,7973.8296};
				angles[]={0,5.6838932,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=243;
			type="CUP_A2_box_c";
			atlOffset=0.24437714;
		};
		class Item156
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10152.941,74.785515,7973.5303};
				angles[]={0,5.0633249,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=244;
			type="CUP_A2_box_c";
			atlOffset=0.86503601;
		};
		class Item157
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10153.335,74.164848,7974.7822};
				angles[]={0,4.9557557,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=245;
			type="CUP_A2_box_c";
			atlOffset=0.24469757;
		};
		class Item158
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10154,74.164558,7975.6406};
				angles[]={0,5.4446163,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=246;
			type="CUP_A2_box_c";
			atlOffset=0.24497223;
		};
		class Item159
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10156.704,74.492676,7970.7109};
				angles[]={0,3.5672152,6.2823396};
			};
			side="Empty";
			class Attributes
			{
			};
			id=247;
			type="Land_PaperBox_closed_F";
			atlOffset=2.8494797;
		};
		class Item160
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10157.293,74.472244,7977.7168};
				angles[]={0,0.42718488,6.2823396};
			};
			side="Empty";
			class Attributes
			{
			};
			id=249;
			type="Land_PaperBox_closed_F";
			atlOffset=2.8290482;
		};
		class Item161
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10156.64,74.497978,7976.1479};
				angles[]={0,1.9571269,6.2823396};
			};
			side="Empty";
			class Attributes
			{
			};
			id=250;
			type="Land_PaperBox_closed_F";
			atlOffset=2.8547821;
		};
		class Item162
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10127.617,77.036514,7982.9053};
				angles[]={0,1.9652131,6.2807441};
			};
			side="Empty";
			class Attributes
			{
			};
			id=251;
			type="Land_PaperBox_open_empty_F";
			atlOffset=2.9830017;
		};
		class Item163
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10129.104,77.047043,7982.2417};
				angles[]={0,0.36764732,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=252;
			type="Land_PaperBox_open_full_F";
			atlOffset=0.0087432861;
		};
		class Item164
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10126.59,76.879784,7980.6367};
				angles[]={0,1.9669889,6.2807441};
			};
			side="Empty";
			class Attributes
			{
			};
			id=253;
			type="Land_Pallet_MilBoxes_F";
			atlOffset=3.4932556;
		};
		class Item165
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10128.127,77.084389,7979.7451};
				angles[]={0,3.5083048,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=254;
			type="Land_PaperBox_closed_F";
			atlOffset=0.0085144043;
		};
		class Item166
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10127.248,77.801323,7988.1929};
				angles[]={6.2505054,0,0.010113479};
			};
			side="Empty";
			class Attributes
			{
			};
			id=259;
			type="Exile_Cosmetic_UAV";
			atlOffset=1.2206192;
		};
		class Item167
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10130.303,77.695938,7986.9111};
				angles[]={0,0.50957412,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=260;
			type="Exile_Cosmetic_MG";
			atlOffset=0.078842163;
		};
		class Item168
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10127.162,77.102844,7988.3813};
				angles[]={0,3.5083048,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=261;
			type="Land_PaperBox_closed_F";
			atlOffset=0.024612427;
		};
		class Item169
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10128.772,77.702934,7987.3975};
				angles[]={0,0.12342839,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=262;
			type="Exile_Cosmetic_MG";
			atlOffset=0.082099915;
		};
		class Item170
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10107.639,77.232681,7979.5322};
				angles[]={0,2.5818844,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=268;
			type="Land_LuggageHeap_03_F";
			atlOffset=0.0048217773;
		};
		class Item171
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10108.374,77.23555,7978.499};
				angles[]={0,6.1764097,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=269;
			type="Land_LuggageHeap_01_F";
			atlOffset=0.0058441162;
		};
		class Item172
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10109.125,77.024704,7979.1675};
				angles[]={0,1.9050239,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=270;
			type="Land_LuggageHeap_02_F";
			atlOffset=0.0040740967;
		};
		class Item173
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10105.86,77.218498,7979.7666};
				angles[]={0,0.35701764,6.2807441};
			};
			side="Empty";
			class Attributes
			{
			};
			id=271;
			type="Land_LuggageHeap_04_F";
			atlOffset=3.496254;
		};
		class Item174
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10109.483,77.026398,7978.3877};
				angles[]={0,5.399797,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=272;
			type="Land_LuggageHeap_02_F";
			atlOffset=0.0066452026;
		};
		class Item175
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.594,77.238762,7978.7949};
				angles[]={0,0.529746,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=273;
			type="Land_LuggageHeap_01_F";
			atlOffset=0.0047073364;
		};
		class Item176
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10107.509,77.030907,7978.4678};
				angles[]={0,1.5697303,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=275;
			type="Land_LuggageHeap_02_F";
			atlOffset=0.0063323975;
		};
		class Item177
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10102.647,77.22683,7974.022};
				angles[]={0,5.0974183,6.2807441};
			};
			side="Empty";
			class Attributes
			{
			};
			id=276;
			type="Land_Workbench_01_F";
			atlOffset=3.2946854;
		};
		class Item178
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.903,76.711861,7971.3672};
				angles[]={0,5.1066236,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=295;
			type="Land_CinderBlocks_F";
		};
		class Item179
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10105.903,76.714294,7971.7822};
				angles[]={0,1.965414,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=296;
			type="Land_Bricks_V2_F";
		};
		class Item180
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10104.934,76.716667,7972.1973};
				angles[]={0,5.1069875,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=297;
			type="Land_Bricks_V2_F";
		};
		class Item181
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10107.646,77.197441,7974.8203};
				angles[]={0,5.079483,6.2807441};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=298;
			type="Land_ToolTrolley_02_F";
		};
		class Item182
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10107.835,77.475716,7975.084};
				angles[]={0,0.39280701,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=299;
			type="Exile_Sign_Foolbox";
			atlOffset=3.2172546;
		};
		class Item183
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10107.633,77.680191,7974.6899};
				angles[]={0,2.0331528,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=300;
			type="Exile_Cosmetic_Foolbox";
			atlOffset=0.96187592;
		};
		class Item184
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10108.01,77.680473,7974.8652};
				angles[]={0,1.9321431,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=301;
			type="Exile_Cosmetic_Foolbox";
			atlOffset=0.96308136;
		};
		class Item185
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10107.49,77.685989,7975.0273};
				angles[]={0,1.7085612,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=302;
			type="Exile_Cosmetic_Foolbox";
			atlOffset=0.96733093;
		};
		class Item186
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10107.52,77.077377,7972.2515};
				angles[]={0,1.97998,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=303;
			type="Land_Portable_generator_F";
		};
		class Item187
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.045,77.213882,7975.4531};
				angles[]={0,5.0599961,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=304;
			type="Land_ToolTrolley_01_F";
		};
		class Item188
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10103.97,77.422432,7972.3271};
				angles[]={0,3.5362215,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=305;
			type="Land_WeldingTrolley_01_F";
		};
		class Item189
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.467,77.724068,7975.3794};
				angles[]={0.0020426274,0,6.2783151};
			};
			side="Empty";
			class Attributes
			{
			};
			id=306;
			type="Land_DrillAku_F";
			atlOffset=0.86127472;
		};
		class Item190
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.078,76.92099,7975.4536};
				angles[]={0,3.1611459,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=307;
			type="Land_ExtensionCord_F";
			atlOffset=0.12779999;
		};
		class Item191
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10105.829,77.594757,7975.668};
				angles[]={0,4.3517237,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=308;
			type="Land_File_F";
			atlOffset=0.8534317;
		};
		class Item192
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.283,77.229523,7975.3159};
				angles[]={0.0020426274,0,6.2783151};
			};
			side="Empty";
			class Attributes
			{
			};
			id=309;
			type="Land_Gloves_F";
			atlOffset=0.5083847;
		};
		class Item193
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.065,77.57859,7975.5815};
				angles[]={0.0020426274,0,6.2783151};
			};
			side="Empty";
			class Attributes
			{
			};
			id=310;
			type="Land_Wrench_F";
			atlOffset=0.8543396;
		};
		class Item194
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10106.313,77.72039,7975.3569};
				angles[]={0,2.4668517,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=311;
			type="Land_DrillAku_F";
			atlOffset=0.85722351;
		};
		class Item195
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10105.928,77.229134,7975.4971};
				angles[]={0,1.1728674,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=312;
			type="Land_Gloves_F";
			atlOffset=0.50713348;
		};
		class Item196
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10105.847,77.590157,7975.4155};
				angles[]={0,5.3518443,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=313;
			type="Land_Screwdriver_V2_F";
			atlOffset=0.85055542;
		};
		class Item197
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10105.908,77.593033,7975.4917};
				angles[]={0,5.13204,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=314;
			type="Land_Screwdriver_V1_F";
			atlOffset=0.85357666;
		};
		class Item198
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10156.412,66.563438,7937.0669};
				angles[]={6.2455444,0,6.275465};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=315;
			type="Oil_Spill_F";
		};
		class Item199
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10098.112,67.610191,7945.644};
				angles[]={6.2055264,5.8188887,0.0069053532};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=316;
			type="land_cwa_wheel_cart";
			atlOffset=-0.0011367798;
		};
		class Item200
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10097.062,68.337097,7949.6709};
				angles[]={6.2055264,5.263814,6.1851816};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=318;
			type="Land_IronPipes_F";
		};
		class Item201
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10099.763,68.096268,7950.356};
				angles[]={6.1274266,0,0.017322162};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=319;
			type="Land_Pallets_stack_F";
		};
		class Item202
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10124.594,69.538712,7941.4238};
				angles[]={0,1.0835623,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=322;
			type="CUP_A2_scaffolding";
		};
		class Item203
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10100.21,72.509399,7958.502};
				angles[]={0,1.8313054,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=324;
			type="Land_vodni_vez";
			atlOffset=-0.34957123;
		};
		class Item204
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10103.649,70.182571,7900.9995};
				angles[]={0.045150712,3.8512425,6.2491527};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=329;
			type="Land_Posed";
		};
		class Item205
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10172.912,68.709679,7934.3438};
				angles[]={0,2.0871365,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=334;
			type="Land_Posed";
		};
		class Item206
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10103.34,71.092194,7900.5337};
						angles[]={0,3.4891839,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=338;
					type="Exile_Guard_02";
				};
			};
			class Attributes
			{
			};
			id=337;
		};
		class Item207
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10173.397,69.584068,7934.3027};
						angles[]={0,2.3889697,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=340;
					type="Exile_Guard_03";
				};
			};
			class Attributes
			{
			};
			id=339;
		};
		class Item208
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10145.081,67.420601,7952.4858};
				angles[]={0,1.9868439,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=347;
			type="Land_Garbage_line_F";
		};
		class Item209
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10149.733,67.352394,7950.6143};
				angles[]={0,5.0883002,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=348;
			type="Land_Garbage_line_F";
			atlOffset=0.561409;
		};
		class Item210
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10132.338,69.597748,7957.856};
				angles[]={0,1.9778652,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=349;
			type="Land_Garbage_line_F";
		};
		class Item211
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10101.374,73.750122,7979.1782};
				angles[]={0.0016194459,0,6.2749929};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=352;
			type="Land_WheelieBin_01_F";
		};
		class Item212
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10100.467,73.752335,7977.2397};
				angles[]={0,1.5682037,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=353;
			type="Land_WheelieBin_01_F";
		};
		class Item213
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10121.986,73.464592,7985.3159};
				angles[]={0,3.6682594,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=354;
			type="Land_WheelieBin_01_F";
		};
		class Item214
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10122.756,73.462715,7987.2715};
				angles[]={0,2.2752337,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=355;
			type="Land_WheelieBin_01_F";
		};
		class Item215
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10103.868,73.660728,7974.4346};
				angles[]={6.276093,0,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=356;
			type="Land_GarbageBags_F";
		};
		class Item216
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10107.253,73.652466,7977.3779};
				angles[]={0,1.8426288,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=357;
			type="Land_GarbageBags_F";
		};
		class Item217
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10126.816,73.369499,7982.7466};
				angles[]={6.276093,0,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=358;
			type="Land_GarbageBags_F";
		};
		class Item218
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10128.03,73.366539,7985.3901};
				angles[]={0,2.1808119,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=359;
			type="Land_GarbageBags_F";
		};
		class Item219
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10105.51,73.497772,7974.6655};
				angles[]={0,5.9761,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=360;
			type="Land_JunkPile_F";
		};
		class Item220
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10105.259,73.49839,7977.7065};
				angles[]={0,3.1249044,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=361;
			type="Land_JunkPile_F";
			atlOffset=7.6293945e-006;
		};
		class Item221
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10126.449,73.211449,7986.0391};
				angles[]={0,2.7900002,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=362;
			type="Land_JunkPile_F";
		};
		class Item222
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10125.247,73.214378,7983.6514};
				angles[]={0,5.1883855,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=363;
			type="Land_JunkPile_F";
		};
		class Item223
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10141.203,73.070999,7928.1548};
				angles[]={0,1.0862347,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=364;
			type="Land_Flush_Light_yellow_F";
			atlOffset=6.4022141;
		};
		class Item224
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10133.406,73.087128,7924};
				angles[]={0,1.0862347,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=365;
			type="Land_Flush_Light_yellow_F";
			atlOffset=6.3348846;
		};
		class Item225
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10124.971,73.092209,7939.7061};
				angles[]={0,1.0862347,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=366;
			type="Land_Flush_Light_yellow_F";
			atlOffset=6.2812576;
		};
		class Item226
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10132.815,73.078873,7943.8701};
				angles[]={0,1.0862347,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=367;
			type="Land_Flush_Light_yellow_F";
			atlOffset=6.29599;
		};
		class Item227
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10118.263,71.49749,7965.501};
				angles[]={6.0684528,0,6.0778608};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=375;
			type="CUP_misc_TorzoTree_PMC";
			atlOffset=-0.4709549;
		};
		class Item228
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10117.863,67.581902,7957.2705};
				angles[]={0,2.0216115,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=376;
			type="CUP_misc_StubLeafs_PMC";
		};
		class Item229
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10116.087,70.012001,7961.5391};
				angles[]={0,5.387836,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=377;
			type="CUP_kmen_1_buk";
			atlOffset=-0.49357605;
		};
		class Item230
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10155.672,77.363991,7976.6387};
				angles[]={6.2816806,0,6.2723713};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=394;
			type="Land_Sleeping_bag_F";
		};
		class Item231
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.963,77.355286,7971.335};
				angles[]={0,0.25149867,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=395;
			type="Land_Sleeping_bag_blue_F";
		};
		class Item232
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10164.421,77.35659,7967.5889};
				angles[]={0,3.4682267,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=396;
			type="Land_Sleeping_bag_brown_F";
		};
		class Item233
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.086,77.451668,7975.7637};
				angles[]={6.2759266,0,6.265368};
			};
			side="Empty";
			class Attributes
			{
			};
			id=397;
			type="Land_Sleeping_bag_brown_folded_F";
			atlOffset=3.4199753;
		};
		class Item234
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.589,77.451241,7975.5542};
				angles[]={0,1.3844818,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=398;
			type="Land_Sleeping_bag_blue_folded_F";
			atlOffset=3.4199753;
		};
		class Item235
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.17,77.451599,7975.2412};
				angles[]={0,1.8379388,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=399;
			type="Land_Sleeping_bag_folded_F";
			atlOffset=3.4199829;
		};
		class Item236
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10163.548,77.35022,7972.2212};
				angles[]={0,0.48754743,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=400;
			type="Land_Ground_sheet_F";
		};
		class Item237
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10162.245,77.351318,7967.5776};
				angles[]={0,4.9402499,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=401;
			type="Land_Ground_sheet_blue_F";
		};
		class Item238
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10162.395,77.409477,7975.8091};
				angles[]={0,5.5346532,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=402;
			type="Land_Ground_sheet_folded_blue_F";
			atlOffset=3.4199905;
		};
		class Item239
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10162.221,77.409622,7975.2661};
				angles[]={0,1.294311,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=403;
			type="Land_Ground_sheet_folded_F";
			atlOffset=3.4199829;
		};
		class Item240
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10159.827,77.353363,7968.5732};
				angles[]={0,2.05738,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=404;
			type="Land_Ground_sheet_khaki_F";
		};
		class Item241
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10162.67,77.409241,7975.2944};
				angles[]={6.2759266,0,6.265368};
			};
			side="Empty";
			class Attributes
			{
			};
			id=405;
			type="Land_Ground_sheet_folded_khaki_F";
			atlOffset=3.4199829;
		};
		class Item242
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10165.823,77.348297,7973.8755};
				angles[]={0,1.9374688,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=406;
			type="Land_Ground_sheet_OPFOR_F";
		};
		class Item243
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10162.573,77.409325,7976.1143};
				angles[]={6.2759266,0,6.265368};
			};
			side="Empty";
			class Attributes
			{
			};
			id=407;
			type="Land_Ground_sheet_folded_OPFOR_F";
			atlOffset=3.4199829;
		};
		class Item244
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10156.893,77.355843,7970.3726};
				angles[]={6.2816806,0,6.2723713};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=408;
			type="Land_Ground_sheet_yellow_F";
		};
		class Item245
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10162.729,77.409195,7975.6978};
				angles[]={0,5.0313592,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=409;
			type="Land_Ground_sheet_folded_yellow_F";
			atlOffset=3.4199905;
		};
		class Item246
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10160.022,77.842224,7974.5488};
				angles[]={0,5.853147,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=414;
			type="Land_CampingChair_V1_F";
			atlOffset=7.6293945e-005;
		};
		class Item247
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10160.929,77.740227,7974.0615};
				angles[]={0,0.21784353,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=415;
			type="Land_CampingTable_small_F";
		};
		class Item248
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10160.934,78.26532,7974.0474};
				angles[]={0,0.21784353,6.2823396};
			};
			side="Empty";
			class Attributes
			{
			};
			id=416;
			type="Land_Camping_Light_off_F";
			atlOffset=0.81288147;
		};
		class Item249
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10162.076,77.842278,7974.0674};
				angles[]={0,1.0854092,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=417;
			type="Land_CampingChair_V1_F";
			atlOffset=0.0018615723;
		};
		class Item250
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10123.057,66.791618,7923.9731};
				angles[]={0.0030297067,0,6.2773261};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=420;
			type="Land_HelipadCivil_F";
		};
	};
};

 

ChardakResortTraderCity.sqf

Spoiler

private _objects = [
	["Land_Slums01_8m",[10178.2,7934.42,65.6179],[[0.859128,-0.511762,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10100.2,7900.6,67.6449],[[0.814121,0.580695,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10095.9,7907.32,67.8013],[[0.874702,0.484661,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10093.2,7914.68,68.2041],[[0.981861,0.189603,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10092.8,7922.53,67.6819],[[0.993099,-0.117276,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10093.1,7930.44,67.7509],[[0.999995,-0.00303952,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10093.4,7938.41,67.9063],[[0.996667,-0.081579,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10093.9,7946.36,68.2681],[[0.997206,-0.074697,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10094.5,7954.27,68.6081],[[0.995683,-0.0928229,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10095,7958.34,69.3061],[[-0.997066,0.0765447,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10094.3,7962.2,69.87],[[0.989214,0.14648,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10093.9,7966.37,70.6645],[[-0.992789,-0.119879,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10094.1,7974.02,71.5634],[[-0.984649,0.174549,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10096.8,7981.3,71.5457],[[-0.860537,0.509388,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10102.6,7985.59,71.5612],[[-0.238208,0.971214,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10110.4,7986.41,71.5902],[[0.0594905,0.998229,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10117,7988.98,71.5918],[[-0.691701,0.722184,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10122.7,7994.11,71.862],[[-0.613002,0.790081,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10180.3,7937.91,66.3704],[[0.859128,-0.511762,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10170.4,7920.65,65.8034],[[-0.767514,0.641033,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10165.5,7914.43,66.0103],[[-0.796617,0.604485,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10163.3,7910.89,66.5391],[[0.859128,-0.511762,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10161.6,7907.75,67.078],[[-0.851707,0.524019,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10158.6,7904.72,68.1903],[[0.739532,-0.673121,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10156.5,7901.92,68.797],[[-0.756171,0.654374,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10151.4,7896.09,68.9792],[[-0.726347,0.687328,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10111.7,7889.98,67.8621],[[-0.380516,-0.924774,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10119.3,7888.38,67.8602],[[-0.0375293,-0.999296,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10127,7888.34,67.8744],[[-0.0116952,-0.999932,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10131.2,7888.06,68.5985],[[0.053798,0.998552,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10138.6,7888.36,68.9033],[[-0.102167,0.994767,0],[0,0,1]],[false,false]],
	["Land_Wreck_Van_F",[10102,7893.84,67.4858],[[0,0.998826,-0.0484389],[0.0648842,0.0483369,0.996721]],[false,false]],
	["Land_Wreck_Truck_dropside_F",[10190.4,7920.38,63.9321],[[0.850976,0.524876,0.0185456],[0.0265942,-0.078329,0.996573]],[false,false]],
	["Land_Wreck_Offroad_F",[10099.8,7878.8,67.8595],[[-0.713323,0.700834,0.00165536],[0.0191513,0.0171314,0.99967]],[false,false]],
	["Land_Wreck_Hunter_F",[10176.1,7922.45,64.8663],[[0,0.999901,0.0140923],[0.0701902,-0.0140575,0.997435]],[false,false]],
	["Land_CncBlock_Stripes",[10097.6,7878.29,67.91],[[-0.438791,-0.898515,0.0115735],[0.0263668,0,0.999652]],[false,false]],
	["Land_CncBlock_Stripes",[10100.6,7890.65,67.6779],[[-0.438463,-0.89748,0.0477524],[0.0467881,0.0302663,0.998446]],[false,false]],
	["Land_CncBlock_Stripes",[10190.2,7918.47,63.8416],[[0.704868,-0.707645,-0.0489915],[0.0265942,-0.0426544,0.998736]],[false,false]],
	["Land_CncBlock_Stripes",[10179.1,7923.35,64.6916],[[0.879955,-0.470887,-0.0628131],[0.0561874,-0.0281312,0.998024]],[false,false]],
	//["Land_Wreck_CarDismantled_F",[10156.8,7937.48,66.66],[[-0.233857,0.971513,0.0383926],[0.00772022,-0.0376309,0.999262]],[false,false]],
	//["Exile_ConcreteMixer",[10099,7947.72,67.4043],[[0.541152,0.838092,0.0689647],[-0.0069053,-0.0775791,0.996962]],[false,false]],
	["Exile_Sign_Armory",[10127.5,7978.71,72.6248],[[0.382665,0.923887,0],[0,0,1]],[false,false]],
	["Exile_Sign_Armory_Small",[10120.6,7984.44,76.5221],[[0.922969,-0.384875,0],[0,0,1]],[false,false]],
	["Exile_Sign_Equipment",[10106.1,7970.53,71.8732],[[0.392541,0.919734,0],[0,0,1]],[false,false]],
	["Exile_Sign_Equipment_Small",[10101.1,7980.77,76.6929],[[0.92209,-0.386975,0],[0,0,1]],[false,false]],
	["Exile_Sign_Food",[10155.7,7969.15,74.3637],[[0.375626,0.926771,0],[0,0,1]],[false,false]],
	["Exile_Sign_Food_Small",[10163.3,7968.9,73.3956],[[0.387177,0.922006,0],[0,0,1]],[false,false]],
	["Exile_Sign_Hardware",[10106.1,7970.53,72.9132],[[0.395338,0.918536,0],[0,0,1]],[false,false]],
	["Exile_Sign_Hardware_Small",[10099.2,7976.3,76.7523],[[0.921646,-0.388032,0],[0,0,1]],[false,false]],
	["Exile_Sign_Locker",[10108.6,7913.67,66.8483],[[-0.728926,-0.684592,0],[0,0,1]],[false,false]],
	["Exile_Sign_Office",[10139,7965.67,70.8374],[[0.394346,0.918962,0],[0,0,1]],[false,false]],
	["Exile_Sign_Office_Small",[10146.8,7976.76,71.7864],[[0.922547,-0.385886,0],[0,0,1]],[false,false]],
	["Exile_Sign_RussianRoulette",[10141.1,7924.93,67.0678],[[0.4193,-0.907848,0],[0,0,1]],[false,false]],
	["Exile_Sign_SpecialOperations",[10127.5,7978.7,71.6142],[[0.385727,0.922613,0],[0,0,1]],[false,false]],
	["Exile_Sign_SpecialOperations_Small",[10122.5,7988.91,76.4471],[[0.920478,-0.390795,0],[0,0,1]],[false,false]],
	["Exile_Sign_VehicleCustoms",[10113.7,7928.74,67.5501],[[-0.667639,0.744485,0],[0,0,1]],[false,false]],
	["Exile_Sign_Vehicles",[10158.3,7940.67,66.9229],[[0.98077,0.195166,0],[0,0,1]],[false,false]],
	["Exile_Sign_WasteDump",[10141.2,7952.6,67.3039],[[0.326317,0.94526,0],[0,0,1]],[false,false]],
	//["B_G_Soldier_AR_F",[10091.3,7874.78,68.1378],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Locker",[10107.6,7910.61,67.4156],[[0.697039,-0.717032,-0.00117881],[0.00169117,0,0.999999]],[false,false]],
	["Exile_Locker",[10106.2,7909.18,67.4181],[[0.697039,-0.717032,-0.00117881],[0.00169117,0,0.999999]],[false,false]],
	["Exile_Locker",[10102.6,7911.35,67.4241],[[-0.724848,-0.688908,0.00122584],[0.00169117,0,0.999999]],[false,false]],
	["Exile_Locker",[10103.7,7910.14,67.4223],[[-0.716196,-0.697899,0.00121121],[0.00169117,0,0.999999]],[false,false]],
	["land_Objects116",[10143.4,7924.73,66.666],[[0.923447,0.383719,-0.00227681],[0.00246555,0,0.999997]],[false,false]],
	["Land_Factory_Conv1_Main_F",[10144.7,7952.82,67.1604],[[0.932248,-0.36182,0],[0,0,1]],[false,false]],
	["Land_Factory_Conv1_10_F",[10132.3,7957.71,67.1555],[[0.925517,-0.378706,0],[0,0,1]],[false,false]],
	["Land_Misc_GContainer_Big",[10127.3,7959.87,67.2394],[[-0.906061,0.422731,0.0187789],[0.00683571,-0.0297508,0.999534]],[false,false]],
	["CUP_A1_garbage_paleta",[10127,7959.7,68.4738],[[0.70291,-0.711278,0],[0,0,1]],[false,false]],
	["Land_OfficeChair_01_F",[10149.8,7979.06,72.3352],[[0,1,0],[0.00218326,0,0.999998]],[false,false]],
	["OfficeTable_01_old_F",[10149.6,7977.79,72.336],[[-0.389513,-0.921021,0.00085041],[0.00218326,0,0.999998]],[false,false]],
	["Computer",[10149.5,7977.86,73.1811],[[0.932289,-0.361709,-0.00203543],[0.00218326,0,0.999998]],[false,false]],
	["CUP_A2_map_for_briefing",[10150.7,7979.6,73.8202],[[0.404285,0.914633,0],[0,0,1]],[false,false]],
	["MapBoard_seismic_F",[10150.1,7973,72.3355],[[0.400863,-0.916138,-0.000875191],[0.00218326,0,0.999998]],[false,false]],
	["land_Objects9",[10147.7,7976.64,72.3409],[[-0.914017,0.405671,0.00199554],[0.00218326,0,0.999998]],[false,false]],
	["Land_OfficeCabinet_01_F",[10151.8,7975.77,72.3319],[[0.91744,-0.39787,-0.00200301],[0.00218326,0,0.999998]],[false,false]],
	["CUP_A2_table_drawer",[10152.6,7978.35,72.3301],[[-0.925144,0.379612,0.00201983],[0.00218326,0,0.999998]],[false,false]],
	["Land_Printer_01_F",[10152.5,7978.33,73.0375],[[0.940249,-0.340487,0],[0,0,1]],[false,false]],
	["CUP_shelf",[10165.7,7974.08,73.9097],[[-0.404301,-0.914626,0.000341932],[0.000845734,0,1]],[false,false]],
	//["Land_CashDesk_F",[10160.4,7974.23,73.9142],[[-0.914918,0.40364,0.000773777],[0.000845734,0,1]],[false,false]],
	["Land_WaterCooler_01_old_F",[10163.2,7969.68,73.8577],[[-0.405448,-0.914118,0.000342901],[0.000845734,0,1]],[false,false]],
	["CUP_icebox",[10161,7970.86,73.9136],[[-0.3842,-0.92325,0.000324931],[0.000845734,0,1]],[false,false]],
	["CUP_shelf",[10163.6,7974.88,73.9115],[[0.366486,0.930423,-0.00030995],[0.000845734,0,1]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[10165.7,7974.72,74.8191],[[0.841178,0.540758,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BeefParts",[10163.7,7974.71,75.1708],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine01",[10165.6,7973.34,75.1677],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine02",[10165.7,7973.71,74.8141],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine03",[10165.6,7973.33,74.4596],[[0.985744,0.16825,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[10165.3,7973.86,74.4689],[[0.748188,0.663487,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine04",[10165.5,7973.33,74.1094],[[0.637568,0.770394,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[10165.2,7973.46,74.8113],[[-0.806513,0.591216,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Cheathas",[10165.6,7974.38,75.1762],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CockONut",[10165.5,7974.12,74.8193],[[0.719644,-0.694344,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EMRE",[10163.9,7975.14,74.473],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[10163.5,7975.24,74.822],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[10163.2,7974.53,74.4707],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_InstantCoffee",[10163.3,7974.57,74.0968],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_MacasCheese",[10163.5,7974.13,74.8149],[[-0.341743,0.939793,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Moobar",[10165.7,7974.67,74.4623],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[10163.1,7974.35,75.1719],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[10165.3,7973.63,74.1147],[[-0.999877,-0.0156577,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Surstromming",[10163.5,7974.23,74.1134],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine01",[10165.8,7973.77,75.1676],[[0.452068,0.891984,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine01",[10166,7974.21,75.1681],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine01",[10166.1,7974.57,75.1727],[[0.741536,0.670913,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine02",[10165.6,7973.33,74.8131],[[0.531166,0.847268,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine02",[10165.9,7974.16,74.8133],[[0.637512,0.77044,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine02",[10166.1,7974.62,74.8139],[[0.667275,0.744811,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine03",[10165.8,7973.79,74.4584],[[0.366525,0.930408,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine03",[10165.9,7974.22,74.4587],[[0.607751,0.794128,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine03",[10166.1,7974.7,74.4587],[[0.144706,0.989475,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine04",[10165.7,7973.76,74.1076],[[0.323316,0.946291,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine04",[10165.9,7974.2,74.1074],[[0.0892379,0.99601,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Magazine04",[10166.1,7974.65,74.1074],[[0.979692,0.200507,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Cheathas",[10165.3,7973.6,75.1634],[[0.436064,-0.899916,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[10165.8,7974.86,74.8198],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[10165.7,7974.57,74.8196],[[0.954118,-0.299431,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CockONut",[10165.6,7974.3,74.8147],[[-0.887679,-0.460463,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[10165.3,7973.59,74.8114],[[-0.88551,-0.464619,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[10165.3,7973.78,74.8111],[[0.79164,-0.610987,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[10165.2,7973.46,74.469],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[10165.3,7973.64,74.4689],[[0.613692,0.789545,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Moobar",[10165.7,7974.45,74.4627],[[0.999073,0.0430559,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[10165.4,7974.06,74.1145],[[0.547225,-0.836985,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[10165.6,7974.53,74.1147],[[-0.999877,-0.0156577,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BeefParts",[10163.5,7974.23,75.1694],[[0.436337,0.899783,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BeefParts",[10163.9,7975.23,75.1694],[[-0.799094,0.601206,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_MacasCheese",[10163.5,7974.4,74.8205],[[-0.970767,0.240025,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_MacasCheese",[10163.6,7974.26,74.8152],[[-0.975932,-0.218073,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EMRE",[10163.8,7974.87,74.4752],[[-0.529619,0.848236,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EMRE",[10163.6,7974.57,74.4751],[[0.538365,0.842712,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Surstromming",[10163.6,7974.57,74.1058],[[-0.737378,-0.675481,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Surstromming",[10163.8,7974.85,74.1137],[[0.195066,-0.98079,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_InstantCoffee",[10163.5,7975.26,74.0976],[[0.999667,-0.0258164,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[10163.1,7974.3,74.4709],[[0.587459,0.809254,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[10163.3,7974.84,74.4708],[[0.738641,-0.674099,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[10163.3,7974.69,74.4708],[[0.893425,-0.449213,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[10163.5,7975.37,74.8223],[[0.993605,0.11291,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[10163.5,7975.12,74.8224],[[-0.64114,-0.767424,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[10163.4,7975.05,74.8221],[[-0.875578,0.483077,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[10163.4,7974.94,74.8223],[[-0.966125,-0.258074,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[10163.2,7974.55,75.1716],[[0.981449,-0.191725,0],[0,0,1]],[false,false]],
	["CUP_A2_box_c",[10152.4,7972.94,74.1661],[[-0.939051,0.343777,0.000794188],[0.000845734,0,1]],[false,false]],
	["CUP_A2_box_c",[10153.7,7971.43,74.1645],[[-0.805295,-0.592874,0.000681065],[0.000845734,0,1]],[false,false]],
	["CUP_A2_box_c",[10152.4,7971.85,74.1657],[[0.0926018,-0.995703,-7.83166e-005],[0.000845734,0,1]],[false,false]],
	["CUP_A2_box_c",[10152.3,7972.38,74.7958],[[-0.939051,0.343777,0],[0,0,1]],[false,false]],
	["CUP_A2_box_c",[10152.9,7972.75,74.1654],[[-0.939051,0.343777,0.000794188],[0.000845734,0,1]],[false,false]],
	["CUP_A2_box_c",[10153.1,7973.83,74.1648],[[-0.564058,0.825735,0.000477043],[0.000845734,0,1]],[false,false]],
	["CUP_A2_box_c",[10152.9,7973.53,74.7855],[[-0.939051,0.343777,0],[0,0,1]],[false,false]],
	["CUP_A2_box_c",[10153.3,7974.78,74.1648],[[-0.970532,0.240972,0.000820812],[0.000845734,0,1]],[false,false]],
	["CUP_A2_box_c",[10154,7975.64,74.1646],[[-0.743687,0.668528,0.000628962],[0.000845734,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[10156.7,7970.71,73.8495],[[-0.412888,-0.910782,0.000349193],[0.000845734,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[10157.3,7977.72,73.829],[[0.41431,0.910136,-0.000350396],[0.000845734,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[10156.6,7976.15,73.8548],[[0.926298,-0.376792,-0.000783402],[0.000845734,0,1]],[false,false]],
	["Land_PaperBox_open_empty_F",[10127.6,7982.91,76.4295],[[0.923218,-0.38427,-0.00225379],[0.00244123,0,0.999997]],[false,false]],
	["Land_PaperBox_open_full_F",[10129.1,7982.24,76.4391],[[0.35942,0.933176,-0.000877429],[0.00244123,0,0.999997]],[false,false]],
	["Land_Pallet_MilBoxes_F",[10126.6,7980.64,76.4298],[[0.922534,-0.385909,-0.00225212],[0.00244123,0,0.999997]],[false,false]],
	["Land_PaperBox_closed_F",[10128.1,7979.75,76.4412],[[-0.358547,-0.933511,0.000875298],[0.00244123,0,0.999997]],[false,false]],
	["Exile_Cosmetic_UAV",[10127.2,7988.19,77.6549],[[0,0.999466,0.032674],[-0.0101133,-0.0326724,0.999415]],[false,false]],
	["Exile_Cosmetic_MG",[10130.3,7986.91,76.5068],[[0.487804,0.872952,-0.00119085],[0.00244123,0,0.999997]],[false,false]],
	["Land_PaperBox_closed_F",[10127.2,7988.38,76.4597],[[-0.358547,-0.933511,0.000875298],[0.00244123,0,0.999997]],[false,false]],
	["Exile_Cosmetic_MG",[10128.8,7987.4,76.5132],[[0.123115,0.992392,-0.000300552],[0.00244123,0,0.999997]],[false,false]],
	["Land_LuggageHeap_03_F",[10107.6,7979.53,76.7227],[[0.530937,-0.84741,-0.00129614],[0.00244123,0,0.999997]],[false,false]],
	["Land_LuggageHeap_01_F",[10108.4,7978.5,76.722],[[-0.106572,0.994305,0.000260169],[0.00244123,0,0.999997]],[false,false]],
	["Land_LuggageHeap_02_F",[10109.1,7979.17,76.7184],[[0.944661,-0.32804,-0.00230614],[0.00244123,0,0.999997]],[false,false]],
	["Land_LuggageHeap_04_F",[10105.9,7979.77,76.7185],[[0.34948,0.936943,-0.000853164],[0.00244123,0,0.999997]],[false,false]],
	["Land_LuggageHeap_02_F",[10109.5,7978.39,76.7199],[[-0.772891,0.634536,0.00188681],[0.00244123,0,0.999997]],[false,false]],
	["Land_LuggageHeap_01_F",[10106.6,7978.79,76.7252],[[0.505313,0.862935,-0.00123359],[0.00244123,0,0.999997]],[false,false]],
	["Land_LuggageHeap_02_F",[10107.5,7978.47,76.7245],[[0.999996,0.00106604,-0.00244123],[0.00244123,0,0.999997]],[false,false]],
	//["Land_Workbench_01_F",[10102.6,7974.02,76.7301],[[-0.926785,0.375586,0.0022625],[0.00244123,0,0.999997]],[false,false]],
	["Land_CinderBlocks_F",[10106.9,7971.37,76.7197],[[-0.923288,0.384102,0.00225396],[0.00244123,0,0.999997]],[false,false]],
	["Land_Bricks_V2_F",[10105.9,7971.78,76.7221],[[0.923141,-0.384455,-0.00225361],[0.00244123,0,0.999997]],[false,false]],
	["Land_Bricks_V2_F",[10104.9,7972.2,76.7245],[[-0.923148,0.384438,0.00225362],[0.00244123,0,0.999997]],[false,false]],
	["Land_ToolTrolley_02_F",[10107.6,7974.82,76.7179],[[-0.933371,0.358905,0.00227858],[0.00244123,0,0.999997]],[false,false]],
	["Exile_Sign_Foolbox",[10107.8,7975.08,76.4347],[[0.382783,0.923838,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Foolbox",[10107.6,7974.69,77.6798],[[0.895004,-0.446058,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Foolbox",[10108,7974.87,77.6801],[[0.935422,-0.353534,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Foolbox",[10107.5,7975.03,77.6856],[[0.990525,-0.137329,0],[0,0,1]],[false,false]],
	["Land_Portable_generator_F",[10107.5,7972.25,76.7182],[[0.917446,-0.397861,0],[0,0,1]],[false,false]],
	["Land_ToolTrolley_01_F",[10106,7975.45,76.7218],[[-0.940191,0.340649,0],[0,0,1]],[false,false]],
	["Land_WeldingTrolley_01_F",[10104,7972.33,76.7269],[[-0.384466,-0.923139,0],[0,0,1]],[false,false]],
	["Land_DrillAku_F",[10106.5,7975.38,77.5821],[[0,0.999998,-0.00204263],[0.00487022,0.0020426,0.999986]],[false,false]],
	["Land_ExtensionCord_F",[10106.1,7975.45,76.8495],[[-0.019552,-0.999809,0],[0,0,1]],[false,false]],
	["Land_File_F",[10105.8,7975.67,77.5758],[[-0.935662,-0.352897,0],[0,0,1]],[false,false]],
	["Land_Gloves_F",[10106.3,7975.32,77.2296],[[0,0.999998,-0.00204263],[0.00487022,0.0020426,0.999986]],[false,false]],
	["Land_Wrench_F",[10106.1,7975.58,77.5761],[[0,0.999998,-0.00204263],[0.00487022,0.0020426,0.999986]],[false,false]],
	["Land_DrillAku_F",[10106.3,7975.36,77.5784],[[0.624695,-0.780869,0],[0,0,1]],[false,false]],
	["Land_Gloves_F",[10105.9,7975.5,77.2292],[[0.921866,0.38751,0],[0,0,1]],[false,false]],
	["Land_Screwdriver_V2_F",[10105.8,7975.42,77.5728],[[-0.802421,0.596758,0],[0,0,1]],[false,false]],
	["Land_Screwdriver_V1_F",[10105.9,7975.49,77.5757],[[-0.913231,0.407442,0],[0,0,1]],[false,false]],
	["Oil_Spill_F",[10156.4,7937.07,66.5542],[[0,0.999292,0.037632],[0.00772022,-0.0376309,0.999262]],[false,false]],
	["land_cwa_wheel_cart",[10098.1,7945.64,67.2379],[[-0.447783,0.891682,0.0662851],[-0.0069053,-0.0775791,0.996962]],[false,false]],
	["Land_IronPipes_F",[10097.1,7949.67,67.6117],[[-0.847692,0.515857,0.123737],[0.0978469,-0.0772086,0.992202]],[false,false]],
	["Land_Pallets_stack_F",[10099.8,7950.36,67.672],[[0,0.987894,0.15513],[-0.0173213,-0.155106,0.987746]],[false,false]],
	["CUP_A2_scaffolding",[10124.6,7941.42,66.8444],[[0.883631,0.468184,0],[0,0,1]],[false,false]],
	["Land_vodni_vez",[10100.2,7958.5,68.659],[[0.966259,-0.257572,0],[0,0,1]],[false,false]],
	["Land_Posed",[10103.6,7901,67.0681],[[-0.651191,-0.756816,0.056387],[0.0340261,0.0451092,0.998402]],[false,false]],
	["Land_Posed",[10172.9,7934.34,65.5598],[[0.869632,-0.493701,0],[0,0,1]],[false,false]],
	//["Exile_Guard_02",[10103.3,7900.53,71.0922],[[-0.340634,-0.940196,0],[0,0,1]],[false,false]],
	//["Exile_Guard_03",[10173.4,7934.3,69.5841],[[0.683556,-0.729898,0],[0,0,1]],[false,false]],
	["Land_Garbage_line_F",[10145.1,7952.49,67.3705],[[0.914693,-0.404148,0],[0,0,1]],[false,false]],
	["Land_Garbage_line_F",[10149.7,7950.61,67.3022],[[-0.930173,0.36712,0],[0,0,1]],[false,false]],
	["Land_Garbage_line_F",[10132.3,7957.86,69.5476],[[0.918285,-0.395919,0],[0,0,1]],[false,false]],
	["Land_WheelieBin_01_F",[10101.4,7979.18,73.2332],[[0,0.999999,-0.00161945],[0.00819227,0.00161939,0.999965]],[false,false]],
	["Land_WheelieBin_01_F",[10100.5,7977.24,73.2354],[[0.999997,0.00259264,0],[0,0,1]],[false,false]],
	["Land_WheelieBin_01_F",[10122,7985.32,72.9477],[[-0.502655,-0.864487,0],[0,0,1]],[false,false]],
	["Land_WheelieBin_01_F",[10122.8,7987.27,72.9458],[[0.761976,-0.647605,0],[0,0,1]],[false,false]],
	["Land_GarbageBags_F",[10103.9,7974.43,73.2208],[[0,0.999975,0.00709224],[0,-0.00709224,0.999975]],[false,false]],
	["Land_GarbageBags_F",[10107.3,7977.38,73.2188],[[0.96328,-0.268497,0],[0,0,1]],[false,false]],
	["Land_GarbageBags_F",[10126.8,7982.75,72.9296],[[0,0.999975,0.00709224],[0,-0.00709224,0.999975]],[false,false]],
	["Land_GarbageBags_F",[10128,7985.39,72.9329],[[0.819639,-0.57288,0],[0,0,1]],[false,false]],
	["Land_JunkPile_F",[10105.5,7974.67,73.2231],[[-0.302282,0.953219,0],[0,0,1]],[false,false]],
	["Land_JunkPile_F",[10105.3,7977.71,73.2237],[[0.0166875,-0.999861,0],[0,0,1]],[false,false]],
	["Land_JunkPile_F",[10126.4,7986.04,72.9368],[[0.344393,-0.938825,0],[0,0,1]],[false,false]],
	["Land_JunkPile_F",[10125.2,7983.65,72.9397],[[-0.888837,0.458224,0],[0,0,1]],[false,false]],
	["Land_Flush_Light_yellow_F",[10141.2,7928.15,73.071],[[0.884879,0.465821,0],[0,0,1]],[false,false]],
	["Land_Flush_Light_yellow_F",[10133.4,7924,73.0871],[[0.884879,0.465821,0],[0,0,1]],[false,false]],
	["Land_Flush_Light_yellow_F",[10125,7939.71,73.0922],[[0.884879,0.465821,0],[0,0,1]],[false,false]],
	["Land_Flush_Light_yellow_F",[10132.8,7943.87,73.0789],[[0.884879,0.465821,0],[0,0,1]],[false,false]],
	["CUP_misc_TorzoTree_PMC",[10118.3,7965.5,69.5963],[[0,0.977033,0.213086],[0.203885,-0.20861,0.956511]],[false,false]],
	["CUP_misc_StubLeafs_PMC",[10117.9,7957.27,68.2258],[[0.900092,-0.435699,0],[0,0,1]],[false,false]],
	["CUP_kmen_1_buk",[10116.1,7961.54,69.2662],[[-0.780428,0.625246,0],[0,0,1]],[false,false]],
	["Land_Sleeping_bag_F",[10155.7,7976.64,77.3394],[[0,0.999999,0.00150472],[0.0108138,-0.00150463,0.99994]],[false,false]],
	["Land_Sleeping_bag_blue_F",[10166,7971.33,77.3295],[[0.248856,0.968541,0],[0,0,1]],[false,false]],
	["Land_Sleeping_bag_brown_F",[10164.4,7967.59,77.3308],[[-0.320857,-0.947128,0],[0,0,1]],[false,false]],
	["Land_Sleeping_bag_brown_folded_F",[10163.1,7975.76,77.3319],[[0,0.999974,0.00725865],[0.0178164,-0.0072575,0.999815]],[false,false]],
	["Land_Sleeping_bag_blue_folded_F",[10163.6,7975.55,77.3315],[[0.982694,0.185238,0],[0,0,1]],[false,false]],
	["Land_Sleeping_bag_folded_F",[10163.2,7975.24,77.3318],[[0.964529,-0.263976,0],[0,0,1]],[false,false]],
	["Land_Ground_sheet_F",[10163.5,7972.22,77.3315],[[0.46846,0.883484,-0.00039619],[0.000845728,0,1]],[false,false]],
	["Land_Ground_sheet_blue_F",[10162.2,7967.58,77.3326],[[-0.974152,0.225894,0],[0,0,1]],[false,false]],
	["Land_Ground_sheet_folded_blue_F",[10162.4,7975.81,77.3325],[[-0.680564,0.732689,0],[0,0,1]],[false,false]],
	["Land_Ground_sheet_folded_F",[10162.2,7975.27,77.3326],[[0.962021,0.272976,0],[0,0,1]],[false,false]],
	["Land_Ground_sheet_khaki_F",[10159.8,7968.57,77.3347],[[0.883936,-0.467609,0],[0,0,1]],[false,false]],
	["Land_Ground_sheet_folded_khaki_F",[10162.7,7975.29,77.3323],[[0,0.999974,0.00725865],[0.0178164,-0.0072575,0.999815]],[false,false]],
	["Land_Ground_sheet_OPFOR_F",[10165.8,7973.88,77.3296],[[0.933526,-0.358511,0],[0,0,1]],[false,false]],
	["Land_Ground_sheet_folded_OPFOR_F",[10162.6,7976.11,77.3323],[[0,0.999974,0.00725865],[0.0178164,-0.0072575,0.999815]],[false,false]],
	["Land_Ground_sheet_yellow_F",[10156.9,7970.37,77.3371],[[0,0.999999,0.00150472],[0.0108138,-0.00150463,0.99994]],[false,false]],
	["Land_Ground_sheet_folded_yellow_F",[10162.7,7975.7,77.3322],[[-0.949559,0.313589,0],[0,0,1]],[false,false]],
	["Land_CampingChair_V1_F",[10160,7974.55,77.3346],[[-0.416905,0.90895,0.000352589],[0.000845728,0,1]],[false,false]],
	["Land_CampingTable_small_F",[10160.9,7974.06,77.3337],[[0.216125,0.976366,-0.000182783],[0.000845728,0,1]],[false,false]],
	["Land_Camping_Light_off_F",[10160.9,7974.05,78.1466],[[0.216125,0.976366,-0.000182783],[0.000845728,0,1]],[false,false]],
	["Land_CampingChair_V1_F",[10162.1,7974.07,77.3346],[[0.884494,0.466551,-0.000748042],[0.000845728,0,1]],[false,false]],
	["Land_HelipadCivil_F",[10123.1,7923.97,66.7916],[[0,0.999995,-0.0030297],[0.00585935,0.00302965,0.999978]],[false,false]]
];
{
	private _object = (_x select 0) createVehicle [0,0,0];
	_object setPosASL (_x select 1);
	_object setVectorDirAndUp (_x select 2);
	_object enableSimulationGlobal ((_x select 3) select 0);
	_object allowDamage ((_x select 3) select 1);
} forEach _objects;

 

ChardakResortTraders.sqf

Spoiler

    ///////////////////////////////////////////////////////////////////////////
    // Armory Trader
    ///////////////////////////////////////////////////////////////////////////
    _chair = "Land_CampingChair_V2_F" createVehicleLocal [0,0,0];
    _chair setDir 187.137;
    _chair setPosATL [10124.8,7981.87,5.73594];

    _trader = 
    [
        "Exile_Trader_Armory",
        "Exile_Trader_Armory",
        "PersianHead_A3_02",
        ["InBaseMoves_SittingRifle1"],
        [0, -0.15, -0.45],
        170,
        _chair
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Equipment Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_Equipment",
        "Exile_Trader_Equipment",
        "WhiteHead_19",
        ["InBaseMoves_Lean1"],
        [10108.7,7975.42,5.72787],
        292.123
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Fast Food Trader
    ///////////////////////////////////////////////////////////////////////////
    _cashDesk = "Land_CashDesk_F" createVehicleLocal [0,0,0];
    _cashDesk setDir 293.5;
    _cashDesk setPosATL [10160.4,7974.23,2.9163];

    _microwave = "Land_Microwave_01_F" createVehicleLocal [0,0,0];
    _cashDesk disableCollisionWith _microwave;         
    _microwave disableCollisionWith _cashDesk; 
    _microwave attachTo [_cashDesk, [-0.6, 0.2, 1.1]];

    _ketchup = "Land_Ketchup_01_F" createVehicleLocal [0,0,0];
    _cashDesk disableCollisionWith _ketchup;         
    _ketchup disableCollisionWith _cashDesk; 
    _ketchup attachTo [_cashDesk, [-0.6, 0, 1.1]];

    _mustard = "Land_Mustard_01_F" createVehicleLocal [0,0,0];
    _cashDesk disableCollisionWith _mustard;         
    _mustard disableCollisionWith _cashDesk; 
    _mustard attachTo [_cashDesk, [-0.5, -0.05, 1.1]];

    _trader = 
    [
        "Exile_Trader_Food",
        "Exile_Trader_Food",
        "GreekHead_A3_01",
        ["InBaseMoves_table1"],
        [0.1, 0.5, 0.2],
        170,
        _cashDesk
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Hardware Trader
    ///////////////////////////////////////////////////////////////////////////
    _workBench = "Land_Workbench_01_F" createVehicleLocal [0,0,0];
    _workBench setDir 292.146;
    _workBench setPosATL [10102.6,7974.02,5.74059];

    _trader = 
    [
        "Exile_Trader_Hardware",
        "Exile_Trader_Hardware",
        "WhiteHead_17",
        ["InBaseMoves_sitHighUp1"],
        [0, 0, -0.5],
        170,
        _workBench
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Office Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_Office",
        "Exile_Trader_Office",
        "GreekHead_A3_04",
        ["HubBriefing_scratch", "HubBriefing_stretch", "HubBriefing_think", "HubBriefing_lookAround1", "HubBriefing_lookAround2"],
        [10150.1,7978.25,1.43115],
        206.418
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Russian Roulette
    ///////////////////////////////////////////////////////////////////////////
    [
        "Exile_Trader_RussianRoulette",
        "",
        "GreekHead_A3_01",
        ["HubStandingUA_move1", "HubStandingUA_move2", "HubStandingUA_idle1", "HubStandingUA_idle2", "HubStandingUA_idle3"],
        [10140.6,7925.74,-0.00740051],
        0
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Specops Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_SpecialOperations",
        "Exile_Trader_SpecialOperations",
        "AfricanHead_02",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [10128.6,7985.24,5.72485],
        284.199
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Vehicle Customs Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_VehicleCustoms",
        "Exile_Trader_VehicleCustoms",
        "WhiteHead_11",
        ["AidlPercMstpSnonWnonDnon_G01", "AidlPercMstpSnonWnonDnon_G02", "AidlPercMstpSnonWnonDnon_G03", "AidlPercMstpSnonWnonDnon_G04", "AidlPercMstpSnonWnonDnon_G05", "AidlPercMstpSnonWnonDnon_G06"],
        [10114.6,7927.61,0.142662],
        128.036
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Vehicle Trader
    ///////////////////////////////////////////////////////////////////////////

    _trader = 
    [
        "Exile_Trader_Vehicle",
        "Exile_Trader_Vehicle",
        "WhiteHead_11",
        ["InBaseMoves_repairVehicleKnl", "InBaseMoves_repairVehiclePne"],
        [10155,7937.35,0.00428772],
        67.5545
    ]
    call ExileClient_object_trader_create;

    _carWreck = "Land_Wreck_CarDismantled_F" createVehicleLocal [0,0,0];
    _carWreck setDir 345.934;
    _carWreck setPosATL [10156.8,7937.48,0.00428772];

    ///////////////////////////////////////////////////////////////////////////
    // Waste Dump Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_WasteDump",
        "Exile_Trader_WasteDump",
        "GreekHead_A3_01",
        ["HubStandingUA_move1", "HubStandingUA_move2", "HubStandingUA_idle1", "HubStandingUA_idle2", "HubStandingUA_idle3"],
        [10147.5,7949.3,0.156479],
        195.639
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard - West Side
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_02",
        "",
        "WhiteHead_03",
        ["InBaseMoves_patrolling2","InBaseMoves_patrolling1"],
        [10103.3,7900.53,4.05922],
        207.3
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard - East Side
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_03",
        "",
        "AfricanHead_03",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [10173.4,7934.3,4.06305],
        122.978
    ]
    call ExileClient_object_trader_create;

 

ES Petrol

Photos

Spoiler

20160712171133_1.jpg 
20160712171157_1.jpg
20160712171216_1.jpg
20160712171236_1.jpg
20160712171242_1.jpg

Eden Editor Code (May be additional items that are commented out in final code)

Spoiler

version=52;
class EditorData
{
	moveGridStep=1;
	angleGridStep=0.2617994;
	scaleGridStep=1;
	autoGroupingDist=10;
	toggles=1;
	class ItemIDProvider
	{
		nextID=267;
	};
	class Camera
	{
		pos[]={3912.1313,167.00455,9239.8525};
		dir[]={0.69557953,-0.52298516,0.49284396};
		up[]={0.42694855,0.85204232,0.30250373};
		aside[]={0.57819849,2.7455389e-006,-0.8160761};
	};
};
binarizationWanted=0;
addons[]=
{
	"exile_client",
	"SAR_ru_architecture",
	"A3_Structures_F_Civ_Camping",
	"CUP_Misc3_Config",
	"CUP_Buildings_Config",
	"A3_Structures_F_Ind_Factory",
	"A3_Structures_F_Civ_Garbage",
	"A3_Structures_F_EPA_Mil_Scrapyard",
	"A3_Structures_F_Heli_Ind_Machines",
	"A3_Structures_F_Mil_Helipads",
	"A3_Structures_F_Wrecks",
	"CUP_Editor_Structures_Config",
	"A3_Structures_F_Bootcamp_Items_Electronics",
	"A3_Structures_F_Bootcamp_Items_Sport",
	"A3_Structures_F_Heli_Furniture",
	"CUP_A2_EditorObjects",
	"A3_Structures_F_EPC_Civ_InfoBoards",
	"A3_Structures_F_Furniture",
	"A3_Structures_F_EPA_Items_Food",
	"A3_Structures_F_Heli_Civ_Constructions",
	"A3_Structures_F_Items_Tools",
	"A3_Structures_F_Items_Electronics",
	"A3_Structures_F_Civ_Constructions",
	"A3_Structures_F_EPB_Items_Luggage"
};
class AddonsMetaData
{
	class List
	{
		items=15;
		class Item0
		{
			className="exile_client";
			name="exile_client";
		};
		class Item1
		{
			className="SAR_ru_architecture";
			name="SAR_ru_architecture";
		};
		class Item2
		{
			className="A3_Structures_F";
			name="Arma 3 Alpha - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item3
		{
			className="CUP_Misc3_Config";
			name="CUP_Misc3_Config";
		};
		class Item4
		{
			className="CUP_Buildings_Config";
			name="CUP_Buildings_Config";
		};
		class Item5
		{
			className="A3_Structures_F_Ind";
			name="Arma 3 Alpha - Industry complexes";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item6
		{
			className="A3_Structures_F_EPA";
			name="Arma 3 Survive Episode - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item7
		{
			className="A3_Structures_F_Heli";
			name="Arma 3 Helicopters - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item8
		{
			className="A3_Structures_F_Mil";
			name="Arma 3 - Military Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item9
		{
			className="A3_Structures_F_Wrecks";
			name="Arma 3 Alpha - Vehicle wrecks";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item10
		{
			className="CUP_Editor_Structures_Config";
			name="CUP_Editor_Structures_Config";
		};
		class Item11
		{
			className="A3_Structures_F_Bootcamp";
			name="Arma 3 Bootcamp Update - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item12
		{
			className="CUP_A2_EditorObjects";
			name="CUP_A2_EditorObjects";
			author="MemphisBelle";
		};
		class Item13
		{
			className="A3_Structures_F_EPC";
			name="Arma 3 Win Episode - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item14
		{
			className="A3_Structures_F_EPB";
			name="Arma 3 Adapt Episode - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
	};
};
randomSeed=1289420;
class ScenarioData
{
	author="Mr Health And Safety";
};
class Mission
{
	class Intel
	{
		timeOfChanges=1800.0002;
		startWeather=0.80000001;
		startWind=0.1;
		startWaves=0.1;
		forecastWeather=0.80000001;
		forecastWind=0.1;
		forecastWaves=0.1;
		forecastLightnings=0.1;
		year=2001;
		month=3;
		day=5;
		startFogDecay=0.014;
		forecastFogDecay=0.014;
	};
	class Entities
	{
		items=156;
		class Item0
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3937.1111,151.49411,9313.3262};
				angles[]={0,5.450737,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=26;
			type="Exile_Sign_Equipment";
			atlOffset=0.032272339;
		};
		class Item1
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3960.73,151.56488,9305.3154};
				angles[]={0,0.69690573,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=28;
			type="Exile_Sign_Food";
			atlOffset=-0.0025787354;
		};
		class Item2
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3953.5315,151.59549,9309.7803};
				angles[]={0,0.68593663,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=31;
			type="Exile_Sign_Hardware";
			atlOffset=0.023651123;
		};
		class Item3
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3968.709,152.15053,9296.2012};
				angles[]={0,0.73413563,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=36;
			type="Exile_Sign_Office";
			atlOffset=0.5847168;
		};
		class Item4
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3962.3633,151.31461,9260.874};
				angles[]={0,0.69953412,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=37;
			type="Exile_Sign_RussianRoulette";
		};
		class Item5
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3981.7488,151.48639,9274.54};
				angles[]={0,0.69856542,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=40;
			type="Exile_Sign_VehicleCustoms";
			atlOffset=0.10557556;
		};
		class Item6
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3972.1628,151.31462,9281.3389};
				angles[]={0,0.68931574,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=42;
			type="Exile_Sign_Vehicles";
			atlOffset=1.5258789e-005;
		};
		class Item7
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4010.6055,151.31458,9244.1953};
				angles[]={0,2.203289,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=44;
			type="Exile_Sign_WasteDump";
			atlOffset=-3.0517578e-005;
		};
		class Item8
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3922.1113,151.41695,9263.293};
				angles[]={0,0.74327695,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=46;
			type="Exile_Sign_TraderCity";
			atlOffset=-0.59591675;
		};
		class Item9
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3946.0237,150.42171,9324.0684};
				angles[]={0.00069053395,5.3253074,6.2693057};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=47;
			type="Exile_ConcreteMixer";
		};
		class Item10
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3959.8577,151.41861,9256.7813};
				angles[]={0,2.2857306,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=48;
			type="land_Objects116";
		};
		class Item11
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3968.7083,151.05762,9296.1982};
				angles[]={0,0.73286128,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=49;
			type="Exile_Sign_Locker";
			atlOffset=-0.37135315;
		};
		class Item12
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4023.2371,151.31461,9219.0908};
				angles[]={0,2.1670029,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=52;
			type="Exile_Sign_SpecialOperations";
		};
		class Item13
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4028.7554,151.31458,9232.2061};
				angles[]={0,2.0407312,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=53;
			type="Exile_Sign_Armory";
			atlOffset=-3.0517578e-005;
		};
		class Item14
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3971.7339,150.8994,9299.6699};
				angles[]={6.2822089,0.71795928,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=54;
			type="Exile_Locker";
		};
		class Item15
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3973.1736,150.89799,9298.3916};
				angles[]={6.2822089,0.71795928,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=55;
			type="Exile_Locker";
		};
		class Item16
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3969.177,150.89928,9296.6357};
				angles[]={6.2808952,3.8793221,6.2796474};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=56;
			type="Exile_Locker";
		};
		class Item17
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3967.2312,150.91222,9299.2676};
				angles[]={6.2808952,5.4463916,6.2796474};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=57;
			type="Exile_Locker";
		};
		class Item18
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3971.6982,150.89531,9295.4473};
				angles[]={6.2822089,2.2908847,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=58;
			type="Exile_Locker";
		};
		class Item19
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3972.7273,150.89627,9296.5586};
				angles[]={6.2822089,2.2872198,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=59;
			type="Exile_Locker";
		};
		class Item20
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3938.4597,150.43924,9315.0293};
						angles[]={0,2.5291662,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=61;
					type="Exile_Trader_Equipment";
					atlOffset=0.044723511;
				};
			};
			class Attributes
			{
			};
			id=60;
			atlOffset=0.044723511;
		};
		class Item21
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3976.7483,150.58754,9286.4336};
						angles[]={0,4.0380602,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=63;
					type="Exile_Trader_Vehicle";
				};
			};
			class Attributes
			{
			};
			id=62;
		};
		class Item22
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3961.8127,150.44171,9260.1211};
						angles[]={0,4.1736431,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=65;
					type="Exile_Trader_RussianRoulette";
					atlOffset=0.071166992;
				};
			};
			class Attributes
			{
			};
			id=64;
			atlOffset=0.071166992;
		};
		class Item23
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={4021.7319,150.27502,9220.5654};
						angles[]={0,4.9173317,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=67;
					type="Exile_Trader_SpecialOperations";
					atlOffset=3.0517578e-005;
				};
			};
			class Attributes
			{
			};
			id=66;
			atlOffset=3.0517578e-005;
		};
		class Item24
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3952.6563,150.76578,9316.0098};
						angles[]={0,2.2001622,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=69;
					type="Exile_Trader_Hardware";
				};
			};
			class Attributes
			{
			};
			id=68;
		};
		class Item25
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={4029.0278,150.42462,9243.0313};
						angles[]={0,3.8127549,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
						isPlayer=1;
					};
					id=71;
					type="Exile_Trader_Armory";
					atlOffset=-0.00022888184;
				};
			};
			class Attributes
			{
			};
			id=70;
			atlOffset=-0.00022888184;
		};
		class Item26
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={4008.8882,150.27498,9247.1475};
						angles[]={0,5.2766752,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=73;
					type="Exile_Trader_WasteDump";
					atlOffset=-1.5258789e-005;
				};
			};
			class Attributes
			{
			};
			id=72;
			atlOffset=-1.5258789e-005;
		};
		class Item27
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3979.8662,150.37079,9277.6973};
						angles[]={0,3.8983982,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=75;
					type="Exile_Trader_VehicleCustoms";
				};
			};
			class Attributes
			{
			};
			id=74;
		};
		class Item28
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3965.158,150.88916,9312.3457};
						angles[]={0,3.7156458,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=77;
					type="Exile_Trader_Food";
				};
			};
			class Attributes
			{
			};
			id=76;
		};
		class Item29
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3975.0479,150.90442,9303.8037};
						angles[]={0,3.8598478,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=79;
					type="Exile_Trader_Office";
				};
			};
			class Attributes
			{
			};
			id=78;
		};
		class Item30
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3946.0259,150.7813,9297.8867};
				angles[]={0,4.7375388,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=80;
			type="Land_CampingChair_V1_F";
			atlOffset=7.6293945e-005;
		};
		class Item31
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3948.603,150.50871,9296.3252};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=81;
			type="Land_Campfire";
			atlOffset=-0.00010681152;
		};
		class Item32
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3939.0161,150.85608,9290.1758};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=82;
			type="Land_A_tent";
			atlOffset=-0.00016784668;
		};
		class Item33
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3944.262,150.89279,9286.3662};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=83;
			type="ACamp";
			atlOffset=-1.5258789e-005;
		};
		class Item34
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4011.1829,151.46916,9247.5322};
				angles[]={0,3.7987328,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=85;
			type="Land_Factory_Conv1_Main_F";
			atlOffset=0.49259949;
		};
		class Item35
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4018.7402,151.4735,9257.5361};
				angles[]={0,3.7712643,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=86;
			type="Land_Factory_Conv1_10_F";
			atlOffset=-0.07989502;
		};
		class Item36
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4007.9546,150.96524,9243.376};
				angles[]={0,0.65163773,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=87;
			type="Land_Garbage_line_F";
			atlOffset=0.64152527;
		};
		class Item37
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4010.9373,150.93625,9247.0557};
				angles[]={0,3.8352563,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=88;
			type="Land_Garbage_line_F";
			atlOffset=0.61253357;
		};
		class Item38
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4017.2639,153.23039,9255.5596};
				angles[]={0,0.65163773,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=89;
			type="Land_Garbage_line_F";
			atlOffset=0.020126343;
		};
		class Item39
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4020.1033,153.23709,9259.459};
				angles[]={0,0.65163773,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=90;
			type="Land_Garbage_line_F";
			atlOffset=0.026824951;
		};
		class Item40
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4022.3113,151.68097,9262.2158};
				angles[]={0,3.7520549,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=91;
			type="Land_Misc_GContainer_Big";
			atlOffset=-0.029266357;
		};
		class Item41
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4022.2803,152.29611,9262.0088};
				angles[]={0,0.56128311,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=92;
			type="Land_GarbagePallet_F";
			atlOffset=1.1257324;
		};
		class Item42
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4033.5535,150.9167,9241.124};
				angles[]={0,5.2673664,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=93;
			type="Land_PaperBox_closed_F";
			atlOffset=-0.0809021;
		};
		class Item43
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4030.7021,150.88054,9243.6055};
				angles[]={0,3.6466758,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=94;
			type="Land_PaperBox_open_empty_F";
			atlOffset=-0.23117065;
		};
		class Item44
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4032.2551,150.88152,9239.7256};
				angles[]={0,5.2709885,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=95;
			type="Land_PaperBox_open_full_F";
			atlOffset=-4.5776367e-005;
		};
		class Item45
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4032.1116,151.0686,9242.2715};
				angles[]={0,3.5511463,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=97;
			type="Land_PaperBox_closed_F";
			atlOffset=-0.011535645;
		};
		class Item46
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4026.5757,151.21068,9246.2744};
				angles[]={0,2.0998669,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=98;
			type="Land_PaperBox_open_full_F";
			atlOffset=1.5258789e-005;
		};
		class Item47
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4025.5745,150.9453,9244.5977};
				angles[]={0,5.2445555,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=99;
			type="Land_Pallet_MilBoxes_F";
			atlOffset=-4.5776367e-005;
		};
		class Item48
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4028.1355,150.97127,9245.3369};
				angles[]={0,3.761652,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=100;
			type="Land_Pallet_MilBoxes_F";
			atlOffset=-0.052246094;
		};
		class Item49
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3957.072,151.83073,9316.4014};
				angles[]={0,3.8453369,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=102;
			type="WaterPump_01_forest_F";
		};
		class Item50
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3984.5669,150.82944,9281.4229};
				angles[]={0,3.5149484,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=103;
			type="Land_ScrapHeap_1_F";
		};
		class Item51
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3954.3369,151.34879,9318.8584};
				angles[]={0,5.4312096,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=104;
			type="Land_PressureWasher_01_F";
		};
		class Item52
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4022.8486,151.38463,9225.4727};
			};
			side="Empty";
			class Attributes
			{
			};
			id=107;
			type="Exile_Cosmetic_UAV";
			atlOffset=0.9651947;
		};
		class Item53
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4020.1113,151.46329,9216.3984};
				angles[]={0,3.4390256,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=108;
			type="Exile_Cosmetic_MG";
		};
		class Item54
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={4019.6995,151.46329,9217.8096};
				angles[]={0,4.4779243,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=109;
			type="Exile_Cosmetic_MG";
		};
		class Item55
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3892.2793,149.03508,9228.6768};
				angles[]={0.0033296358,0,6.249866};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=110;
			type="Land_HelipadCivil_F";
		};
		class Item56
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3971.6594,151.74269,9289.5977};
				angles[]={0.00069053395,0.70542175,6.2817621};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=111;
			type="Land_Wreck_Van_F";
			atlOffset=0.22644043;
		};
		class Item57
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3975.0632,150.58752,9282.1797};
				angles[]={0,3.820092,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=112;
			type="CUP_lobby_case";
		};
		class Item58
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3973.8481,151.17416,9286.9043};
				angles[]={0,5.4583497,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=117;
			type="Land_PressureWasher_01_F";
		};
		class Item59
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3974.2605,150.67462,9287.8848};
				angles[]={6.257237,0,0.025948638};
			};
			side="Empty";
			class Attributes
			{
			};
			id=118;
			type="Land_CarBattery_02_F";
			atlOffset=0.25889587;
		};
		class Item60
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3974.3706,150.67461,9288.1797};
				angles[]={0,2.3441703,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=119;
			type="Land_CarBattery_02_F";
		};
		class Item61
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3982.6187,150.59268,9277.2178};
				angles[]={0,0.67184317,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=121;
			type="Land_KartTyre_01_x4_F";
		};
		class Item62
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3983.1968,150.82104,9278.1172};
				angles[]={0,3.8008373,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=122;
			type="Land_KartTrolly_01_F";
		};
		class Item63
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3983.1685,150.50719,9278.1465};
			};
			side="Empty";
			class Attributes
			{
			};
			id=124;
			type="Land_KartSteertingWheel_01_F";
			atlOffset=0.12208557;
		};
		class Item64
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3974.3608,151.68436,9306.4443};
				angles[]={6.2822089,0.76419604,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=125;
			type="Land_OfficeCabinet_01_F";
			atlOffset=0.38647461;
		};
		class Item65
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3975.2207,151.57646,9304.3945};
				angles[]={6.2822089,0.46750912,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=126;
			type="Land_OfficeChair_01_F";
			atlOffset=0.35644531;
		};
		class Item66
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3974.5386,151.32423,9303.4971};
				angles[]={6.2822089,3.8887963,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=127;
			type="OfficeTable_01_old_F";
			atlOffset=0.43788147;
		};
		class Item67
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3974.3411,151.74677,9303.6396};
				angles[]={6.2822089,2.2880697,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=128;
			type="CUP_A2_pc";
		};
		class Item68
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3977.1995,152.71019,9304.1816};
				angles[]={0,0.73201883,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=129;
			type="CUP_A2_map_for_briefing";
			atlOffset=1.8926697;
		};
		class Item69
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3977.03,151.86452,9301.957};
				angles[]={6.2822089,1.5722203,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=130;
			type="MapBoard_seismic_F";
			atlOffset=0.18537903;
		};
		class Item70
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3973.1191,150.90005,9299.6055};
				angles[]={6.2822089,2.3184049,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=131;
			type="Exile_Construction_Safe_Preview";
			atlOffset=0.00086975098;
		};
		class Item71
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3964.7712,150.88791,9311.9443};
				angles[]={0,0.72464764,6.2826972};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=133;
			type="Land_CashDesk_F";
		};
		class Item72
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3966.7397,151.6185,9309.7373};
				angles[]={0,0.72557992,6.2826972};
			};
			side="Empty";
			class Attributes
			{
			};
			id=134;
			type="Land_WaterCooler_01_old_F";
			atlOffset=0.30409241;
		};
		class Item73
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.9695,151.51109,9310.5928};
				angles[]={0,5.4408765,6.2826972};
			};
			side="Empty";
			class Attributes
			{
			};
			id=135;
			type="Land_Icebox_F";
			atlOffset=0.29199219;
		};
		class Item74
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3960.6394,151.51218,9309.1201};
				angles[]={0,5.4408765,6.2826972};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=136;
			type="Land_Icebox_F";
		};
		class Item75
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.9475,151.78709,9307.373};
				angles[]={0,2.2895341,6.2826972};
			};
			side="Empty";
			class Attributes
			{
			};
			id=137;
			type="Land_Metal_rack_F";
			atlOffset=0.31419373;
		};
		class Item76
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.1165,151.78773,9306.4424};
				angles[]={0,2.2895341,6.2826972};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=138;
			type="Land_Metal_rack_F";
		};
		class Item77
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.991,150.98645,9307.3379};
				angles[]={0,5.0430055,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=139;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.099136353;
		};
		class Item78
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3966.0955,151.00752,9307.499};
				angles[]={0,5.8632193,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=140;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.12026978;
		};
		class Item79
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.8591,151.01181,9307.2109};
				angles[]={0,2.2299027,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=141;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.12443542;
		};
		class Item80
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.7246,150.989,9307.0801};
				angles[]={0,5.7115397,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=142;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.1015625;
		};
		class Item81
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3966.1995,150.99973,9307.623};
			};
			side="Empty";
			class Attributes
			{
			};
			id=143;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.11251831;
		};
		class Item82
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.1228,150.99467,9306.4414};
				angles[]={0,4.1746478,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=144;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.10693359;
		};
		class Item83
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.3325,150.99359,9306.6914};
			};
			side="Empty";
			class Attributes
			{
			};
			id=145;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.10595703;
		};
		class Item84
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3964.9265,150.99272,9306.2256};
				angles[]={0,4.9484286,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=146;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.10488892;
		};
		class Item85
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3966.1106,151.44148,9307.5166};
			};
			side="Empty";
			class Attributes
			{
			};
			id=147;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.55422974;
		};
		class Item86
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3966.0266,151.4469,9307.3379};
				angles[]={0,0.52466077,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=148;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.55961609;
		};
		class Item87
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3966.1958,151.43593,9307.6865};
				angles[]={0,2.3913002,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=149;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.54872131;
		};
		class Item88
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.8665,151.44867,9307.291};
				angles[]={0,3.6015975,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=150;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.56129456;
		};
		class Item89
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.8174,151.44873,9307.1191};
				angles[]={0,2.3056538,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=151;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.56134033;
		};
		class Item90
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3964.8811,151.43607,9306.2314};
			};
			side="Empty";
			class Attributes
			{
			};
			id=152;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.54821777;
		};
		class Item91
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.1448,151.42867,9306.4766};
				angles[]={0,2.0211704,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=153;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.54093933;
		};
		class Item92
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.3645,151.42639,9306.6963};
				angles[]={0,2.431118,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=154;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.53877258;
		};
		class Item93
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.3279,151.88864,9306.6289};
			};
			side="Empty";
			class Attributes
			{
			};
			id=155;
			type="Exile_Cosmetic_CockONut";
			atlOffset=1.0021973;
		};
		class Item94
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.8115,151.90434,9307.1172};
			};
			side="Empty";
			class Attributes
			{
			};
			id=156;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.0205688;
		};
		class Item95
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.9297,151.90427,9307.2598};
				angles[]={0,2.2492752,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=157;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.0205383;
		};
		class Item96
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3966.0352,151.90195,9307.3818};
				angles[]={0,5.1760368,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=158;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.01828;
		};
		class Item97
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3966.2617,151.8873,9307.6221};
				angles[]={0,1.2323409,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=159;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.0037384;
		};
		class Item98
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.0916,151.88675,9306.375};
				angles[]={0,1.8967663,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=160;
			type="Exile_Cosmetic_CockONut";
			atlOffset=1.0001984;
		};
		class Item99
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.1416,152.34956,9306.3418};
				angles[]={0,2.2280884,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=161;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.4618378;
		};
		class Item100
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3966.0889,152.49745,9307.5625};
				angles[]={0,2.1675663,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=162;
			type="Land_CerealsBox_F";
			atlOffset=1.4516144;
		};
		class Item101
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.8979,152.50313,9307.3535};
				angles[]={0,1.5314255,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=163;
			type="Land_CerealsBox_F";
			atlOffset=1.4571838;
		};
		class Item102
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.7473,152.50322,9307.2266};
				angles[]={0,2.1675663,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=164;
			type="Land_CerealsBox_F";
			atlOffset=1.4572144;
		};
		class Item103
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3965.3237,152.34373,9306.6641};
				angles[]={0,3.0954716,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=165;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.4561005;
		};
		class Item104
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3964.989,152.3532,9306.1797};
				angles[]={0,2.6190453,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=166;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.4653931;
		};
		class Item105
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3962.3933,151.47629,9310.8936};
				angles[]={0,0.54927588,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=167;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.58721924;
		};
		class Item106
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3962.2524,151.4762,9310.7646};
				angles[]={0,2.6405466,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=168;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.58705139;
		};
		class Item107
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3962.2168,151.47879,9311.0176};
				angles[]={0,2.070931,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=169;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.58963013;
		};
		class Item108
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3962.1145,151.47862,9310.8926};
				angles[]={0,0.87345362,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=170;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.5894165;
		};
		class Item109
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.9861,151.48096,9311.0156};
				angles[]={0,2.4348297,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=171;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.59169006;
		};
		class Item110
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3962.0752,151.47461,9310.5527};
				angles[]={0,5.4224272,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=172;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.58537292;
		};
		class Item111
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.9734,151.47173,9310.4072};
				angles[]={0,2.2866945,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=173;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.58244324;
		};
		class Item112
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.9487,151.47768,9310.6729};
				angles[]={0,3.0978658,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=174;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.58837891;
		};
		class Item113
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.8408,151.48396,9310.5469};
				angles[]={0,5.9829311,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=175;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.59461975;
		};
		class Item114
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.8081,151.485,9310.792};
				angles[]={0,1.5291538,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=176;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.59564209;
		};
		class Item115
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.7041,151.4762,9310.6885};
				angles[]={0,3.5073884,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=177;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.58679199;
		};
		class Item116
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.7925,151.48238,9310.2656};
				angles[]={0,5.9035473,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=178;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.59300232;
		};
		class Item117
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.6763,151.48221,9310.1533};
				angles[]={0,3.8666067,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=179;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.5927887;
		};
		class Item118
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.6545,151.48312,9310.3906};
				angles[]={0,3.1413083,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=180;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.59368896;
		};
		class Item119
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.5271,151.48315,9310.2861};
				angles[]={0,5.714035,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=181;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.59365845;
		};
		class Item120
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.501,151.4838,9310.5166};
				angles[]={0,0.60063219,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=182;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.59428406;
		};
		class Item121
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3961.4053,151.49052,9310.4014};
				angles[]={0,2.7704933,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=183;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.60096741;
		};
		class Item122
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3962.0867,151.48128,9311.1572};
				angles[]={0,0.56729174,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=184;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.59205627;
		};
		class Item123
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3952.3999,151.26015,9316.6582};
				angles[]={0,5.4267416,6.282495};
			};
			side="Empty";
			class Attributes
			{
			};
			id=185;
			type="Land_Workbench_01_F";
			atlOffset=0.26878357;
		};
		class Item124
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3950.9312,151.25761,9315.1504};
				angles[]={0,3.8077824,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=217;
			type="Land_ToolTrolley_01_F";
		};
		class Item125
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3951.1326,151.71478,9315.5283};
				angles[]={0,5.0309715,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=218;
			type="Land_DrillAku_F";
			atlOffset=0.80737305;
		};
		class Item126
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3950.9404,150.96254,9315.1826};
				angles[]={0,1.908932,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=219;
			type="Land_ExtensionCord_F";
			atlOffset=0.12553406;
		};
		class Item127
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3950.6584,151.63792,9315.0137};
				angles[]={0,3.09951,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=220;
			type="Land_File_F";
			atlOffset=0.85319519;
		};
		class Item128
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3951.1355,151.25372,9315.334};
				angles[]={0,5.0309715,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=221;
			type="Land_Gloves_F";
			atlOffset=0.48840332;
		};
		class Item129
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3950.8149,151.61324,9315.2109};
				angles[]={0,5.0309715,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=222;
			type="Land_Wrench_F";
			atlOffset=0.84510803;
		};
		class Item130
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3951.106,151.73466,9315.376};
				angles[]={0,1.214638,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=223;
			type="Land_DrillAku_F";
			atlOffset=0.82723999;
		};
		class Item131
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3950.8525,151.28473,9315.0527};
				angles[]={0,6.2038393,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=224;
			type="Land_Gloves_F";
			atlOffset=0.51921082;
		};
		class Item132
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3950.9043,151.66051,9314.9512};
				angles[]={0,4.0996304,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=225;
			type="Land_Screwdriver_V2_F";
			atlOffset=0.87763977;
		};
		class Item133
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3950.8511,151.65034,9315.0322};
				angles[]={0,3.8798263,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=226;
			type="Land_Screwdriver_V1_F";
			atlOffset=0.86743164;
		};
		class Item134
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3953.8269,150.75566,9311.9004};
				angles[]={0,2.2286475,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=227;
			type="Land_CinderBlocks_F";
		};
		class Item135
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3955.2483,150.75479,9313.624};
				angles[]={0,0.66581345,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=228;
			type="Land_Bricks_V2_F";
		};
		class Item136
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3954.5725,150.75525,9312.8037};
				angles[]={0,3.8073866,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=229;
			type="Land_Bricks_V2_F";
		};
		class Item137
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3950.1404,151.46098,9314.2148};
				angles[]={0,5.2933202,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=231;
			type="Land_WeldingTrolley_01_F";
		};
		class Item138
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3936.4517,150.87128,9315.6309};
				angles[]={6.2811427,0,6.281425};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=232;
			type="Land_LuggageHeap_01_F";
		};
		class Item139
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3935.998,150.66772,9317.0488};
				angles[]={6.2811427,0,6.281425};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=233;
			type="Land_LuggageHeap_02_F";
		};
		class Item140
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3900.2749,153.37227,9282.6494};
						angles[]={0,3.7376719,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=237;
					type="Exile_Guard_02";
				};
			};
			class Attributes
			{
			};
			id=236;
		};
		class Item141
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3929.6455,150.71814,9258.7246};
						angles[]={0,2.1840394,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=245;
					type="Exile_Guard_01";
				};
			};
			class Attributes
			{
			};
			id=244;
		};
		class Item142
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3913.4114,153.64233,9297.3525};
						angles[]={0,5.4194107,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=247;
					type="Exile_Guard_03";
				};
			};
			class Attributes
			{
			};
			id=246;
		};
		class Item143
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3942.052,153.78436,9322.9229};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=249;
					type="Exile_Guard_03";
				};
			};
			class Attributes
			{
			};
			id=248;
		};
		class Item144
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3977.8481,154.35631,9288.2363};
						angles[]={0,0.78046173,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=251;
					type="Exile_Guard_03";
				};
			};
			class Attributes
			{
			};
			id=250;
		};
		class Item145
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={4021.032,160.71791,9250.1553};
						angles[]={0,0.51443607,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=253;
					type="Exile_Guard_01";
				};
			};
			class Attributes
			{
			};
			id=252;
		};
		class Item146
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={4016.6104,152.89058,9210.7305};
						angles[]={0,2.1035645,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=255;
					type="Exile_Guard_01";
				};
			};
			class Attributes
			{
			};
			id=254;
		};
		class Item147
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3994.4751,156.66576,9234.5195};
						angles[]={0,3.6789045,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=257;
					type="Exile_Guard_01";
				};
			};
			class Attributes
			{
			};
			id=256;
		};
		class Item148
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={3969.0383,156.67432,9256.2305};
						angles[]={0,4.339016,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=259;
					type="Exile_Guard_03";
				};
			};
			class Attributes
			{
			};
			id=258;
		};
		class Item149
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3932.8564,150.85608,9287.7959};
				angles[]={0,5.2544441,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=260;
			type="Land_A_tent";
			atlOffset=-0.00016784668;
		};
		class Item150
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3934.4165,150.85625,9292.5566};
				angles[]={0,0.29606467,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=261;
			type="Land_A_tent";
		};
		class Item151
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3936.7917,150.89281,9295.998};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=262;
			type="ACamp";
		};
		class Item152
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3939.2739,150.89279,9284.543};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=263;
			type="ACamp";
			atlOffset=-1.5258789e-005;
		};
		class Item153
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3948.8013,150.7813,9300.1689};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=264;
			type="Land_CampingChair_V1_F";
			atlOffset=7.6293945e-005;
		};
		class Item154
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3951.0071,150.7813,9297.5332};
				angles[]={0,1.396294,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=265;
			type="Land_CampingChair_V1_F";
			atlOffset=7.6293945e-005;
		};
		class Item155
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={3949.6489,150.7813,9291.2949};
				angles[]={0,2.6660738,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=266;
			type="Land_CampingChair_V1_F";
			atlOffset=7.6293945e-005;
		};
	};
};

 

ESPetrolTraderCity.sqf

Spoiler

private _objects = [
	["Exile_Sign_Equipment",[3937.11,9313.33,150.453],[[-0.739581,0.673067,0],[0,0,1]],[false,false]],
	["Exile_Sign_Food",[3960.73,9305.32,150.524],[[0.641848,0.766832,0],[0,0,1]],[false,false]],
	["Exile_Sign_Hardware",[3953.53,9309.78,150.554],[[0.633398,0.773826,0],[0,0,1]],[false,false]],
	["Exile_Sign_Office",[3968.71,9296.2,151.109],[[0.669946,0.74241,0],[0,0,1]],[false,false]],
	["Exile_Sign_RussianRoulette",[3962.36,9260.87,150.274],[[0.643861,0.765142,0],[0,0,1]],[false,false]],
	["Exile_Sign_VehicleCustoms",[3981.75,9274.54,150.445],[[0.64312,0.765766,0],[0,0,1]],[false,false]],
	["Exile_Sign_Vehicles",[3972.16,9281.34,150.274],[[0.636009,0.771681,0],[0,0,1]],[false,false]],
	["Exile_Sign_WasteDump",[4010.61,9244.2,150.274],[[0.806556,-0.591157,0],[0,0,1]],[false,false]],
	["Exile_Sign_TraderCity",[3922.11,9263.29,149.674],[[0.676704,0.736255,0],[0,0,1]],[false,false]],
	//["Exile_ConcreteMixer",[3946.02,9324.07,150.422],[[-0.817894,0.575265,0.0109555],[0.0138792,0.000690467,0.999903]],[false,false]],
	["land_Objects116",[3959.86,9256.78,150.274],[[0.755136,-0.655568,0],[0,0,1]],[false,false]],
	["Exile_Sign_Locker",[3968.71,9296.2,150.017],[[0.668999,0.743263,0],[0,0,1]],[false,false]],
	["Exile_Sign_SpecialOperations",[4023.24,9219.09,150.274],[[0.827472,-0.561508,0],[0,0,1]],[false,false]],
	["Exile_Sign_Armory",[4028.76,9232.21,150.274],[[0.891598,-0.452828,0],[0,0,1]],[false,false]],
	["Exile_Locker",[3971.73,9299.67,150.899],[[0.657849,0.753149,0.000735366],[0,-0.000976388,1]],[false,false]],
	["Exile_Locker",[3973.17,9298.39,150.898],[[0.657849,0.753149,0.000735366],[0,-0.000976388,1]],[false,false]],
	["Exile_Locker",[3969.18,9296.64,150.899],[[-0.672605,-0.740001,0.000685004],[0.00353795,-0.00229006,0.999991]],[false,false]],
	["Exile_Locker",[3967.23,9299.27,150.912],[[-0.742495,0.669839,0.00416092],[0.00353795,-0.00229006,0.999991]],[false,false]],
	["Exile_Locker",[3971.7,9295.45,150.895],[[0.751747,-0.659451,-0.00064388],[0,-0.000976388,1]],[false,false]],
	["Exile_Locker",[3972.73,9296.56,150.896],[[0.754159,-0.656691,-0.000641185],[0,-0.000976388,1]],[false,false]],
	["Land_CampingChair_V1_F",[3946.03,9297.89,150.274],[[-0.999684,0.0251469,0],[0,0,1]],[false,false]],
	["Land_Campfire",[3948.6,9296.33,150.273],[[0,1,0],[0,0,1]],[false,false]],
	["Land_A_tent",[3939.02,9290.18,150.273],[[0,1,0],[0,0,1]],[false,false]],
	["ACamp",[3944.26,9286.37,150.274],[[0,1,0],[0,0,1]],[false,false]],
	["Land_Factory_Conv1_Main_F",[4011.18,9247.53,150.766],[[-0.610855,-0.791742,0],[0,0,1]],[false,false]],
	["Land_Factory_Conv1_10_F",[4018.74,9257.54,150.768],[[-0.588879,-0.808221,0],[0,0,1]],[false,false]],
	["Land_Garbage_line_F",[4007.95,9243.38,150.915],[[0.606489,0.795092,0],[0,0,1]],[false,false]],
	["Land_Garbage_line_F",[4010.94,9247.06,150.886],[[-0.639359,-0.768909,0],[0,0,1]],[false,false]],
	["Land_Garbage_line_F",[4017.26,9255.56,153.18],[[0.606489,0.795092,0],[0,0,1]],[false,false]],
	["Land_Garbage_line_F",[4020.1,9259.46,153.187],[[0.606489,0.795092,0],[0,0,1]],[false,false]],
	["Land_Misc_GContainer_Big",[4022.31,9262.22,150.897],[[-0.573246,-0.819383,0],[0,0,1]],[false,false]],
	["Land_GarbagePallet_F",[4022.28,9262.01,152.04],[[0.532273,0.846573,0],[0,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[4033.55,9241.12,150.273],[[-0.849912,0.526924,0],[0,0,1]],[false,false]],
	["Land_PaperBox_open_empty_F",[4030.7,9243.61,150.273],[[-0.48388,-0.875134,0],[0,0,1]],[false,false]],
	["Land_PaperBox_open_full_F",[4032.26,9239.73,150.274],[[-0.847998,0.529999,0],[0,0,1]],[false,false]],
	["Land_PaperBox_closed_F",[4032.11,9242.27,150.425],[[-0.3982,-0.917299,0],[0,0,1]],[false,false]],
	["Land_PaperBox_open_full_F",[4026.58,9246.27,150.603],[[0.863277,-0.504731,0],[0,0,1]],[false,false]],
	["Land_Pallet_MilBoxes_F",[4025.57,9244.6,150.495],[[-0.86171,0.507401,0],[0,0,1]],[false,false]],
	["Land_Pallet_MilBoxes_F",[4028.14,9245.34,150.521],[[-0.581083,-0.813844,0],[0,0,1]],[false,false]],
	["WaterPump_01_forest_F",[3957.07,9316.4,150.761],[[-0.647077,-0.762425,0.000446668],[0.000690285,0,1]],[false,false]],
	["Land_ScrapHeap_1_F",[3984.57,9281.42,150.366],[[-0.364742,-0.931109,0.000251776],[0.000690285,0,1]],[false,false]],
	["Land_PressureWasher_01_F",[3954.34,9318.86,150.763],[[-0.752583,0.658498,0.000519497],[0.000690285,0,1]],[false,false]],
	["Exile_Cosmetic_UAV",[4022.85,9225.47,151.239],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_MG",[4020.11,9216.4,150.274],[[-0.293067,-0.956092,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_MG",[4019.7,9217.81,150.274],[[-0.972639,-0.232322,0],[0,0,1]],[false,false]],
	["Land_HelipadCivil_F",[3892.28,9228.68,149.035],[[0,0.999994,-0.00332963],[0.0333131,0.00332778,0.999439]],[false,false]],
	["Land_Wreck_Van_F",[3971.66,9289.6,150.734],[[0.648354,0.761337,-0.00144846],[0.00142318,0.000690533,0.999999]],[false,false]],
	["CUP_lobby_case",[3975.06,9282.18,150.588],[[-0.627625,-0.778515,0.000530804],[0.000845734,0,1]],[false,false]],
	["Land_PressureWasher_01_F",[3973.85,9286.9,150.589],[[-0.734436,0.678678,0.000621138],[0.000845734,0,1]],[false,false]],
	["Land_CarBattery_02_F",[3974.26,9287.88,150.588],[[0,0.999663,0.0259454],[-0.0259457,-0.0259367,0.999327]],[false,false]],
	["Land_CarBattery_02_F",[3974.37,9288.18,150.588],[[0.715558,-0.698554,-0.000605172],[0.000845734,0,1]],[false,false]],
	["Land_KartTyre_01_x4_F",[3982.62,9277.22,150.367],[[0.62243,0.782676,-0.000429654],[0.000690285,0,1]],[false,false]],
	["Land_KartTrolly_01_F",[3983.2,9278.12,150.367],[[-0.61252,-0.790455,0.000422813],[0.000690285,0,1]],[false,false]],
	["Land_KartSteertingWheel_01_F",[3983.17,9278.15,150.489],[[0,1,0],[0,0,1]],[false,false]],
	["Land_OfficeCabinet_01_F",[3974.36,9306.44,150.904],[[0.691957,0.721939,0.000704892],[0,-0.000976388,1]],[false,false]],
	["Land_OfficeChair_01_F",[3975.22,9304.39,150.902],[[0.450664,0.892693,0.000871615],[0,-0.000976388,1]],[false,false]],
	["OfficeTable_01_old_F",[3974.54,9303.5,150.902],[[-0.67959,-0.733592,-0.00071627],[0,-0.000976388,1]],[false,false]],
	["CUP_A2_pc",[3974.34,9303.64,151.747],[[0.753601,-0.657332,-0.000641811],[0,-0.000976388,1]],[false,false]],
	["CUP_A2_map_for_briefing",[3977.2,9304.18,152.796],[[0.668373,0.743827,0],[0,0,1]],[false,false]],
	["MapBoard_seismic_F",[3977.03,9301.96,150.896],[[0.999999,-0.001424,-1.39037e-006],[0,-0.000976388,1]],[false,false]],
	["Exile_Construction_Safe_Preview",[3973.12,9299.61,150.9],[[0.733317,-0.679887,-0.000663833],[0,-0.000976388,1]],[false,false]],
	//["Land_CashDesk_F",[3964.77,9311.94,150.888],[[0.662872,0.748733,-0.000323552],[0.000488106,0,1]],[false,false]],
	["Land_WaterCooler_01_old_F",[3966.74,9309.74,150.886],[[0.663569,0.748115,-0.000323892],[0.000488106,0,1]],[false,false]],
	["Land_Icebox_F",[3961.97,9310.59,150.889],[[-0.746182,0.665742,0.000364216],[0.000488106,0,1]],[false,false]],
	["Land_Icebox_F",[3960.64,9309.12,150.89],[[-0.746182,0.665742,0.000364216],[0.000488106,0,1]],[false,false]],
	["Land_Metal_rack_F",[3965.95,9307.37,150.887],[[0.752637,-0.658435,-0.000367367],[0.000488106,0,1]],[false,false]],
	["Land_Metal_rack_F",[3965.12,9306.44,150.888],[[0.752637,-0.658435,-0.000367367],[0.000488106,0,1]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[3965.99,9307.34,150.986],[[-0.945842,0.324626,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[3966.1,9307.5,151.008],[[-0.407729,0.913103,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[3965.86,9307.21,151.012],[[0.79054,-0.612411,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[3965.72,9307.08,150.989],[[-0.541017,0.841012,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BBQSandwich",[3966.2,9307.62,151],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BeefParts",[3965.12,9306.44,150.995],[[-0.858868,-0.512197,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BeefParts",[3965.33,9306.69,150.994],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_BeefParts",[3964.93,9306.23,150.993],[[-0.972272,0.233854,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[3966.11,9307.52,151.441],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[3966.03,9307.34,151.447],[[0.500919,0.865494,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[3966.2,9307.69,151.436],[[0.681853,-0.731489,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[3965.87,9307.29,151.449],[[-0.443953,-0.89605,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CatFood",[3965.82,9307.12,151.449],[[0.741926,-0.670481,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Cheathas",[3964.88,9306.23,151.436],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Cheathas",[3965.14,9306.48,151.429],[[0.900284,-0.435302,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Cheathas",[3965.36,9306.7,151.426],[[0.652194,-0.758052,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CockONut",[3965.33,9306.63,151.89],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_DogFood",[3965.81,9307.12,151.908],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_DogFood",[3965.93,9307.26,151.908],[[0.778528,-0.627609,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_DogFood",[3966.04,9307.38,151.906],[[-0.894427,0.447214,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_DogFood",[3966.26,9307.62,151.891],[[0.943269,0.332031,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_CockONut",[3965.09,9306.38,151.888],[[0.947341,-0.320228,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[3965.14,9306.34,152.35],[[0.79165,-0.610975,0],[0,0,1]],[false,false]],
	["Land_CerealsBox_F",[3966.09,9307.56,152.339],[[0.827155,-0.561974,0],[0,0,1]],[false,false]],
	["Land_CerealsBox_F",[3965.9,9307.35,152.345],[[0.999225,0.0393607,0],[0,0,1]],[false,false]],
	["Land_CerealsBox_F",[3965.75,9307.23,152.345],[[0.827155,-0.561974,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[3965.32,9306.66,152.344],[[0.0461047,-0.998937,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Raisins",[3964.99,9306.18,152.353],[[0.499089,-0.866551,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[3962.39,9310.89,151.476],[[0.52207,0.852903,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[3962.25,9310.76,151.476],[[0.480343,-0.877081,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[3962.22,9311.02,151.479],[[0.877518,-0.479544,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[3962.11,9310.89,151.479],[[0.766551,0.642183,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[3961.99,9311.02,151.481],[[0.649375,-0.760468,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[3962.08,9310.55,151.475],[[-0.758337,0.651863,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[3961.97,9310.41,151.472],[[0.754504,-0.656295,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[3961.95,9310.67,151.478],[[0.0437129,-0.999044,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[3961.84,9310.55,151.484],[[-0.295763,0.955261,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[3961.81,9310.79,151.485],[[0.999133,0.0416305,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_EnergyDrink",[3961.7,9310.69,151.476],[[-0.357692,-0.933839,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[3961.79,9310.27,151.482],[[-0.370584,0.928799,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[3961.68,9310.15,151.482],[[-0.663146,-0.74849,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[3961.65,9310.39,151.483],[[0.000284346,-1,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[3961.53,9310.29,151.483],[[-0.538916,0.842359,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[3961.5,9310.52,151.484],[[0.565164,0.824978,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_Beer",[3961.41,9310.4,151.491],[[0.36264,-0.931929,0],[0,0,1]],[false,false]],
	["Exile_Cosmetic_PowerDrink",[3962.09,9311.16,151.481],[[0.53735,0.843359,0],[0,0,1]],[false,false]],
	//["Land_Workbench_01_F",[3952.4,9316.66,150.763],[[-0.755517,0.655128,0.000521523],[0.000690285,0,1]],[false,false]],
	["Land_ToolTrolley_01_F",[3950.93,9315.15,150.766],[[-0.617995,-0.786182,0.000426746],[0.000690534,0,1]],[false,false]],
	["Land_DrillAku_F",[3951.13,9315.53,151.573],[[-0.94968,0.313221,0],[0,0,1]],[false,false]],
	["Land_ExtensionCord_F",[3950.94,9315.18,150.891],[[0.943375,-0.331729,0],[0,0,1]],[false,false]],
	["Land_File_F",[3950.66,9315.01,151.619],[[0.0420703,-0.999115,0],[0,0,1]],[false,false]],
	["Land_Gloves_F",[3951.14,9315.33,151.254],[[-0.94968,0.313221,0],[0,0,1]],[false,false]],
	["Land_Wrench_F",[3950.81,9315.21,151.611],[[-0.94968,0.313221,0],[0,0,1]],[false,false]],
	["Land_DrillAku_F",[3951.11,9315.38,151.593],[[0.937243,0.348676,0],[0,0,1]],[false,false]],
	["Land_Gloves_F",[3950.85,9315.05,151.285],[[-0.0792628,0.996854,0],[0,0,1]],[false,false]],
	["Land_Screwdriver_V2_F",[3950.9,9314.95,151.643],[[-0.818065,-0.575126,0],[0,0,1]],[false,false]],
	["Land_Screwdriver_V1_F",[3950.85,9315.03,151.633],[[-0.672982,-0.739658,0],[0,0,1]],[false,false]],
	["Land_CinderBlocks_F",[3953.83,9311.9,150.764],[[0.791308,-0.611418,-0.000546425],[0.000690534,0,1]],[false,false]],
	["Land_Bricks_V2_F",[3955.25,9313.62,150.763],[[0.617699,0.786415,-0.000426542],[0.000690534,0,1]],[false,false]],
	["Land_Bricks_V2_F",[3954.57,9312.8,150.763],[[-0.617684,-0.786427,0.000426532],[0.000690534,0,1]],[false,false]],
	["Land_WeldingTrolley_01_F",[3950.14,9314.21,150.765],[[-0.835952,0.548803,0.000577253],[0.000690534,0,1]],[false,false]],
	["Land_LuggageHeap_01_F",[3936.45,9315.63,150.358],[[0,0.999998,0.00204263],[0.00176052,-0.00204262,0.999996]],[false,false]],
	["Land_LuggageHeap_02_F",[3936,9317.05,150.361],[[0,0.999998,0.00204263],[0.00176052,-0.00204262,0.999996]],[false,false]],
	//["Exile_Guard_02",[3900.27,9282.65,153.372],[[-0.561402,-0.827543,0],[0,0,1]],[false,false]],
	//["Exile_Guard_01",[3929.65,9258.72,150.718],[[0.817786,-0.575523,0],[0,0,1]],[false,false]],
	//["Exile_Guard_03",[3913.41,9297.35,153.642],[[-0.7603,0.649572,0],[0,0,1]],[false,false]],
	//["Exile_Guard_03",[3942.05,9322.92,153.784],[[0,1,0],[0,0,1]],[false,false]],
	//["Exile_Guard_03",[3977.85,9288.24,154.356],[[0.703608,0.710589,0],[0,0,1]],[false,false]],
	//["Exile_Guard_01",[4021.03,9250.16,160.718],[[0.492044,0.87057,0],[0,0,1]],[false,false]],
	//["Exile_Guard_01",[4016.61,9210.73,152.891],[[0.861404,-0.50792,0],[0,0,1]],[false,false]],
	//["Exile_Guard_01",[3994.48,9234.52,156.666],[[-0.511828,-0.859088,0],[0,0,1]],[false,false]],
	//["Exile_Guard_03",[3969.04,9256.23,156.674],[[-0.931102,-0.364758,0],[0,0,1]],[false,false]],
	["Land_A_tent",[3932.86,9287.8,150.273],[[-0.85665,0.515897,0],[0,0,1]],[false,false]],
	["Land_A_tent",[3934.42,9292.56,150.274],[[0.291758,0.956492,0],[0,0,1]],[false,false]],
	["ACamp",[3936.79,9296,150.274],[[0,1,0],[0,0,1]],[false,false]],
	["ACamp",[3939.27,9284.54,150.274],[[0,1,0],[0,0,1]],[false,false]],
	["Land_CampingChair_V1_F",[3948.8,9300.17,150.274],[[0,1,0],[0,0,1]],[false,false]],
	["Land_CampingChair_V1_F",[3951.01,9297.53,150.274],[[0.984813,0.173618,0],[0,0,1]],[false,false]],
	["Land_CampingChair_V1_F",[3949.65,9291.29,150.274],[[0.4578,-0.889055,0],[0,0,1]],[false,false]]
];
{
	private _object = (_x select 0) createVehicle [0,0,0];
	_object setPosASL (_x select 1);
	_object setVectorDirAndUp (_x select 2);
	_object enableSimulationGlobal ((_x select 3) select 0);
	_object allowDamage ((_x select 3) select 1);
} forEach _objects;

 

ESPetrolTraders.sqf

Spoiler

    ///////////////////////////////////////////////////////////////////////////
    // Equipment Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_Equipment",
        "Exile_Trader_Equipment",
        "WhiteHead_19",
        ["InBaseMoves_Lean1"],
        [3938.46,9315.03,0.16568],
        144.911
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Vehicle Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_Vehicle",
        "Exile_Trader_Vehicle",
        "WhiteHead_11",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [3976.75,9286.43,0.231384],
        231.364
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Russian Roulette
    ///////////////////////////////////////////////////////////////////////////
    [
        "Exile_Trader_RussianRoulette",
        "",
        "GreekHead_A3_01",
        ["HubStandingUA_move1", "HubStandingUA_move2", "HubStandingUA_idle1", "HubStandingUA_idle2", "HubStandingUA_idle3"],
        [3961.81,9260.12,0.168152],
        239.132
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Specops Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_SpecialOperations",
        "Exile_Trader_SpecialOperations",
        "AfricanHead_02",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [4021.73,9220.57,0.00146484],
        281.742
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Hardware Trader
    ///////////////////////////////////////////////////////////////////////////
    _workBench = "Land_Workbench_01_F" createVehicleLocal [0,0,0];
    _workBench setDir 305.671;
    _workBench setPosATL [3952.4,9316.66,150.763];

    _trader = 
    [
        "Exile_Trader_Hardware",
        "Exile_Trader_Hardware",
        "WhiteHead_17",
        ["InBaseMoves_sitHighUp1"],
        [0, 0, -0.5],
        170,
        _workBench
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Armory Trader
    ///////////////////////////////////////////////////////////////////////////
    _chair = "Land_CampingChair_V2_F" createVehicleLocal [0,0,0];
    _chair setDir 34.4102;
    _chair setPosATL [4029.03,9243.03,-0.00238037];

    _trader = 
    [
        "Exile_Trader_Armory",
        "Exile_Trader_Armory",
        "PersianHead_A3_02",
        ["InBaseMoves_SittingRifle1"],
        [0, -0.15, -0.45],
        170,
        _chair
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Waste Dump Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_WasteDump",
        "Exile_Trader_WasteDump",
        "GreekHead_A3_01",
        ["HubStandingUA_move1", "HubStandingUA_move2", "HubStandingUA_idle1", "HubStandingUA_idle2", "HubStandingUA_idle3"],
        [4008.89,9247.15,0.00141907],
        302.331
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Vehicle Customs Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_VehicleCustoms",
        "Exile_Trader_VehicleCustoms",
        "WhiteHead_11",
        ["AidlPercMstpSnonWnonDnon_G01", "AidlPercMstpSnonWnonDnon_G02", "AidlPercMstpSnonWnonDnon_G03", "AidlPercMstpSnonWnonDnon_G04", "AidlPercMstpSnonWnonDnon_G05", "AidlPercMstpSnonWnonDnon_G06"],
        [3979.87,9277.7,0.097229],
        223.362
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Fast Food Trader
    ///////////////////////////////////////////////////////////////////////////
    _cashDesk = "Land_CashDesk_F" createVehicleLocal [0,0,0];
    _cashDesk setDir 43.3337;
    _cashDesk setPosATL [3964.77,9311.94,0.233978];

    _microwave = "Land_Microwave_01_F" createVehicleLocal [0,0,0];
    _cashDesk disableCollisionWith _microwave;         
    _microwave disableCollisionWith _cashDesk; 
    _microwave attachTo [_cashDesk, [-0.6, 0.2, 1.1]];

    _ketchup = "Land_Ketchup_01_F" createVehicleLocal [0,0,0];
    _cashDesk disableCollisionWith _ketchup;         
    _ketchup disableCollisionWith _cashDesk; 
    _ketchup attachTo [_cashDesk, [-0.6, 0, 1.1]];

    _mustard = "Land_Mustard_01_F" createVehicleLocal [0,0,0];
    _cashDesk disableCollisionWith _mustard;         
    _mustard disableCollisionWith _cashDesk; 
    _mustard attachTo [_cashDesk, [-0.5, -0.05, 1.1]];

    _trader = 
    [
        "Exile_Trader_Food",
        "Exile_Trader_Food",
        "GreekHead_A3_01",
        ["InBaseMoves_table1"],
        [0.1, 0.5, 0.2],
        170,
        _cashDesk
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Office Trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Trader_Office",
        "Exile_Trader_Office",
        "GreekHead_A3_04",
        ["HubBriefing_scratch", "HubBriefing_stretch", "HubBriefing_think", "HubBriefing_lookAround1", "HubBriefing_lookAround2"],
        [3975.05,9303.8,0.383438],
        221.153
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_02",
        "",
        "WhiteHead_03",
        ["InBaseMoves_patrolling2","InBaseMoves_patrolling1"],
        [3900.27,9282.65,2.63751],
        219.732
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_01",
        "",
        "WhiteHead_17",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [3929.65,9258.72,0.444519],
        138.153
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_03",
        "",
        "AfricanHead_03",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [3913.41,9297.35,3.36916],
        322.253
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_03",
        "",
        "AfricanHead_03",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [3942.05,9322.92,3.33627],
        0.38785
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_03",
        "",
        "AfricanHead_03",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [3977.85,9288.24,3.85345],
        44.0886
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_01",
        "",
        "WhiteHead_17",
        ["InBaseMoves_patrolling1","InBaseMoves_patrolling2"],
        [4021.03,9250.16,10.078],
        46.2735
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_01",
        "",
        "WhiteHead_17",
        ["InBaseMoves_patrolling1","InBaseMoves_patrolling2"],
        [4016.61,9210.73,2.61685],
        121.684
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_01",
        "",
        "WhiteHead_17",
        ["InBaseMoves_patrolling1","InBaseMoves_patrolling2"],
        [3994.48,9234.52,6.3932],
        206.226
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_03",
        "",
        "AfricanHead_03",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [3969.04,9256.23,6.40086],
        242.628
    ]
    call ExileClient_object_trader_create;

 

Russian Roulette area

Photos

Spoiler

20160712170733_1.jpg
20160712170739_1.jpg
20160712170749_1.jpg
20160712170758_1.jpg
20160712170808_1.jpg 

Eden Editor Code (May be additional items that are commented out in final code)

Spoiler

version=52;
class EditorData
{
	moveGridStep=1;
	angleGridStep=0.2617994;
	scaleGridStep=1;
	autoGroupingDist=10;
	toggles=1;
	class ItemIDProvider
	{
		nextID=35;
	};
	class Camera
	{
		pos[]={2729.9692,197.28195,3715.2998};
		dir[]={0.45610967,-0.2271367,-0.86046714};
		up[]={0.10643335,0.97383946,-0.20079069};
		aside[]={-0.88356501,8.7413355e-008,-0.46835333};
	};
};
binarizationWanted=0;
addons[]=
{
	"SAR_ru_architecture",
	"exile_client",
	"A3_Structures_F_Walls",
	"A3_Structures_F_EPA_Civ_Camping",
	"A3_Structures_F_Furniture",
	"A3_Structures_F_Civ_Dead",
	"A3_Structures_F_EPB_Civ_Dead",
	"CUP_Misc3_Config",
	"CUP_StandaloneTerrains_Core",
	"CUP_StandaloneTerrains_Core_Faction",
	"CUP_CWA_Misc",
	"A3_Structures_F_System",
	"A3_Structures_F_Mil_Helipads"
};
class AddonsMetaData
{
	class List
	{
		items=10;
		class Item0
		{
			className="SAR_ru_architecture";
			name="SAR_ru_architecture";
		};
		class Item1
		{
			className="exile_client";
			name="exile_client";
		};
		class Item2
		{
			className="A3_Structures_F";
			name="Arma 3 - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item3
		{
			className="A3_Structures_F_EPA";
			name="Arma 3 Survive Episode - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item4
		{
			className="A3_Structures_F_EPB";
			name="Arma 3 Adapt Episode - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item5
		{
			className="CUP_Misc3_Config";
			name="CUP_Misc3_Config";
		};
		class Item6
		{
			className="CUP_StandaloneTerrains_Core";
			name="CUP_StandaloneTerrains_Core";
		};
		class Item7
		{
			className="CUP_StandaloneTerrains_Core_Faction";
			name="CUP_StandaloneTerrains_Core_Faction";
		};
		class Item8
		{
			className="CUP_CWA_Misc";
			name="CUP_CWA_Misc";
		};
		class Item9
		{
			className="A3_Structures_F_Mil";
			name="Arma 3 - Military Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
	};
};
randomSeed=14859801;
class ScenarioData
{
	author="Mr Health And Safety";
};
class Mission
{
	class Intel
	{
		timeOfChanges=1800.0002;
		startWeather=0.80000001;
		startWind=0.1;
		startWaves=0.1;
		forecastWeather=0.80000001;
		forecastWind=0.1;
		forecastWaves=0.1;
		forecastLightnings=0.1;
		year=2001;
		month=3;
		day=5;
		startFogDecay=0.014;
		forecastFogDecay=0.014;
	};
	class Entities
	{
		items=23;
		class Item0
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2734.147,192.95148,3690.8911};
				angles[]={0.059186433,2.4082749,6.2318892};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
				init="this addAction[""Bank"", ""this call ExileClient_gui_lockerDialog_show"", nil, 6, True, True, """", ""(_target distance _this) < 4""]";
			};
			id=0;
			type="land_Objects116";
			atlOffset=0.016616821;
		};
		class Item1
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2755.3882,192.68454,3702.5886};
				angles[]={0,1.7649413,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=2;
			type="Exile_Sign_RussianRoulette";
		};
		class Item2
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2749.6174,192.58882,3698.4863};
				angles[]={0,6.2464447,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=4;
			type="Land_SportGround_fence_F";
			atlOffset=-0.25808716;
		};
		class Item3
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2750.1367,192.06989,3694.4209};
				angles[]={0,0.25091505,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=6;
			type="Land_WoodenTable_large_F";
		};
		class Item4
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2750.7021,191.6373,3696.4536};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=7;
			type="Land_ChairWood_F";
		};
		class Item5
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2751.6721,191.63705,3694.8674};
				angles[]={0,1.4604509,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=8;
			type="Land_ChairWood_F";
		};
		class Item6
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2751.335,191.6368,3693.6206};
				angles[]={0,2.0705323,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=10;
			type="Land_ChairWood_F";
		};
		class Item7
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2749.6978,191.63684,3692.5393};
				angles[]={0,3.2689598,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=11;
			type="Land_ChairWood_F";
		};
		class Item8
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2748.7231,191.63704,3694.0906};
				angles[]={0,4.7638788,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=12;
			type="Land_ChairWood_F";
			atlOffset=-1.5258789e-005;
		};
		class Item9
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2749.0112,191.6371,3695.3328};
				angles[]={0,5.2217793,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=13;
			type="Land_ChairWood_F";
		};
		class Item10
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2750.1038,192.58505,3694.4116};
			};
			side="Empty";
			class Attributes
			{
			};
			id=16;
			type="Land_HumanSkull_F";
			atlOffset=0.80105591;
		};
		class Item11
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2754.9092,192.05597,3689.9648};
				angles[]={0,3.378866,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=17;
			type="Land_Grave_dirt_F";
			atlOffset=-3.0517578e-005;
		};
		class Item12
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2755.27,192.09636,3691.5867};
				angles[]={0,3.4456503,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=18;
			type="Land_Grave_forest_F";
			atlOffset=-1.5258789e-005;
		};
		class Item13
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2755.6165,191.92651,3693.2708};
				angles[]={0,3.3453126,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=19;
			type="Land_Grave_rocks_F";
		};
		class Item14
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2756.05,191.81908,3694.7625};
				angles[]={0.06351728,4.932848,0.0026520467};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=22;
			type="Mass_grave";
			atlOffset=1.5258789e-005;
		};
		class Item15
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2753.5066,191.83969,3696.2878};
				angles[]={0,1.7290367,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=23;
			type="cwa_Body_FIA";
		};
		class Item16
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2746.8264,191.87543,3691.3396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=24;
			type="cwa_Body_RU";
			atlOffset=0.036026001;
		};
		class Item17
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2746.6152,191.83946,3692.6436};
				angles[]={0,4.951437,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=25;
			type="cwa_Body_US";
			atlOffset=3.0517578e-005;
		};
		class Item18
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2751.3113,191.63785,3695.4443};
				angles[]={0,0.18697926,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=27;
			type="Land_ClutterCutter_medium_F";
		};
		class Item19
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2750.8672,191.63731,3692.8315};
				angles[]={0,3.3607936,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=28;
			type="Land_ClutterCutter_medium_F";
		};
		class Item20
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2748.8818,191.63765,3693.1479};
				angles[]={0,1.7798116,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=29;
			type="Land_ClutterCutter_medium_F";
		};
		class Item21
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={2754.2705,191.64236,3702.5339};
						angles[]={0,4.8471212,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
						isPlayer=1;
					};
					id=31;
					type="Exile_Trader_RussianRoulette";
				};
			};
			class Attributes
			{
			};
			id=30;
		};
		class Item22
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={2771.96,192.45877,3688.4387};
				angles[]={0.03831609,0,0.026657995};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=34;
			type="Land_HelipadCivil_F";
		};
	};
};

 

RussianRouletteArea.sqf

Spoiler

private _objects = [
	["land_Objects116",[2734.15,3690.89,191.839],[[0.668458,-0.743687,0.00968807],[0.0512736,0.0590741,0.996936]],[false,false]],
	["Exile_Sign_RussianRoulette",[2755.39,3702.59,191.643],[[0.981213,-0.192928,0],[0,0,1]],[false,false]],
	["Land_SportGround_fence_F",[2749.62,3698.49,191.38],[[-0.0367323,0.999325,0],[0,0,1]],[false,false]],
	["Land_WoodenTable_large_F",[2750.14,3694.42,191.638],[[0.24829,0.968686,0],[0,0,1]],[false,false]],
	//["Land_ChairWood_F",[2750.7,3696.45,191.638],[[0,1,0],[0,0,1]],[false,false]],
	//["Land_ChairWood_F",[2751.67,3694.87,191.638],[[0.993918,0.110122,0],[0,0,1]],[false,false]],
	//["Land_ChairWood_F",[2751.33,3693.62,191.637],[[0.877709,-0.479194,0],[0,0,1]],[false,false]],
	//["Land_ChairWood_F",[2749.7,3692.54,191.637],[[-0.127023,-0.9919,0],[0,0,1]],[false,false]],
	//["Land_ChairWood_F",[2748.72,3694.09,191.638],[[-0.998675,0.0514671,0],[0,0,1]],[false,false]],
	//["Land_ChairWood_F",[2749.01,3695.33,191.638],[[-0.873042,0.487645,0],[0,0,1]],[false,false]],
	["Land_HumanSkull_F",[2750.1,3694.41,192.439],[[0,1,0],[0,0,1]],[false,false]],
	["Land_Grave_dirt_F",[2754.91,3689.96,191.701],[[-0.235053,-0.971982,0],[0,0,1]],[false,false]],
	["Land_Grave_forest_F",[2755.27,3691.59,191.721],[[-0.299394,-0.95413,0],[0,0,1]],[false,false]],
	["Land_Grave_rocks_F",[2755.62,3693.27,191.745],[[-0.202314,-0.979321,0],[0,0,1]],[false,false]],
	["Mass_grave",[2756.05,3694.76,191.719],[[-0.975794,0.218072,-0.0164631],[-0.00265204,0.0634744,0.99798]],[false,false]],
	["cwa_Body_FIA",[2753.51,3696.29,191.638],[[0.987506,-0.157581,0],[0,0,1]],[false,false]],
	["cwa_Body_RU",[2746.83,3691.34,191.674],[[0,1,0],[0,0,1]],[false,false]],
	["cwa_Body_US",[2746.62,3692.64,191.638],[[-0.971564,0.236778,0],[0,0,1]],[false,false]],
	["Land_ClutterCutter_medium_F",[2751.31,3695.44,191.638],[[0.185892,0.98257,0],[0,0,1]],[false,false]],
	["Land_ClutterCutter_medium_F",[2750.87,3692.83,191.637],[[-0.21745,-0.976072,0],[0,0,1]],[false,false]],
	["Land_ClutterCutter_medium_F",[2748.88,3693.15,191.638],[[0.978236,-0.207497,0],[0,0,1]],[false,false]],
	//["B_G_Soldier_AR_F",[2736.26,3703.95,191.803],[[0,1,0],[0,0,1]],[false,false]],
	["Land_HelipadCivil_F",[2771.96,3688.44,192.459],[[0,0.999266,-0.0383067],[-0.0266548,0.0382931,0.998911]],[false,false]]
];
{
	private _object = (_x select 0) createVehicle [0,0,0];
	_object setPosASL (_x select 1);
	_object setVectorDirAndUp (_x select 2);
	_object enableSimulationGlobal ((_x select 3) select 0);
	_object allowDamage ((_x select 3) select 1);
} forEach _objects;

 

RussianRouletteTraders.sqf

Spoiler

    ///////////////////////////////////////////////////////////////////////////
    // Russian Roulette
    ///////////////////////////////////////////////////////////////////////////
    [
        "Exile_Trader_RussianRoulette",
        "",
        "GreekHead_A3_01",
        ["HubStandingUA_move1", "HubStandingUA_move2", "HubStandingUA_idle1", "HubStandingUA_idle2", "HubStandingUA_idle3"],
        [2754.27,3702.53,0.00131226],
        277.72
    ]
    call ExileClient_object_trader_create;

 

Boat Traders

Photos

Spoiler

20160712170402_1.jpg
20160712170414_1.jpg 

Eden Editor Code (May be additional items that are commented out in final code)

Spoiler

version=52;
class EditorData
{
	moveGridStep=1;
	angleGridStep=0.2617994;
	scaleGridStep=1;
	autoGroupingDist=10;
	toggles=2;
	class ItemIDProvider
	{
		nextID=32;
	};
	class Camera
	{
		pos[]={5675.6494,21.565346,5392.8589};
		dir[]={0.81297076,-0.39901367,0.42440808};
		up[]={0.35399574,0.91677916,0.1848046};
		aside[]={0.46281695,9.2513801e-008,-0.88653648};
	};
};
binarizationWanted=0;
addons[]=
{
	"exile_client",
	"CUP_Misc3_Config",
	"CUP_A2_EditorObjects"
};
class AddonsMetaData
{
	class List
	{
		items=3;
		class Item0
		{
			className="exile_client";
			name="exile_client";
		};
		class Item1
		{
			className="CUP_Misc3_Config";
			name="CUP_Misc3_Config";
		};
		class Item2
		{
			className="CUP_A2_EditorObjects";
			name="CUP_A2_EditorObjects";
			author="MemphisBelle";
		};
	};
};
randomSeed=6337700;
class ScenarioData
{
	author="Mr Health And Safety";
};
class Mission
{
	class Intel
	{
		timeOfChanges=1800.0002;
		startWeather=0.80000001;
		startWind=0.1;
		startWaves=0.1;
		forecastWeather=0.80000001;
		forecastWind=0.1;
		forecastWaves=0.1;
		forecastLightnings=0.1;
		year=2001;
		month=3;
		day=5;
		startFogDecay=0.014;
		forecastFogDecay=0.014;
	};
	class Entities
	{
		items=12;
		class Item0
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={5738.1348,1.2809517,5430.9971};
						angles[]={0,3.8079324,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
						isPlayer=1;
					};
					id=1;
					type="Exile_Trader_BoatCustoms";
				};
			};
			class Attributes
			{
			};
			id=0;
		};
		class Item1
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={5730.3628,1.2810225,5437.6543};
						angles[]={0,3.5906785,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=3;
					type="Exile_Trader_Boat";
					atlOffset=0.00064849854;
				};
			};
			class Attributes
			{
			};
			id=2;
			atlOffset=0.00064849854;
		};
		class Item2
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={5721.8018,2.3571682,5431.4136};
				angles[]={0,0.45625836,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=4;
			type="Exile_Sign_Boat";
			atlOffset=0.037395597;
		};
		class Item3
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={5729.0728,1.6954973,5437.835};
				angles[]={0,5.5001783,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=5;
			type="Exile_Sign_Boat_Small";
			atlOffset=1.5256445;
		};
		class Item4
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={5738.1123,1.733549,5429.127};
				angles[]={0,2.305809,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=6;
			type="Exile_Sign_BoatCustoms_Small";
			atlOffset=1.2698202;
		};
		class Item5
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={5721.7925,1.3403914,5431.4009};
				angles[]={0,0.4586013,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=7;
			type="Exile_Sign_BoatCustoms";
			atlOffset=-0.71277976;
		};
		class Item6
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={5699.4658,3.1311913,5431.5923};
				angles[]={0.12687424,0,6.1448488};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=21;
			type="HeliHCivil";
			atlOffset=-3.5524368e-005;
		};
		class Item7
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={5735.8472,0.81681806,5432.4604};
				angles[]={0,3.9343719,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=23;
			type="CUP_A2_smallboat_2";
			atlOffset=1.3169802;
		};
		class Item8
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={5752.7935,0.84410429,5446.8042};
				angles[]={0,0.51688331,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=24;
			type="CUP_A2_smallboat_1";
			atlOffset=3.0005884;
		};
		class Item9
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={5762.7915,3.8594847,5451.5981};
				angles[]={0,3.8677607,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=25;
			type="CUP_A2_fishing_boat";
			atlOffset=5.5814314;
		};
		class Item10
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={5726.3843,3.8701148,5429.5928};
						angles[]={0,3.8877976,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=29;
					type="Exile_Guard_03";
				};
			};
			class Attributes
			{
			};
			id=28;
		};
		class Item11
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={5730.228,3.8701148,5425.7012};
						angles[]={0,3.8776054,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=31;
					type="Exile_Guard_02";
				};
			};
			class Attributes
			{
			};
			id=30;
		};
	};
};

 

BoatTraderCamp.sqf

Spoiler

private _objects = [
	["Exile_Sign_Boat",[5721.8,5431.41,1.31611],[[0.440592,0.897707,0],[0,0,1]],[false,false]],
	["Exile_Sign_Boat_Small",[5729.07,5437.83,0.554029],[[-0.705414,0.708796,0],[0,0,1]],[false,false]],
	["Exile_Sign_BoatCustoms_Small",[5738.11,5429.13,0.59208],[[0.741822,-0.670597,0],[0,0,1]],[false,false]],
	["Exile_Sign_BoatCustoms",[5721.79,5431.4,0.299338],[[0.442694,0.896673,0],[0,0,1]],[false,false]],
	["HeliHCivil",[5699.47,5431.59,3.13119],[[0,0.991962,-0.126534],[0.137896,0.125325,0.982486]],[false,false]],
	["CUP_A2_smallboat_2",[5735.85,5432.46,0.546268],[[-0.712307,-0.701868,0],[0,0,1]],[false,false]],
	["CUP_A2_smallboat_1",[5752.79,5446.8,0.573554],[[0.494173,0.869364,0],[0,0,1]],[false,false]],
	["CUP_A2_fishing_boat",[5762.79,5451.6,-0.297499],[[-0.664009,-0.747724,0],[0,0,1]],[false,false]]
	//["Exile_Guard_03",[5726.38,5429.59,3.87011],[[-0.678857,-0.734271,0],[0,0,1]],[false,false]],
	//["Exile_Guard_02",[5730.23,5425.7,3.87011],[[-0.671338,-0.741151,0],[0,0,1]],[false,false]]
];
{
	private _object = (_x select 0) createVehicle [0,0,0];
	_object setPosASL (_x select 1);
	_object setVectorDirAndUp (_x select 2);
	_object enableSimulationGlobal ((_x select 3) select 0);
	_object allowDamage ((_x select 3) select 1);
} forEach _objects;

 

BoatTraders.sqf

Spoiler

	///////////////////////////////////////////////////////////////////////////
	// Boat Trader
	///////////////////////////////////////////////////////////////////////////
	_trader = 
	[
	    "Exile_Trader_Boat",
	    "Exile_Trader_Boat",
	    "WhiteHead_17",
	    ["AidlPercMstpSnonWnonDnon_G01", "AidlPercMstpSnonWnonDnon_G02", "AidlPercMstpSnonWnonDnon_G03", "AidlPercMstpSnonWnonDnon_G04", "AidlPercMstpSnonWnonDnon_G05", "AidlPercMstpSnonWnonDnon_G06"],
	    [5730.36,5437.65,1.95],
	    205.731
	]
	call ExileClient_object_trader_create;

	///////////////////////////////////////////////////////////////////////////
	// Boat Custom Trader
	///////////////////////////////////////////////////////////////////////////
	_trader = 
	[
	    "Exile_Trader_BoatCustoms",
	    "Exile_Trader_BoatCustoms",
	    "WhiteHead_05",
	    ["AidlPercMstpSnonWnonDnon_G03", "AidlPercMstpSnonWnonDnon_G04", "AidlPercMstpSnonWnonDnon_G01", "AidlPercMstpSnonWnonDnon_G02", "AidlPercMstpSnonWnonDnon_G05", "AidlPercMstpSnonWnonDnon_G06"],
	    [5738.13,5431,1.95],
	    218.178
	]
	call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard - Entrance waste side
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_02",
        "",
        "WhiteHead_03",
        ["InBaseMoves_patrolling2","InBaseMoves_patrolling1"],
        [5730.23,5425.7,3.5],
        218.178
    ]
    call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard - Behind office trader
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_03",
        "",
        "AfricanHead_03",
        ["HubStanding_idle1", "HubStanding_idle2", "HubStanding_idle3"],
        [5726.38,5429.59,3.5],
        218.178
    ]
    call ExileClient_object_trader_create;

 

Air Traders

Photos

Spoiler

20160712170325_1.jpg
20160712170453_1.jpg 

Eden Editor Code (May be additional items that are commented out in final code)

Spoiler

version=52;
class EditorData
{
	moveGridStep=1;
	angleGridStep=0.2617994;
	scaleGridStep=1;
	autoGroupingDist=10;
	toggles=1;
	class ItemIDProvider
	{
		nextID=98;
	};
	class Camera
	{
		pos[]={10816.848,18.848858,4855.5376};
		dir[]={-0.085770883,-0.45234439,-0.88784575};
		up[]={-0.043510471,0.89171898,-0.45038831};
		aside[]={-0.99537838,7.4660784e-007,0.09617956};
	};
};
binarizationWanted=0;
addons[]=
{
	"A3_Structures_F_Mil_Cargo",
	"A3_Structures_F_Households_Slum",
	"CUP_A2_EditorObjects",
	"A3_Structures_F_Walls",
	"SAR_ru_architecture",
	"exile_client",
	"CUP_A1_EditorObjects",
	"A3_Structures_F_Heli_Ind_Machines",
	"A3_Structures_F_Heli_Ind_Airport",
	"A3_Structures_F_Heli_Items_Airport",
	"A3_Structures_F_Heli_Items_Tools"
};
class AddonsMetaData
{
	class List
	{
		items=8;
		class Item0
		{
			className="A3_Structures_F_Mil";
			name="Arma 3 - Military Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item1
		{
			className="A3_Structures_F_Households";
			name="Arma 3 Alpha - Houses";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item2
		{
			className="CUP_A2_EditorObjects";
			name="CUP_A2_EditorObjects";
			author="MemphisBelle";
		};
		class Item3
		{
			className="A3_Structures_F";
			name="Arma 3 Alpha - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item4
		{
			className="SAR_ru_architecture";
			name="SAR_ru_architecture";
		};
		class Item5
		{
			className="exile_client";
			name="exile_client";
		};
		class Item6
		{
			className="CUP_A1_EditorObjects";
			name="CUP_A1_EditorObjects";
			author="NeoArmageddon";
		};
		class Item7
		{
			className="A3_Structures_F_Heli";
			name="Arma 3 Helicopters - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
	};
};
randomSeed=1789269;
class ScenarioData
{
	author="Mr Health And Safety";
};
class Mission
{
	class Intel
	{
		timeOfChanges=1800.0002;
		startWeather=0.80000001;
		startWind=0.1;
		startWaves=0.1;
		forecastWeather=0.80000001;
		forecastWind=0.1;
		forecastWaves=0.1;
		forecastLightnings=0.1;
		year=2001;
		month=3;
		day=5;
		startFogDecay=0.014;
		forecastFogDecay=0.014;
	};
	class Entities
	{
		items=38;
		class Item0
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10817.525,14.693558,4842.749};
				angles[]={0,0.036544055,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=2;
			type="Land_Cargo_Patrol_V2_F";
			atlOffset=-9.5367432e-007;
		};
		class Item1
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10807.563,10.370402,4837.978};
				angles[]={0,1.5338068,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=10;
			type="Land_cargo_house_slum_F";
		};
		class Item2
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10809.809,10.364742,4840.8921};
				angles[]={0,4.6654501,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=11;
			type="Land_cargo_addon01_V1_F";
		};
		class Item3
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10817.35,14.533622,4840.9893};
				angles[]={0,3.184334,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=13;
			type="CUP_A2_table";
			atlOffset=0.00084495544;
		};
		class Item4
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10819.377,14.532776,4840.9067};
				angles[]={0,3.1786304,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=14;
			type="CUP_A2_table";
		};
		class Item5
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10816.835,10.615515,4846.9375};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=18;
			type="Land_Slums01_8m";
			atlOffset=0.55736828;
		};
		class Item6
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10809.247,10.593674,4845.395};
				angles[]={0,5.8832903,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=19;
			type="Land_Slums01_8m";
			atlOffset=0.54603195;
		};
		class Item7
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10804.042,10.631111,4840.291};
				angles[]={0,5.1148205,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=20;
			type="Land_Slums01_8m";
			atlOffset=0.44966125;
		};
		class Item8
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10804.966,10.917629,4833.6963};
				angles[]={0,4.0085926,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=21;
			type="Land_Slums01_8m";
			atlOffset=0.43396664;
		};
		class Item9
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10811.137,11.178944,4829.1436};
				angles[]={0,3.5498168,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=22;
			type="Land_Slums01_8m";
			atlOffset=0.48138618;
		};
		class Item10
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10823.319,10.724894,4843.9038};
				angles[]={0,0.86474645,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=23;
			type="Land_Slums01_8m";
			atlOffset=0.42098331;
		};
		class Item11
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10824.448,11.014244,4837.1895};
				angles[]={0,1.9197698,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=24;
			type="Land_Slums01_8m";
			atlOffset=0.42726326;
		};
		class Item12
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10820.088,11.191534,4830.8999};
				angles[]={0,2.4289291,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=25;
			type="Land_Slums01_8m";
			atlOffset=0.42981243;
		};
		class Item13
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10814.921,11.28944,4827.4507};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=26;
			type="Land_Slums01_pole";
			atlOffset=0.38515949;
		};
		class Item14
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10814.752,10.687412,4836.8843};
				angles[]={0.042444348,1.3124247,0.0083580529};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=29;
			type="land_Objects11";
			atlOffset=-0.22005558;
		};
		class Item15
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10814.929,10.099446,4833.7793};
						angles[]={0,3.067378,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
						isPlayer=1;
					};
					id=31;
					type="Exile_Guard_01";
				};
			};
			class Attributes
			{
			};
			id=30;
		};
		class Item16
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10817.136,14.134038,4841.9043};
						angles[]={0,0.02232484,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=33;
					type="Exile_Trader_Aircraft";
				};
			};
			class Attributes
			{
			};
			id=32;
		};
		class Item17
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={10807.759,9.9597092,4835.5049};
						angles[]={0,2.3658433,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=35;
					type="Exile_Trader_AircraftCustoms";
				};
			};
			class Attributes
			{
			};
			id=34;
		};
		class Item18
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10784.558,9.2508202,4841.5381};
				angles[]={0.021300886,2.6071923,0.013019908};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=37;
			type="CUP_A1_Heli_H_civil";
		};
		class Item19
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10804.373,10.113657,4836.8608};
				angles[]={0.052879378,0,0.021763207};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=38;
			type="CUP_A1_junkpile";
		};
		class Item20
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10838.707,11.708105,4843.3315};
				angles[]={0.057055205,1.2561548,6.2810292};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=50;
			type="CUP_A1_UH60_Crashed";
		};
		class Item21
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10809.906,10.55526,4855.9043};
				angles[]={0.018390385,3.2036107,0.0063851168};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=51;
			type="CUP_A2_fuel_tank_stairs";
		};
		class Item22
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10809.605,10.597394,4840.6245};
				angles[]={0.042444348,0,0.021137953};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=70;
			type="Land_DieselGroundPowerUnit_01_F";
			atlOffset=-0.007142067;
		};
		class Item23
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10806.225,14.214161,4836.6836};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=79;
			type="Windsock_01_F";
			atlOffset=0.4664402;
		};
		class Item24
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10818.877,16.035624,4840.9814};
				angles[]={0,1.6487629,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=82;
			type="CUP_A1_mutt_vysilacka";
			atlOffset=0.80041027;
		};
		class Item25
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10819.281,9.9694929,4842.2524};
				angles[]={0.058477845,2.3101211,0.0096366359};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=83;
			type="Land_HelicopterWheels_01_assembled_F";
			atlOffset=-6.2942505e-005;
		};
		class Item26
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10819.484,9.9039688,4843.3267};
				angles[]={0.058477845,0,0.0096366359};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=84;
			type="Land_HelicopterWheels_01_disassembled_F";
			atlOffset=-0.007106781;
		};
		class Item27
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10816.885,14.976255,4840.9653};
				angles[]={0,3.2727044,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=85;
			type="Land_PitotTubeCover_01_F";
		};
		class Item28
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10817.76,14.95214,4841.0059};
				angles[]={0,4.6962614,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=86;
			type="Land_DischargeStick_01_F";
		};
		class Item29
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10820.911,10.000984,4842.2363};
				angles[]={0.058477845,0.4636476,0.0096366359};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=87;
			type="Land_AirIntakePlug_01_F";
			atlOffset=-4.6730042e-005;
		};
		class Item30
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10821.763,9.857687,4843.147};
				angles[]={0.058477845,5.8464103,0.0096366359};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=88;
			type="Land_AirIntakePlug_05_F";
		};
		class Item31
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10820.826,9.8396626,4844.0054};
				angles[]={0.058477845,2.2707183,0.0096366359};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=89;
			type="Land_AirIntakePlug_02_F";
		};
		class Item32
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10821.916,9.9471579,4842.0273};
				angles[]={0.058477845,2.0763774,0.0096366359};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=90;
			type="Land_AirIntakePlug_03_F";
			atlOffset=0.00075817108;
		};
		class Item33
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10822.716,9.9052935,4843.3555};
				angles[]={0.057364807,4.5372071,0.010758872};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=91;
			type="Land_AirIntakePlug_04_F";
			atlOffset=-4.7683716e-006;
		};
		class Item34
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10820.432,10.244226,4843.0527};
				angles[]={0.058477845,3.632422,0.0096366359};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=92;
			type="Land_RotorCoversBag_01_F";
			atlOffset=0.090920448;
		};
		class Item35
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10822.648,9.9630299,4842.2568};
				angles[]={0.058477845,4.9205537,0.0096366359};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=93;
			type="Land_WheelChock_01_F";
			atlOffset=0.00023555756;
		};
		class Item36
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10817.755,10.871363,4842.0835};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=96;
			type="Exile_Sign_Aircraft";
		};
		class Item37
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={10805.858,10.968607,4835.6045};
				angles[]={0,5.5323262,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=97;
			type="Exile_Sign_AircraftCustoms";
		};
	};
};

 

AirTraderCamp.sqf

Spoiler

private _objects = [
	["Land_Cargo_Patrol_V2_F",[10817.5,4842.75,9.78856],[[0.0365359,0.999332,0],[0,0,1]],[false,false]],
	["Land_cargo_house_slum_F",[10807.6,4837.98,9.84295],[[0.999316,0.0369811,0],[0,0,1]],[false,false]],
	["Land_cargo_addon01_V1_F",[10809.8,4840.89,9.74858],[[-0.998899,-0.0469216,0],[0,0,1]],[false,false]],
	["CUP_A2_table",[10817.3,4840.99,14.1334],[[-0.0427284,-0.999087,0],[0,0,1]],[false,false]],
	["CUP_A2_table",[10819.4,4840.91,14.1326],[[-0.0370292,-0.999314,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10816.8,4846.94,10.0915],[[0,1,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10809.2,4845.4,10.0697],[[-0.389322,0.921102,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10804,4840.29,10.1071],[[-0.920111,0.391657,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10805,4833.7,10.3936],[[-0.762391,-0.647117,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10811.1,4829.14,10.6549],[[-0.39698,-0.917827,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10823.3,4843.9,10.2009],[[0.760931,0.648833,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10824.4,4837.19,10.4902],[[0.939724,-0.341933,0],[0,0,1]],[false,false]],
	["Land_Slums01_8m",[10820.1,4830.9,10.6675],[[0.653851,-0.756623,0],[0,0,1]],[false,false]],
	["Land_Slums01_pole",[10814.9,4827.45,10.6664],[[0,1,0],[0,0,1]],[false,false]],
	["land_Objects11",[10814.8,4836.88,9.87561],[[0.966774,0.255619,-0.0027683],[-0.00835796,0.0424301,0.999065]],[false,false]],
	//["Exile_Guard_01",[10814.9,4833.78,10.0994],[[0.0741465,-0.997247,0],[0,0,1]],[false,false]],
	["CUP_A1_Heli_H_civil",[10784.6,4841.54,9.25082],[[0.509282,-0.860238,0.0249593],[-0.0130195,0.0212975,0.999688]],[false,false]],
	["CUP_A1_junkpile",[10804.4,4836.86,9.8434],[[0,0.998602,-0.0528547],[-0.0217615,0.0528422,0.998366]],[false,false]],
	["CUP_A1_UH60_Crashed",[10838.7,4843.33,9.82011],[[0.950905,0.308855,-0.0196945],[0.00215608,0.0570241,0.99837]],[false,false]],
	["CUP_A2_fuel_tank_stairs",[10809.9,4855.9,9.16519],[[-0.061977,-0.997916,0.0179583],[-0.00638507,0.018389,0.999811]],[false,false]],
	["Land_DieselGroundPowerUnit_01_F",[10809.6,4840.62,9.75042],[[0,0.999099,-0.0424316],[-0.0211364,0.0424221,0.998876]],[false,false]],
	["Windsock_01_F",[10806.2,4836.68,12.9392],[[0,1,0],[0,0,1]],[false,false]],
	["CUP_A1_mutt_vysilacka",[10818.9,4840.98,14.933],[[0.996962,-0.0778876,0],[0,0,1]],[false,false]],
	["Land_HelicopterWheels_01_assembled_F",[10819.3,4842.25,9.83673],[[0.738889,-0.672221,0.0464877],[-0.00963649,0.0584418,0.998244]],[false,false]],
	["Land_HelicopterWheels_01_disassembled_F",[10819.5,4843.33,9.76873],[[0,0.998291,-0.0584445],[-0.00963649,0.0584418,0.998244]],[false,false]],
	["Land_PitotTubeCover_01_F",[10816.9,4840.97,14.9339],[[-0.130736,-0.991417,0],[0,0,1]],[false,false]],
	["Land_DischargeStick_01_F",[10817.8,4841.01,14.9339],[[-0.99987,-0.0161269,0],[0,0,1]],[false,false]],
	["Land_AirIntakePlug_01_F",[10820.9,4842.24,9.85343],[[0.447193,0.89315,-0.0479722],[-0.00963649,0.0584418,0.998244]],[false,false]],
	["Land_AirIntakePlug_05_F",[10821.8,4843.15,9.80804],[[-0.423,0.904333,-0.0570272],[-0.00963649,0.0584418,0.998244]],[false,false]],
	["Land_AirIntakePlug_02_F",[10820.8,4844.01,9.74889],[[0.764857,-0.642626,0.0450058],[-0.00963649,0.0584418,0.998244]],[false,false]],
	["Land_AirIntakePlug_03_F",[10821.9,4842.03,9.87591],[[0.874853,-0.482995,0.0367221],[-0.00963649,0.0584418,0.998244]],[false,false]],
	["Land_AirIntakePlug_04_F",[10822.7,4843.36,9.80525],[[-0.984638,-0.174608,-0.000584105],[-0.0107587,0.05733,0.998297]],[false,false]],
	["Land_RotorCoversBag_01_F",[10820.4,4843.05,9.89269],[[-0.471336,-0.8807,0.0470102],[-0.00963649,0.0584418,0.998244]],[false,false]],
	["Land_WheelChock_01_F",[10822.6,4842.26,9.86906],[[-0.978366,0.20576,-0.0214907],[-0.00963649,0.0584418,0.998244]],[false,false]],
	["Exile_Sign_Aircraft",[10817.8,4842.08,9.83031],[[0,1,0],[0,0,1]],[false,false]],
	["Exile_Sign_AircraftCustoms",[10805.9,4835.6,9.92755],[[-0.682267,0.731103,0],[0,0,1]],[false,false]]
];
{
	private _object = (_x select 0) createVehicle [0,0,0];
	_object setPosASL (_x select 1);
	_object setVectorDirAndUp (_x select 2);
	_object enableSimulationGlobal ((_x select 3) select 0);
	_object allowDamage ((_x select 3) select 1);
} forEach _objects;

 

AirTraders.sqf

Spoiler

	///////////////////////////////////////////////////////////////////////////
	// Aircraft Trader
	///////////////////////////////////////////////////////////////////////////
	_trader = 
	[
	    "Exile_Trader_Aircraft",
	    "Exile_Trader_Aircraft",
	    "WhiteHead_17",
	    ["LHD_krajPaluby"],
	    [10817.1,4841.9,4.30497],
	    1.27912
	]
	call ExileClient_object_trader_create;

	///////////////////////////////////////////////////////////////////////////
	// Aircraft Customs Trader
	///////////////////////////////////////////////////////////////////////////
	_trader = 
	[
	    "Exile_Trader_AircraftCustoms",
	    "Exile_Trader_AircraftCustoms",
	    "GreekHead_A3_07",
	    ["HubStandingUC_idle1", "HubStandingUC_idle2", "HubStandingUC_idle3", "HubStandingUC_move1", "HubStandingUC_move2"],
	    [10807.8,4835.5,0.00272465],
	    135.553
	]
	call ExileClient_object_trader_create;

    ///////////////////////////////////////////////////////////////////////////
    // Guard
    ///////////////////////////////////////////////////////////////////////////
    _trader = 
    [
        "Exile_Guard_01",
        "",
        "WhiteHead_17",
        ["InBaseMoves_patrolling2","InBaseMoves_patrolling1"],
        [10814.9,4833.78,0.00272465],
        168.254
    ]
    call ExileClient_object_trader_create;

 

 

Map Addons

Bridge

Photos

Spoiler

20160712170521_1.jpg

Eden Editor Code (May be additional items that are commented out in final code)

Spoiler

version=52;
class EditorData
{
	moveGridStep=1;
	angleGridStep=0.2617994;
	scaleGridStep=1;
	autoGroupingDist=10;
	toggles=2;
	class ItemIDProvider
	{
		nextID=40;
	};
	class Camera
	{
		pos[]={8443.3369,75.418892,5471.0703};
		dir[]={-0.4905884,-0.5376485,-0.68590462};
		up[]={-0.31284973,0.84306723,-0.43740413};
		aside[]={-0.81346369,2.4301262e-006,0.58182782};
	};
};
binarizationWanted=0;
addons[]=
{
	"CUP_CA_Config",
	"CUP_A2_EditorObjects",
	"CUP_A1_EditorObjects"
};
class AddonsMetaData
{
	class List
	{
		items=3;
		class Item0
		{
			className="CUP_CA_Config";
			name="CUP_CA_Config";
		};
		class Item1
		{
			className="CUP_A2_EditorObjects";
			name="CUP_A2_EditorObjects";
			author="MemphisBelle";
		};
		class Item2
		{
			className="CUP_A1_EditorObjects";
			name="CUP_A1_EditorObjects";
			author="NeoArmageddon";
		};
	};
};
randomSeed=1833688;
class ScenarioData
{
	author="Mr_Health_And_Safety";
};
class Mission
{
	class Intel
	{
		timeOfChanges=1800.0002;
		startWeather=0.80000001;
		startWind=0.1;
		startWaves=0.1;
		forecastWeather=0.80000001;
		forecastWind=0.1;
		forecastWaves=0.1;
		forecastLightnings=0.1;
		year=2001;
		month=3;
		day=5;
		startFogDecay=0.014;
		forecastFogDecay=0.014;
	};
	class Entities
	{
		items=12;
		class Item0
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8352.7979,8.0400381,5279.9077};
				angles[]={6.2642331,0.39147308,6.2750149};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=21;
			type="RampConcrete";
		};
		class Item1
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8355.3164,8.0018539,5278.978};
				angles[]={6.2642331,0.39147308,6.2750149};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=23;
			type="RampConcrete";
		};
		class Item2
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8345.4414,-14.23432,5256.3794};
				angles[]={0,1.9341249,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=24;
			type="14_pier_14_nav_pier_m_2";
			atlOffset=17.464752;
		};
		class Item3
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8331.2256,-14.23095,5218.9741};
				angles[]={0,1.9341249,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=25;
			type="14_pier_14_nav_pier_m_2";
			atlOffset=38.405598;
		};
		class Item4
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8317.0801,-14.241302,5181.7314};
				angles[]={0,1.9341249,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=26;
			type="14_pier_14_nav_pier_m_2";
			atlOffset=43.267376;
		};
		class Item5
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8303.0898,-14.244084,5144.9292};
				angles[]={0,1.9341249,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=27;
			type="14_pier_14_nav_pier_m_2";
			atlOffset=17.914755;
		};
		class Item6
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8289.0469,-14.270077,5107.7236};
				angles[]={0,1.9290905,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=29;
			type="14_pier_14_nav_pier_m_2";
			atlOffset=-7.6452789;
		};
		class Item7
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8289.9258,14.808064,5110.6943};
				angles[]={0,3.5259759,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=31;
			type="CUP_A1_asf12";
			atlOffset=4.6622391;
		};
		class Item8
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8285.4648,12.57061,5100.2637};
				angles[]={0,3.5259759,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=32;
			type="CUP_A1_asf12";
			atlOffset=0.27249336;
		};
		class Item9
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8281.1836,13.774338,5089.7354};
				angles[]={0,3.5259759,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=33;
			type="CUP_A1_asf12";
		};
		class Item10
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8275.6836,16.459309,5077.0068};
				angles[]={0,3.5259759,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=34;
			type="CUP_A1_asf12";
			atlOffset=0.36409378;
		};
		class Item11
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={8278.543,15.032093,5083.6953};
				angles[]={0,3.5259759,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=35;
			type="CUP_A1_asf12";
			atlOffset=0.29463482;
		};
	};
};

 

Bridge.sqf

Spoiler

private _objects = [
	["RampConcrete",[8352.8,5279.91,7.682],[[0.381538,0.924241,0.0144005],[0.00817034,-0.0189504,0.999787]],[false,false]],
	["RampConcrete",[8355.32,5278.98,7.64382],[[0.381538,0.924241,0.0144005],[0.00817034,-0.0189504,0.999787]],[false,false]],
	["14_pier_14_nav_pier_m_2",[8345.44,5256.38,3.21967],[[0.934719,-0.355388,0],[0,0,1]],[false,false]],
	["14_pier_14_nav_pier_m_2",[8331.23,5218.97,3.22304],[[0.934719,-0.355388,0],[0,0,1]],[false,false]],
	["14_pier_14_nav_pier_m_2",[8317.08,5181.73,3.21269],[[0.934719,-0.355388,0],[0,0,1]],[false,false]],
	["14_pier_14_nav_pier_m_2",[8303.09,5144.93,3.20991],[[0.934719,-0.355388,0],[0,0,1]],[false,false]],
	["14_pier_14_nav_pier_m_2",[8289.05,5107.72,3.18391],[[0.936496,-0.350677,0],[0,0,1]],[false,false]],
	["CUP_A1_asf12",[8289.93,5110.69,14.8081],[[-0.374988,-0.92703,0],[0,0,1]],[false,false]],
	["CUP_A1_asf12",[8285.46,5100.26,12.5706],[[-0.374988,-0.92703,0],[0,0,1]],[false,false]],
	["CUP_A1_asf12",[8281.18,5089.74,13.7743],[[-0.374988,-0.92703,0],[0,0,1]],[false,false]],
	["CUP_A1_asf12",[8275.68,5077.01,16.4593],[[-0.374988,-0.92703,0],[0,0,1]],[false,false]],
	["CUP_A1_asf12",[8278.54,5083.7,15.0321],[[-0.374988,-0.92703,0],[0,0,1]],[false,false]]
];
{
	private _object = (_x select 0) createVehicle [0,0,0];
	_object setPosASL (_x select 1);
	_object setVectorDirAndUp (_x select 2);
	_object enableSimulationGlobal ((_x select 3) select 0);
	_object allowDamage ((_x select 3) select 1);
} forEach _objects;

 

Camp Spencer Military Base

Photos

Spoiler

20160712170552_1.jpg
20160712170608_1.jpg
20160712170617_1.jpg
20160712170623_1.jpg 

Eden Editor Code (May be additional items that are commented out in final code)

Spoiler

version=52;
class EditorData
{
	moveGridStep=1;
	angleGridStep=0.2617994;
	scaleGridStep=1;
	autoGroupingDist=10;
	toggles=1;
	class ItemIDProvider
	{
		nextID=76;
	};
	class Camera
	{
		pos[]={1078.5735,199.41495,10306.489};
		dir[]={0.54600853,-0.70364857,-0.45497221};
		up[]={0.54070735,0.71025401,-0.45054212};
		aside[]={-0.64019281,1.7324783e-006,-0.76830912};
	};
};
binarizationWanted=0;
addons[]=
{
	"A3_Structures_F_Mil_Cargo",
	"CUP_Buildings_Config",
	"A3_Structures_F_Mil_Offices",
	"CUP_CAStructures_Mil"
};
class AddonsMetaData
{
	class List
	{
		items=3;
		class Item0
		{
			className="A3_Structures_F_Mil";
			name="Arma 3 - Military Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item1
		{
			className="CUP_Buildings_Config";
			name="CUP_Buildings_Config";
		};
		class Item2
		{
			className="CUP_CAStructures_Mil";
			name="CUP_CAStructures_Mil";
		};
	};
};
randomSeed=1673759;
class ScenarioData
{
	author="Mr Health And Safety";
};
class Mission
{
	class Intel
	{
		timeOfChanges=1800.0002;
		startWeather=0.80000001;
		startWind=0.1;
		startWaves=0.1;
		forecastWeather=0.80000001;
		forecastWind=0.1;
		forecastWaves=0.1;
		forecastLightnings=0.1;
		year=2001;
		month=3;
		day=5;
		startFogDecay=0.014;
		forecastFogDecay=0.014;
	};
	class Entities
	{
		items=35;
		class Item0
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1159.472,154.98015,10155.271};
				angles[]={0,0.67278069,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=5;
			type="Land_Cargo_Patrol_V1_F";
		};
		class Item1
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1128.3259,150.76266,10311.845};
				angles[]={0,0.59879971,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=35;
			type="Land_Cargo_House_V1_F";
			atlOffset=0.0001373291;
		};
		class Item2
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1144.3917,150.76271,10301.478};
				angles[]={0,0.59879971,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=36;
			type="Land_Cargo_House_V1_F";
			atlOffset=0.00018310547;
		};
		class Item3
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1150.0706,150.76256,10297.565};
				angles[]={0,0.59879971,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=37;
			type="Land_Cargo_House_V1_F";
			atlOffset=3.0517578e-005;
		};
		class Item4
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1129.3547,162.95874,10399.519};
				angles[]={0,3.7294011,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=39;
			type="Land_Cargo_Tower_V1_F";
		};
		class Item5
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1043.3408,162.95874,10274.949};
				angles[]={0,3.7294011,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=40;
			type="Land_Cargo_Tower_V1_F";
		};
		class Item6
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1272.4559,162.95874,10265.271};
				angles[]={0,5.3489199,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=41;
			type="Land_Cargo_Tower_V1_F";
		};
		class Item7
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1205.7603,162.95874,10145.797};
				angles[]={0,2.2072747,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=42;
			type="Land_Cargo_Tower_V1_F";
		};
		class Item8
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1085.5719,154.97752,10340.985};
				angles[]={0,2.1793785,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=45;
			type="Land_Cargo_Patrol_V1_F";
		};
		class Item9
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1208.6362,154.97752,10376.251};
				angles[]={0,3.7428939,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=46;
			type="Land_Cargo_Patrol_V1_F";
		};
		class Item10
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1259.1459,154.97752,10184.134};
				angles[]={0,5.3360419,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=47;
			type="Land_Cargo_Patrol_V1_F";
		};
		class Item11
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1261.5735,154.97752,10319.739};
				angles[]={0,4.1949062,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=48;
			type="Land_Cargo_Patrol_V1_F";
		};
		class Item12
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1092.4462,154.97752,10203.246};
				angles[]={0,0.6291039,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=49;
			type="Land_Cargo_Patrol_V1_F";
		};
		class Item13
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1078.5225,150.76253,10255.071};
				angles[]={0,2.1459537,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=50;
			type="Land_Cargo_House_V1_F";
		};
		class Item14
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1086.6656,150.76253,10267.797};
				angles[]={0,2.120162,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=51;
			type="Land_Cargo_House_V1_F";
		};
		class Item15
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1090.9226,150.76253,10274.163};
				angles[]={0,2.120162,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=52;
			type="Land_Cargo_House_V1_F";
		};
		class Item16
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1071.3191,150.76253,10260.039};
				angles[]={0,5.2782388,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=53;
			type="Land_Cargo_House_V1_F";
		};
		class Item17
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1075.2864,150.76253,10266.573};
				angles[]={0,5.2782388,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=54;
			type="Land_Cargo_House_V1_F";
		};
		class Item18
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1079.2855,150.76253,10273.248};
				angles[]={0,5.2974491,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=55;
			type="Land_Cargo_House_V1_F";
		};
		class Item19
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1083.7654,150.76253,10279.643};
				angles[]={0,5.3291354,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=56;
			type="Land_Cargo_House_V1_F";
		};
		class Item20
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1149.8158,150.77252,10373.468};
				angles[]={0,5.3011508,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=57;
			type="Land_Medevac_house_V1_F";
		};
		class Item21
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1155.7231,151.25203,10384.427};
				angles[]={0,3.6994848,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=58;
			type="MASH";
		};
		class Item22
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1161.8029,151.25203,10380.41};
				angles[]={0,3.6994848,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=59;
			type="MASH";
		};
		class Item23
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1168.4226,151.25203,10376.374};
				angles[]={0,3.6994848,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=60;
			type="MASH";
		};
		class Item24
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1145.3798,153.44373,10325.012};
				angles[]={0,0.60732448,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=61;
			type="Land_MilOffices_V1_F";
		};
		class Item25
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1151.2849,150.77252,10351.389};
				angles[]={0,3.747236,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=64;
			type="Land_Medevac_house_V1_F";
		};
		class Item26
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1155.3999,150.77252,10357.303};
				angles[]={0,0.60532802,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=65;
			type="Land_Medevac_house_V1_F";
		};
		class Item27
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1158.5026,150.77252,10346.195};
				angles[]={0,3.7554328,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=66;
			type="Land_Medevac_house_V1_F";
		};
		class Item28
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1162.0557,150.77252,10352.583};
				angles[]={0,0.56745988,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=67;
			type="Land_Medevac_house_V1_F";
		};
		class Item29
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1165.2888,150.77252,10340.994};
				angles[]={0,3.701977,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=68;
			type="Land_Medevac_house_V1_F";
		};
		class Item30
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1169.4073,150.77252,10347.618};
				angles[]={0,0.60009158,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=69;
			type="Land_Medevac_house_V1_F";
		};
		class Item31
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1147.0138,151.44089,10264.531};
				angles[]={0,0.5670405,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=71;
			type="Land_Mil_Barracks_i";
		};
		class Item32
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1125.7272,151.44089,10278.199};
				angles[]={0,0.5670405,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=72;
			type="Land_Mil_Barracks_i";
		};
		class Item33
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1119.1676,151.44089,10268.075};
				angles[]={0,0.5670405,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=73;
			type="Land_Mil_Barracks_i";
		};
		class Item34
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={1132.0555,151.44089,10288.238};
				angles[]={0,0.5670405,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=74;
			type="Land_Mil_Barracks_i";
		};
	};
};

 

MilitaryBaseCampSpencer.sqf

Spoiler

private _objects = [
	["Land_Cargo_Patrol_V1_F",[1159.47,10155.3,150.075],[[0.623163,0.782092,0],[0,0,1]],[false,false]],
	["CUP_A2_barracks_i",[1124.22,10279.5,150.073],[[0.540341,0.841446,0],[0,0,1]],[false,false]],
	["CUP_A2_barracks_i",[1117.44,10268.9,150.073],[[0.540341,0.841446,0],[0,0,1]],[false,false]],
	["CUP_A2_barracks_i",[1130.99,10289.6,150.073],[[0.540341,0.841446,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[1128.33,10311.8,150.073],[[0.563651,0.826013,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[1144.39,10301.5,150.073],[[0.563651,0.826013,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[1150.07,10297.6,150.073],[[0.563651,0.826013,0],[0,0,1]],[false,false]],
	["Land_Cargo_Tower_V1_F",[1129.35,10399.5,150.073],[[-0.554539,-0.832158,0],[0,0,1]],[false,false]],
	["Land_Cargo_Tower_V1_F",[1043.34,10274.9,150.073],[[-0.554539,-0.832158,0],[0,0,1]],[false,false]],
	["Land_Cargo_Tower_V1_F",[1272.46,10265.3,150.073],[[-0.804163,0.594409,0],[0,0,1]],[false,false]],
	["Land_Cargo_Tower_V1_F",[1205.76,10145.8,150.073],[[0.804194,-0.594367,0],[0,0,1]],[false,false]],
	["Land_Cargo_Patrol_V1_F",[1085.57,10341,150.073],[[0.820459,-0.571705,0],[0,0,1]],[false,false]],
	["Land_Cargo_Patrol_V1_F",[1208.64,10376.3,150.073],[[-0.565716,-0.8246,0],[0,0,1]],[false,false]],
	["Land_Cargo_Patrol_V1_F",[1259.15,10184.1,150.073],[[-0.811751,0.584004,0],[0,0,1]],[false,false]],
	["Land_Cargo_Patrol_V1_F",[1261.57,10319.7,150.073],[[-0.869067,-0.494694,0],[0,0,1]],[false,false]],
	["Land_Cargo_Patrol_V1_F",[1092.45,10203.2,150.073],[[0.58842,0.808555,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[1078.52,10255.1,150.073],[[0.839107,-0.543967,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[1086.67,10267.8,150.073],[[0.852856,-0.522146,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[1090.92,10274.2,150.073],[[0.852856,-0.522146,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[1071.32,10260,150.073],[[-0.844133,0.536133,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[1075.29,10266.6,150.073],[[-0.844133,0.536133,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[1079.29,10273.2,150.073],[[-0.833679,0.552249,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[1083.77,10279.6,150.073],[[-0.815765,0.578384,0],[0,0,1]],[false,false]],
	["Land_Medevac_house_V1_F",[1149.82,10373.5,150.073],[[-0.831629,0.555332,0],[0,0,1]],[false,false]],
	["MASH",[1155.72,10384.4,150.073],[[-0.529399,-0.848373,0],[0,0,1]],[false,false]],
	["MASH",[1161.8,10380.4,150.073],[[-0.529399,-0.848373,0],[0,0,1]],[false,false]],
	["MASH",[1168.42,10376.4,150.073],[[-0.529399,-0.848373,0],[0,0,1]],[false,false]],
	["Land_MilOffices_V1_F",[1145.38,10325,150.073],[[0.570672,0.821178,0],[0,0,1]],[false,false]],
	["CUP_A2_barracks_i",[1146.89,10264.4,150.073],[[0.540341,0.841446,0],[0,0,1]],[false,false]],
	["Land_Medevac_house_V1_F",[1151.28,10351.4,150.073],[[-0.569291,-0.822136,0],[0,0,1]],[false,false]],
	["Land_Medevac_house_V1_F",[1155.4,10357.3,150.073],[[0.569032,0.822316,0],[0,0,1]],[false,false]],
	["Land_Medevac_house_V1_F",[1158.5,10346.2,150.073],[[-0.576011,-0.817442,0],[0,0,1]],[false,false]],
	["Land_Medevac_house_V1_F",[1162.06,10352.6,150.073],[[0.537492,0.843269,0],[0,0,1]],[false,false]],
	["Land_Medevac_house_V1_F",[1165.29,10341,150.073],[[-0.531512,-0.847051,0],[0,0,1]],[false,false]],
	["Land_Medevac_house_V1_F",[1169.41,10347.6,150.073],[[0.564718,0.825284,0],[0,0,1]],[false,false]]
];
{
	private _object = (_x select 0) createVehicle [0,0,0];
	_object setPosASL (_x select 1);
	_object setVectorDirAndUp (_x select 2);
	_object enableSimulationGlobal ((_x select 3) select 0);
	_object allowDamage ((_x select 3) select 1);
} forEach _objects;

 

 

Igman Military Base

Photos

Spoiler

20160712170658_1.jpg

Eden Editor Code (May be additional items that are commented out in final code)

Spoiler

version=52;
class EditorData
{
	moveGridStep=1;
	angleGridStep=0.2617994;
	scaleGridStep=1;
	autoGroupingDist=10;
	toggles=1;
	class ItemIDProvider
	{
		nextID=7;
	};
	class Camera
	{
		pos[]={7749.9209,123.48199,10148.033};
		dir[]={-0.78009057,-0.62574065,-0.012159906};
		up[]={-0.62577683,0.7799446,-0.0097570866};
		aside[]={-0.015592102,-3.3680863e-008,0.99997103};
	};
};
binarizationWanted=0;
addons[]=
{
	"CUP_A2_EditorObjects",
	"A3_Structures_F_Mil_Cargo"
};
class AddonsMetaData
{
	class List
	{
		items=2;
		class Item0
		{
			className="CUP_A2_EditorObjects";
			name="CUP_A2_EditorObjects";
			author="MemphisBelle";
		};
		class Item1
		{
			className="A3_Structures_F_Mil";
			name="Arma 3 - Military Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
	};
};
randomSeed=12734758;
class ScenarioData
{
	author="Mr Health And Safety";
};
class Mission
{
	class Intel
	{
		timeOfChanges=1800.0002;
		startWeather=0.80000001;
		startWind=0.1;
		startWaves=0.1;
		forecastWeather=0.80000001;
		forecastWind=0.1;
		forecastWaves=0.1;
		forecastLightnings=0.1;
		year=2001;
		month=3;
		day=5;
		startFogDecay=0.014;
		forecastFogDecay=0.014;
	};
	class Entities
	{
		items=5;
		class Item0
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7648.3765,54.264301,10127.626};
				angles[]={0,4.7186327,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=1;
			type="CUP_A2_barracks_i";
		};
		class Item1
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7679.0566,57.243557,10146.86};
				angles[]={0,4.6364923,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=3;
			type="Land_Cargo_Patrol_V1_F";
		};
		class Item2
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7678.8936,57.599369,10160.102};
				angles[]={0,4.6092606,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=4;
			type="Land_Cargo_Patrol_V1_F";
		};
		class Item3
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7602.1162,54.225513,10180.234};
				angles[]={0,3.1392794,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=5;
			type="Land_Cargo_House_V1_F";
		};
		class Item4
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7601.2988,66.610802,10126.829};
				angles[]={0,3.1302173,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=6;
			type="Land_Cargo_Tower_V1_F";
		};
	};
};

 

MilitaryBaseIgman.sqf

Spoiler

private _objects = [
	["CUP_A2_barracks_i",[7648.38,10127.6,52.8959],[[-0.999981,0.00624368,0],[0,0,1]],[false,false]],
	["Land_Cargo_Patrol_V1_F",[7679.06,10146.9,52.3386],[[-0.997121,-0.0758239,0],[0,0,1]],[false,false]],
	["Land_Cargo_Patrol_V1_F",[7678.89,10160.1,52.6944],[[-0.994687,-0.102946,0],[0,0,1]],[false,false]],
	["Land_Cargo_House_V1_F",[7602.12,10180.2,53.5355],[[0.00231329,-0.999997,0],[0,0,1]],[false,false]],
	["Land_Cargo_Tower_V1_F",[7601.3,10126.8,53.7246],[[0.0113751,-0.999935,0],[0,0,1]],[false,false]]
];
{
	private _object = (_x select 0) createVehicle [0,0,0];
	_object setPosASL (_x select 1);
	_object setVectorDirAndUp (_x select 2);
	_object enableSimulationGlobal ((_x select 3) select 0);
	_object allowDamage ((_x select 3) select 1);
} forEach _objects;

 

 

 

Any problems let me know and ill see if i can help but ill be deleting the files so hope its all here :)

Edited by Mr Health And Safety
  • Like 1

Share this post


Link to post
Share on other sites
Advertisement
6 minutes ago, Spackler said:

Great post just saved someone hours of work.

Spent hours on them but would rather they go to good use then just deleted now im done with Esseker

Share this post


Link to post
Share on other sites
8 minutes ago, Mr Health And Safety said:

Spent hours on them but would rather they go to good use then just deleted now im done with Esseker

Haha I feel ya there. It is a buggy mess. Do you happen or did you create custom loottables for it. I am fine tunning mine now and interested to see what others look like.

Edited by Spackler

Share this post


Link to post
Share on other sites
6 minutes ago, Spackler said:

Haha I feel ya there. It is a buggy mess. Do you happen or did you create custom loottables for it. I am fine tunning mine now and interested to see what others look like.

Im only done with it as i love jungle maps so it cant compete with Tanoa

I didnt get on to loot tables, i was in the middle of making loot positions but never finished them. 

Share this post


Link to post
Share on other sites
3 hours ago, Mr Health And Safety said:

 

  Reveal hidden contents

20160712171407_1.jpg

20160712171320_1.jpg

20160712171327_1.jpg

20160712171335_1.jpg

20160712171344_1.jpg

20160712171352_1.jpg

20160712171359_1.jpg

20160712171421_1.jpg

Eden Editor Code (May be additional items that are commented out in final code)

  Reveal hidden contents


version=52;
class EditorData
{
	moveGridStep=1;
	angleGridStep=0.2617994;
	scaleGridStep=1;
	autoGroupingDist=10;
	toggles=1;
	class ItemIDProvider
	{
		nextID=630;
	};
	class Camera
	{
		pos[]={7269.5625,137.35951,5378.0376};
		dir[]={0.60421783,-0.75054526,-0.267768};
		up[]={0.68630773,0.66066015,-0.3041476};
		aside[]={-0.40517956,-2.0849984e-007,-0.91428584};
	};
};
binarizationWanted=0;
addons[]=
{
	"exile_client",
	"A3_Structures_F_EPC_Civ_InfoBoards",
	"CST_Misc_Walls",
	"A3_Structures_F_Walls",
	"A3_Structures_F_Civ_Constructions",
	"A3_Characters_F",
	"CUP_Editor_Signs_Config",
	"CUP_A2_EditorObjects",
	"A3_Structures_F_Ind_Factory",
	"CUP_Misc3_Config",
	"A3_Structures_F_Civ_Garbage",
	"A3_Structures_F_EPB_Civ_Garbage",
	"A3_Structures_F_EPC_Civ_Garbage",
	"A3_Structures_F_Households_Slum",
	"A3_Structures_F_Wrecks",
	"A3_Structures_F_EPA_Mil_Scrapyard",
	"CUP_Editor_Structures_Config",
	"CUP_CAStructures_E_Misc_Misc_Interier",
	"A3_Structures_F_Furniture",
	"A3_Structures_F_Heli_Items_Electronics",
	"A3_Structures_F_Bootcamp_Items_Electronics",
	"A3_Structures_F_EPA_Items_Food",
	"CUP_CAMisc",
	"A3_Structures_F_Heli_Furniture",
	"A3_Structures_F_Civ_Camping",
	"SAR_ru_architecture",
	"A3_Structures_F_EPB_Items_Luggage",
	"A3_Structures_F_Heli_Civ_Constructions",
	"MBG_Noe_Buildings",
	"A3_Structures_F_Ind_FuelStation",
	"CUP_Ind_Tank",
	"A3_Structures_F_Mil_Helipads"
};
class AddonsMetaData
{
	class List
	{
		items=22;
		class Item0
		{
			className="exile_client";
			name="exile_client";
		};
		class Item1
		{
			className="A3_Structures_F_EPC";
			name="Arma 3 Win Episode - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item2
		{
			className="CST_Misc_Walls";
			name="CST_Misc_Walls";
		};
		class Item3
		{
			className="A3_Structures_F";
			name="Arma 3 Alpha - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item4
		{
			className="A3_Characters_F";
			name="Arma 3 Alpha - Characters and Clothing";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item5
		{
			className="CUP_Editor_Signs_Config";
			name="CUP_Editor_Signs_Config";
		};
		class Item6
		{
			className="CUP_A2_EditorObjects";
			name="CUP_A2_EditorObjects";
			author="MemphisBelle";
		};
		class Item7
		{
			className="A3_Structures_F_Ind";
			name="Arma 3 Alpha - Industry complexes";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item8
		{
			className="CUP_Misc3_Config";
			name="CUP_Misc3_Config";
		};
		class Item9
		{
			className="A3_Structures_F_EPB";
			name="Arma 3 Adapt Episode - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item10
		{
			className="A3_Structures_F_Households";
			name="Arma 3 Alpha - Houses";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item11
		{
			className="A3_Structures_F_Wrecks";
			name="Arma 3 Alpha - Vehicle wrecks";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item12
		{
			className="A3_Structures_F_EPA";
			name="Arma 3 Survive Episode - Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item13
		{
			className="CUP_Editor_Structures_Config";
			name="CUP_Editor_Structures_Config";
		};
		class Item14
		{
			className="CUP_CAStructures_E_Misc_Misc_Interier";
			name="CUP_CAStructures_E_Misc_Misc_Interier";
		};
		class Item15
		{
			className="A3_Structures_F_Heli";
			name="Arma 3 Helicopters - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item16
		{
			className="A3_Structures_F_Bootcamp";
			name="Arma 3 Bootcamp Update - Buildings and structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
		class Item17
		{
			className="CUP_CAMisc";
			name="CUP_CAMisc";
		};
		class Item18
		{
			className="SAR_ru_architecture";
			name="SAR_ru_architecture";
		};
		class Item19
		{
			className="MBG_Noe_Buildings";
			name="MBG_Noe_Buildings";
		};
		class Item20
		{
			className="CUP_Ind_Tank";
			name="CUP_Ind_Tank";
		};
		class Item21
		{
			className="A3_Structures_F_Mil";
			name="Arma 3 - Military Buildings and Structures";
			author="Bohemia Interactive";
			url="http://www.arma3.com";
		};
	};
};
randomSeed=8234325;
class ScenarioData
{
	author="Mr Health And Safety";
	class Header
	{
		gameType="Sandbox";
	};
};
class CustomAttributes
{
	class Category0
	{
		name="Multiplayer";
		class Attribute0
		{
			property="RespawnButton";
			expression="true";
			class Value
			{
				class data
				{
					class type
					{
						type[]=
						{
							"SCALAR"
						};
					};
					value=1;
				};
			};
		};
		class Attribute1
		{
			property="RespawnTemplates";
			expression="true";
			class Value
			{
				class data
				{
					class type
					{
						type[]=
						{
							"ARRAY"
						};
					};
					class value
					{
						items=1;
						class Item0
						{
							class data
							{
								class type
								{
									type[]=
									{
										"STRING"
									};
								};
								value="Exile";
							};
						};
					};
				};
			};
		};
		class Attribute2
		{
			property="SharedObjectives";
			expression="if (isMultiplayer) then {[_value] spawn bis_fnc_sharedObjectives;};";
			class Value
			{
				class data
				{
					class type
					{
						type[]=
						{
							"SCALAR"
						};
					};
					value=0;
				};
			};
		};
		nAttributes=3;
	};
};
class Mission
{
	class Intel
	{
		timeOfChanges=1800.0002;
		startWeather=0.80000001;
		startWind=0.1;
		startWaves=0.1;
		forecastWeather=0.80000001;
		forecastWind=0.1;
		forecastWaves=0.1;
		forecastLightnings=0.1;
		year=2001;
		month=3;
		day=5;
		startFogDecay=0.014;
		forecastFogDecay=0.014;
	};
	class Entities
	{
		items=227;
		class Item0
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7341.7734,42.579777,5311.3003};
						angles[]={0,0.5523572,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=7;
					type="Exile_Trader_Office";
					class CustomAttributes
					{
						class Attribute0
						{
							property="pitch";
							expression="_this setpitch _value;";
							class Value
							{
								class data
								{
									class type
									{
										type[]=
										{
											"SCALAR"
										};
									};
									value=1.04;
								};
							};
						};
						nAttributes=1;
					};
				};
			};
			class Attributes
			{
			};
			id=6;
		};
		class Item1
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7338.8076,43.614021,5315.4849};
				angles[]={0,4.8822632,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=12;
			type="Exile_Sign_Office";
		};
		class Item2
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7340.5625,43.545013,5313.0386};
				angles[]={0,4.1646233,0.0014648439};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=15;
			type="MapBoard_seismic_F";
			atlOffset=3.8146973e-006;
		};
		class Item3
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7338.2388,42.5728,5312.2622};
				angles[]={0,3.3294883,0.0014648439};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=27;
			type="Exile_Construction_Safe_Preview";
		};
		class Item4
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7376.7231,34.828293,5324.2617};
				angles[]={0,3.3520517,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=28;
			type="Land_wall_tin_4";
			atlOffset=0.39493561;
		};
		class Item5
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7340.9556,43.124386,5307.7974};
				angles[]={0,0.34251434,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=29;
			type="Land_wall_tin_4_2";
		};
		class Item6
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7354.001,39.25975,5329.855};
						angles[]={0,6.1201138,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=31;
					type="Exile_Guard_01";
				};
			};
			class Attributes
			{
			};
			id=30;
		};
		class Item7
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7362.9458,39.259708,5328.583};
						angles[]={0,0.40906841,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=33;
					type="Exile_Guard_02";
				};
			};
			class Attributes
			{
			};
			id=32;
		};
		class Item8
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7342.0459,42.574268,5305.7935};
						angles[]={0,3.3426838,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=35;
					type="Exile_Guard_03";
				};
			};
			class Attributes
			{
			};
			id=34;
		};
		class Item9
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7352.4932,42.579536,5307.4585};
						angles[]={0,0.18847033,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=67;
					type="Exile_Trader_Armory";
				};
			};
			class Attributes
			{
			};
			id=66;
		};
		class Item10
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7350.645,42.590565,5321.8027};
						angles[]={0,2.874042,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=69;
					type="Exile_Trader_Equipment";
				};
			};
			class Attributes
			{
			};
			id=68;
		};
		class Item11
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7368.4575,42.59668,5317.5483};
						angles[]={0,4.8783755,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=71;
					type="Exile_Trader_Food";
				};
			};
			class Attributes
			{
			};
			id=70;
		};
		class Item12
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7368.6548,42.58744,5323.1514};
						angles[]={0,4.793293,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=73;
					type="Exile_Trader_Hardware";
				};
			};
			class Attributes
			{
			};
			id=72;
		};
		class Item13
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7357.6089,42.577251,5305.2222};
						angles[]={0,5.8302836,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=77;
					type="Exile_Trader_SpecialOperations";
				};
			};
			class Attributes
			{
			};
			id=76;
		};
		class Item14
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7328.1572,34.30114,5295.1528};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=81;
					type="Exile_Trader_Vehicle";
				};
			};
			class Attributes
			{
			};
			id=80;
		};
		class Item15
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7373.4063,34.682453,5324.0024};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=83;
					type="Exile_Trader_WasteDump";
				};
			};
			class Attributes
			{
			};
			id=82;
		};
		class Item16
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7340.6064,35.268665,5303.6948};
				angles[]={0,4.7804408,0.0038136009};
			};
			side="Empty";
			class Attributes
			{
			};
			id=87;
			type="Land_Pallet_vertical_F";
			atlOffset=0.65228653;
		};
		class Item17
		{
			dataType="Group";
			side="West";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7345.5156,42.647251,5303.5};
					};
					side="West";
					flags=7;
					class Attributes
					{
						isPlayer=1;
					};
					id=91;
					type="B_G_Soldier_AR_F";
					atlOffset=0.073932648;
				};
			};
			class Attributes
			{
			};
			id=90;
			atlOffset=0.073932648;
		};
		class Item18
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7336.3643,34.458717,5302.2236};
				angles[]={0,1.6969573,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=104;
			type="CUP_sign_leftDirection_new";
			atlOffset=-1.0615997;
		};
		class Item19
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7325.8091,35.154629,5297.0947};
				angles[]={0,0.19863394,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=117;
			type="CUP_A2_smalltable";
		};
		class Item20
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7357.6577,34.673935,5309.8228};
				angles[]={6.2717133,4.8923006,0.00034526698};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=127;
			type="Exile_ConcreteMixer";
		};
		class Item21
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7377.4404,35.847733,5319.2803};
				angles[]={0,4.8351164,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=128;
			type="Land_Factory_Conv1_Main_F";
			atlOffset=0.50253296;
		};
		class Item22
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7386.2168,34.62413,5316.9277};
				angles[]={0,1.7075959,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=132;
			type="Land_Misc_GContainer_Big";
		};
		class Item23
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7386.5605,35.462376,5317.9199};
				angles[]={0,4.8456573,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=133;
			type="CUP_A2_garbage_paleta";
		};
		class Item24
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7382.0244,35.152691,5321.4438};
				angles[]={0,4.8557096,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=136;
			type="Land_wall_tin_4";
		};
		class Item25
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7379.0981,35.160816,5317.0713};
				angles[]={0,0.22129653,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=137;
			type="Land_wall_tin_4";
		};
		class Item26
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7380.4385,34.899551,5323.5864};
				angles[]={0,3.3142076,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=138;
			type="Land_wall_tin_4";
			atlOffset=0.46619415;
		};
		class Item27
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7380.2109,35.078121,5321.6509};
				angles[]={6.273561,0,6.2757802};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=139;
			type="Land_GarbageBags_F";
		};
		class Item28
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7385.541,33.920441,5319.1333};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=141;
			type="Land_Garbage_square5_F";
		};
		class Item29
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7388.3159,33.500233,5319.584};
				angles[]={0,0,6.0984826};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=142;
			type="Land_Garbage_square3_F";
		};
		class Item30
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7388.0337,33.540436,5317.0366};
				angles[]={0,0,6.0984826};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=143;
			type="Land_Garbage_square5_F";
		};
		class Item31
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7372.1387,35.330727,5319.7339};
				angles[]={0,4.8291216,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=144;
			type="Land_Garbage_line_F";
			atlOffset=0.58958817;
		};
		class Item32
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7377.1855,35.333294,5319.147};
				angles[]={0,4.8291216,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=145;
			type="Land_Garbage_line_F";
			atlOffset=0.64034271;
		};
		class Item33
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7376.9834,35.421486,5323.166};
				angles[]={6.273561,3.2753003,6.2757802};
			};
			side="Empty";
			class Attributes
			{
			};
			id=146;
			type="Land_GarbageContainer_open_F";
			atlOffset=0.80203629;
		};
		class Item34
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7375.1577,34.395088,5324.814};
				angles[]={0,3.2681816,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=147;
			type="Land_GarbageBin_01_F";
		};
		class Item35
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7371.0562,35.328106,5324.9209};
				angles[]={0,3.3102548,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=149;
			type="Exile_Sign_WasteDump";
			atlOffset=0.40604782;
		};
		class Item36
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7340.3447,35.301479,5302.4092};
				angles[]={0,4.5928659,0.0038136009};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=151;
			type="Land_Pallet_vertical_F";
		};
		class Item37
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7358.1396,41.167683,5326.6196};
				angles[]={0,3.2927051,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=152;
			type="Exile_Sign_TraderCity";
			atlOffset=4.814537;
		};
		class Item38
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7332.0059,33.881004,5319.0547};
				angles[]={0,0.0062727383,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=166;
			type="CUP_A2_OA_path_2250";
		};
		class Item39
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7353.021,33.536549,5337.3076};
				angles[]={0.14072795,3.9786096,6.2415423};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=168;
			type="CUP_A2_OA_path_3025";
		};
		class Item40
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7344.7583,33.865574,5334.2314};
				angles[]={0.066566475,4.6051426,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=169;
			type="CUP_A2_OA_path_6";
		};
		class Item41
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7337.9829,33.881001,5331.4043};
				angles[]={0,0.43396148,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=170;
			type="CUP_A2_OA_path_6010";
		};
		class Item42
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.1143,32.139164,5342.2451};
				angles[]={0.2529687,3.9707911,6.1835146};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=174;
			type="CUP_A2_OA_path_6konec";
		};
		class Item43
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7330.6563,33.94817,5308.0928};
				angles[]={0,6.1738563,6.2332273};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=175;
			type="CUP_A2_OA_path_1575";
		};
		class Item44
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7330.9448,34.012844,5295.3281};
				angles[]={0,6.1686583,6.1588321};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=176;
			type="CUP_A2_OA_path_6konec";
		};
		class Item45
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7336.2573,35.624191,5298.5151};
				angles[]={0,1.7129016,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=179;
			type="Exile_Sign_TraderCity";
		};
		class Item46
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.8281,39.695156,5330.8979};
				angles[]={0.00034526698,0.15052281,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=183;
			type="CUP_A2_bagfencecorner";
		};
		class Item47
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7352.9111,39.69521,5332.6035};
				angles[]={0.00034526698,4.8699427,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=184;
			type="CUP_A2_bagfencecorner";
		};
		class Item48
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.9893,39.69949,5331.4585};
				angles[]={0.00034526698,0.15903601,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=185;
			type="CUP_A2_bagfencelong";
		};
		class Item49
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7354.8672,39.699478,5332.729};
				angles[]={0.00034526698,0.13341531,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=186;
			type="CUP_A2_bagfencelong";
		};
		class Item50
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7357.7813,39.699444,5332.356};
				angles[]={0.00034526698,0.13341531,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=187;
			type="CUP_A2_bagfencelong";
		};
		class Item51
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.4072,39.699467,5331.9033};
				angles[]={0.00034526698,0.15522404,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=188;
			type="CUP_A2_bagfencelong";
		};
		class Item52
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.9478,39.700424,5328.999};
				angles[]={0.00034526698,1.7126279,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=189;
			type="CUP_A2_bagfencelong";
		};
		class Item53
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.7124,39.688858,5327.1514};
				angles[]={0.00034526698,1.7958511,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=190;
			type="CUP_A2_bagfenceend";
		};
		class Item54
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7352.3916,39.700527,5330.6821};
				angles[]={0.00034526698,4.872973,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=191;
			type="CUP_A2_bagfencelong";
		};
		class Item55
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7352.1294,39.688942,5328.8809};
				angles[]={0.00034526698,1.7139121,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=192;
			type="CUP_A2_bagfenceend";
		};
		class Item56
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7348.8911,34.707985,5339.4043};
				angles[]={0,0.1378015,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=195;
			type="Land_Slums01_8m";
			atlOffset=0.80647278;
		};
		class Item57
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7324.8296,35.116348,5296.4668};
				angles[]={0,4.9258699,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=198;
			type="Land_cargo_house_slum_F";
		};
		class Item58
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7328.8057,35.53516,5293.0981};
				angles[]={0,0.15155141,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=200;
			type="Land_cargo_addon02_V2_F";
			atlOffset=0.88220978;
		};
		class Item59
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7334.0015,34.889984,5291.7813};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=201;
			type="Land_Wreck_Van_F";
		};
		class Item60
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7341.8223,34.875332,5340.3955};
				angles[]={0,0.13973042,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=205;
			type="Land_Slums01_8m";
			atlOffset=0.78125763;
		};
		class Item61
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7334.5796,34.983803,5341.0103};
				angles[]={0,0.1378015,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=206;
			type="Land_Slums01_8m";
			atlOffset=0.59309387;
		};
		class Item62
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7329.2026,35.488014,5331.3706};
				angles[]={0,4.8603759,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=207;
			type="Land_Slums01_8m";
			atlOffset=0.65925217;
		};
		class Item63
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7327.8965,35.35297,5323.8149};
				angles[]={0,4.8526459,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=208;
			type="Land_Slums01_8m";
			atlOffset=0.67837906;
		};
		class Item64
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7326.542,35.326565,5316.1895};
				angles[]={0,4.8814564,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=209;
			type="Land_Slums01_8m";
			atlOffset=0.69098663;
		};
		class Item65
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7325.2607,35.557819,5308.8306};
				angles[]={0,4.8693724,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=210;
			type="Land_Slums01_8m";
			atlOffset=0.68463898;
		};
		class Item66
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7324.0439,35.912312,5301.4917};
				angles[]={0,4.8681226,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=211;
			type="Land_Slums01_8m";
			atlOffset=0.65542221;
		};
		class Item67
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7323.0161,35.851128,5295.2437};
				angles[]={0,4.9300661,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=212;
			type="Land_Slums01_8m";
			atlOffset=0.70746994;
		};
		class Item68
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7326.0708,35.553623,5290.7568};
				angles[]={0,3.3407416,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=213;
			type="Land_Slums01_8m";
			atlOffset=0.6037674;
		};
		class Item69
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7333.6113,35.305614,5288.9609};
				angles[]={0,3.4270377,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=214;
			type="Land_Slums01_8m";
			atlOffset=0.60322571;
		};
		class Item70
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7340.9702,35.112465,5287.353};
				angles[]={0,3.2931473,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=215;
			type="Land_Slums01_8m";
			atlOffset=0.70746231;
		};
		class Item71
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7342.8594,35.112461,5287.0093};
				angles[]={0,3.2905397,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=216;
			type="Land_Slums01_8m";
			atlOffset=0.70746231;
		};
		class Item72
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7328.834,34.798565,5292.5874};
				angles[]={6.2000446,4.3969941,6.2415438};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=219;
			type="LADAWreck";
		};
		class Item73
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7339.3896,34.765396,5294.6074};
				angles[]={0,2.910027,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=220;
			type="Land_Wreck_CarDismantled_F";
		};
		class Item74
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7343.6841,35.155602,5292.2954};
				angles[]={0,2.0021672,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=221;
			type="Land_Wreck_Truck_F";
		};
		class Item75
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7343.7778,35.054924,5289.0161};
				angles[]={0,1.7337121,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=222;
			type="Land_Wreck_Truck_dropside_F";
		};
		class Item76
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7337.6875,35.105404,5291.2231};
				angles[]={0,2.4905717,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=223;
			type="Land_Scrap_MRAP_01_F";
		};
		class Item77
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7325.2212,37.13356,5297.5088};
				angles[]={0,3.3319621,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=224;
			type="Exile_Sign_Vehicles";
			atlOffset=1.3378525;
		};
		class Item78
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7323.6519,34.754654,5294.1787};
				angles[]={0,0.2129795,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=225;
			type="CUP_lobby_case";
		};
		class Item79
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7325.7671,35.241238,5296.3472};
				angles[]={0,3.0464764,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=226;
			type="Land_Chair_EP1";
			atlOffset=0.24088287;
		};
		class Item80
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7344.3853,49.564007,5300.7524};
						angles[]={0,6.1201138,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=230;
					type="Exile_Guard_01";
				};
			};
			class Attributes
			{
			};
			id=229;
		};
		class Item81
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7351.8916,43.925907,5303.9297};
				angles[]={0,3.3304632,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=259;
			type="Exile_Sign_Armory";
			atlOffset=0.31246567;
		};
		class Item82
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7350.9712,43.63179,5316.8252};
				angles[]={0,4.9254284,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=260;
			type="Exile_Sign_Equipment";
		};
		class Item83
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.708,43.631451,5313.5015};
				angles[]={0,0.12626229,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=262;
			type="Exile_Sign_Food";
		};
		class Item84
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7356.5581,43.209,5321.0049};
				angles[]={0,1.7666937,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=264;
			type="Exile_Sign_Hardware";
			atlOffset=3.6085968;
		};
		class Item85
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7348.0674,43.627728,5315.7163};
				angles[]={0,0.16621535,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=266;
			type="Exile_Sign_Locker";
		};
		class Item86
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.8076,43.622673,5308.4609};
				angles[]={0,3.3332779,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=267;
			type="Exile_Sign_SpecialOperations";
		};
		class Item87
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7349.855,42.589413,5315.3525};
				angles[]={0,0.10358005,0.0014648439};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=288;
			type="Exile_Locker";
		};
		class Item88
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7346.2026,42.583881,5315.8042};
				angles[]={0,0.10358005,0.0014648439};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=290;
			type="Exile_Locker";
		};
		class Item89
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.353,43.148209,5318.6455};
				angles[]={0,0.14729537,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=291;
			type="Land_wall_tin_4_2";
		};
		class Item90
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.8413,43.148453,5319.1943};
				angles[]={0,0.23577344,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=292;
			type="Land_wall_tin_4_2";
		};
		class Item91
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7357.9712,43.146706,5319.1777};
				angles[]={0,1.6405685,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=293;
			type="Land_wall_tin_4_2";
		};
		class Item92
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7357.6108,43.140469,5315.333};
				angles[]={0,1.6724721,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=294;
			type="Land_wall_tin_4_2";
		};
		class Item93
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.2061,43.167656,5314.335};
				angles[]={6.2816033,1.7561857,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=295;
			type="Land_Icebox_F";
			atlOffset=7.6748848;
		};
		class Item94
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.6069,42.598282,5317.6675};
				angles[]={6.2816033,1.7266624,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=296;
			type="Land_CashDesk_F";
		};
		class Item95
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7363.9019,43.070118,5313.9297};
				angles[]={6.2816033,3.2675886,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=298;
			type="Fridge_01_closed_F";
			atlOffset=7.843544;
		};
		class Item96
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7363.0215,43.26696,5313.835};
				angles[]={6.2816033,3.3043346,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=299;
			type="Land_WaterCooler_01_old_F";
			atlOffset=7.8197823;
		};
		class Item97
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.541,43.142654,5314.6509};
			};
			side="Empty";
			class Attributes
			{
			};
			id=355;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.54927444;
		};
		class Item98
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.4883,43.142357,5314.4673};
				angles[]={0,2.0912709,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=356;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.54896164;
		};
		class Item99
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.3257,43.142666,5314.6655};
				angles[]={0,1.5216556,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=357;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.54899597;
		};
		class Item100
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.3037,43.142376,5314.5049};
				angles[]={0,0.32417774,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=358;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.54896927;
		};
		class Item101
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.1421,43.142689,5314.7163};
				angles[]={0,0.018016068,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=359;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.54898453;
		};
		class Item102
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.1299,43.142403,5314.543};
				angles[]={0,1.885554,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=360;
			type="Exile_Cosmetic_PowerDrink";
			atlOffset=0.5489769;
		};
		class Item103
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.4478,43.140491,5314.1943};
				angles[]={0,4.8731518,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=362;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.54754257;
		};
		class Item104
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.4365,43.137634,5314.0176};
				angles[]={0,1.7374189,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=363;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.54497147;
		};
		class Item105
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.2773,43.14127,5314.2305};
				angles[]={0,2.5485902,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=364;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.54830551;
		};
		class Item106
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.2505,43.147404,5314.0679};
				angles[]={0,5.4336553,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=365;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.55470657;
		};
		class Item107
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.0952,43.146198,5314.2593};
				angles[]={0,0.97987831,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=366;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.5532341;
		};
		class Item108
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.0605,43.137512,5314.1157};
				angles[]={0,2.9581127,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=367;
			type="Exile_Cosmetic_EnergyDrink";
			atlOffset=0.54478455;
		};
		class Item109
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.3564,43.148064,5313.8022};
				angles[]={0,5.3542719,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=369;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55576324;
		};
		class Item110
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.3159,43.147804,5313.6455};
				angles[]={0,3.3173311,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=370;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55576324;
		};
		class Item111
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.1733,43.148075,5313.8369};
				angles[]={0,2.5920327,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=371;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55576706;
		};
		class Item112
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.1196,43.147812,5313.6812};
				angles[]={0,5.1647592,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=372;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55576706;
		};
		class Item113
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.9766,43.148067,5313.8638};
				angles[]={0,0.051356666,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=373;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.55576706;
		};
		class Item114
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.9551,43.154385,5313.7153};
				angles[]={0,2.2212176,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=374;
			type="Exile_Cosmetic_Beer";
			atlOffset=0.56232452;
		};
		class Item115
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.2026,43.678146,5320.3926};
				angles[]={0,3.2444506,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=394;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.0776176;
		};
		class Item116
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.7681,43.66663,5320.4556};
				angles[]={0,3.4341888,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=395;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.0658607;
		};
		class Item117
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.5332,43.672535,5320.4429};
				angles[]={0,3.0791738,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=396;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.071846;
		};
		class Item118
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.2607,43.684723,5320.4053};
				angles[]={0,3.190814,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=397;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.0839119;
		};
		class Item119
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.9912,43.671146,5320.4072};
				angles[]={0,2.9970846,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=398;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.0704002;
		};
		class Item120
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.3579,43.674789,5320.5293};
			};
			side="Empty";
			class Attributes
			{
			};
			id=399;
			type="Exile_Cosmetic_Raisins";
			atlOffset=1.0740051;
		};
		class Item121
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.2861,43.473003,5320.4751};
				angles[]={5.0614548,0,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=401;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.8723259;
		};
		class Item122
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.5981,43.464005,5320.498};
				angles[]={5.0614548,6.263515,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=402;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.86320877;
		};
		class Item123
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.876,43.451004,5320.4609};
				angles[]={5.0614548,0.14049901,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=403;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.85020065;
		};
		class Item124
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.1948,43.453003,5320.376};
				angles[]={5.0614548,0,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=404;
			type="Exile_Cosmetic_Cheathas";
			atlOffset=0.85225677;
		};
		class Item125
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.2241,43.082012,5320.5479};
				angles[]={5.0614548,6.2524328,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=406;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.48122787;
		};
		class Item126
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.5601,43.108013,5320.5361};
				angles[]={5.0614548,0.13365731,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=407;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.507164;
		};
		class Item127
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.873,43.105011,5320.4038};
				angles[]={5.0614548,0.11550589,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=408;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.50429535;
		};
		class Item128
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.1597,43.103012,5320.376};
				angles[]={5.0614548,6.2279983,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=409;
			type="Exile_Cosmetic_BeefParts";
			atlOffset=0.50227356;
		};
		class Item129
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.207,42.680302,5320.4556};
				angles[]={0,2.078949,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=411;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.079669952;
		};
		class Item130
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.4644,42.673286,5320.397};
			};
			side="Empty";
			class Attributes
			{
			};
			id=412;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.072685242;
		};
		class Item131
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.3198,42.732521,5320.415};
				angles[]={0,0.63465178,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=413;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.13192749;
		};
		class Item132
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.7363,42.677322,5320.4082};
				angles[]={0,4.7446642,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=415;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.076637268;
		};
		class Item133
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.8999,42.690788,5320.3999};
				angles[]={0,4.689826,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=416;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.090072632;
		};
		class Item134
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.9829,42.721004,5320.3911};
				angles[]={0,4.7519555,6.1086521};
			};
			side="Empty";
			class Attributes
			{
			};
			id=417;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.12028503;
		};
		class Item135
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.124,42.690315,5320.4028};
				angles[]={0,1.7461205,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=418;
			type="Exile_Cosmetic_EMRE";
			atlOffset=0.089542389;
		};
		class Item136
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.377,42.915684,5315.6069};
				angles[]={0,0.15238822,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=463;
			type="CUP_A2_box_c";
			atlOffset=0.32119751;
		};
		class Item137
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.7568,42.915722,5316.2993};
				angles[]={0,1.6752534,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=465;
			type="CUP_A2_box_c";
			atlOffset=0.32220078;
		};
		class Item138
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7368.7217,43.5252,5315.8481};
				angles[]={0,1.7141364,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=466;
			type="CUP_A2_box_c";
			atlOffset=0.93180084;
		};
		class Item139
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.9907,42.631683,5320.3091};
				angles[]={6.2816033,4.6292477,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=468;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.030845642;
		};
		class Item140
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.1318,42.621258,5320.2251};
				angles[]={6.2816033,0.014924265,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=469;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.020519257;
		};
		class Item141
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.2979,42.622604,5320.2026};
				angles[]={6.2816033,4.2716694,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=470;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.021858215;
		};
		class Item142
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.4512,42.618874,5320.145};
				angles[]={6.2816033,5.6813269,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=471;
			type="Exile_Cosmetic_BBQSandwich";
			atlOffset=0.018180847;
		};
		class Item143
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.9854,42.994438,5320.3296};
				angles[]={0,0.066524811,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=472;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.39719391;
		};
		class Item144
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.1616,42.994076,5320.2666};
				angles[]={0,0.76261729,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=473;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.39688873;
		};
		class Item145
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.2969,42.995281,5320.1665};
				angles[]={0,0.45142946,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=474;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.39822006;
		};
		class Item146
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.4512,42.993195,5320.1113};
				angles[]={0,0.85068476,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=475;
			type="Exile_Cosmetic_MacasCheese";
			atlOffset=0.3961792;
		};
		class Item147
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.9829,43.759274,5320.3037};
				angles[]={0,2.1830976,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=476;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.1620674;
		};
		class Item148
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.1387,43.758247,5320.2573};
				angles[]={0,0.60567904,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=477;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.1610794;
		};
		class Item149
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.292,43.757145,5320.2139};
				angles[]={0,5.7528152,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=478;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.1600075;
		};
		class Item150
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7361.4326,43.755627,5320.1528};
				angles[]={0,0.075669996,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=479;
			type="Exile_Cosmetic_DogFood";
			atlOffset=1.1585503;
		};
		class Item151
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.3311,43.72966,5313.7573};
				angles[]={6.2828403,3.2881253,6.2766528};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=483;
			type="Land_CerealsBox_F";
		};
		class Item152
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.0615,43.731434,5313.7891};
				angles[]={6.2828403,3.1180315,6.2766528};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=484;
			type="Land_CerealsBox_F";
		};
		class Item153
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.7329,43.733585,5313.7998};
				angles[]={6.2828403,3.4450529,6.2766528};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=485;
			type="Land_CerealsBox_F";
		};
		class Item154
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.1011,42.627995,5320.1558};
				angles[]={6.2816033,4.7204971,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=486;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.027122498;
		};
		class Item155
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.2847,42.625366,5320.1665};
				angles[]={6.2816033,4.4500585,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=487;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.024429321;
		};
		class Item156
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.4438,42.624027,5320.1011};
				angles[]={6.2816033,5.7268553,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=488;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.023155212;
		};
		class Item157
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.6196,42.629005,5320.0771};
				angles[]={6.2816033,5.2321577,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=489;
			type="Exile_Cosmetic_CatFood";
			atlOffset=0.028129578;
		};
		class Item158
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.1255,42.999855,5320.145};
				angles[]={0,3.7035143,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=490;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.39899445;
		};
		class Item159
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.3066,43.006054,5320.1787};
				angles[]={0,4.9839888,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=491;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.40509415;
		};
		class Item160
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.4624,43.000084,5320.1021};
				angles[]={0,5.3695083,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=492;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.39920807;
		};
		class Item161
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.6455,42.997353,5320.0947};
				angles[]={0,3.6820123,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=493;
			type="Exile_Cosmetic_Surstromming";
			atlOffset=0.3964386;
		};
		class Item162
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.1987,43.743259,5320.1509};
			};
			side="Empty";
			class Attributes
			{
			};
			id=498;
			type="Exile_Cosmetic_InstantCoffee";
			atlOffset=1.1433525;
		};
		class Item163
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.5103,43.755283,5320.1094};
				angles[]={0,0.27223143,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=499;
			type="Exile_Cosmetic_InstantCoffee";
			atlOffset=1.1553612;
		};
		class Item164
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.3154,43.216568,5313.8447};
				angles[]={0,1.7420009,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=500;
			type="Exile_Cosmetic_Moobar";
			atlOffset=0.62766647;
		};
		class Item165
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.0767,43.202366,5313.8428};
				angles[]={0,1.617041,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=501;
			type="Exile_Cosmetic_Moobar";
			atlOffset=0.61352921;
		};
		class Item166
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.8008,43.207958,5313.8589};
				angles[]={0,1.9185151,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=502;
			type="Exile_Cosmetic_Moobar";
			atlOffset=0.61916351;
		};
		class Item167
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.3677,42.890419,5313.8193};
				angles[]={0,4.328723,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=503;
			type="Exile_Cosmetic_CockONut";
			atlOffset=0.30003357;
		};
		class Item168
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.1504,42.897408,5313.7822};
				angles[]={0,3.370683,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=504;
			type="Exile_Cosmetic_CockONut";
			atlOffset=0.30713654;
		};
		class Item169
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.9619,42.899143,5313.9614};
				angles[]={0,3.2925394,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=505;
			type="Exile_Cosmetic_CockONut";
			atlOffset=0.30863571;
		};
		class Item170
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.7769,42.899784,5313.8271};
				angles[]={0,3.7634714,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=506;
			type="Exile_Cosmetic_CockONut";
			atlOffset=0.30953598;
		};
		class Item171
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.5273,43.363102,5317.0264};
				angles[]={0,2.1671944,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=507;
			type="Exile_Cosmetic_Magazine01";
			atlOffset=0.007850647;
		};
		class Item172
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.8882,43.364719,5316.9155};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=508;
			type="Exile_Cosmetic_Magazine02";
			atlOffset=0.0094680786;
		};
		class Item173
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.6528,43.362328,5316.9995};
				angles[]={0,4.6932135,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=509;
			type="Exile_Cosmetic_Magazine03";
			atlOffset=0.0070762634;
		};
		class Item174
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.8501,43.368202,5316.416};
				angles[]={0,2.9599438,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=510;
			type="Exile_Cosmetic_Magazine04";
			atlOffset=0.012950897;
		};
		class Item175
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7342.7793,43.688072,5311.7104};
				angles[]={0,5.3579187,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=521;
			type="Computer";
			atlOffset=0.92789841;
		};
		class Item176
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7369.2905,43.070026,5322.73};
				angles[]={0.006394445,1.7648971,6.2707701};
			};
			side="Empty";
			class Attributes
			{
			};
			id=522;
			type="Land_Workbench_01_F";
			atlOffset=4.0139809;
		};
		class Item177
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7366.8936,42.685608,5324.4707};
				angles[]={0.006394445,3.7467813,6.2707701};
			};
			side="Empty";
			class Attributes
			{
			};
			id=535;
			type="Land_CarBattery_02_F";
			atlOffset=4.0397758;
		};
		class Item178
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7366.3315,42.732971,5324.5181};
				angles[]={0.006394445,0,6.2707701};
			};
			side="Empty";
			class Attributes
			{
			};
			id=536;
			type="Land_CarBattery_01_F";
			atlOffset=4.0464554;
		};
		class Item179
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7366.0508,43.487446,5319.7881};
				angles[]={0,4.4859524,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=537;
			type="Exile_Cosmetic_Axe";
			atlOffset=0.57865524;
		};
		class Item180
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7369.582,43.380489,5323.7344};
				angles[]={0.006394445,0,6.2707701};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=538;
			type="Exile_Cosmetic_Foolbox";
		};
		class Item181
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7369.1602,43.395763,5321.8296};
				angles[]={0.006394445,0,6.2707701};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=539;
			type="Exile_Cosmetic_Knife";
		};
		class Item182
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7366.9907,43.452164,5319.4409};
				angles[]={0,4.6642513,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=540;
			type="Exile_Cosmetic_Shovel";
			atlOffset=0.81223679;
		};
		class Item183
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.8394,43.555134,5319.5293};
				angles[]={0,4.5861773,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=541;
			type="Exile_Cosmetic_SledgeHammer";
		};
		class Item184
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7378.1904,38.560787,5321.1328};
						angles[]={0,0.19270076,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=543;
					type="Exile_Guard_03";
				};
			};
			class Attributes
			{
			};
			id=542;
		};
		class Item185
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7353.8174,43.480968,5305.0972};
				angles[]={0,4.878067,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=562;
			type="Land_PaperBox_open_full_F";
		};
		class Item186
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7350.3315,43.516167,5305.9258};
				angles[]={0,1.5751407,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=563;
			type="Land_PaperBox_closed_F";
		};
		class Item187
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7350.9341,43.480007,5308.7095};
				angles[]={0,1.7119331,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=564;
			type="Land_PaperBox_open_empty_F";
		};
		class Item188
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7354.3125,43.323078,5307.5996};
				angles[]={0,1.7851614,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=565;
			type="Land_Pallet_MilBoxes_F";
		};
		class Item189
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7352.3633,43.079102,5306.8438};
				angles[]={6.2816033,3.5018215,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=579;
			type="Land_CampingChair_V2_F";
			atlOffset=4.0148239;
		};
		class Item190
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7358.9863,43.501865,5303.5283};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=580;
			type="Exile_Cosmetic_UAV";
		};
		class Item191
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7359.2944,43.763763,5303.7939};
				angles[]={6.2816033,2.7889383,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=581;
			type="Exile_Cosmetic_MG";
		};
		class Item192
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.1782,43.516617,5303.1479};
				angles[]={0,0.17765389,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=582;
			type="Land_PaperBox_closed_F";
		};
		class Item193
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.5483,43.516769,5303.4014};
				angles[]={0,0.16617131,6.2822089};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=583;
			type="Land_PaperBox_closed_F";
		};
		class Item194
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7365.6797,43.516689,5306.2383};
				angles[]={0,3.275316,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=584;
			type="Land_PaperBox_closed_F";
		};
		class Item195
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7362.8364,43.516808,5306.7871};
				angles[]={0,3.176887,6.2823396};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=585;
			type="Land_PaperBox_closed_F";
		};
		class Item196
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7360.7163,43.630756,5304.1509};
				angles[]={6.2816033,2.4862258,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=587;
			type="land_Objects9";
		};
		class Item197
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7355.6758,43.735249,5307.6206};
				angles[]={0,4.8490648,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=588;
			type="CUP_A2_map_for_briefing";
			atlOffset=1.2416611;
		};
		class Item198
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7344.9087,43.091751,5320.415};
				angles[]={0,0,0.0014648439};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=589;
			type="Land_LuggageHeap_03_F";
			atlOffset=0.00088882446;
		};
		class Item199
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7345.7178,43.093002,5319.5078};
				angles[]={0,3.3286796,0.0014648439};
			};
			side="Empty";
			class Attributes
			{
			};
			id=590;
			type="Land_LuggageHeap_01_F";
			atlOffset=4.0200577;
		};
		class Item200
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7348.4307,42.890347,5324.6323};
				angles[]={0,0,0.0014648439};
			};
			side="Empty";
			class Attributes
			{
			};
			id=591;
			type="Land_LuggageHeap_02_F";
			atlOffset=4.0246468;
		};
		class Item201
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7349.8755,43.160862,5326.2832};
				angles[]={0,0,6.2818937};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=592;
			type="Land_LuggageHeap_05_F";
		};
		class Item202
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7345.0542,43.105675,5318.2866};
				angles[]={0,4.821701,6.2819896};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=593;
			type="Land_LuggageHeap_04_F";
			atlOffset=0.024051666;
		};
		class Item203
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7347.2451,43.263527,5322.0283};
				angles[]={0,0.10235088,6.282495};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=594;
			type="CUP_A2_backpackheap";
			atlOffset=0.12330627;
		};
		class Item204
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7341.3579,43.517212,5322.3809};
				angles[]={0,1.8155656,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=596;
			type="Land_PaperBox_closed_F";
		};
		class Item205
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7342.0532,43.517227,5325.6973};
				angles[]={0,1.9434677,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=597;
			type="Land_PaperBox_closed_F";
		};
		class Item206
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7347.8252,43.48048,5317.4468};
				angles[]={0,0.1935804,0};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=600;
			type="Land_PaperBox_open_empty_F";
		};
		class Item207
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7347.7402,43.999466,5317.332};
				angles[]={0,1.7042451,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=601;
			type="CUP_A2_backpackheap";
			atlOffset=0.85913086;
		};
		class Item208
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7367.5503,43.072132,5324.2168};
				angles[]={0,5.0045462,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=602;
			type="Land_ToolTrolley_02_F";
			atlOffset=4.0332794;
		};
		class Item209
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.0942,43.0937,5320.3066};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=603;
			type="Land_ToolTrolley_01_F";
		};
		class Item210
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7374.2832,42.610424,5322.5815};
						angles[]={0,6.1201138,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=605;
					type="Exile_Guard_01";
					atlOffset=0.089168549;
				};
			};
			class Attributes
			{
			};
			id=604;
			atlOffset=0.089168549;
		};
		class Item211
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7346.9355,34.938423,5290.2119};
				angles[]={0,1.666899,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=608;
			type="Land_Slums01_8m";
			atlOffset=0.53342438;
		};
		class Item212
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7347.3838,34.896687,5294.1992};
				angles[]={0,1.6829858,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=609;
			type="Land_Slums01_8m";
			atlOffset=0.49168777;
		};
		class Item213
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7388.8936,27.137768,5351.4248};
				angles[]={0,2.0342271,0};
			};
			side="Empty";
			class Attributes
			{
			};
			id=610;
			type="land_Objects116";
			atlOffset=0.25199509;
		};
		class Item214
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7393.873,29.92338,5352.749};
				angles[]={0,0.038978804,0};
			};
			side="Empty";
			flags=1;
			class Attributes
			{
			};
			id=611;
			type="Exile_Sign_RussianRoulette";
			atlOffset=0.25844574;
		};
		class Item215
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7393.6445,27.170277,5353.7075};
				angles[]={0.0066682254,0,6.2631893};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=612;
			type="Land_MBG_aut_zast";
		};
		class Item216
		{
			dataType="Group";
			side="Independent";
			class Entities
			{
				items=1;
				class Item0
				{
					dataType="Object";
					class PositionInfo
					{
						position[]={7394.4878,25.603682,5353.249};
						angles[]={0,2.7545865,0};
					};
					side="Independent";
					flags=7;
					class Attributes
					{
					};
					id=614;
					type="Exile_Trader_RussianRoulette";
				};
			};
			class Attributes
			{
			};
			id=613;
		};
		class Item217
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7373.5034,35.390877,5317.3818};
				angles[]={6.2733107,0.068761945,6.2741556};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=615;
			type="Land_Pallet_vertical_F";
		};
		class Item218
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7364.4146,35.364651,5321.4023};
				angles[]={0.015077679,5.3896613,0.010042505};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=616;
			type="Land_Pallet_vertical_F";
		};
		class Item219
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7341.2754,35.305042,5302.3032};
				angles[]={0,4.3686643,0.0038136009};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=617;
			type="Land_Pallet_vertical_F";
		};
		class Item220
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7378.2656,39.299564,5317.6582};
				angles[]={0.0046193614,3.083235,0.0054482277};
			};
			side="Empty";
			class Attributes
			{
			};
			id=618;
			type="Land_Pallet_vertical_F";
			atlOffset=3.9438171;
		};
		class Item221
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7379.8633,39.307873,5317.7451};
				angles[]={0.0046193614,3.3711202,0.0054482277};
			};
			side="Empty";
			class Attributes
			{
			};
			id=619;
			type="Land_Pallet_vertical_F";
			atlOffset=3.9633408;
		};
		class Item222
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7384.7822,35.294876,5305.2168};
				angles[]={0,1.7830223,0.00084572798};
			};
			side="Empty";
			class Attributes
			{
			};
			id=620;
			type="Land_Pallet_vertical_F";
			atlOffset=0.67849731;
		};
		class Item223
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7380.1655,35.29377,5304.8667};
				angles[]={0,3.318886,0.00048828125};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=621;
			type="Land_Pallet_vertical_F";
		};
		class Item224
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7401.3452,26.222992,5346.4946};
				angles[]={0,2.8798501,0};
			};
			side="Empty";
			flags=5;
			class Attributes
			{
			};
			id=622;
			type="Land_FuelStation_Feed_F";
		};
		class Item225
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7402.0571,26.817848,5345.127};
				angles[]={0.0016914561,6.0370755,6.2631893};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=628;
			type="Land_Ind_TankSmall";
		};
		class Item226
		{
			dataType="Object";
			class PositionInfo
			{
				position[]={7309.5435,35.203495,5350.6338};
				angles[]={0.073202357,0,6.1884694};
			};
			side="Empty";
			flags=4;
			class Attributes
			{
			};
			id=629;
			type="Land_HelipadCivil_F";
		};
	};
};

 

How to use this.

Edited by JASONonSTEAM

Share this post


Link to post
Share on other sites
14 minutes ago, JASONonSTEAM said:

How to use this.

You need to make a folder in C:\Users\**YOUR WINDOWS ACCOUNT NAME**\Documents\Arma 3 - Other Profiles\**YOUR ARMA 3 ACCOUNT NAME**\mpmissions\ called **ANYTHING YOU WANT IT TO BE**.Esseker and then paste the code in a file called mission.sqm. Then when you load up the editor and click open, you will be able to edit the areas

Share this post


Link to post
Share on other sites
Advertisement

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

  • Recently Browsing   0 members

    No registered users viewing this page.