From d36c0a9ab0f5277c6037228a5bc67de57b3bc37f Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Sun, 6 Feb 2022 14:10:41 +0100 Subject: [PATCH 01/10] Previously played version --- .../AF_functions.hpp | 55 + .../CfgDebriefing.hpp | 26 + .../CfgTasks.hpp | 58 + .../OFP_Patrol.html | 364 + .../OnPlayerRespawn.sqf | 1 + .../description.ext | 46 + .../functions/dialogs/fn_groupRenameGUI.sqf | 12 + .../functions/dialogs/fn_groupRenameList.sqf | 39 + .../functions/dialogs/fn_setViewDistance.sqf | 27 + .../functions/dialogs/fn_viewDistanceGUI.sqf | 12 + .../functions/fn_airThreatsLoop.sqf | 25 + .../functions/fn_awacsInit.sqf | 77 + .../functions/fn_awacsLoop.sqf | 37 + .../functions/fn_changeSide.sqf | 22 + .../functions/fn_createActions.sqf | 32 + .../fn_createStartPositionMarker.sqf | 28 + .../functions/fn_createTeleport.sqf | 42 + .../functions/fn_deleteAtRandom.sqf | 20 + .../fn_deleteStartPositionsMarkers.sqf | 21 + .../functions/fn_getAllMapCities.sqf | 29 + .../functions/fn_getHighestRankedPlayers.sqf | 37 + .../functions/fn_getLocationName.sqf | 42 + .../functions/fn_getNearestCityLocation.sqf | 32 + .../functions/fn_getNearestCityName.sqf | 33 + .../fn_getNearestCityWithAvailableName.sqf | 39 + .../functions/fn_getNearestLocation.sqf | 32 + .../functions/fn_getNearestLocationName.sqf | 33 + ...fn_getNearestLocationWithAvailableName.sqf | 39 + .../functions/fn_initializeBluforSpawn.sqf | 32 + .../functions/fn_initializeRedforSpawn.sqf | 45 + .../functions/fn_joinGroup.sqf | 31 + .../functions/fn_mapCleanup.sqf | 89 + .../functions/fn_markerDecayLoop.sqf | 34 + .../functions/fn_randomizePlates.sqf | 78 + .../functions/fn_randomizeTeams.sqf | 62 + .../functions/fn_spawnPlaneAirborne.sqf | 27 + .../functions/fn_tasksClientEvents.sqf | 12 + .../functions/fn_tasksServerEvents.sqf | 34 + .../functions/player/fn_playerActions.sqf | 17 + .../functions/script_component.hpp | 1 + .../gui/defines.hpp | 1567 ++ .../gui/gui_groupRename.hpp | 61 + .../gui/gui_init.hpp | 3 + .../gui/gui_viewDistance.hpp | 135 + .../init.sqf | 10 + .../initPlayerLocal.sqf | 118 + .../initServer.sqf | 142 + .../mission.sqm | 15619 ++++++++++++++++ .../onPlayerKilled.sqf | 1 + .../script_component.hpp | 54 + .../stringtable.xml | 142 + 51 files changed, 19574 insertions(+) create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/AF_functions.hpp create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgDebriefing.hpp create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/OFP_Patrol.html create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/OnPlayerRespawn.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/description.ext create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_groupRenameGUI.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_groupRenameList.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_setViewDistance.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_viewDistanceGUI.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_airThreatsLoop.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_awacsInit.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_awacsLoop.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_changeSide.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createActions.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createStartPositionMarker.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createTeleport.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_deleteAtRandom.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_deleteStartPositionsMarkers.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getAllMapCities.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getHighestRankedPlayers.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getLocationName.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityLocation.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityName.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityWithAvailableName.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocation.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocationName.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocationWithAvailableName.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initializeBluforSpawn.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initializeRedforSpawn.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_joinGroup.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_mapCleanup.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_markerDecayLoop.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizePlates.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizeTeams.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_spawnPlaneAirborne.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_tasksClientEvents.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_tasksServerEvents.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/player/fn_playerActions.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/script_component.hpp create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/defines.hpp create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_groupRename.hpp create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_init.hpp create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_viewDistance.hpp create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/init.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initPlayerLocal.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/onPlayerKilled.sqf create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/script_component.hpp create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/AF_functions.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/AF_functions.hpp new file mode 100644 index 0000000..5c1a677 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/AF_functions.hpp @@ -0,0 +1,55 @@ +class ADDON { + tag = QUOTE(ADDON); + class functions { + file = "functions"; + class joinGroup {}; + class randomizePlates {}; + + // Locations + class getAllMapCities {}; + class getNearestCityWithAvailableName {}; + class getNearestLocationWithAvailableName {}; + class getLocationName {}; + class getNearestCityLocation {}; + class getNearestCityName {}; + class getNearestLocation {}; + class getNearestLocationName {}; + + // Tasks + class tasksClientEvents { postInit = 1; }; + class tasksServerEvents { postInit = 1; }; + + // Stuff + class awacsInit { postInit = 1; }; + class awacsLoop {}; + class getHighestRankedPlayers {}; + class mapCleanup { postInit = 1; }; + class markerDecayLoop {}; + + // Utility + class createActions {}; + class createTeleport {}; + class changeSide {}; + class createStartPositionMarker {}; + class deleteStartPositionsMarkers {}; + class initializeBluforSpawn {}; + class initializeRedforSpawn {}; + class deleteAtRandom {}; + class randomizeTeams {}; + }; +}; + +class AF { + + class dialogs { + class groupRenameGUI {}; + class groupRenameList {}; + class setViewDistance {}; + class viewDistanceGUI {}; + }; + + class player { + class playerActions {}; + }; + +}; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgDebriefing.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgDebriefing.hpp new file mode 100644 index 0000000..5f6ec9f --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgDebriefing.hpp @@ -0,0 +1,26 @@ +class CfgDebriefing { + class BLUFOR_WON { + title = CSTRING(Debriefing_BLUFOR_WON_Title); + subtitle = CSTRING(Debriefing_BLUFOR_WON_Subtitle); + //description = "You successfully rescued our forces and neutralized the spotters, despite being forced to retreat."; + //pictureBackground = ""; + //picture = "b_inf"; + //pictureColor[] = { 0.0, 0.3, 0.6, 1 }; + }; + class REDFOR_WON { + title = CSTRING(Debriefing_REDFOR_WON_Title); + subtitle = CSTRING(Debriefing_REDFOR_WON_Subtitle); + //description = "You successfully rescued our forces and neutralized the spotters, despite being forced to retreat."; + //pictureBackground = ""; + //picture = "b_inf"; + //pictureColor[] = { 0.0, 0.3, 0.6, 1 }; + }; + class REDFOR_DIED { + title = CSTRING(Debriefing_REDFOR_DIED_Title); + subtitle = CSTRING(Debriefing_REDFOR_DIED_Subtitle); + //description = "You successfully rescued our forces and neutralized the spotters, despite being forced to retreat."; + //pictureBackground = ""; + //picture = "b_inf"; + //pictureColor[] = { 0.0, 0.3, 0.6, 1 }; + }; +}; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp new file mode 100644 index 0000000..10d4847 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp @@ -0,0 +1,58 @@ +class CfgTasks { + class PatrolPvP { + title = CSTRING(DisplayName); // Regular task title + description = CSTRING(Mission_Description); // Regular description. Cannot use linebreaks (enters), if needed use stringtable. + /* Task icon location on the map + First checks for marker with given name, and if doesn't exists, checks for object in mission namespace. + Alternatively {x, y, z} can be used for supplying position coordinates. + If all of them are empty then task won't be shown on the map. */ + icon = "defend"; // Icon classname from https://community.bistudio.com/wiki/Arma_3_Tasks_Overhaul#Appendix + initialState = "CREATED"; // Default value + + //conditionEventsCanceled[] = { "RTBOrdered", "RTBSuccessful" }; + //conditionEventsCanceledRequired = 2; + + //conditionEventsSuccess[] = { "RTBSuccessful" }; + }; + + class Laptop { + title = CSTRING(Task_Laptop_Title); + description = CSTRING(Task_Laptop_Description); + owners[] = { "EAST" }; + object = "laptop"; + parentTask = "PatrolPvP"; + icon = "download"; + + conditionEventsShow[] = { QGVAR(showOpforTasks) }; + //conditionEventsShowRequired = 1; + + conditionEventsSuccess[] = { "LaptopSuccessful" }; + }; + + class SUV { + title = CSTRING(Task_SUV_Title); + description = CSTRING(Task_SUV_Description); + owners[] = { "EAST" }; + object = "suv"; + parentTask = "PatrolPvP"; + icon = "car"; + + conditionEventsShow[] = { QGVAR(showOpforTasks) }; + //conditionEventsShowRequired = 1; + + conditionEventsSuccess[] = { "SUVSuccessful" }; + }; + + class Jets { + title = CSTRING(Task_Jets_Title); + description = CSTRING(Task_Jets_Description); + owners[] = { "EAST" }; + parentTask = "PatrolPvP"; + icon = "plane"; + + conditionEventsShow[] = { QGVAR(showOpforTasks) }; + //conditionEventsShowRequired = 1; + + conditionEventsSuccess[] = { "JetsSuccessful" }; + }; +}; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/OFP_Patrol.html b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/OFP_Patrol.html new file mode 100644 index 0000000..7447c0f --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/OFP_Patrol.html @@ -0,0 +1,364 @@ + + + + + + + Arma 3 + + + + +

Arma 3 Mods

+

+ Drag this file or link to it to Arma 3 Launcher or open it Mods / Preset / Import. +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
[legacy] ArmaForces - Mods + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1639399387 +
3den Enhanced + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=623475643 +
ace + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=463939057 +
ACE Interaction Menu Expansion + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1376867375 +
ACEX + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=708250744 +
ACRE Animations + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=2140308792 +
ACRE2 + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=751965892 +
Advanced Weapon Mounting + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1378046829 +
ArmaForces - Medical + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1981535406 +
ArmaForces - Mods + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1934142795 +
ArmaForces - SoundSystems OFP + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1710730813 +
ArmaZeusCache + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1908099028 +
CBA_A3 + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=450814997 +
CUP Units + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=497661914 +
CUP Vehicles + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=541888371 +
CUP Weapons + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=497660133 +
DUI - Squad Radar + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1638341685 +
Enhanced Movement + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=333310405 +
Enhanced Movement Rework + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=2034363662 +
GRAD SlingHelmet + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1354112941 +
GRAD Trenches + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1224892496 +
Halsoy, Norway + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=2137639975 +
Immerse + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=825172265 +
MAI - DEV + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1852213757 +
Suppress + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=825174634 +
VET_Unflipping + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1703187116 +
vurtual's Car Seat & Stretcher + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1381327410 +
Vurtual's M923A1 (M939 Series 5-ton) + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1331075086 +
vurtual's vehicle base + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1739713277 +
Zeus Enhanced + Steam + + http://steamcommunity.com/sharedfiles/filedetails/?id=1779063631 +
+
+ + + \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/OnPlayerRespawn.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/OnPlayerRespawn.sqf new file mode 100644 index 0000000..421c54b --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/OnPlayerRespawn.sqf @@ -0,0 +1 @@ +#include "script_component.hpp" diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/description.ext b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/description.ext new file mode 100644 index 0000000..d86d5b3 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/description.ext @@ -0,0 +1,46 @@ +#include "script_component.hpp" +#include "gui\gui_init.hpp" + +/* Respawn stuff */ +respawn = 3; +respawnOnStart = -1; +respawnDelay = 1e10; +respawnTemplates[] = {"afm_respawn_default"}; +// Jeśli misja nie przewiduje standardowego respawnu na czas to można usunąć "Counter". +// Tj. dla misji permadeath i z własnym respawnem np. po wykonaniu zadania. + +disableChannels[] = {1, 2, 3, 4, 5}; + +/* Mission description and stuff */ +author = "3Mydlo3"; +onLoadIntro = CSTRING(DisplayName); +briefingName = CSTRING(DisplayName); +onLoadMission = CSTRING(DisplayName); +onLoadName = CSTRING(DisplayName); + +/* Other stuff */ +disabledAI = true; +joinUnassigned = 0; + +// Bibloteka funkcji +class CfgFunctions +{ + #include "AF_functions.hpp" +}; + +// Ustawienia CBA muszą być dodane poprzez CBA XEH PreInit, w przeciwnym wypadku nie będą dostępne w edytorze +class Extended_PreInit_EventHandlers +{ + +}; + +// https://github.com/acemod/ACEX/tree/master/addons/killtracker +class CfgDebriefingSections { + class acex_killTracker { + title = "Acex Killed Events"; + variable = "acex_killTracker_outputText"; + }; +}; + +#include "CfgTasks.hpp" +#include "CfgDebriefing.hpp" diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_groupRenameGUI.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_groupRenameGUI.sqf new file mode 100644 index 0000000..b4c6acd --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_groupRenameGUI.sqf @@ -0,0 +1,12 @@ +/* + AF_fnc_groupRenameGUI + + Description: + Konsola zulu do zmiany nazw grup + +*/ +disableSerialization; +createDialog "AF_dlg_groupRename"; +[{!isNull (findDisplay 9991)},{ + call AF_fnc_groupRenameList; +}, [], -1] call CBA_fnc_waitUntilAndExecute; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_groupRenameList.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_groupRenameList.sqf new file mode 100644 index 0000000..9ab914e --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_groupRenameList.sqf @@ -0,0 +1,39 @@ +/* + AF_fnc_groupRenameList + + Description: + Konsola zulu do zmiany nazw grup + +*/ +disableSerialization; +waitUntil {!isNull (findDisplay 9991);}; +lbClear 123; +lbClear 126; +private _ctrl1 = (findDisplay 9991) displayCtrl 123; +private _ctrl2 = (findDisplay 9991) displayCtrl 126; + +// Utwórz listę grup graczy +wgroups = []; +{ + wgroups pushBackUnique (group _x); +} forEach allPlayers; + +// Wyświetl odpowiednie nazwy grup na liście +{ + _x; + private _grname = groupId _x; + _ctrl1 lbAdd _grname; +} forEach wgroups; + +if (!isnil "_this" && {(count _this) == 1}) then { + private _selector = _this select 0; + if (_selector != -1) then { + // Wyświetl listę graczy w grupie + private _units = units (wgroups select _selector); + { + private _name = name _x; + _ctrl2 lbAdd _name; + } forEach _units; + }; + _selector = nil; +}; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_setViewDistance.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_setViewDistance.sqf new file mode 100644 index 0000000..1fdcf99 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_setViewDistance.sqf @@ -0,0 +1,27 @@ +/* + AF_fnc_setViewDistance + + Description: + Funckcja do zmiany odległości widzenia + +*/ + +params ["_dist"]; +private _dist2 = _dist * 0.7; +if (_dist > minviewdistance) then { + if (_dist < maxviewdistance) then { + setViewDistance _dist; + if (_dist2 < minviewdistance) then { + setobjectviewdistance minviewdistance; + } else { + setobjectviewdistance _dist2; + }; + } else { + setViewDistance maxviewdistance; + setobjectviewdistance maxviewdistance * 0.7; + }; +} else { + setViewDistance minviewdistance; + setobjectviewdistance minviewdistance; +}; +ctrlSetText [311, str viewdistance]; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_viewDistanceGUI.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_viewDistanceGUI.sqf new file mode 100644 index 0000000..39ec431 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/dialogs/fn_viewDistanceGUI.sqf @@ -0,0 +1,12 @@ +/* + AF_fnc_viewDistanceGUI + + Description: + Konsola do zmiany odległości widzenia + +*/ +disableSerialization; +createDialog "AF_dlg_viewDistance"; +[{!isNull (findDisplay 10)},{ + ctrlSetText [311, str viewdistance]; +}, [], -1] call CBA_fnc_waitUntilAndExecute; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_airThreatsLoop.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_airThreatsLoop.sqf new file mode 100644 index 0000000..c64b452 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_airThreatsLoop.sqf @@ -0,0 +1,25 @@ +#define BLUE_PLANE "KOS_CRO_MiG_29" +#define BLUE_HELI_1 "KOS_CRO_Mi24V_UPK" +#define BLUE_HELI_2 "KOS_CRO_mi17amtsh3_camo" + +#define RED_PLANE "rhssaf_airforce_o_l_18_101" +#define RED_HELI_1 "rhssaf_airforce_o_ht40" + +#define RED_AIR [RED_PLANE, RED_HELI1] +#define BLUE_AIR [BLUE_PLANE, BLUE_HELI1, BLUE_HELI2] + +#define RED_SPAWN "sys_saf_air_spawn" +#define BLUE_SPAWN "sys_cro_air_spawn" + +{ + private _plane = _x call FUNC(spawnPlaneAirborne); + private _pilot = driver _plane; + private _waypoint = group _pilot addWaypoint [getMarkerPos "sys_marker_la_trinite", 0]; + _waypoint setWaypointType "SAD"; + _waypoint setWaypointBehaviour "COMBAT"; +} forEach [ + [selectRandom BLUE_AIR, BLUE_SPAWN], + [selectRandom RED_AIR, RED_SPAWN] +]; + +[FUNC(airThreatsLoop), [], random 600] call CBA_fnc_waitAndExecute; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_awacsInit.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_awacsInit.sqf new file mode 100644 index 0000000..3a28247 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_awacsInit.sqf @@ -0,0 +1,77 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Handles AWACS system initialization + * + * Example: + * call afp_scripts_fnc_awacsInit + * + * Public: No + */ + +#define GROUPS ["HQ", "November", "Delta"] + +if (hasInterface) then { + [QGVAR(awacsObjectDetected), { + params ["_object"]; + if (!(groupId group player in GROUPS)) exitWith {}; + + // Get vehicle data from namespace + private _vehicleData = GVAR(AWACSData) getVariable [str _object, objNull]; + if (isNull _vehicleData) then { + _vehicleData = call CBA_fnc_createNamespace; + GVAR(AWACSData) setVariable [str _object, _vehicleData]; + _vehicleData setVariable ["typeName", getText (configFile >> "CfgVehicles" >> typeOf _object >> "displayName")] + }; + + private _vehiclePosiion = getPosATL _object; + private _vehicleName = _vehicleData getVariable "typeName"; + // Place marker on object's position + private _vehicleMarker = _vehicleData getVariable ["markerName", ""]; + if (_vehicleMarker isEqualTo "") then { + _vehicleMarker = createMarkerLocal [str _object, _vehiclePosition]; + _vehicleMarker setMarkerTypeLocal ([_object] call afft_friendly_tracker_fnc_getVehicleMarkerType); + } else { + _vehicleMarker setMarkerAlphaLocal 1; + _vehicleMarker setMarkerPosLocal _vehiclePosition; + }; + + // Prepare marker message + private _text = format ["%5: %1 | Alt: %2 | Spd: %3 | Hdg: %4", + _vehicleName, + floor (_vehiclePosition select 2), + speed _object, + getDir _object, + [daytime] call BIS_fnc_timeToString]; + _vehicleMarker setMarkerTextLocal _text; + + // Send sideChat message + private _playerPosition = position player; + private _relDir = floor([_playerPosition, _vehiclePosition] call BIS_fnc_relativeDirTo); + private _distance = floor((_playerPosition distance _vehiclePosition)/100)/10; + private _sideChatMsg = format [LSTRING(AWACS_DetectedMessage), _vehicleName, _relDir, _distance]; + GVAR(AWACS) sideChat _sideChatMsg; + }] call CBA_fnc_addEventHandler; + + [QGVAR(awacsObjectDisappeared), { + params ["_object"]; + if (!(groupId group player in GROUPS)) exitWith {}; + + // Get vehicle data from namespace or leave if not initialized + private _vehicleData = GVAR(AWACSData) getVariable [str _object, objNull]; + if (isNull _vehicleData) exitWith {}; + + private _vehicleMarker = _vehicleData getVariable "markerName"; + + // If object crashed/died, remove marker (won't happen if object wasn't visible in last scan as event won't trigger) + if (!alive _object) exitWith {deleteMarkerLocal _vehicleMarker}; + + // Start marker decay + [_vehicleMarker, 0.1] call FUNC(markerDecayLoop); + }] +}; + +if (!(groupId group player in GROUPS)) exitWith {}; + +// Initialize data namespace +GVAR(AWACSData) = call CBA_fnc_createNamespace; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_awacsLoop.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_awacsLoop.sqf new file mode 100644 index 0000000..85a552a --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_awacsLoop.sqf @@ -0,0 +1,37 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Handles AWACS system loop + * + * Example: + * call afp_scripts_fnc_awacsLoop + * + * Public: No + */ + +params [["_previouslyDetectedObjects", []]]; + +#define MIN_ASL_HEIGHT 100 +#define MIN_ATL_HEIGHT 100 + +// Handle "detection" +private _detectedObjects = (vehicles select { + _x isKindOf "Air" + && {alive _x + && {getPosASL _x select 2 >= MIN_ASL_HEIGHT + && {getPosATL _x select 2 >= MIN_ATL_HEIGHT + }}} +}); + +{ + [QGVAR(awacsObjectDetected), [_x]] call CBA_fnc_globalEvent; +} forEach _detectedObjects; + +// Run dissapeared event on objects which were detected before but they are no longer visible +_previouslyDetectedObjects = _previouslyDetectedObjects - (_previouslyDetectedObjects arrayIntersect _detectedObjects); +{ + [QGVAR(awacsObjectDisappeared), [_x]] call CBA_fnc_globalEvent; +} forEach _previouslyDetectedObjects; + +// Loop +[FUNC(awacsLoop), [_previouslyDetectedObjects], 15] call CBA_fnc_waitAndExecute; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_changeSide.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_changeSide.sqf new file mode 100644 index 0000000..0746aaa --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_changeSide.sqf @@ -0,0 +1,22 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function changes unit's side. + * + * Arguments: + * 0: Unit to change it's side + * 1: Desired side + * + * Return Value: + * None + * + * Example: + * [player, EAST] call afsg_patrol_fnc_changeSide + * + * Public: No + */ + +params ["_unit", "_newSide"]; + +private _emptyGroup = createGroup [_newSide, true]; +[_unit] join _emptyGroup; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createActions.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createActions.sqf new file mode 100644 index 0000000..71c6796 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createActions.sqf @@ -0,0 +1,32 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function creates actions for role assignment. + * + * Arguments: + * 0: Teleporter + * + * Return Value: + * None + * + * Example: + * [_flag] call afsg_patrol_fnc_createActions + * + * Public: No + */ + +params ["_flag"]; + + +private _roleActionsIDs = []; +{ + private _roleName = _x select 0; + + private _roleActionID = _flag addAction [_roleName, { + [QGVAR(assignRole), [_this select 1, _this select 3 select 0]] call CBA_fnc_serverEvent; + }, [_roleName]]; + + _roleActionsIDs pushBack _roleActionID; +} forEach GVAR(availableRoles); + +_flag setVariable [QGVAR(roleActionsIDs), _roleActionsIDs]; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createStartPositionMarker.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createStartPositionMarker.sqf new file mode 100644 index 0000000..eac135b --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createStartPositionMarker.sqf @@ -0,0 +1,28 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function creates marker for given killers start position. + * + * Arguments: + * 0: Start position + * 1: Position nearest location name + * + * Return Value: + * 0: Created marker + * + * Example: + * None + * + * Public: No + */ + +params ["_pos", ["_name", ""]]; + +private _marker = createMarkerlocal [_name, _pos]; +_marker setMarkerColorlocal "ColorEAST"; +_marker setMarkerSizelocal [0.5,0.5]; +_marker setMarkerTypelocal "mil_end"; +_marker setMarkerTextLocal _name; +GVAR(startPositionsMarkers) pushback _marker; + +_marker \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createTeleport.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createTeleport.sqf new file mode 100644 index 0000000..176b4c6 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_createTeleport.sqf @@ -0,0 +1,42 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function creates teleport to all killers start positions. + * + * Arguments: + * 0: Teleporter + * + * Return Value: + * None + * + * Example: + * [_flag] call afsk_killers_fnc_createTeleport + * + * Public: No + */ + +params ["_flag"]; + +private _teleportActionsIDs = []; +private _positionID = 0; +{ + // _x is location name and value is position assigned + private _markerName = _x; + private _destinationName = format ["%1", markerText _markerName]; + private _destinationPos = getMarkerPos _x; + private _teleportActionID = _flag addAction [_destinationName, { + [QGVAR(teleport), [_this select 1, _this select 3 select 0]] call CBA_fnc_serverEvent; + // Delete all teleport actions and markers + call FUNC(deleteStartPositionsMarkers); + private _teleportActionsIDs = (_this select 0) getVariable [QGVAR(teleportActionsIDs), []]; + { + (_this select 0 ) removeAction (_x); + } forEach _teleportActionsIDs; + }, [_destinationPos]]; + [_destinationPos, _destinationName] call FUNC(createStartPositionMarker); + // Add for deletion after teleportation + _teleportActionsIDs pushBack _teleportActionID; + _positionID = _positionID + 1; +} forEach GVAR(startPositions); + +_flag setVariable [QGVAR(teleportActionsIDs), _teleportActionsIDs]; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_deleteAtRandom.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_deleteAtRandom.sqf new file mode 100644 index 0000000..66cd477 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_deleteAtRandom.sqf @@ -0,0 +1,20 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function runs deleteAt with random index + * + * Arguments: + * 0: Array to delete random element from + * + * Return Value: + * 0: Deleted element + * + * Example: + * [[bob, ted]] call afsg_patrol_fnc_deleteAtRandom + * + * Public: No + */ + +params ["_array"]; + +_array deleteAt (floor (random (count _array))); \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_deleteStartPositionsMarkers.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_deleteStartPositionsMarkers.sqf new file mode 100644 index 0000000..6c9bf49 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_deleteStartPositionsMarkers.sqf @@ -0,0 +1,21 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function removes all killers start positions markers. + * + * Arguments: + * None + * + * Return Value: + * None + * + * Example: + * None + * + * Public: No + */ + +{ + deleteMarkerLocal _x; +} forEach GVAR(startPositionsMarkers); +GVAR(startPositionsMarkers) = []; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getAllMapCities.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getAllMapCities.sqf new file mode 100644 index 0000000..bd8e89f --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getAllMapCities.sqf @@ -0,0 +1,29 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function returns all map city locations. + * + * Arguments: + * None + * + * Return Value: + * 0: City list + * + * Example: + * call afsk_common_fnc_getAllMapCities + * + * Public: No + */ + +private _cities = []; + +private _filter = "getText (_x >> 'type') isEqualTo '%1'"; + +{ + private _locations = format [_filter, _x] configClasses (configFile >> "CfgWorlds" >> worldName >> "Names"); + { + _cities pushBackUnique _x; + } forEach _locations; +} forEach ["NameCityCapital", "NameCity", "NameVillage"]; + +_cities diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getHighestRankedPlayers.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getHighestRankedPlayers.sqf new file mode 100644 index 0000000..0ed602a --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getHighestRankedPlayers.sqf @@ -0,0 +1,37 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function returns list of highest ranked alive players. + * + * Arguments: + * 0: Side to check + * + * Return Value: + * 0: List of players + * + * Example: + * call afp_scripts_fnc_getHighestRankedPlayers + * + * Public: No + */ + +params [["_side", sideUnknown]]; + +private _highestRankID = 7; +private _playersList = allPlayers select {alive _x}; +if (!(_side isEqualTo sideUnknown)) then { + _playersList select {side _x isEqualTo _side}; +}; + +// If there are no players alive on given side just exit with empty list +if (_playersList isEqualTo []) exitWith {[]}; + +private _highestRankedPlayers = []; + +while {_highestRankedPlayers isEqualTo [] && {_highestRankID > 0}} do { + _highestRankID = _highestRankID - 1; + _highestRankedPlayers = _playersList select {rankId _x isEqualTo _highestRankID}; +}; + +// Return +_highestRankedPlayers \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getLocationName.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getLocationName.sqf new file mode 100644 index 0000000..167d909 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getLocationName.sqf @@ -0,0 +1,42 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function returns location name from config. + * + * Arguments: + * 0: Location + * + * Return Value: + * 0: Location name + * + * Example: + * [[player] call afsk_common_fnc_getNearestLocation] call afsk_common_fnc_getLocationName + * + * Public: No + */ + +params ["_location"]; + +private _locationClassname = if (_location isEqualType locationNull) then { + className _location; +} else { + if (_location isEqualType configNull) then { + configName _location + } else { + _location + }; +}; + +// Location does not have classname so no name also +if (_locationClassname isEqualTo "") exitWith {""}; + +// Try to get name from cache +private _name = GVAR(locationNames) getVariable [_locationClassname, ""]; + +if (_name isEqualTo "") then { + _name = getText (configFile >> "CfgWorlds" >> worldName >> "Names" >> _locationClassname >> "name"); + // Fill cache + GVAR(locationNames) setVariable [_locationClassname, _name]; +}; + +_name diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityLocation.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityLocation.sqf new file mode 100644 index 0000000..c678b7d --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityLocation.sqf @@ -0,0 +1,32 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function returns nearest map location of city type for given position/unit. + * + * Arguments: + * 0: Unit/position to find nearest city location + * + * Return Value: + * 0: Nearest city location + * + * Example: + * [player] call afsk_common_fnc_getNearestCityLocation + * + * Public: No + */ + +params ["_pos", ["_searchRadius", 2000]]; + +if (_pos isEqualType locationNull) then { + _pos = position _pos; +}; + +if (_pos isEqualType objNull) then { + _pos = getPosATL _pos; +}; + +// Get nearest locations to object. +private _towns = nearestLocations [_pos, ["NameVillage", "NameCity", "NameCityCapital"], _searchRadius]; +diag_log format ["[AFSK] [COMMON] [getNearestLocation] Pos: %1, Town: %2", _pos, _towns param [0, locationNull]]; +// Select nearest location from array. +_towns param [0, locationNull] diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityName.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityName.sqf new file mode 100644 index 0000000..277cc69 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityName.sqf @@ -0,0 +1,33 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function returns name of nearest map city for given position/unit. + * + * Arguments: + * 0: Object/position to find nearest map location name + * 1: Location search radius + * + * Return Value: + * 0: Nearest map location name + * + * Example: + * [player] call afsk_common_fnc_getNearestCityName + * + * Public: No + */ + +params ["_pos", ["_searchRadius", 2000]]; + +if (_pos isEqualType locationNull) then { + _pos = position _pos; +}; + +if (_pos isEqualType objNull) then { + _pos = getPosATL _pos; +}; + +// Get nearest location +private _nearestCity = [_pos, _searchRadius] call FUNC(getNearestCityWithAvailableName); +if (_nearestCity isEqualTo locationNull) exitWith {""}; + +[_nearestCity] call FUNC(getLocationName); diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityWithAvailableName.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityWithAvailableName.sqf new file mode 100644 index 0000000..553d7e7 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestCityWithAvailableName.sqf @@ -0,0 +1,39 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function returns nearest map city which has available name for given position/unit. + * + * Arguments: + * 0: Unit/position to find nearest map location with name + * 1: Location search radius + * + * Return Value: + * 0: Nearest map available location with name + * + * Example: + * [player] call afsk_common_fnc_getNearestCityWithAvailableName + * + * Public: No + */ + +params ["_pos", ["_searchRadius", 2000]]; + +if (_pos isEqualType locationNull) then { + _pos = position _pos; +}; + +if (_pos isEqualType objNull) then { + _pos = getPosATL _pos; +}; + +// Get nearest locations +private _locations = nearestLocations [_pos, ["NameVillage", "NameCity", "NameCityCapital"], _searchRadius]; + +// Loop through all locations and find nearest with name +private _location = locationNull; +{ + private _locationName = [_x] call FUNC(getLocationName); + if (!(_locationName isEqualTo "")) exitWith {_location = _x}; +} forEach _locations; + +_location diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocation.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocation.sqf new file mode 100644 index 0000000..0388cdd --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocation.sqf @@ -0,0 +1,32 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function returns nearest map location for given position/unit. + * + * Arguments: + * 0: Unit/position to find nearest map location + * + * Return Value: + * 0: Nearest map location + * + * Example: + * [player] call afsk_common_fnc_getNearestLocation + * + * Public: No + */ + +params ["_pos", ["_searchRadius", 2000]]; + +if (_pos isEqualType locationNull) then { + _pos = position _pos; +}; + +if (_pos isEqualType objNull) then { + _pos = getPosATL _pos; +}; + +// Get nearest locations to object. +private _locations = nearestLocations [_pos, GVAR(allLocationTypes), _searchRadius]; +diag_log format ["[AFSK] [COMMON] [getNearestLocation] Pos: %1, Location: %2", _pos, _locations param [0, locationNull]]; +// Select nearest location from array. +_locations param [0, locationNull] diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocationName.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocationName.sqf new file mode 100644 index 0000000..d1db461 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocationName.sqf @@ -0,0 +1,33 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function returns name of nearest map location for given position/unit. + * + * Arguments: + * 0: Object/position to find nearest map location name + * 1: Location search radius + * + * Return Value: + * 0: Nearest map location name + * + * Example: + * [player] call afsk_common_fnc_getNearestLocationName + * + * Public: No + */ + +params ["_pos", ["_searchRadius", 2000]]; + +if (_pos isEqualType locationNull) then { + _pos = position _pos; +}; + +if (_pos isEqualType objNull) then { + _pos = getPosATL _pos; +}; + +// Get nearest location +private _nearestLocation = [_pos, _searchRadius] call FUNC(getNearestLocationWithAvailableName); +if (_nearestLocation isEqualTo locationNull) exitWith {""}; + +[_nearestLocation] call FUNC(getLocationName); diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocationWithAvailableName.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocationWithAvailableName.sqf new file mode 100644 index 0000000..d8bd1c3 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_getNearestLocationWithAvailableName.sqf @@ -0,0 +1,39 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function returns nearest map location which has available name for given position/unit. + * + * Arguments: + * 0: Unit/position to find nearest map location with name + * 1: Location search radius + * + * Return Value: + * 0: Nearest map available location with name + * + * Example: + * [player] call afsk_common_fnc_getNearestLocationWithAvailableName + * + * Public: No + */ + +params ["_pos", ["_searchRadius", 2000]]; + +if (_pos isEqualType locationNull) then { + _pos = position _pos; +}; + +if (_pos isEqualType objNull) then { + _pos = getPosATL _pos; +}; + +// Get nearest locations +private _locations = nearestLocations [_pos, GVAR(allLocationTypes), _searchRadius]; + +// Loop through all locations and find nearest with name +private _location = locationNull; +{ + private _locationName = [_x] call FUNC(getLocationName); + if (!(_locationName isEqualTo "")) exitWith {_location = _x}; +} forEach _locations; + +_location diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initializeBluforSpawn.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initializeBluforSpawn.sqf new file mode 100644 index 0000000..cd0f5b7 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initializeBluforSpawn.sqf @@ -0,0 +1,32 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * + * + * Example: + * call afsg_patrol_fnc_initializeBluforSpawn + * + * Public: No + */ + +private _spawnPosition = getMarkerPos BLUFOR_SPAWN_MARKER; + +// Create flag teleport as in SK +private _flag = "Flag_Red_F" createVehicle _spawnPosition; + +[QGVAR(createActions), [_flag]] call CBA_fnc_globalEventJIP; + +// Create and fill equipment box +private _weaponsBox = "CUP_USBasicWeaponsBox" createVehicle _spawnPosition; +clearItemCargoGlobal _weaponsBox; +clearWeaponCargoGlobal _weaponsBox; +clearMagazineCargoGlobal _weaponsBox; +clearBackpackCargoGlobal _weaponsBox; + +_weaponsBox addItemCargoGlobal ["CUP_arifle_M16A2_GL", 4]; +_weaponsBox addItemCargoGlobal ["UGL_FlareWhite_F", 8]; +_weaponsBox addItemCargoGlobal ["UGL_FlareRed_F", 8]; +_weaponsBox addItemCargoGlobal ["UGL_FlareGreen_F", 8]; +_weaponsBox addItemCargoGlobal ["UGL_FlareYellow_F", 8]; + +GVAR(bluforBox) = _weaponsBox; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initializeRedforSpawn.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initializeRedforSpawn.sqf new file mode 100644 index 0000000..f23cbe8 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initializeRedforSpawn.sqf @@ -0,0 +1,45 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * + * + * Example: + * call afsg_patrol_fnc_initializeRedforSpawn + * + * Public: No + */ + +private _spawnPosition = getMarkerPos REDFOR_SPAWN_MARKER; + +// Create flag teleport as in SK +private _flag = "Flag_Red_F" createVehicle _spawnPosition; + +GVAR(startPositions) = []; + +private _i = 1; +private _markerName = format ["sys_marker_redfor_start_%1", _i]; +while {!(getMarkerPos _markerName isEqualTo [0, 0, 0])} do { + _markerName setMarkerText str _i; + GVAR(startPositions) pushBack _markerName; + _i = _i + 1; + _markerName = format ["sys_marker_redfor_start_%1", _i]; +}; + +publicVariable QGVAR(startPositions); + +[QGVAR(createTeleport), [_flag]] call CBA_fnc_globalEventJIP; + +// Create and fill equipment box +private _weaponsBox = "CUP_RUBasicWeaponsBox" createVehicle _spawnPosition; +clearItemCargoGlobal _weaponsBox; +clearWeaponCargoGlobal _weaponsBox; +clearMagazineCargoGlobal _weaponsBox; +clearBackpackCargoGlobal _weaponsBox; + +_weaponsBox addItemCargoGlobal ["DemoCharge_Remote_Mag", 3]; +_weaponsBox addItemCargoGlobal ["ACE_Clacker", 1]; +_weaponsBox addItemCargoGlobal ["MineDetector", 1]; +_weaponsBox addItemCargoGlobal ["ACE_wirecutter", 1]; + +GVAR(opforBox) = _weaponsBox; + diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_joinGroup.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_joinGroup.sqf new file mode 100644 index 0000000..c765c47 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_joinGroup.sqf @@ -0,0 +1,31 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Makes unit join group with given callsign when joined server. + * If such group doesn't exists then create it. + * + * Arguments: + * 0: Unit + * 1: Name of group to join + * + * Return Value: + * None + * + * Example: + * [player ,"Alpha"] call afp_scripts_fnc_joinGroup + * + * Public: No + */ + +params ["_unit", "_groupName"]; + +if (!local _unit) exitWith {}; + +private _group = missionNamespace getVariable [_groupName, grpNull]; + +if (isNull _group) then { + _group = createGroup side _unit; + missionNamespace setVariable [_groupName, _group]; +}; + +[_unit] joinSilent _group; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_mapCleanup.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_mapCleanup.sqf new file mode 100644 index 0000000..c0b6a6a --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_mapCleanup.sqf @@ -0,0 +1,89 @@ +#include "script_component.hpp" +/* + * Author: Krystol + * Removes non-era object from map. + * Comment out which objects you don't want to see. + * + * Example: + * call afp_scripts_fnc_mapCleanup + * + * Public: No + */ + +if (!isServer) exitWith {}; + +private _rm = [ + "Land_Kiosk_blueking_F", + "Land_Kiosk_redburger_F", + "Land_Kiosk_gyros_F", + "Land_Kiosk_papers_F", + "Land_Supermarket_01_malden_F", + //"Land_LampHalogen_F", + //"Land_LampAirport_F", + //"Land_Flush_Light_green_F", + //"Land_Flush_Light_yellow_F", + //"Land_Flush_Light_red_F", + //"Land_CombineHarvester_01_wreck_F", + //"Land_HelipadCivil_F", + //"Land_HelipadSquare_F", + //"Land_HelipadCircle_F", + "cinderblock_f.p3d", + "toiletbox_f.p3d", + "fieldtoilet_f.p3d", + "cargo_20_light_green_f.p3d", + "cargo_20_military_green_f.p3d", + "cargo_20_grey_f.p3d", + "cargo_20_white_f.p3d", + "cargo_20_cyan_f.p3d", + "cargo_20_yellow_f.p3d", + "cargo_20_blue_f.p3d", + "cargo_20_orange_f.p3d", + "cargo_20_brick_red_f.p3d", + "cargobox_v1_f.p3d", + //"garbagebin_01_f.p3d", + "billboard_03_duckit_f.p3d", + "billboard_03_cheese_f.p3d", + "billboard_03_koke_f.p3d", + "billboard_03_getlost_f.p3d", + "billboard_03_ygont_f.p3d", + "billboard_03_mars_f.p3d", + "billboard_03_winery_f.p3d", + "billboard_03_pills_f.p3d", + "billboard_03_supermarket_f.p3d", + "billboard_03_maskrtnik_f.p3d", + "billboard_03_blank_f.p3d", + "billboard_03_aan_f.p3d", + "billboard_03_argois_f.p3d", + "billboard_03_lyfe_f.p3d", + "billboard_03_plane_f.p3d", + "billboard_02_carrental_f.p3d", + "billboard_02_redstone_f.p3d", + "billboard_02_ion_f.p3d", + "billboard_02_chevre_f.p3d", + "billboard_02_chevre2_f.p3d", + "billboard_02_surreal_f.p3d", + "billboard_02_chernarus_f.p3d", + "billboard_04_mars_lyfe_f.p3d", + "billboard_04_supermarket_maskrtnik_f.p3d", + "billboard_04_koke_redstone_f.p3d", + //"campingtable_small_f.p3d", + //"campingchair_v1_f.p3d", + "fuelstation_01_prices_malevil_f.p3d", + "phonebooth_01_malden_f.p3d", + "phonebooth_02_malden_f.p3d", + "garbagecontainer_open_f.p3d", + "garbagecontainer_closed_f.p3d", + "fs_price_f.p3d", + "wreck_car_f.p3d", + //"wreck_ural_f.p3d", + "atm_01_malden_f.p3d", + "atm_02_malden_f.p3d", + "signm_forrent_f.p3d", + "signm_taxi_f.p3d" +]; + +_pos = getArray (configFile >> "CfgWorlds" >> worldName >> "centerPosition"); +_toHide = nearestObjects [_pos, [], worldSize, false]; +_toHideFiltered = _toHide select {typeOf _x in _rm || {((getModelInfo _x) select 0) in _rm}}; + +{_x hideObjectGlobal true;} forEach _toHideFiltered; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_markerDecayLoop.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_markerDecayLoop.sqf new file mode 100644 index 0000000..399ac0e --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_markerDecayLoop.sqf @@ -0,0 +1,34 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Loop handles marker decay every 15 seconds. + * + * Arguments: + * 0: Decaying marker + * 1: Decay amount + * + * Return Value: + * None + * + * Example: + * ["my_marker", 0.1] call afsk_common_fnc_markerDecayLoop + * + * Public: No + */ + +params ["_marker", "_decayRate", ["_oldAlpha", 0]]; + +private _currentAlpha = markerAlpha _marker; + +// Break loop if something increased alpha, 0 is default so cannot be equal +if (!(_oldAlpha isEqualTo _currentAlpha) && {!(_oldAlpha isEqualTo 0)}) exitWith {}; + +// If applying decay would result in negative alpha, just delete marker (disappeared) +if (_currentAlpha <= _decayRate) exitWith {deleteMarkerLocal _marker}; + +// Decrease alpha +_oldAlpha = _currentAlpha - _decayRate; +_marker setMarkerAlphaLocal _oldAlpha; + +// Loop +[FUNC(markerDecayLoop), [_marker, _decayRate, _oldAlpha], 15] call CBA_fnc_waitAndExecute; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizePlates.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizePlates.sqf new file mode 100644 index 0000000..1ca44c1 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizePlates.sqf @@ -0,0 +1,78 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Randomize license plates on vehicle + * + * Arguments: + * 0: Vehicle to randomize its plates + * + * Return Value: + * Randomized plate + * + * Example: + * [vehicle player] call afp_scripts_fnc_randomizePlates + * + * Public: No + */ + +params ["_vehicle", ["_originCity", ""]]; + +if (!isServer) exitWith {}; + +if (_originCity isEqualTo "") then { + private _distantChance = 0.2; + if (random 1 < _distantChance) then { + _originCity = [selectRandom GVAR(cities)] call FUNC(getLocationName); + } else { + _originCity = [_vehicle] call FUNC(getNearestCityName); + }; +}; + +// Create city plate part +private _cityPartLength = 4; +private _cityRemaining = _originCity; +private _cityPart = []; +// Extract first 4 nonvowels from city name +while {count _cityPart < _cityPartLength && {!(count _cityRemaining isEqualTo 0)}} do { + private _char = _cityRemaining select [0, 1]; + _cityRemaining = _cityRemaining select [1, count _cityRemaining -1]; + if (!(_char in ["a", "e", "i", "o", "u", "y", " "])) then { + _cityPart pushBack _char; + }; +}; + +_cityPart = _cityPart joinString ""; +_cityPart = toUpper(_cityPart); + +// Create namespace for given city if not yet exists +private _cityPlatesNamespace = GVAR(licensePlates) getVariable [_cityPart, objNull]; +if (isNull _cityPlatesNamespace) then { + _cityPlatesNamespace = call CBA_fnc_createNamespace; + GVAR(licensePlates) setVariable [_cityPart, _cityPlatesNamespace]; +}; + +// Randomize number until not already taken +private _numberPart = floor (random 9999); +while {_numberPart in allVariables _cityPlatesNamespace} do { + _numberPart = floor (random 9999); +}; + +// Check if lower than to add trailing zeors +private _trailingZeros = []; +{ + if (_numberPart < _x) then { + _trailingZeros append ["0"]; + }; +} forEach [1000, 100, 10]; +_trailingZeros = _trailingZeros joinString ""; +_numberPart = [_numberPart, _trailingZeros] joinString ""; + +// Assign number to vehicle +_cityPlatesNamespace setVariable [_numberPart, _vehicle]; + +// Create and set plate number +_licensePlate = format ["%1 - %2", _cityPart, _numberPart]; +_vehicle setPlateNumber _licensePlate; +_vehicle setVariable [QGVAR(plateRandomized), true]; + +_licensePlate \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizeTeams.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizeTeams.sqf new file mode 100644 index 0000000..df12fc2 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizeTeams.sqf @@ -0,0 +1,62 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Selects randomly among connected players ones who join opposing side. + * If game was played before, excludes players already been in opfor. + * + * Arguments: + * 0: Number of players which should join opposing side + * 1: Side to join + * + * Returns: + * Units which joined opposing side + * + * Example: + * [4, EAST] call afsg_patrol_fnc_randomizeTeams + * + * Public: No + */ + + params ["_desiredNumber", ["_side", EAST]]; + +private _opforUnits = []; +private _excludedUIDs = profileNamespace getVariable [QGVAR(beenOpfor), []]; +TRACE_1("Excluded UIDs: %1", str _excludedUIDs); +private _allPlayers = GVAR(playersConnected) apply {_x select 1}; +TRACE_2("AllPlayers: %1 | %2", str allPlayers, str _allPlayers); +private _allPlayersUIDs = _allPlayers apply {getPlayerUID _x}; +TRACE_1("AllPlayersUIDs: %1", _allPlayersUIDs); +private _eligiblePlayersUIDs = _allPlayersUIDs - _excludedUIDs; +TRACE_1("EligiblePlayersUIDs: %1", _eligiblePlayersUIDs); +private _eligiblePlayers = _allPlayers apply { + if (getPlayerUID _x in _eligiblePlayersUIDs) then { + _x + } else { + nil + } +}; +_eligiblePlayers = _eligiblePlayers arrayIntersect _eligiblePlayers; +TRACE_1("EligiblePlayers: %1", _eligiblePlayers); + +// Clear cache if not enough players +if (count _eligiblePlayers < _desiredNumber) then { + _excludedUIDs = []; + _eligiblePlayers = _allPlayers; +}; + +private _selectedPlayers = []; + +[QGVAR(showSystemMessage), ["Selecting players"]] call CBA_fnc_localEvent; +while {count _selectedPlayers < _desiredNumber && {!(_eligiblePlayers isEqualTo [])}} do { + private _unit = [_eligiblePlayers] call FUNC(deleteAtRandom); + TRACE_2("Selected: %1 | %2", _unit, name _unit); + _selectedPlayers pushBack _unit; + [QGVAR(playerInitialize), [EAST], _unit] call CBA_fnc_targetEvent; +}; + +[QGVAR(showSystemMessage), [format ["Selected players: %1", str _selectedPlayers]]] call CBA_fnc_localEvent; +_excludedUIDs append (_selectedPlayers apply {getPlayerUID _x}); +profileNamespace setVariable [QGVAR(beenOpfor), _excludedUIDs]; +saveProfileNamespace; + +_selectedPlayers \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_spawnPlaneAirborne.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_spawnPlaneAirborne.sqf new file mode 100644 index 0000000..6297b8a --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_spawnPlaneAirborne.sqf @@ -0,0 +1,27 @@ +#include "script_component.hpp" +/* + * Author: Krystol, 3Mydlo3 + * Does something important + * + * Example: + * call afp_scripts_fnc_spawnPlaneAirborne + * + * Public: No + */ + +#define DEFAULT_HEIGHT 500 + +params ["_planeClassname", "_initialPosition"]; + +if (count _initialPosition isEqualTo 2) then { + _initialPosition append [DEFAULT_HEIGHT]; +}; + +if (_initialPosition isEqualType "") then { + _initialPosition = getMarkerPos _initialPosition; +}; + +private _vehicle = createVehicle [_planeClassname, _initialPosition, [], 0, "FLY"]; +createVehicleCrew _vehicle; + +_vehicle \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_tasksClientEvents.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_tasksClientEvents.sqf new file mode 100644 index 0000000..e6587cc --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_tasksClientEvents.sqf @@ -0,0 +1,12 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Initializes all tasks serverside events + * + * Example: + * call afp_scripts_fnc_tasksServerEvents + * + * Public: No + */ + +if (!hasInterface) exitWith {}; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_tasksServerEvents.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_tasksServerEvents.sqf new file mode 100644 index 0000000..95ad1c1 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_tasksServerEvents.sqf @@ -0,0 +1,34 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Initializes all tasks serverside events + * + * Example: + * call afp_scripts_fnc_tasksServerEvents + * + * Public: No + */ + +if (!isServer) exitWith {}; + +// OPFOR died +[{ + allPlayers select { + side _x isEqualTo EAST + && {alive _x} + } isEqualTo [] + && {!GVAR(gameEnded)} +}, { + [QGVAR(endGame), [OPFOR_DIED]] call CBA_fnc_localEvent; +}] call CBA_fnc_waitUntilAndExecute; + + +[QGVAR(endGame), { + params ["_endType"]; + switch (_endType) do { + case OPFOR_DIED: { + + }; + default {}; + }; +}] call CBA_fnc_addEventHandler; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/player/fn_playerActions.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/player/fn_playerActions.sqf new file mode 100644 index 0000000..5653c3e --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/player/fn_playerActions.sqf @@ -0,0 +1,17 @@ +/* + AF_fnc_playerActions + + Description: + Dodanie akcji do zmiany odległości widzenia oraz nazw drużyn + + Parameter(s): + NOTHING + + Returns: + NOTHING +*/ + +player addAction ["Ustaw odległość widzenia", {call AF_fnc_viewDistanceGUI}, nil, -10, false, true, "", "", 50]; +if (rank player == "COLONEL") then { + player addAction ["Zmień nazwy drużyn", {call AF_fnc_groupRenameGUI}, nil, -10, false, true, "", "", 50]; +}; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/script_component.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/script_component.hpp new file mode 100644 index 0000000..4e2d473 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/script_component.hpp @@ -0,0 +1 @@ +#include "..\script_component.hpp" \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/defines.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/defines.hpp new file mode 100644 index 0000000..e40a11b --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/defines.hpp @@ -0,0 +1,1567 @@ +/////////////////////////////////////////////////////////////////////////// +/// Styles +/////////////////////////////////////////////////////////////////////////// + +// Control types +#define CT_STATIC 0 +#define CT_BUTTON 1 +#define CT_EDIT 2 +#define CT_SLIDER 3 +#define CT_COMBO 4 +#define CT_LISTBOX 5 +#define CT_TOOLBOX 6 +#define CT_CHECKBOXES 7 +#define CT_PROGRESS 8 +#define CT_HTML 9 +#define CT_STATIC_SKEW 10 +#define CT_ACTIVETEXT 11 +#define CT_TREE 12 +#define CT_STRUCTURED_TEXT 13 +#define CT_CONTEXT_MENU 14 +#define CT_CONTROLS_GROUP 15 +#define CT_SHORTCUTBUTTON 16 +#define CT_XKEYDESC 40 +#define CT_XBUTTON 41 +#define CT_XLISTBOX 42 +#define CT_XSLIDER 43 +#define CT_XCOMBO 44 +#define CT_ANIMATED_TEXTURE 45 +#define CT_OBJECT 80 +#define CT_OBJECT_ZOOM 81 +#define CT_OBJECT_CONTAINER 82 +#define CT_OBJECT_CONT_ANIM 83 +#define CT_LINEBREAK 98 +#define CT_USER 99 +#define CT_MAP 100 +#define CT_MAP_MAIN 101 +#define CT_LISTNBOX 102 + +// Static styles +#define ST_POS 0x0F +#define ST_HPOS 0x03 +#define ST_VPOS 0x0C +#define ST_LEFT 0x00 +#define ST_RIGHT 0x01 +#define ST_CENTER 0x02 +#define ST_DOWN 0x04 +#define ST_UP 0x08 +#define ST_VCENTER 0x0C + +#define ST_TYPE 0xF0 +#define ST_SINGLE 0x00 +#define ST_MULTI 0x10 +#define ST_TITLE_BAR 0x20 +#define ST_PICTURE 0x30 +#define ST_FRAME 0x40 +#define ST_BACKGROUND 0x50 +#define ST_GROUP_BOX 0x60 +#define ST_GROUP_BOX2 0x70 +#define ST_TILE_PICTURE 0x90 +#define ST_WITH_RECT 0xA0 +#define ST_LINE 0xB0 + +#define ST_SHADOW 0x100 +#define ST_NO_RECT 0x200 +#define ST_KEEP_ASPECT_RATIO 0x800 + +#define ST_TITLE ST_TITLE_BAR + ST_CENTER + +// Slider styles +#define SL_DIR 0x400 +#define SL_VERT 0 +#define SL_HORZ 0x400 + +#define SL_TEXTURES 0x10 + +// progress bar +#define ST_VERTICAL 0x01 +#define ST_HORIZONTAL 0 + +// Listbox styles +#define LB_TEXTURES 0x10 +#define LB_MULTI 0x20 + +// Tree styles +#define TR_SHOWROOT 1 +#define TR_AUTOCOLLAPSE 2 + +// MessageBox styles +#define MB_BUTTON_OK 1 +#define MB_BUTTON_CANCEL 2 +#define MB_BUTTON_USER 4 +#define MBG_WOO_FONT_SIZE 0.018 * safezoneH + +/////////////////////////////////////////////////////////////////////////// +/// Base Classes +/////////////////////////////////////////////////////////////////////////// + +class RscText +{ + access = 0; + type = 0; + idc = -1; + colorBackground[] = + { + 0, + 0, + 0, + 0 + }; + colorText[] = + { + 1, + 1, + 1, + 1 + }; + text = ""; + fixedWidth = 0; + x = 0; + y = 0; + h = 0.037; + w = 0.3; + style = 0; + shadow = 1; + colorShadow[] = + { + 0, + 0, + 0, + 0.5 + }; + font = "RobotoCondensed"; + SizeEx = MBG_WOO_FONT_SIZE; + linespacing = 1; + tooltipColorText[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorBox[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorShade[] = + { + 0, + 0, + 0, + 0.65 + }; +}; +class RscStructuredText +{ + access = 0; + type = 13; + idc = -1; + style = 0; + colorText[] = + { + 1, + 1, + 1, + 1 + }; + class Attributes + { + font = "RobotoCondensed"; + color = "#ffffff"; + align = "left"; + shadow = 1; + }; + x = 0; + y = 0; + h = 0.035; + w = 0.1; + text = ""; + size = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)"; + shadow = 1; +}; +class RscPicture +{ + access = 0; + type = 0; + idc = -1; + style = 48; + colorBackground[] = + { + 0, + 0, + 0, + 0 + }; + colorText[] = + { + 1, + 1, + 1, + 1 + }; + font = "RobotoCondensed"; + sizeEx = MBG_WOO_FONT_SIZE; + lineSpacing = 0; + text = ""; + fixedWidth = 0; + shadow = 0; + x = 0; + y = 0; + w = 0.2; + h = 0.15; + tooltipColorText[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorBox[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorShade[] = + { + 0, + 0, + 0, + 0.65 + }; +}; +class RscEdit +{ + access = 0; + type = 2; + x = 0; + y = 0; + h = 0.04; + w = 0.2; + colorBackground[] = + { + 0, + 0, + 0, + 1 + }; + colorText[] = + { + 0.95, + 0.95, + 0.95, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.25 + }; + colorSelection[] = + { + "(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])", + "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])", + "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])", + 1 + }; + autocomplete = ""; + text = ""; + size = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)"; + style = "0x00 + 0x40"; + font = "RobotoCondensed"; + shadow = 2; + sizeEx = MBG_WOO_FONT_SIZE; + canModify = 1; + tooltipColorText[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorBox[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorShade[] = + { + 0, + 0, + 0, + 0.65 + }; +}; +class RscCombo +{ + access = 0; + type = 4; + colorSelect[] = + { + 0, + 0, + 0, + 1 + }; + colorText[] = + { + 1, + 1, + 1, + 1 + }; + colorBackground[] = + { + 0, + 0, + 0, + 1 + }; + colorScrollbar[] = + { + 1, + 0, + 0, + 1 + }; + soundSelect[] = + { + "\A3\ui_f\data\sound\RscCombo\soundSelect", + 0.1, + 1 + }; + soundExpand[] = + { + "\A3\ui_f\data\sound\RscCombo\soundExpand", + 0.1, + 1 + }; + soundCollapse[] = + { + "\A3\ui_f\data\sound\RscCombo\soundCollapse", + 0.1, + 1 + }; + maxHistoryDelay = 1; + class VScrollbar + { + width = 0.021; + autoScrollSpeed = -1; + autoScrollDelay = 5; + autoScrollRewind = 0; + color[] = + { + 1, + 1, + 1, + 0.6 + }; + colorActive[] = + { + 1, + 1, + 1, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.3 + }; + shadow = 0; + thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa"; + arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa"; + arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa"; + border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa"; + }; + + class HScrollbar + { + height = 0.028; + color[] = + { + 1, + 1, + 1, + 0.6 + }; + colorActive[] = + { + 1, + 1, + 1, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.3 + }; + shadow = 0; + thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa"; + arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa"; + arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa"; + border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa"; + }; + class ScrollBar + { + color[] = + { + 1, + 1, + 1, + 0.6 + }; + colorActive[] = + { + 1, + 1, + 1, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.3 + }; + shadow = 0; + thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa"; + arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa"; + arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa"; + border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa"; + }; + style = "0x10 + 0x200"; + x = 0; + y = 0; + w = 0.12; + h = 0.035; + shadow = 0; + colorSelectBackground[] = + { + 1, + 1, + 1, + 0.7 + }; + arrowEmpty = "\A3\ui_f\data\GUI\RscCommon\rsccombo\arrow_combo_ca.paa"; + arrowFull = "\A3\ui_f\data\GUI\RscCommon\rsccombo\arrow_combo_active_ca.paa"; + wholeHeight = 0.45; + color[] = + { + 1, + 1, + 1, + 1 + }; + colorActive[] = + { + 1, + 0, + 0, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.25 + }; + font = "RobotoCondensed"; + sizeEx = MBG_WOO_FONT_SIZE; + tooltipColorText[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorBox[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorShade[] = + { + 0, + 0, + 0, + 0.65 + }; +}; +class RscListBox +{ + access = 0; + type = 5; + w = 0.4; + h = 0.4; + rowHeight = 0; + class ListScrollBar + { + color[] = + { + 1, + 1, + 1, + 0.6 + }; + colorActive[] = + { + 1, + 1, + 1, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.3 + }; + shadow = 0; + thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa"; + arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa"; + arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa"; + border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa"; + }; + class ScrollBar + { + color[] = + { + 1, + 1, + 1, + 0.6 + }; + colorActive[] = + { + 1, + 1, + 1, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.3 + }; + shadow = 0; + thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa"; + arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa"; + arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa"; + border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa"; + }; + colorText[] = + { + 1, + 1, + 1, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.25 + }; + colorScrollbar[] = + { + 1, + 0, + 0, + 0 + }; + colorSelect[] = + { + 0, + 0, + 0, + 1 + }; + colorSelect2[] = + { + 0, + 0, + 0, + 1 + }; + colorSelectBackground[] = + { + 0.95, + 0.95, + 0.95, + 1 + }; + colorSelectBackground2[] = + { + 1, + 1, + 1, + 0.5 + }; + colorBackground[] = + { + 0, + 0, + 0, + 0.3 + }; + soundSelect[] = + { + "\A3\ui_f\data\sound\RscListbox\soundSelect", + 0.09, + 1 + }; + arrowEmpty = "#(argb,8,8,3)color(1,1,1,1)"; + arrowFull = "#(argb,8,8,3)color(1,1,1,1)"; + + style = 16; + font = "RobotoCondensed"; + sizeEx = MBG_WOO_FONT_SIZE; + shadow = 0; + colorShadow[] = + { + 0, + 0, + 0, + 0.5 + }; + color[] = + { + 1, + 1, + 1, + 1 + }; + period = 1.2; + maxHistoryDelay = 1; + autoScrollSpeed = -1; + autoScrollDelay = 5; + autoScrollRewind = 0; + tooltipColorText[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorBox[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorShade[] = + { + 0, + 0, + 0, + 0.65 + }; +}; +class RscButton +{ + access = 0; + type = 1; + text = ""; + colorText[] = + { + 1, + 1, + 1, + 1 + }; + colorDisabled[] = + { + 0.4, + 0.4, + 0.4, + 1 + }; + colorBackground[] = + { + "(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])", + "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])", + "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])", + 0.7 + }; + colorBackgroundDisabled[] = + { + 0.95, + 0.95, + 0.95, + 1 + }; + colorBackgroundActive[] = + { + "(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])", + "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])", + "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])", + 1 + }; + colorFocused[] = + { + "(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])", + "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])", + "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])", + 1 + }; + colorShadow[] = + { + 0, + 0, + 0, + 1 + }; + colorBorder[] = + { + 0, + 0, + 0, + 1 + }; + soundEnter[] = + { + "\A3\ui_f\data\sound\RscButton\soundEnter", + 0.09, + 1 + }; + soundPush[] = + { + "\A3\ui_f\data\sound\RscButton\soundPush", + 0.09, + 1 + }; + soundClick[] = + { + "\A3\ui_f\data\sound\RscButton\soundClick", + 0.09, + 1 + }; + soundEscape[] = + { + "\A3\ui_f\data\sound\RscButton\soundEscape", + 0.09, + 1 + }; + style = 2; + x = 0; + y = 0; + w = 0.095589; + h = 0.039216; + shadow = 2; + font = "RobotoCondensed"; + sizeEx = MBG_WOO_FONT_SIZE; + offsetX = 0.003; + offsetY = 0.003; + offsetPressedX = 0.002; + offsetPressedY = 0.002; + borderSize = 0; +}; +class RscShortcutButton +{ + deletable = 0; + fade = 0; + type = 16; + x = 0.1; + y = 0.1; + class HitZone + { + left = 0; + top = 0; + right = 0; + bottom = 0; + }; + class ShortcutPos + { + left = 0; + top = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 20) - (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)) / 2"; + w = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1) * (3/4)"; + h = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)"; + }; + class TextPos + { + left = 0; + top = 0; + right = 0; + bottom = 0; + }; + shortcuts[] = + { + }; + textureNoShortcut = "#(argb,8,8,3)color(0,0,0,0)"; + color[] = + { + 1, + 1, + 1, + 1 + }; + colorFocused[] = + { + 1, + 1, + 1, + 1 + }; + color2[] = + { + 0.95, + 0.95, + 0.95, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.25 + }; + colorBackground[] = + { + "(profilenamespace getvariable ['GUI_BCG_RGB_R',0.77])", + "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.51])", + "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.08])", + 1 + }; + colorBackgroundFocused[] = + { + "(profilenamespace getvariable ['GUI_BCG_RGB_R',0.77])", + "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.51])", + "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.08])", + 1 + }; + colorBackground2[] = + { + 1, + 1, + 1, + 1 + }; + soundEnter[] = + { + "\A3\ui_f\data\sound\RscButton\soundEnter", + 0.09, + 1 + }; + soundPush[] = + { + "\A3\ui_f\data\sound\RscButton\soundPush", + 0.09, + 1 + }; + soundClick[] = + { + "\A3\ui_f\data\sound\RscButton\soundClick", + 0.09, + 1 + }; + soundEscape[] = + { + "\A3\ui_f\data\sound\RscButton\soundEscape", + 0.09, + 1 + }; + class Attributes + { + font = "RobotoCondensed"; + color = "#E5E5E5"; + align = "center"; + shadow = "true"; + }; + idc = -1; + style = 0; + default = 0; + shadow = 1; + w = 0.183825; + h = "((((safezoneW / safezoneH) min 1.2) / 1.2) / 20)"; + textSecondary = ""; + colorSecondary[] = + { + 1, + 1, + 1, + 1 + }; + colorFocusedSecondary[] = + { + 1, + 1, + 1, + 1 + }; + color2Secondary[] = + { + 0.95, + 0.95, + 0.95, + 1 + }; + colorDisabledSecondary[] = + { + 1, + 1, + 1, + 0.25 + }; + sizeExSecondary = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)"; + fontSecondary = "RobotoCondensed"; + animTextureDefault = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\normal_ca.paa"; + animTextureNormal = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\normal_ca.paa"; + animTextureDisabled = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\normal_ca.paa"; + animTextureOver = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\over_ca.paa"; + animTextureFocused = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\focus_ca.paa"; + animTexturePressed = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButton\down_ca.paa"; + periodFocus = 1.2; + periodOver = 0.8; + period = 0.4; + font = "RobotoCondensed"; + size = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)"; + sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)"; + text = ""; + action = ""; + class AttributesImage + { + font = "RobotoCondensed"; + color = "#E5E5E5"; + align = "center"; + }; +}; +class RscShortcutButtonMain +{ + idc = -1; + style = 0; + default = 0; + w = 0.313726; + h = 0.104575; + color[] = + { + 1, + 1, + 1, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.25 + }; + class HitZone + { + left = 0; + top = 0; + right = 0; + bottom = 0; + }; + class ShortcutPos + { + left = 0.0145; + top = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 20) - (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)) / 2"; + w = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2) * (3/4)"; + h = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)"; + }; + class TextPos + { + left = "(((safezoneW / safezoneH) min 1.2) / 32) * 1.5"; + top = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 20)*2 - (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)) / 2"; + right = 0.005; + bottom = 0; + }; + animTextureNormal = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\normal_ca.paa"; + animTextureDisabled = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\disabled_ca.paa"; + animTextureOver = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\over_ca.paa"; + animTextureFocused = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\focus_ca.paa"; + animTexturePressed = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\down_ca.paa"; + animTextureDefault = "\A3\ui_f\data\GUI\RscCommon\RscShortcutButtonMain\normal_ca.paa"; + period = 0.5; + font = "RobotoCondensed"; + size = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)"; + sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)"; + text = ""; + action = ""; + class Attributes + { + font = "RobotoCondensed"; + color = "#E5E5E5"; + align = "left"; + shadow = "false"; + }; + class AttributesImage + { + font = "RobotoCondensed"; + color = "#E5E5E5"; + align = "false"; + }; +}; +class RscFrame +{ + type = 0; + idc = -1; + style = 64; + shadow = 2; + colorBackground[] = + { + 0, + 0, + 0, + 0 + }; + colorText[] = + { + 1, + 1, + 1, + 1 + }; + font = "RobotoCondensed"; + sizeEx = MBG_WOO_FONT_SIZE; + text = ""; +}; +class RscSlider +{ + + style = "0x400 + 0x10"; + + type = 43; // this is the more "modern" slider. Type = 3 is the old dull one. + + shadow = 0; + + color[] = {1,1,1,0.4}; + + colorActive[] = {1,1,1,1}; + + colorDisabled[] = {0.5,0.5,0.5,0.2}; + + arrowEmpty = "\A3\ui_f\data\gui\cfg\slider\arrowEmpty_ca.paa"; + + arrowFull = "\A3\ui_f\data\gui\cfg\slider\arrowFull_ca.paa"; + + border = "\A3\ui_f\data\gui\cfg\slider\border_ca.paa"; + + thumb = "\A3\ui_f\data\gui\cfg\slider\thumb_ca.paa"; + +}; +/* +class RscSlider +{ + access = 0; + type = 3; + style = 1024; + w = 0.3; + color[] = + { + 1, + 1, + 1, + 0.8 + }; + colorActive[] = + { + 1, + 1, + 1, + 1 + }; + shadow = 0; + h = 0.025; +}; +*/ +class IGUIBack +{ + type = 0; + idc = 124; + style = 128; + text = ""; + colorText[] = + { + 0, + 0, + 0, + 0 + }; + font = "RobotoCondensed"; + sizeEx = MBG_WOO_FONT_SIZE; + shadow = 0; + x = 0.1; + y = 0.1; + w = 0.1; + h = 0.1; + colorbackground[] = + { + "(profilenamespace getvariable ['IGUI_BCG_RGB_R',0])", + "(profilenamespace getvariable ['IGUI_BCG_RGB_G',1])", + "(profilenamespace getvariable ['IGUI_BCG_RGB_B',1])", + "(profilenamespace getvariable ['IGUI_BCG_RGB_A',0.8])" + }; +}; +class RscCheckbox +{ + idc = -1; + type = 7; + style = 0; + x = "LINE_X(XVAL)"; + y = "LINE_Y"; + w = "LINE_W(WVAL)"; + h = 0.029412; + colorText[] = + { + 1, + 0, + 0, + 1 + }; + color[] = + { + 0, + 0, + 0, + 0 + }; + colorBackground[] = + { + 0, + 0, + 1, + 1 + }; + colorTextSelect[] = + { + 0, + 0.8, + 0, + 1 + }; + colorSelectedBg[] = + { + "(profilenamespace getvariable ['GUI_BCG_RGB_R',0.69])", + "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.75])", + "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.5])", + 1 + }; + colorSelect[] = + { + 0, + 0, + 0, + 1 + }; + colorTextDisable[] = + { + 0.4, + 0.4, + 0.4, + 1 + }; + colorDisable[] = + { + 0.4, + 0.4, + 0.4, + 1 + }; + tooltipColorText[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorBox[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorShade[] = + { + 0, + 0, + 0, + 0.65 + }; + font = "RobotoCondensed"; + sizeEx = MBG_WOO_FONT_SIZE; + rows = 1; + columns = 1; + strings[] = + { + "UNCHECKED" + }; + checked_strings[] = + { + "CHECKED" + }; +}; +class RscButtonMenu +{ + idc = -1; + type = 16; + style = "0x02 + 0xC0"; + default = 0; + shadow = 0; + x = 0; + y = 0; + w = 0.095589; + h = 0.039216; + animTextureNormal = "#(argb,8,8,3)color(1,1,1,1)"; + animTextureDisabled = "#(argb,8,8,3)color(1,1,1,1)"; + animTextureOver = "#(argb,8,8,3)color(1,1,1,0.5)"; + animTextureFocused = "#(argb,8,8,3)color(1,1,1,1)"; + animTexturePressed = "#(argb,8,8,3)color(1,1,1,1)"; + animTextureDefault = "#(argb,8,8,3)color(1,1,1,1)"; + colorBackground[] = + { + 0, + 0, + 0, + 0.8 + }; + colorBackground2[] = + { + 1, + 1, + 1, + 0.5 + }; + color[] = + { + 1, + 1, + 1, + 1 + }; + color2[] = + { + 1, + 1, + 1, + 1 + }; + colorText[] = + { + 1, + 1, + 1, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.25 + }; + period = 1.2; + periodFocus = 1.2; + periodOver = 1.2; + size = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)"; + sizeEx = MBG_WOO_FONT_SIZE; + tooltipColorText[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorBox[] = + { + 1, + 1, + 1, + 1 + }; + tooltipColorShade[] = + { + 0, + 0, + 0, + 0.65 + }; + class TextPos + { + left = "0.25 * (((safezoneW / safezoneH) min 1.2) / 40)"; + top = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) - (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)) / 2"; + right = 0.005; + bottom = 0; + }; + class Attributes + { + font = "RobotoCondensed"; + color = "#E5E5E5"; + align = "left"; + shadow = "false"; + }; + class ShortcutPos + { + left = "(6.25 * (((safezoneW / safezoneH) min 1.2) / 40)) - 0.0225 - 0.005"; + top = 0.005; + w = 0.0225; + h = 0.03; + }; + soundEnter[] = + { + "\A3\ui_f\data\sound\RscButtonMenu\soundEnter", + 0.09, + 1 + }; + soundPush[] = + { + "\A3\ui_f\data\sound\RscButtonMenu\soundPush", + 0.09, + 1 + }; + soundClick[] = + { + "\A3\ui_f\data\sound\RscButtonMenu\soundClick", + 0.09, + 1 + }; + soundEscape[] = + { + "\A3\ui_f\data\sound\RscButtonMenu\soundEscape", + 0.09, + 1 + }; +}; +class RscButtonMenuOK +{ + idc = 1; + shortcuts[] = + { + "0x00050000 + 0", + 28, + 57, + 156 + }; + default = 1; + text = "OK"; + soundPush[] = + { + "\A3\ui_f\data\sound\RscButtonMenuOK\soundPush", + 0.09, + 1 + }; +}; +class RscButtonMenuCancel +{ + idc = 2; + shortcuts[] = + { + "0x00050000 + 1" + }; + text = "Cancel"; +}; +class RscControlsGroup +{ + class VScrollbar + { + color[] = + { + 1, + 1, + 1, + 1 + }; + width = 0.021; + autoScrollSpeed = -1; + autoScrollDelay = 5; + autoScrollRewind = 0; + shadow = 0; + }; + class HScrollbar + { + color[] = + { + 1, + 1, + 1, + 1 + }; + height = 0.028; + shadow = 0; + }; + class ScrollBar + { + color[] = + { + 1, + 1, + 1, + 0.6 + }; + colorActive[] = + { + 1, + 1, + 1, + 1 + }; + colorDisabled[] = + { + 1, + 1, + 1, + 0.3 + }; + shadow = 0; + thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa"; + arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa"; + arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa"; + border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa"; + }; + class Controls + { + }; + type = 15; + idc = -1; + x = 0; + y = 0; + w = 1; + h = 1; + shadow = 0; + style = 16; +}; +class RscTreeScrollBar +{ + + idc = -1; + color[] = {1,1,1,0.6}; + colorActive[] = {1,1,1,1}; + colorDisabled[] = {1,1,1,0.3}; + thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa"; + arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa"; + arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa"; + border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa"; + shadow = 0; + scrollSpeed = 0.06; + width = 0; + height = 0; + autoScrollEnabled = 0; + autoScrollSpeed = -1; + autoScrollDelay = 5; + autoScrollRewind = 0; +}; +class RscTree +{ + idc = -1; + type = 12; + style = 0; + font = "RobotoCondensed"; + sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)"; + expandedTexture = "A3\ui_f\data\gui\rsccommon\rsctree\expandedTexture_ca.paa"; + hiddenTexture = "A3\ui_f\data\gui\rsccommon\rsctree\hiddenTexture_ca.paa"; + x = 0; + y = 0; + w = 0.1; + h = 0.2; + rowHeight = 0.0439091; + colorText[] = {1,1,1,1.0}; + colorSelect[] = {1,1,1,0.7}; + colorSelectText[] = {0,0,0,1}; + colorBackground[] = {0,0,0,0}; + colorSelectBackground[] = {0,0,0,0.5}; + colorBorder[] = {0,0,0,0}; + colorPicture[] = {1,1,1,1}; + colorPictureSelected[] = {1,1,1,1}; + colorPictureDisabled[] = {1,1,1,1}; + colorPictureRight[] = {1,1,1,1}; + colorPictureRightDisabled[] = {1,1,1,0.25}; + colorPictureRightSelected[] = {0,0,0,1}; + colorDisabled[] = {1,1,1,0.25}; + borderSize = 0; + expandOnDoubleclick = 1; + maxHistoryDelay = 1; + colorArrow[] = {0,0,0,0}; + colorMarked[] = {1,0.5,0,0.5}; + colorMarkedText[] = {1,1,1,1}; + colorMarkedSelected[] = {1,0.5,0,1}; + onTreeSelChanged = ""; + onTreeLButtonDown = ""; + onTreeDblClick = ""; + onTreeExpanded = ""; + onTreeCollapsed = ""; + onTreeMouseMove = ""; + onTreeMouseHold = ""; + onTreeMouseExit = ""; + class ScrollBar: RscTreeScrollBar{}; +}; +class RscObject +{ + access = 0; + idc = -1; + type = 81; + style = 0x00; + blinkingPeriod = 0; + model = "\a3\Ui_f\objects\Compass.p3d"; + scale = 0.5; + x = 0; + y = 0; + z = 1; + w = 1; + h = 1; + + xBack = 0; + yBack = 0; + zBack = 1; + enableZoom = 0; + zoomDuration = 0; + inBack = 0; + direction[] = {0,0,1}; + up[] = {0,1,0}; + tooltip = ""; + tooltipColorShade[] = {0,0,0,1}; + tooltipColorText[] = {1,1,1,1}; + tooltipColorBox[] = {1,1,1,1}; + onMouseMoving = ""; + onMouseHolding = ""; + onMouseDown = ""; + +}; +class RscActiveText +{ + idc = -1; + type = CT_ACTIVETEXT; + style = ST_PICTURE; + x = 0.75; + y = 0.5; + w = 0.2; + h = 0.035; + font = RobotoCondensed; + sizeEx = 0.024; + color[] = { 1, 1, 1, 1 }; + colorActive[] = { 1, 1, 1, 1 }; + colorDisabled[] = {1,1,1,1}; + soundEnter[] = { "", 0, 1 }; // no sound + soundPush[] = { "A3\missions_f\data\sounds\click.wss", 0, 1 }; + soundClick[] = { "", 0, 1 }; + soundEscape[] = { "", 0, 1 }; + action = "hint ""Good choice!"""; + tooltip = ""; + text = ""; + default = true; +}; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_groupRename.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_groupRename.hpp new file mode 100644 index 0000000..876b75c --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_groupRename.hpp @@ -0,0 +1,61 @@ +class AF_dlg_groupRename { + idd = 9991; + movingenable = false; + + class controls { + //////////////////////////////////////////////////////// + // GUI EDITOR OUTPUT START (by Martin, v1.063, #Nodywu) + //////////////////////////////////////////////////////// + class GridB3: RscFrame { + idc = 121; + x = 0.296635 * safezoneW + safezoneX; + y = 0.219938 * safezoneH + safezoneY; + w = 0.4125 * safezoneW; + h = 0.55 * safezoneH; + }; + class Closebutton3: RscButton { + idc = 122; + text = $STR_ArmaForces_Preset_Dialog_Close; + x = 0.592812 * safezoneW + safezoneX; + y = 0.599 * safezoneH + safezoneY; + w = 0.103125 * safezoneW; + h = 0.154 * safezoneH; + action = "closeDialog 0"; + }; + class groupList_1: RscListbox { + idc = 123; + x = 0.304062 * safezoneW + safezoneX; + y = 0.247 * safezoneH + safezoneY; + w = 0.190781 * safezoneW; + h = 0.33 * safezoneH; + onLBSelChanged = "[lbCurSel 123] call AF_fnc_groupRenameList"; + }; + class b_tyegrouptext1: RscEdit { + idc = 124; + x = 0.309755 * safezoneW + safezoneX; + y = 0.598022 * safezoneH + safezoneY; + w = 0.190245 * safezoneW; + h = 0.0560125 * safezoneH; + }; + class RscButton_1600: RscButton { + idc = 125; + text = $STR_ArmaForces_Preset_Dialog_GroupRename_Rename; + x = 0.329436 * safezoneW + safezoneX; + y = 0.668037 * safezoneH + safezoneY; + w = 0.144324 * safezoneW; + h = 0.0840187 * safezoneH; + action = "(wgroups select (lbCurSel 123)) setGroupIdGlobal [ctrlText 124];[lbCurSel 123] call AF_fnc_groupRenameList;"; + soundSelect[] = {"\A3\ui_f\data\sound\RscListbox\soundSelect", 0.09, 1}; + }; + class listplayername: RscListbox { + idc = 126; + x = 0.5 * safezoneW + safezoneX; + y = 0.247 * safezoneH + safezoneY; + w = 0.190781 * safezoneW; + h = 0.33 * safezoneH; + }; + //////////////////////////////////////////////////////// + // GUI EDITOR OUTPUT END + //////////////////////////////////////////////////////// + }; +}; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_init.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_init.hpp new file mode 100644 index 0000000..b340178 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_init.hpp @@ -0,0 +1,3 @@ +#include "defines.hpp" +#include "gui_viewDistance.hpp" +#include "gui_groupRename.hpp" \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_viewDistance.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_viewDistance.hpp new file mode 100644 index 0000000..a4d710a --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/gui/gui_viewDistance.hpp @@ -0,0 +1,135 @@ +class AF_dlg_viewDistance { + idd = 10; + movingenable = false; + + class controls { + //////////////////////////////////////////////////////// + // GUI EDITOR OUTPUT START (by Madin, v1.063, #Migofo) + //////////////////////////////////////////////////////// + class RscFrame_1800: RscFrame { + idc = 300; + x = 0.293749 * safezoneW + safezoneX; + y = 0.313 * safezoneH + safezoneY; + w = 0.4125 * safezoneW; + h = 0.33 * safezoneH; + }; + class RscButton_1601: RscButton { + idc = 301; + text = "500 m"; + x = 0.304062 * safezoneW + safezoneX; + y = 0.335 * safezoneH + safezoneY; + w = 0.061875 * safezoneW; + h = 0.066 * safezoneH; + action = "[500] call AF_fnc_setViewDistance"; + }; + class 750m: RscButton { + idc = 302; + text = "750 m"; + x = 0.386562 * safezoneW + safezoneX; + y = 0.335 * safezoneH + safezoneY; + w = 0.061875 * safezoneW; + h = 0.066 * safezoneH; + action = "[750] call AF_fnc_setViewDistance"; + }; + class 1000m: RscButton { + idc = 303; + text = "1000 m"; + x = 0.469062 * safezoneW + safezoneX; + y = 0.335 * safezoneH + safezoneY; + w = 0.061875 * safezoneW; + h = 0.066 * safezoneH; + action = "[1000] call AF_fnc_setViewDistance"; + }; + class 1250m: RscButton { + idc = 304; + text = "1250 m"; + x = 0.551562 * safezoneW + safezoneX; + y = 0.335 * safezoneH + safezoneY; + w = 0.061875 * safezoneW; + h = 0.066 * safezoneH; + action = "[1250] call AF_fnc_setViewDistance"; + }; + class 1500m: RscButton { + idc = 305; + text = "1500 m"; + x = 0.634062 * safezoneW + safezoneX; + y = 0.335 * safezoneH + safezoneY; + w = 0.061875 * safezoneW; + h = 0.066 * safezoneH; + action = "[1500] call AF_fnc_setViewDistance"; + }; + class 2000m: RscButton { + idc = 306; + text = "2000 m"; + x = 0.304062 * safezoneW + safezoneX; + y = 0.423 * safezoneH + safezoneY; + w = 0.061875 * safezoneW; + h = 0.066 * safezoneH; + action = "[2000] call AF_fnc_setViewDistance"; + }; + class 3000m: RscButton { + idc = 307; + text = "3000 m"; + x = 0.386562 * safezoneW + safezoneX; + y = 0.423 * safezoneH + safezoneY; + w = 0.061875 * safezoneW; + h = 0.066 * safezoneH; + action = "[3000] call AF_fnc_setViewDistance"; + }; + class 5000m: RscButton { + idc = 308; + text = "5000 m"; + x = 0.469062 * safezoneW + safezoneX; + y = 0.423 * safezoneH + safezoneY; + w = 0.061875 * safezoneW; + h = 0.066 * safezoneH; + action = "[5000] call AF_fnc_setViewDistance"; + }; + class 7500m: RscButton { + idc = 309; + text = "7500 m"; + x = 0.551562 * safezoneW + safezoneX; + y = 0.423 * safezoneH + safezoneY; + w = 0.061875 * safezoneW; + h = 0.066 * safezoneH; + action = "[7500] call AF_fnc_setViewDistance"; + }; + class 10000m: RscButton { + idc = 310; + text = "10000 m"; + x = 0.634062 * safezoneW + safezoneX; + y = 0.423 * safezoneH + safezoneY; + w = 0.061875 * safezoneW; + h = 0.066 * safezoneH; + action = "[10000] call AF_fnc_setViewDistance"; + }; + class RscEdit_1400: RscEdit { + idc = 311; + x = 0.45875 * safezoneW + safezoneX; + y = 0.511 * safezoneH + safezoneY; + w = 0.0825 * safezoneW; + h = 0.044 * safezoneH; + }; + class buttonaccept_gui: RscButton { + idc = 312; + text = $STR_ArmaForces_Preset_Dialog_ViewDistance_Custom; + x = 0.45875 * safezoneW + safezoneX; + y = 0.577 * safezoneH + safezoneY; + w = 0.0825 * safezoneW; + h = 0.044 * safezoneH; + action = "[parseNumber (ctrlText 311)] call AF_fnc_setViewDistance"; + }; + class close_settings: RscButton { + idc = 313; + text = $STR_ArmaForces_Preset_Dialog_Close; + x = 0.613437 * safezoneW + safezoneX; + y = 0.533 * safezoneH + safezoneY; + w = 0.0825 * safezoneW; + h = 0.088 * safezoneH; + action = "closeDialog 0"; + }; + //////////////////////////////////////////////////////// + // GUI EDITOR OUTPUT END + //////////////////////////////////////////////////////// + }; +}; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/init.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/init.sqf new file mode 100644 index 0000000..8cea7f7 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/init.sqf @@ -0,0 +1,10 @@ +#include "script_component.hpp" + +minviewdistance = 500; +maxviewdistance = 10000; + +// Prepare all location types for getNearestLocation function +GVAR(allLocationTypes) = ("true" configClasses (configFile >> "CfgLocationTypes")) apply {configName _x}; + +// Location names cache namespace (to prevent reading from config every time) +GVAR(locationNames) = call CBA_fnc_createNamespace; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initPlayerLocal.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initPlayerLocal.sqf new file mode 100644 index 0000000..a0e38a0 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initPlayerLocal.sqf @@ -0,0 +1,118 @@ +#include "script_component.hpp" + +// Disable CUP street lights based on lighting levels (bad performance script) +CUP_stopLampCheck = true; + +[] spawn { + while { alive player } do { + waitUntil { getTerrainGrid > 25 }; + setTerrainGrid 25; + }; +}; + +GVAR(startPositionsMarkers) = []; +GVAR(playerInitialized) = false; + +[QGVAR(playerInit), { + params ["_side"]; + + if (GVAR(playerInitialized)) exitWith {}; + GVAR(playerInitialized) = true; + + player addItem "ACE_EarPlugs"; + {player removeItem _x} forEach ([] call acre_api_fnc_getCurrentRadioList); + if (_side isEqualTo WEST) then { + // Do stuff for WEST if any + } else { + [player, EAST] call FUNC(changeSide); + player setPos (getMarkerPos REDFOR_SPAWN_MARKER); + player setUnitLoadout REDFOR_LOADOUT; + private _otherOpforPlayers = (GVAR(playersOpfor) - [player]) apply {name _x}; + private _msg = format ["You have been assigned as OPFOR together with %1. Good luck!", _otherOpforPlayers joinString ", "]; + [QGVAR(showSystemMessage), [_msg]] call CBA_fnc_localEvent; + }; + [QGVAR(showSystemMessage), ["Finished player initialization"]] call CBA_fnc_localEvent; +}] call CBA_fnc_addEventHandler; + +[QGVAR(showSystemMessage), { + params ["_message"]; + systemChat _message; + INFO(_message); +}] call CBA_fnc_addEventHandler; + +[QGVAR(createActions), { + if !(side player isEqualTo WEST) exitWith {}; + _this call FUNC(createActions); +}] call CBA_fnc_addEventHandler; + +[QGVAR(createTeleport), { + if !(side player isEqualTo EAST) exitWith {}; + _this call FUNC(createTeleport); +}] call CBA_fnc_addEventHandler; + +[QGVAR(assignedRole), { + // First assign is used for any reconnected handling, it should be false then to prevent items duplication + params ["_roleName", ["_firstAssign", true]]; + switch (_roleName) do { + case "HQ": { + player setRank "LIEUTENANT"; + player addAction ["Zmień nazwy drużyn", {call AF_fnc_groupRenameGUI}, nil, -10, false, true, "", "", 50]; + if (_firstAssign) then { + player addItemToUniform "ACRE_PRC152"; + private _radioIndex = items player findIf {["PRC152", _x] call BIS_fnc_inString}; + if (_radioIndex isEqualTo -1) then { + // Put radio in box + GVAR(bluforBox) addItemCargoGlobal ["ACRE_PRC152", 1]; + [QGVAR(showSystemMessage), ["Radio did not fit into your inventory. Check in weapons box."]] call CBA_fnc_localEvent; + }; + }; + }; + case "Sapper": { + player setRank "CORPORAL"; + player setUnitTrait ["engineer", true]; + player setVariable ["ACE_isEngineer", 2]; + player setUnitTrait ["explosiveSpecialist", true]; + player setVariable ["ACE_isEOD", true]; + if (_firstAssign) then { + player addBackpack "CUP_B_AlicePack_OD"; + player addItemToBackpack "ToolKit"; + player addItem "ACE_DefusalKit"; + player addItem "MineDetector"; + player addItem "ACE_EntrenchingTool"; + }; + }; + case "Medic": { + player setRank "CORPORAL"; + player setUnitTrait ["Medic", true]; + player setVariable ["ace_medical_medicClass", 2]; + }; + case "Patrol Leader": { + player setRank "SERGEANT"; + private _group = createGroup WEST; + [player] join _group; + if (_firstAssign) then { + player addItemToUniform "ACRE_PRC152"; + private _radioIndex = items player findIf {["PRC152", _x] call BIS_fnc_inString}; + if (_radioIndex isEqualTo -1) then { + // Put radio in box + GVAR(bluforBox) addItemCargoGlobal ["ACRE_PRC152", 1]; + [QGVAR(showSystemMessage), ["Radio did not fit into your inventory. Check in weapons box."]] call CBA_fnc_localEvent; + }; + }; + }; + default { + player setRank "PRIVATE"; + }; + }; + [QGVAR(showSystemMessage), [format ["Successfully assigned %1 role", _roleName]]] call CBA_fnc_localEvent; + [QGVAR(showSideChatMessage), [WEST, format ["Successfully assigned %1 as %2", name player, _roleName]]] call CBA_fnc_globalEvent; +}] call CBA_fnc_addEventHandler; + +[QGVAR(showSideChatMessage), { + params ["_side", "_msg"]; + if (!(_side isEqualTo side player)) exitWith {}; + [_side, "HQ"] sideChat _msg; +}] call CBA_fnc_addEventHandler; + +[QGVAR(showSystemMessage), ["Player ready"]] call CBA_fnc_localEvent; +[QGVAR(playerConntected), [player, getPlayerUID player]] call CBA_fnc_serverEvent; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf new file mode 100644 index 0000000..10570df --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf @@ -0,0 +1,142 @@ +#include "script_component.hpp" + +if (!isNil QUOTE(RESPAWN_HELPER_VR)) then { + createMarker ["respawn", position RESPAWN_HELPER_VR]; +}; + +// Teams randomization +GVAR(playersPresent) = playersNumber WEST; +diag_log format ["Players present var %1", GVAR(playersPresent)]; +diag_log format ["Players present val %1", playersNumber WEST]; +GVAR(serverInitialized) = false; +GVAR(playersConnected) = []; +GVAR(playersOpfor) = []; +GVAR(roles) = call CBA_fnc_createNamespace; +GVAR(availableRoles) = [ + ["HQ", 4], + ["Medic", 2], + ["Sapper", 2], + ["Patrol Leader", 4] +]; +publicVariable QGVAR(availableRoles); + +// Cities +GVAR(cities) = call FUNC(getAllMapCities); +GVAR(citiesCount) = count GVAR(cities); +GVAR(licensePlates) = call CBA_fnc_createNamespace; + +private _civilianVehicles = vehicles select { + _x isKindOf "AllVehicles" + && {getNumber (configFile >> "CfgVehicles" >> typeOf _x >> "side") isEqualTo 3} +}; + +// Randomize plates for all civilian vehicles +if (GVAR(citiesCount) > 0) then { + { + [_x] call FUNC(randomizePlates); + } forEach _civilianVehicles; +}; + +if (isDedicated) then { + [QGVAR(showSystemMessage), { + params ["_message"]; + INFO(_message); + }] call CBA_fnc_addEventHandler; +}; + +[QGVAR(assignRole), { + params ["_unit", "_roleName"]; + private _rolePlayersUIDs = GVAR(roles) getVariable [_roleName, []]; + // If unit has role assigned, just ignore unit + private _unitRole = _unit getVariable [QGVAR(role), ""]; + if (!(_unitRole isEqualTo "")) exitWith { + private _msg = format ["You already have %1 role assigned!", _unitRole]; + [QGVAR(showSystemMessage), [_msg], _unit] call CBA_fnc_targetEvent; + }; + // Reassign the same role for player + if (getPlayerUID _unit in _rolePlayersUIDs) exitWith { + _unit setVariable [QGVAR(role), _roleName]; + [QGVAR(assignedRole), [_roleName, false], _unit] call CBA_fnc_targetEvent; + }; + // Assign new role for player + private _roleIndex = GVAR(availableRoles) findIf {(_x select 0) isEqualTo _roleName}; + if (_roleIndex isEqualTo -1) exitWith { + private _msg = format ["Error finding role %1!", _roleName]; + [QGVAR(showSystemMessage), [_msg], _unit] call CBA_fnc_targetEvent; + }; + private _maxPlayers = GVAR(availableRoles) select _roleIndex select 1; + if (count _rolePlayersUIDs >= _maxPlayers) exitWith { + private _msg = format ["Players limit reached for %1 role!", _roleName]; + [QGVAR(showSystemMessage), [_msg], _unit] call CBA_fnc_targetEvent; + }; + _rolePlayersUIDs pushBack getPlayerUID _unit; + _unit setVariable [QGVAR(role), _roleName]; + [QGVAR(assignedRole), [_roleName], _unit] call CBA_fnc_targetEvent; +}] call CBA_fnc_addEventHandler; + +[QGVAR(teleport), { + params ["_caller", "_destination"]; + if (_destination isEqualType objNull) then { + _destination = position _destination; + }; + _caller setPos _destination; +}] call CBA_fnc_addEventHandler; + +[QGVAR(playerConntected), { + params ["_unit", "_uid"]; + GVAR(playersConnected) pushBackUnique [_uid, _unit]; + + private _msg = format ["Players ready %1/%2", count GVAR(playersConnected), playersNumber WEST]; + //private _msg = format ["Players ready %1/%2", count GVAR(playersConnected), 1]; + if (!GVAR(serverInitialized)) then { + [QGVAR(showSystemMessage), [_msg]] call CBA_fnc_globalEvent; + }; + if (count GVAR(playersConnected) isEqualTo playersNumber WEST && {!GVAR(serverInitialized)}) then { + private _msg = format ["Starting initialization with %1/%2 players ready.", count GVAR(playersConnected), playersNumber WEST]; + [QGVAR(showSystemMessage), [_msg]] call CBA_fnc_globalEvent; + [QGVAR(serverInit)] call CBA_fnc_localEvent; + } else { + if (GVAR(serverInitialized)) then { + private _side = if (_uid in GVAR(playersOpfor)) then {EAST} else {WEST}; + [QGVAR(playerInit), [_side], _unit] call CBA_fnc_targetEvent; + }; + }; +}] call CBA_fnc_addEventHandler; + +[QGVAR(initializeTeams), { + GVAR(playersOpfor) = [REDFOR_COUNT, EAST] call FUNC(randomizeTeams); + publicVariable QGVAR(playersOpfor); + + [QGVAR(playerInit), [EAST], GVAR(playersOpfor)] call CBA_fnc_targetEvent; + [QGVAR(playerInit), [WEST], allPlayers - GVAR(playersOpfor)] call CBA_fnc_targetEvent; +}] call CBA_fnc_addEventHandler; + +[QGVAR(serverInit), { + if (GVAR(serverInitialized)) exitWith {}; + [QGVAR(showSystemMessage), ["Starting server initialization"]] call CBA_fnc_localEvent; + GVAR(serverInitialized) = true; // Prevent next initialization + + [QGVAR(initializeTeams)] call CBA_fnc_localEvent; + [QGVAR(showSystemMessage), ["Teams initialized"]] call CBA_fnc_localEvent; + call FUNC(initializeBluforSpawn); + call FUNC(initializeRedforSpawn); + [QGVAR(showSystemMessage), ["Spawns initialized"]] call CBA_fnc_localEvent; + // Wait until all opfor players change their side and show them tasks + [{count (allPlayers select {side _x isEqualTo EAST}) isEqualTo count GVAR(playersOpfor)}, { + [QGVAR(showSystemMessage), ["Publishing OPFOR tasks"]] call CBA_fnc_localEvent; + [QGVAR(showOpforTasks)] call CBA_fnc_localEvent; + }] call CBA_fnc_waitUntilAndExecute; +}] call CBA_fnc_addEventHandler; + +// Force initialization when game starts +[{ + if (GVAR(serverInitialized)) exitWith {}; + [QGVAR(showSystemMessage), ["Forcing initialization"]] call CBA_fnc_localEvent; + [QGVAR(serverInit)] call CBA_fnc_localEvent; +}, [], 1] call CBA_fnc_waitAndExecute; + +["ace_wireCuttingStarted", { + params ["_unit", "_fence"]; + // 12 s timeout because 11 s is default wirecutting duration + [{!alive _this}, {deleteVehicle _this}, _fence, 12] call CBA_fnc_waitUntilAndExecute; +}] call CBA_fnc_addEventHandler; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm new file mode 100644 index 0000000..0992d6f --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm @@ -0,0 +1,15619 @@ +version=53; +class EditorData +{ + moveGridStep=1; + angleGridStep=0.2617994; + scaleGridStep=1; + autoGroupingDist=10; + toggles=517; + class ItemIDProvider + { + nextID=612; + }; + class MarkerIDProvider + { + nextID=13; + }; + class LayerIndexProvider + { + nextID=136; + }; + class Camera + { + pos[]={6431.666,23.505564,1400.5266}; + dir[]={0.83183765,-0.38058293,0.40415061}; + up[]={0.34233421,0.92473799,0.16632362}; + aside[]={0.43703148,1.4243415e-007,-0.89951962}; + }; +}; +binarizationWanted=0; +addons[]= +{ + "A3_Characters_F", + "CUP_Weapons_M16", + "CUP_Weapons_Ammunition", + "ace_flashlights", + "A3_Weapons_F", + "CUP_Creatures_Military_USArmy", + "ace_medical_treatment", + "acre_sys_prc343", + "ace_hearing", + "ace_grenades", + "CUP_Weapons_West_Attachments", + "A3_Ui_F", + "CUP_AirVehicles_CH47", + "CUP_AirVehicles_UH60", + "CUP_AirVehicles_AH64", + "CUP_AirVehicles_AH6", + "CUP_AirVehicles_C130J", + "CUP_AirVehicles_DC3", + "CUP_AirVehicles_MQ9", + "CUP_AirVehicles_A10", + "CUP_AirVehicles_AV8B", + "CUP_WheeledVehicles_MTVR", + "A3_Structures_F_Walls", + "CUP_Wheeled_SUV", + "CUP_Weapons_AmmoBoxes", + "A3_Structures_F_Civ_Lamps", + "vurtual_m939", + "A3_Structures_F_Heli_Furniture", + "A3_Props_F_Argo_Items_Electronics", + "A3_Structures_F_Enoch_Military_Barracks", + "mts_nature", + "A3_Structures_F_Enoch_Industrial_Agriculture", + "A3_Rocks_F_Enoch", + "A3_Structures_F_Enoch_Ruins", + "A3_Structures_F_Enoch_Walls_Stone", + "A3_Structures_F_Enoch_Civilian_Sheds", + "A3_Structures_F_Enoch_Industrial_Farms", + "A3_Rocks_F_Exp_Cliff", + "A3_Props_F_Exp_Naval_Boats", + "A3_Structures_F_Enoch_Wrecks", + "A3_Props_F_Exp_Industrial_HeavyEquipment" +}; +class AddonsMetaData +{ + class List + { + items=36; + class Item0 + { + className="A3_Characters_F"; + name="Arma 3 Alpha - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item1 + { + className="CUP_Weapons_M16"; + name="CUP_Weapons_M16"; + }; + class Item2 + { + className="CUP_Weapons_Ammunition"; + name="CUP_Weapons_Ammunition"; + }; + class Item3 + { + className="ace_flashlights"; + name="ACE3 - Flashlights"; + author="ACE-Team"; + url="http://ace3mod.com/"; + }; + class Item4 + { + className="A3_Weapons_F"; + name="Arma 3 Alpha - Weapons and Accessories"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item5 + { + className="CUP_Creatures_Military_USArmy"; + name="CUP_Creatures_Military_USArmy"; + }; + class Item6 + { + className="ace_medical_treatment"; + name="ACE3 - Medical Treatment"; + author="ACE-Team"; + url="http://ace3mod.com/"; + }; + class Item7 + { + className="acre_sys_prc343"; + name="ACRE2 - AN/PRC-343"; + author="ACRE2Team"; + url="https://github.com/IDI-Systems/acre2"; + }; + class Item8 + { + className="ace_hearing"; + name="ACE3 - Hearing"; + author="ACE-Team"; + url="http://ace3mod.com/"; + }; + class Item9 + { + className="ace_grenades"; + name="ACE3 - Grenades"; + author="ACE-Team"; + url="http://ace3mod.com/"; + }; + class Item10 + { + className="CUP_Weapons_West_Attachments"; + name="CUP_Weapons_West_Attachments"; + }; + class Item11 + { + className="A3_Ui_F"; + name="Arma 3 - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item12 + { + className="CUP_AirVehicles_CH47"; + name="CUP_AirVehicles_CH47"; + }; + class Item13 + { + className="CUP_AirVehicles_UH60"; + name="CUP_AirVehicles_UH60"; + }; + class Item14 + { + className="CUP_AirVehicles_AH64"; + name="CUP_AirVehicles_AH64"; + }; + class Item15 + { + className="CUP_AirVehicles_AH6"; + name="CUP_AirVehicles_AH6"; + }; + class Item16 + { + className="CUP_AirVehicles_C130J"; + name="CUP_AirVehicles_C130J"; + }; + class Item17 + { + className="CUP_AirVehicles_DC3"; + name="CUP_AirVehicles_DC3"; + }; + class Item18 + { + className="CUP_AirVehicles_MQ9"; + name="CUP_AirVehicles_MQ9"; + }; + class Item19 + { + className="CUP_AirVehicles_A10"; + name="CUP_AirVehicles_A10"; + }; + class Item20 + { + className="CUP_AirVehicles_AV8B"; + name="CUP_AirVehicles_AV8B"; + }; + class Item21 + { + className="CUP_WheeledVehicles_MTVR"; + name="CUP_WheeledVehicles_MTVR"; + }; + class Item22 + { + className="A3_Structures_F"; + name="Arma 3 - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item23 + { + className="CUP_Wheeled_SUV"; + name="CUP_Wheeled_SUV"; + }; + class Item24 + { + className="CUP_Weapons_AmmoBoxes"; + name="CUP_Weapons_AmmoBoxes"; + }; + class Item25 + { + className="vurtual_m939"; + name="vurtual_m939"; + }; + class Item26 + { + className="A3_Structures_F_Heli"; + name="Arma 3 Helicopters - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item27 + { + className="A3_Props_F_Argo"; + name="Arma 3 Malden - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item28 + { + className="A3_Structures_F_Enoch_Military"; + name="Arma 3 Contact Platform - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item29 + { + className="mts_nature"; + name="mts - Nature"; + }; + class Item30 + { + className="A3_Structures_F_Enoch_Industrial"; + name="Arma 3 Contact Platform - Industrial Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item31 + { + className="A3_Rocks_F_Enoch"; + name="Arma 3 Contact Platform - Rocks and Stones"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item32 + { + className="A3_Structures_F_Enoch"; + name="Arma 3 Contact Platform - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item33 + { + className="A3_Structures_F_Enoch_Civilian"; + name="Arma 3 Contact Platform - Civilian Buildings"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item34 + { + className="A3_Rocks_F_Exp"; + name="Arma 3 Apex - Rocks and Stones"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item35 + { + className="A3_Props_F_Exp"; + name="Arma 3 Apex - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + }; +}; +randomSeed=8265701; +class ScenarioData +{ + author="3Mydlo3"; +}; +class CustomAttributes +{ + class Category0 + { + name="Scenario"; + class Attribute0 + { + property="cba_settings_hash"; + expression="false"; + class Value + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=4; + class Item0 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="#CBA_HASH#"; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=54; + class Item0 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="afm_grass_enabled"; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="afm_spectator_enabled"; + }; + }; + class Item2 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="afm_spectator_sides"; + }; + }; + class Item3 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="afm_spectator_freecamera"; + }; + }; + class Item4 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="afm_spectator_tppcamera"; + }; + }; + class Item5 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_bleedingcoefficient"; + }; + }; + class Item6 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_paincoefficient"; + }; + }; + class Item7 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_ivflowrate"; + }; + }; + class Item8 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_limping"; + }; + }; + class Item9 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_fractures"; + }; + }; + class Item10 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_fracturechance"; + }; + }; + class Item11 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_spontaneouswakeupchance"; + }; + }; + class Item12 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_spontaneouswakeupepinephrineboost"; + }; + }; + class Item13 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_blood_enabledfor"; + }; + }; + class Item14 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_blood_maxbloodobjects"; + }; + }; + class Item15 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_blood_bloodlifetime"; + }; + }; + class Item16 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_fataldamagesource"; + }; + }; + class Item17 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_playerdamagethreshold"; + }; + }; + class Item18 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_aidamagethreshold"; + }; + }; + class Item19 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_feedback_paineffecttype"; + }; + }; + class Item20 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_feedback_bloodvolumeeffecttype"; + }; + }; + class Item21 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_statemachine_fatalinjuriesplayer"; + }; + }; + class Item22 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_statemachine_fatalinjuriesai"; + }; + }; + class Item23 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_statemachine_aiunconsciousness"; + }; + }; + class Item24 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_statemachine_cardiacarresttime"; + }; + }; + class Item25 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_advanceddiagnose"; + }; + }; + class Item26 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_advancedmedication"; + }; + }; + class Item27 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_advancedbandages"; + }; + }; + class Item28 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_woundreopenchance"; + }; + }; + class Item29 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_cleartraumaafterbandage"; + }; + }; + class Item30 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_locationsboosttraining"; + }; + }; + class Item31 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_allowsharedequipment"; + }; + }; + class Item32 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_convertitems"; + }; + }; + class Item33 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_medicepinephrine"; + }; + }; + class Item34 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_locationepinephrine"; + }; + }; + class Item35 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_medicpak"; + }; + }; + class Item36 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_locationpak"; + }; + }; + class Item37 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_consumepak"; + }; + }; + class Item38 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_allowselfpak"; + }; + }; + class Item39 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_timecoefficientpak"; + }; + }; + class Item40 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_medicsurgicalkit"; + }; + }; + class Item41 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_locationsurgicalkit"; + }; + }; + class Item42 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_consumesurgicalkit"; + }; + }; + class Item43 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_allowselfstitch"; + }; + }; + class Item44 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_mediciv"; + }; + }; + class Item45 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_allowselfiv"; + }; + }; + class Item46 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_cprsuccesschance"; + }; + }; + class Item47 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_holsterrequired"; + }; + }; + class Item48 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_allowlittercreation"; + }; + }; + class Item49 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_maxlitterobjects"; + }; + }; + class Item50 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_treatment_littercleanupdelay"; + }; + }; + class Item51 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_ai_enabledfor"; + }; + }; + class Item52 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_gui_enableactions"; + }; + }; + class Item53 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="ace_medical_gui_maxdistance"; + }; + }; + }; + }; + }; + class Item2 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=54; + class Item0 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item2 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=2; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item3 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item4 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item5 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item6 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.80000001; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item7 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item8 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item9 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item10 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.5; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item11 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.85000002; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item12 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=3; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item13 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=2; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item14 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=500; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item15 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=900; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item16 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item17 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.5; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item18 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item19 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item20 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=2; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item21 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item22 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item23 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item24 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=630; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item25 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item26 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item27 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item28 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item29 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item30 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item31 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item32 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item33 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item34 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item35 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item36 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=3; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item37 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item38 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item39 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item40 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item41 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item42 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item43 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item44 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item45 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item46 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0.40000001; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item47 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item48 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item49 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=500; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item50 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=600; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item51 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + class Item52 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + }; + }; + }; + class Item53 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=3; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + class Item3 + { + class data + { + nil=1; + class type + { + type[]= + { + "ANY" + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=1; + }; +}; +class Mission +{ + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.44999999; + startFog=0.30000001; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.2; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + wavesForced=1; + windForced=1; + year=2020; + month=4; + day=3; + hour=4; + minute=20; + startFogDecay=0.014; + forecastFogDecay=0.014; + }; + class Entities + { + items=3; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=40; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6856.4951,6.0014391,1130.7972}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=19; + type="B_Soldier_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6858.2383,6.0014391,1131.7776}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=7; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=20; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male06ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6857.4756,6.0014391,1129.0541}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=21; + type="B_Soldier_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6859.2188,6.0014391,1130.0343}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=22; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6853.0088,6.0014391,1128.8367}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=27; + type="B_Soldier_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6854.752,6.0014396,1129.817}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=28; + type="B_Soldier_F"; + atlOffset=4.7683716e-007; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6853.9888,6.0014391,1127.0935}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=29; + type="B_Soldier_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6855.7324,6.0014391,1128.0737}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=30; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6846.0352,6.0014391,1124.9155}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=39; + type="B_Soldier_F"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6847.7788,6.0014391,1125.8959}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=40; + type="B_Soldier_F"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={6847.0161,6.0014391,1123.1722}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=41; + type="B_Soldier_F"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={6848.7588,6.0014391,1124.1525}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=42; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={6842.5488,6.0014391,1122.955}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=47; + type="B_Soldier_F"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={6844.2925,6.0014391,1123.9353}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=48; + type="B_Soldier_F"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={6843.5293,6.0014391,1121.2117}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=49; + type="B_Soldier_F"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={6845.2725,6.0014396,1122.1919}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=50; + type="B_Soldier_F"; + atlOffset=4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={6835.5757,6.0014391,1119.0339}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=59; + type="B_Soldier_F"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={6837.3188,6.0014391,1120.0142}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=60; + type="B_Soldier_F"; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={6836.5562,6.0014391,1117.2905}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=61; + type="B_Soldier_F"; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={6838.2993,6.0014391,1118.2708}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=62; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={6832.0894,6.0014391,1117.0734}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=67; + type="B_Soldier_F"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={6833.832,6.0014391,1118.0536}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=68; + type="B_Soldier_F"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={6833.0693,6.0014391,1115.33}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=69; + type="B_Soldier_F"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={6834.813,6.0014391,1116.3102}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=70; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={6827.9404,6.0014396,1115.0007}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=359; + type="B_Soldier_F"; + atlOffset=4.7683716e-007; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={6829.6836,6.0014386,1115.981}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=360; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={6828.9209,6.0014396,1113.2573}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=361; + type="B_Soldier_F"; + atlOffset=4.7683716e-007; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={6830.6641,6.0014386,1114.2375}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=362; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={6824.4541,6.0014386,1113.0402}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=364; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={6826.1968,6.0014386,1114.0204}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=365; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={6825.4341,6.0014391,1111.2968}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=366; + type="B_Soldier_F"; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={6827.1777,6.0014396,1112.277}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=367; + type="B_Soldier_F"; + atlOffset=4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={6821.2568,5.9884396,1111.0698}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=390; + type="B_Soldier_F"; + atlOffset=1.4305115e-006; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={6823,6.000823,1112.05}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=391; + type="B_Soldier_F"; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={6822.2373,5.9895906,1109.3264}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=392; + type="B_Soldier_F"; + atlOffset=4.7683716e-007; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={6823.9805,6.0014048,1110.3066}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=393; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={6817.7705,5.8966937,1109.1093}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=394; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={6819.5132,5.9453015,1110.0895}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=395; + type="B_Soldier_F"; + atlOffset=4.7683716e-007; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={6818.7505,5.8858318,1107.3658}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=396; + type="B_Soldier_F"; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={6820.4941,5.945354,1108.3461}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=397; + type="B_Soldier_F"; + atlOffset=4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + init="call{if (isServer) then " \n "{ " \n " this spawn " \n " { " \n " waitUntil {time > 0}; " \n " _this setGroupIdGlobal [""Alpha 1""] " \n " }; " \n "};}"; + }; + id=15; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6824.8262,5.6730208,1136.1801}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=7; + class Attributes + { + rank="COLONEL"; + init="call{this removeAllEventHandlers ""HandleDamage""; " \n "this addEventHandler [""HandleDamage"", {0}];}"; + description="Zeus@Zeus"; + isPlayer=1; + isPlayable=1; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=107; + type="B_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + class Attribute2 + { + property="afm_curator_isZeus"; + expression="if (_value) then {[{[_this] call afm_curator_fnc_assignZeus}, _this] call CBA_fnc_execNextFrame}"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + init="call{if (isServer) then " \n "{ " \n " this spawn " \n " { " \n " waitUntil {time > 0}; " \n " _this setGroupIdGlobal [""Olimp""] " \n " }; " \n "};}"; + }; + id=106; + }; + class Item2 + { + dataType="Layer"; + name="Mission"; + class Entities + { + items=6; + class Item0 + { + dataType="Layer"; + name="Markers"; + class Entities + { + items=2; + class Item0 + { + dataType="Layer"; + name="Airfield"; + class Entities + { + items=5; + class Item0 + { + dataType="Marker"; + position[]={5760.7988,5.9499998,433.95599}; + name="marker_office"; + text="Bureau"; + type="hd_dot"; + id=250; + atlOffset=-0.00039863586; + }; + class Item1 + { + dataType="Marker"; + position[]={6442.8252,4.4840002,1423.387}; + name="marker_east_entrance"; + text="East entrance"; + type="hd_dot"; + id=249; + atlOffset=0.00013065338; + }; + class Item2 + { + dataType="Marker"; + position[]={5802.3218,5.9050002,542.84198}; + name="marker_new_cargo_hangar"; + text="New cargo hangar"; + type="hd_dot"; + id=247; + atlOffset=-0.0001950264; + }; + class Item3 + { + dataType="Marker"; + position[]={5457.396,5.46,267.983}; + name="marker_old_cargo_hangar"; + text="Old cargo hangar"; + type="hd_dot"; + id=246; + atlOffset=0.00015640259; + }; + class Item4 + { + dataType="Marker"; + position[]={6188.8452,3.944,1277.212}; + name="marker_west_entrance"; + text="West entrance"; + type="hd_dot"; + id=248; + atlOffset=6.0081482e-005; + }; + }; + id=351; + atlOffset=0.49772167; + }; + class Item1 + { + dataType="Layer"; + name="REDFOR"; + class Entities + { + items=10; + class Item0 + { + dataType="Marker"; + position[]={6488.2212,6.0079999,1631.199}; + name="sys_marker_redfor_start_5"; + type="Empty"; + id=349; + atlOffset=0.00043392181; + }; + class Item1 + { + dataType="Marker"; + position[]={5657,9.0500002,1604}; + name="sys_marker_redfor_start_2"; + type="Empty"; + id=350; + }; + class Item2 + { + dataType="Marker"; + position[]={5271.0518,2.0439999,1449.587}; + name="sys_marker_redfor_start_1"; + type="Empty"; + id=346; + atlOffset=0.00025892258; + }; + class Item3 + { + dataType="Marker"; + position[]={5950.0352,7.0339999,1531.203}; + name="sys_marker_redfor_start_3"; + type="Empty"; + id=347; + atlOffset=-6.0558319e-005; + }; + class Item4 + { + dataType="Marker"; + position[]={6366.0459,5.3080001,1435.603}; + name="sys_marker_redfor_start_4"; + type="Empty"; + id=348; + atlOffset=-0.00024461746; + }; + class Item5 + { + dataType="Marker"; + position[]={5634.5,18.610001,1943.111}; + name="sys_marker_redfor_spawn"; + type="Empty"; + id=345; + atlOffset=0.0002822876; + }; + class Item6 + { + dataType="Marker"; + position[]={6383.1348,7.8299999,1625.118}; + name="sys_marker_redfor_start_6"; + type="Empty"; + id=354; + atlOffset=0.00025081635; + }; + class Item7 + { + dataType="Marker"; + position[]={6023.293,14.031462,1758.8984}; + name="sys_marker_redfor_start_7"; + type="Empty"; + id=355; + atlOffset=0.00025081635; + }; + class Item8 + { + dataType="Marker"; + position[]={5746.1138,11.831,1799.6379}; + name="sys_marker_redfor_start_8"; + type="Empty"; + id=356; + atlOffset=0.00024318695; + }; + class Item9 + { + dataType="Marker"; + position[]={6836.8159,6,1129.025}; + name="sys_marker_blufor_spawn"; + type="Empty"; + id=357; + }; + }; + id=352; + atlOffset=3.6131487; + }; + }; + id=256; + atlOffset=2.4139948; + }; + class Item1 + { + dataType="Layer"; + name="Vehicles"; + class Entities + { + items=5; + class Item0 + { + dataType="Layer"; + name="Helicopters"; + class Entities + { + items=11; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6171.9468,9.39011,692.63739}; + angles[]={0,5.8871784,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=217; + type="CUP_B_CH47F_USA"; + atlOffset=1.335144e-005; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5554.1094,8.4477959,341.229}; + angles[]={6.2789426,1.6363536,0.0049193022}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=265; + type="CUP_B_CH47F_USA"; + atlOffset=-3.3378601e-006; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6036.0303,7.5042496,655.20581}; + angles[]={0,3.384094,6.2817206}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + textures="Black"; + }; + id=271; + type="CUP_B_MH60L_DAP_2x_US"; + atlOffset=1.335144e-005; + class CustomAttributes + { + class Attribute0 + { + property="VehicleCustomization"; + expression="if (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};"; + class Value + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=20; + class Item0 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_ESSS2x"; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item2 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_ESSS4x"; + }; + }; + class Item3 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item4 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_FlirTurret"; + }; + }; + class Item5 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item6 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_Nose"; + }; + }; + class Item7 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item8 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Navyclan_hide"; + }; + }; + class Item9 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item10 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Navyclan2_hide"; + }; + }; + class Item11 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item12 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Blackhawk_Hide"; + }; + }; + class Item13 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item14 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_Probe"; + }; + }; + class Item15 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item16 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Doorcock_Hide"; + }; + }; + class Item17 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item18 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Filters_Hide"; + }; + }; + class Item19 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=1; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6199.1772,5.4633284,754.64984}; + angles[]={6.2795973,5.7642517,6.2523046}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + pylons="CUP_PylonPod_19Rnd_Rocket_FFAR_M;CUP_PylonPod_4Rnd_AGM114K_Hellfire_II_M[0];CUP_PylonPod_4Rnd_AGM114K_Hellfire_II_M[0];CUP_PylonPod_19Rnd_Rocket_FFAR_M;[0];[0];"; + }; + id=273; + type="CUP_B_AH64_DL_USA"; + atlOffset=-5.7697296e-005; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_M4A1"",""FirstAidKit""],[1,4]],[[""CUP_30Rnd_556x45_Stanag"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6102.5532,5.6026888,700.14935}; + angles[]={6.2752595,5.8382769,6.2750516}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + pylons="CUP_PylonPod_19Rnd_Rocket_FFAR_M;CUP_PylonPod_4Rnd_AGM114K_Hellfire_II_M[0];CUP_PylonPod_4Rnd_AGM114K_Hellfire_II_M[0];CUP_PylonPod_19Rnd_Rocket_FFAR_M;[0];[0];"; + }; + id=272; + type="CUP_B_AH64_DL_USA"; + atlOffset=-2.8610229e-006; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_M4A1"",""FirstAidKit""],[1,4]],[[""CUP_30Rnd_556x45_Stanag"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={5948.6782,7.6674728,639.9751}; + angles[]={0,2.3634992,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + textures="Black"; + }; + id=332; + type="CUP_B_MH60L_DAP_2x_US"; + atlOffset=2.8133392e-005; + class CustomAttributes + { + class Attribute0 + { + property="VehicleCustomization"; + expression="if (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};"; + class Value + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=20; + class Item0 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_ESSS2x"; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item2 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_ESSS4x"; + }; + }; + class Item3 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item4 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_FlirTurret"; + }; + }; + class Item5 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item6 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_Nose"; + }; + }; + class Item7 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item8 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Navyclan_hide"; + }; + }; + class Item9 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item10 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Navyclan2_hide"; + }; + }; + class Item11 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item12 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Blackhawk_Hide"; + }; + }; + class Item13 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item14 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_Probe"; + }; + }; + class Item15 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item16 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Doorcock_Hide"; + }; + }; + class Item17 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item18 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Filters_Hide"; + }; + }; + class Item19 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=1; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={5506.2183,7.064198,905.94092}; + angles[]={0,3.9610617,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=328; + type="CUP_B_MH6M_USA"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={5494.313,6.3527884,884.12225}; + angles[]={0,6.1492538,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=329; + type="CUP_B_MH6M_USA"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={5527.1138,7.064198,862.9043}; + angles[]={0,0.21137884,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=330; + type="CUP_B_MH6M_USA"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={5540.04,7.064198,878.02643}; + angles[]={0,4.6093836,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=331; + type="CUP_B_MH6M_USA"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={5608.7222,8.8291912,1063.5162}; + angles[]={0,5.6181059,0.0027621367}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + textures="Black"; + }; + id=327; + type="CUP_B_UH60M_US"; + atlOffset=1.9550323e-005; + class CustomAttributes + { + class Attribute0 + { + property="VehicleCustomization"; + expression="if (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};"; + class Value + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=2; + class Item0 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "ARRAY" + }; + }; + class value + { + items=20; + class Item0 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_ESSS2x"; + }; + }; + class Item1 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item2 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_ESSS4x"; + }; + }; + class Item3 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item4 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_Nose"; + }; + }; + class Item5 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item6 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Navyclan_hide"; + }; + }; + class Item7 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item8 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Navyclan2_hide"; + }; + }; + class Item9 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item10 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Blackhawk_Hide"; + }; + }; + class Item11 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item12 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_FlirTurret"; + }; + }; + class Item13 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item14 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Hide_Probe"; + }; + }; + class Item15 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + class Item16 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Doorcock_Hide"; + }; + }; + class Item17 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=0; + }; + }; + class Item18 + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Filters_Hide"; + }; + }; + class Item19 + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=255; + atlOffset=0.4249258; + }; + class Item1 + { + dataType="Layer"; + name="Cargo planes"; + class Entities + { + items=10; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5711.356,11.659084,486.88937}; + angles[]={0,4.7117443,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=218; + type="CUP_B_C130J_USMC"; + atlOffset=2.8610229e-005; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5496.4131,11.29813,300.01218}; + angles[]={0,1.1020902,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + textures="USMCDarkGrey"; + }; + id=219; + type="CUP_B_C130J_Cargo_USMC"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={5610.2041,10.880245,445.35318}; + angles[]={0,1.6323211,0.0010918301}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=281; + type="CUP_B_C130J_USMC"; + atlOffset=-1.001358e-005; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={5623.668,11.167264,270.6857}; + angles[]={6.2708135,5.8339853,6.2718596}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=282; + type="CUP_B_C130J_USMC"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={5551.8813,7.9221439,262.49335}; + angles[]={0.0087551167,0.42211384,0.00034526698}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=274; + type="CUP_B_C47_USA"; + atlOffset=-9.8228455e-005; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={5670.582,8.065156,320.66705}; + angles[]={6.278873,5.0877166,6.2799835}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=276; + type="CUP_B_C47_USA"; + atlOffset=-1.4305115e-006; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={5680.4878,8.7311993,387.08478}; + angles[]={6.2781463,4.6260486,0.0009765625}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=277; + type="CUP_B_C47_USA"; + atlOffset=0.00020980835; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={5605.8911,7.6777039,376.83939}; + angles[]={0.0009134906,1.6136484,0.0012448779}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=278; + type="CUP_B_C47_USA"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={5552.2568,8.6253605,405.52353}; + angles[]={0,5.1054096,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=279; + type="CUP_B_C47_USA"; + atlOffset=1.001358e-005; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={5792.9741,11.540123,551.01984}; + angles[]={6.2824869,5.7710361,0.0045727626}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="viv_plane"; + }; + id=388; + type="CUP_B_C130J_Cargo_USMC"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit"",""Medikit""],[1,10,1]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[""ToolKit""],[1]],[[""B_Parachute""],[16]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=254; + atlOffset=-0.31611347; + }; + class Item2 + { + dataType="Layer"; + name="Drones"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5531.4341,7.904613,970.25104}; + angles[]={0,4.6626296,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=285; + type="CUP_B_USMC_DYN_MQ9"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""FirstAidKit""],[2]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=286; + }; + class Item3 + { + dataType="Layer"; + name="Jets"; + class Entities + { + items=25; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={7217.3745,6.8841505,1145.3992}; + angles[]={6.278194,1.1203206,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=304; + type="CUP_B_A10_DYN_USA"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={7149.9233,5.8999524,1111.476}; + angles[]={6.2820935,1.0791035,0.00069053395}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=305; + type="CUP_B_A10_DYN_USA"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={7212.3301,6.9252024,1207.0645}; + angles[]={0,4.1193466,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=306; + type="CUP_B_A10_DYN_USA"; + atlOffset=-8.5830688e-005; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={7280.314,6.6509228,1227.8019}; + angles[]={0,1.3917019,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=307; + type="CUP_B_A10_DYN_USA"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={7317.9912,7.1691589,1276.8553}; + angles[]={6.2807684,0.84604263,6.2828403}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=308; + type="CUP_B_A10_DYN_USA"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={7230.7637,5.9754095,1327.5029}; + angles[]={6.2746091,4.5228786,6.2715225}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=310; + type="CUP_B_A10_DYN_USA"; + atlOffset=-1.8596649e-005; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={7202.0991,6.3680725,1284.77}; + angles[]={0.00034526698,4.9966321,6.2778144}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=315; + type="CUP_B_A10_DYN_USA"; + atlOffset=9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={7112.3887,6.6490464,1275.4747}; + angles[]={0,2.0132442,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=316; + type="CUP_B_A10_DYN_USA"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6898.6104,8.346406,1089.7936}; + angles[]={0,1.137635,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=301; + type="CUP_B_AV8B_DYN_USMC"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6965.9995,7.6412854,1070.5974}; + angles[]={6.2566128,0.36846969,0.00077204045}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=302; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=-1.4305115e-006; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={7000.416,8.0754623,1149.3306}; + angles[]={6.2105927,0.45965734,0.015187969}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=303; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=0.0017447472; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={7072.7432,7.9169126,1218.7874}; + angles[]={0,4.6413531,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=313; + type="CUP_B_AV8B_DYN_USMC"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={6992.1475,8.9036617,1232.9027}; + angles[]={0.0029700999,0.84352708,6.2822089}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=314; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=1.4305115e-006; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={7096.5635,8.1014824,1155.9976}; + angles[]={0.0021001773,4.2533636,6.2809477}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=312; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=0.00013971329; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={7087.2075,6.0545568,1083.8329}; + angles[]={6.2533851,4.5974269,0.021932367}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=311; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=-0.031326532; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={5892.4551,5.5639906,1017.333}; + angles[]={6.2631865,4.2405548,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=318; + type="CUP_B_A10_DYN_USA"; + atlOffset=1.9073486e-006; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={5619.916,6.9271431,949.4801}; + angles[]={0,1.355661,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=319; + type="CUP_B_A10_DYN_USA"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={5603.5513,6.9271431,860.63641}; + angles[]={0,4.4841299,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=326; + type="CUP_B_A10_DYN_USA"; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={5717.6279,8.346406,916.27832}; + angles[]={0,1.1377791,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=320; + type="CUP_B_AV8B_DYN_USMC"; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={5756.918,7.8430085,981.67786}; + angles[]={0.024996169,4.7500443,6.2581892}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=321; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=-4.7683716e-007; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={5667.0049,8.4197025,1030.9558}; + angles[]={0.0099949092,2.9704814,6.2332273}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=322; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=-2.1934509e-005; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={5403.3184,7.9241314,752.31451}; + angles[]={0.00069053395,3.9491994,6.278389}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=324; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=-1.4305115e-006; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={5515.8486,9.5662823,809.09674}; + angles[]={0,1.1701982,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=325; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=4.7683716e-007; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={5908.9985,8.3149986,607.73755}; + angles[]={0,5.3051448,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=380; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=0.075994492; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={5901.9985,8.3149986,594.73755}; + angles[]={0,6.2045479,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=381; + type="CUP_B_AV8B_DYN_USMC"; + atlOffset=0.075890541; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_smg_MP5A5"",""FirstAidKit""],[1,2]],[[""CUP_30Rnd_9x19_MP5"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=317; + atlOffset=1.3414927; + }; + class Item4 + { + dataType="Layer"; + name="Airfield vehicles"; + class Entities + { + items=7; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5521,8.1625214,959}; + angles[]={0,1.9817402,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=374; + type="CUP_B_MTVR_Ammo_USMC"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_M16A4_Base"",""CUP_launch_M72A6"",""FirstAidKit"",""Medikit""],[2,1,10,1]],[[""CUP_30Rnd_556x45_Stanag"",""CUP_M72A6_M"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[20,2,2,2,2]],[[""ToolKit""],[1]],[[""CUP_B_USMC_MOLLE""],[1]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5852.0923,7.5296721,488.65085}; + angles[]={6.2821498,5.4295778,6.2327733}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=376; + type="CUP_B_MTVR_Ammo_USMC"; + atlOffset=-0.0010757446; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_M16A4_Base"",""CUP_launch_M72A6"",""FirstAidKit"",""Medikit""],[2,1,10,1]],[[""CUP_30Rnd_556x45_Stanag"",""CUP_M72A6_M"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[20,2,2,2,2]],[[""ToolKit""],[1]],[[""CUP_B_USMC_MOLLE""],[1]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={5857.0225,7.5463772,494.94778}; + angles[]={6.2430129,5.9944563,6.2782059}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=375; + type="CUP_B_MTVR_Refuel_USMC"; + atlOffset=-0.00031375885; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_M16A4_Base"",""CUP_launch_M72A6"",""FirstAidKit"",""Medikit""],[2,1,10,1]],[[""CUP_30Rnd_556x45_Stanag"",""CUP_M72A6_M"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[20,2,2,2,2]],[[""ToolKit""],[1]],[[""CUP_B_USMC_MOLLE""],[1]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={5893.9995,8.131115,604}; + angles[]={0,3.6070986,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=383; + type="CUP_B_MTVR_Refuel_USMC"; + atlOffset=4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_M16A4_Base"",""CUP_launch_M72A6"",""FirstAidKit"",""Medikit""],[2,1,10,1]],[[""CUP_30Rnd_556x45_Stanag"",""CUP_M72A6_M"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[20,2,2,2,2]],[[""ToolKit""],[1]],[[""CUP_B_USMC_MOLLE""],[1]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={5847.1006,7.7268591,483.02762}; + angles[]={6.2686677,5.2808418,6.2561808}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=377; + type="CUP_B_MTVR_Repair_USMC"; + atlOffset=-0.00054264069; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_M16A4_Base"",""CUP_launch_M72A6"",""FirstAidKit"",""Medikit""],[2,1,10,1]],[[""CUP_30Rnd_556x45_Stanag"",""CUP_M72A6_M"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[20,2,2,2,2]],[[""ToolKit""],[1]],[[""CUP_B_USMC_MOLLE""],[1]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={5913,8.131115,596}; + angles[]={0,4.6665063,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=382; + type="CUP_B_MTVR_Repair_USMC"; + atlOffset=4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_M16A4_Base"",""CUP_launch_M72A6"",""FirstAidKit"",""Medikit""],[2,1,10,1]],[[""CUP_30Rnd_556x45_Stanag"",""CUP_M72A6_M"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[20,2,2,2,2]],[[""ToolKit""],[1]],[[""CUP_B_USMC_MOLLE""],[1]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={5805.9946,8.0734653,536.99994}; + angles[]={0,2.0529602,0.0020716023}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.5; + }; + id=386; + type="CUP_B_MTVR_Repair_USMC"; + atlOffset=9.5367432e-007; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_M16A4_Base"",""CUP_launch_M72A6"",""FirstAidKit"",""Medikit""],[2,1,10,1]],[[""CUP_30Rnd_556x45_Stanag"",""CUP_M72A6_M"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[20,2,2,2,2]],[[""ToolKit""],[1]],[[""CUP_B_USMC_MOLLE""],[1]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=387; + atlOffset=0.083983421; + }; + }; + id=287; + atlOffset=0.78411865; + }; + class Item2 + { + dataType="Layer"; + name="Locations"; + class Entities + { + items=2; + class Item0 + { + dataType="Layer"; + name="West entrance"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6192.9141,8.0373421,1266.5876}; + angles[]={0,5.764719,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=4; + type="Land_BarGate_F"; + atlOffset=-2.3841858e-007; + }; + }; + id=253; + atlOffset=-2.3841858e-007; + }; + class Item1 + { + dataType="Layer"; + name="East entrance"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6441.3247,8.4762611,1416.5129}; + angles[]={0,6.0593495,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=3; + type="Land_BarGate_F"; + atlOffset=4.7683716e-007; + }; + }; + id=252; + atlOffset=4.7683716e-007; + }; + }; + id=288; + atlOffset=-0.22086954; + }; + class Item3 + { + dataType="Layer"; + name="Misc"; + class Entities + { + items=8; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6556.5151,7.0536385,956.88104}; + angles[]={0,0.37597883,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="suv"; + presence=0.5; + }; + id=299; + type="CUP_I_SUV_Armored_ION"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_XM8_Carbine"",""CUP_launch_M72A6"",""FirstAidKit"",""Medikit""],[2,1,10,1]],[[""CUP_30Rnd_556x45_G36"",""CUP_M72A6_M"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[20,2,2,2,2]],[[""ToolKit""],[1]],[[""CUP_B_USPack_Coyote""],[4]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5635.0078,19.399296,1954.9923}; + angles[]={6.2631927,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=344; + type="CUP_RUBasicWeaponsBox"; + atlOffset=-6.1035156e-005; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6447,8.1858034,1415}; + angles[]={0,4.5676045,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=336; + type="Land_LampShabby_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6187,7.75703,1262}; + angles[]={0,1.0209852,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=337; + type="Land_LampShabby_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6819.0176,7.7984214,1129.0018}; + angles[]={0.071568057,2.5760677,0.012216869}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=339; + type="vurtual_m923"; + atlOffset=-0.005279541; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6822.9521,7.7538738,1131.1189}; + angles[]={0.066396005,2.5760677,0.030256867}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=340; + type="vurtual_m923"; + atlOffset=0.00014448166; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={5531,10.292031,954}; + angles[]={0,1.0990345,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=372; + type="OfficeTable_01_new_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={5531,10.843563,954}; + angles[]={0,4.271955,0}; + }; + side="Empty"; + class Attributes + { + name="laptop"; + }; + id=373; + type="Land_Laptop_02_F"; + atlOffset=0.84437275; + }; + }; + id=400; + atlOffset=4.7513995; + }; + class Item4 + { + dataType="Layer"; + name="Guard towers"; + class Entities + { + items=8; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6101.5508,8.6832762,1225.8331}; + angles[]={0,2.6523607,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + }; + id=424; + type="Land_GuardTower_01_F"; + atlOffset=2.3841858e-007; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6700.7632,8.2690926,1426.4633}; + angles[]={0,5.8000841,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + }; + id=402; + type="Land_GuardTower_02_F"; + atlOffset=4.7683716e-007; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6299.8652,7.5030732,1342.4572}; + angles[]={0,5.8000841,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + }; + id=425; + type="Land_GuardTower_02_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={5527.3916,10.013872,1125.9904}; + angles[]={0,5.8574929,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + }; + id=462; + type="Land_GuardTower_02_F"; + atlOffset=4.7683716e-007; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={5908.2139,7.9190044,1130.2668}; + angles[]={0,5.853919,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + }; + id=463; + type="Land_GuardTower_02_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={5782.686,9.2479782,1134.0146}; + angles[]={0,6.2598071,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + }; + id=600; + type="Land_GuardTower_02_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6419.7173,7.9290929,1402.0669}; + angles[]={0,2.9997034,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=599; + type="Land_GuardBox_01_brown_F"; + atlOffset=0.26612234; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={5365.2354,6.2549448,1054.9301}; + angles[]={0,2.6965814,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=598; + type="Land_GuardBox_01_brown_F"; + atlOffset=0.33028555; + }; + }; + id=605; + atlOffset=0.13655233; + }; + class Item5 + { + dataType="Layer"; + name="BOLCOWE PROPY"; + class Entities + { + items=194; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6519.4399,8.4481602,1555.8439}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=403; + type="PiceaAbies_1f"; + atlOffset=4.7683716e-007; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6497.8711,9.9932804,1596.483}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=404; + type="PiceaAbies_1f"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6504.1724,6.9987621,1587.2815}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=405; + type="PiceaAbies_1s"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6514.3345,6.6343765,1565.9502}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=406; + type="PiceaAbies_1s"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6506.7188,6.7272763,1576.3136}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=407; + type="PiceaAbies_1sb"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6507.27,6.65312,1567.4497}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=408; + type="PiceaAbies_1sb"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6510.0547,12.468521,1556.5861}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=409; + type="PiceaAbies_2s"; + atlOffset=4.7683716e-007; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6518.3037,6.8137641,1607.3638}; + angles[]={0,2.3981299,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + }; + id=410; + type="Land_HayBale_01_stack_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6507.4653,8.7929363,1581.4377}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=411; + type="PiceaAbies_1f"; + atlOffset=-4.7683716e-007; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6509.1978,6.7693224,1588.4344}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=412; + type="PiceaAbies_1sb"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={6507.0972,7.7898664,1595.2401}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=413; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={6109.1558,6.4184752,1291.4891}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=414; + type="Betula_pendula_2w"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={6098.6055,11.770251,1298.5437}; + angles[]={0,5.413043,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=415; + type="Betula_pendula_3f"; + atlOffset=2.3841858e-007; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={6097.6084,5.301692,1276.7463}; + angles[]={0,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=416; + type="Betula_pendula_stump"; + atlOffset=-2.3841858e-007; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={6115.1812,3.8399694,1290.8489}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=417; + type="Land_Bare_boulder_01_F"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={6111.896,3.8813348,1251.7269}; + angles[]={0.0049914722,0.89790404,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=418; + type="Land_RM_boulder1"; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={6095.3521,3.8758595,1310.4999}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=419; + type="Land_RM_boulder4"; + atlOffset=1.1920929e-006; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={6124.7959,5.0432024,1281.1376}; + angles[]={0,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=420; + type="Corylus_heterophylla_1"; + atlOffset=1.8119812e-005; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={6065.9058,6.5263786,1347.2285}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=421; + type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={6103.9067,12.300075,1280.0872}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=422; + type="FagusSylvatica_2d"; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={6093.1108,15.002101,1278.6449}; + angles[]={0,4.825634,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=423; + type="FagusSylvatica_2fb"; + atlOffset=-2.3841858e-007; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={6080.8755,7.4005394,1302.3672}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=426; + type="PiceaAbies_1f"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={6069.9272,7.4505396,1317.8994}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=427; + type="PiceaAbies_1f"; + atlOffset=2.3841858e-007; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={6054.0254,7.5934682,1340.5857}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=428; + type="PiceaAbies_1f"; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={6072.9297,7.6009493,1347.0117}; + angles[]={6.278194,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=429; + type="PiceaAbies_1f"; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={6094.1919,5.4339285,1288.95}; + angles[]={6.278194,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=430; + type="PiceaAbies_1s"; + atlOffset=2.3841858e-007; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={6072.8442,5.5432954,1327.0111}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=431; + type="PiceaAbies_1s"; + atlOffset=2.0742416e-005; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={6055.1353,5.7193165,1351.1097}; + angles[]={6.2731905,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=432; + type="PiceaAbies_1s"; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={6094.0522,5.4519649,1300.7491}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=433; + type="PiceaAbies_1s"; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={6091.7246,5.3722153,1307.4587}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=434; + type="PiceaAbies_1sb"; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={6106.6563,5.3549213,1298.0886}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=435; + type="PiceaAbies_1sb"; + atlOffset=-2.3841858e-007; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={6076.603,5.5333319,1342.285}; + angles[]={6.278194,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=436; + type="PiceaAbies_1sb"; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={6079.8027,11.007421,1334.8005}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=437; + type="piceaabies_2d"; + atlOffset=8.7499619e-005; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={6066.0415,11.464144,1339.5465}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=438; + type="PiceaAbies_2s"; + atlOffset=4.7683716e-007; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={6081.6826,11.367998,1326.0676}; + angles[]={0,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=439; + type="PiceaAbies_2s"; + atlOffset=4.7683716e-007; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={6107.5859,11.31303,1309.3239}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=440; + type="PiceaAbies_2s"; + atlOffset=4.7683716e-007; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={6090.4692,11.274064,1289.2677}; + angles[]={0,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=441; + type="PiceaAbies_2s"; + atlOffset=-2.3841858e-007; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={6089.2041,16.039104,1299.8258}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=442; + type="PiceaAbies_3f"; + atlOffset=-7.1525574e-007; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={6089.0869,14.611135,1315.9424}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=443; + type="PiceaAbies_3s"; + atlOffset=-7.1525574e-007; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={6115.5459,4.484674,1256.7693}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=444; + type="PiceaAbies_b_1f"; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={6124.9785,4.5045109,1270.6188}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=445; + type="PiceaAbies_b_1fb"; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={6114.4067,4.4876051,1268.0366}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=446; + type="PiceaAbies_b_1fb"; + atlOffset=2.3841858e-007; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={6112.4116,5.2369361,1279.3427}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=447; + type="prunusSpinosa_1s"; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={6121.353,5.2469363,1278.0988}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=448; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={6057.0659,5.6457825,1367.4176}; + angles[]={6.2731848,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=449; + type="prunusSpinosa_1s"; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={6118.9121,6.448596,1285.9404}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=450; + type="prunusSpinosa_2s"; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={6108.3623,6.4562941,1262.4603}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=451; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={6060.2627,6.7497253,1356.2258}; + angles[]={6.278194,2.1468344,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=452; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={6052.8687,6.8651114,1368.1716}; + angles[]={6.278194,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=453; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={6074.3418,6.5877657,1335.834}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=454; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={6042.5186,6.5597105,1359.5186}; + angles[]={0,5.8304586,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=455; + type="Land_HouseRuin_Small_01_F"; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={6056.1523,4.2854586,1362.4353}; + angles[]={0,0.90088904,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=456; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={6047.6206,4.4124227,1374.1317}; + angles[]={0,0.90088904,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=457; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={6325.2822,7.1949029,1392.5963}; + angles[]={0,2.3554602,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=458; + type="Land_Shed_09_F"; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={6551.4365,6.2600737,1629.8334}; + angles[]={0,5.777997,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=459; + type="Land_StrawStack_01_F"; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={5974.626,5.704874,1276.6643}; + angles[]={0,4.2046776,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=460; + type="Land_HayBale_01_stack_F"; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={6571.8657,6.0666966,1627.6151}; + angles[]={0,4.4388165,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=461; + type="Land_HayBale_01_stack_F"; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={6516.3022,4.8773141,1543.6429}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=464; + type="Land_RM_boulder4"; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={6497.7661,9.3227882,1545.874}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=465; + type="PiceaAbies_1f"; + atlOffset=4.7683716e-007; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={6492.8979,9.6517372,1555.0399}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=466; + type="PiceaAbies_1f"; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={6493.144,7.8698483,1560.4166}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=467; + type="PiceaAbies_1s"; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={6509.3872,6.7798829,1541.7839}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=468; + type="PiceaAbies_1sb"; + atlOffset=4.7683716e-007; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={6504.1523,12.581536,1561.4822}; + angles[]={6.278194,3.4584663,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=469; + type="PiceaAbies_2s"; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={6525.2485,12.207683,1543.649}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=470; + type="PiceaAbies_2s"; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={6506.7495,15.783298,1550.2676}; + angles[]={0.019999012,2.328511,6.2531939}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=471; + type="PiceaAbies_3s"; + atlOffset=-9.5367432e-007; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={6489.9556,5.785172,1535.3801}; + angles[]={0,5.5058184,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=472; + type="Land_RM_boulder4"; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={6597.5444,4.5039725,1491.244}; + angles[]={0.0049914722,2.3506148,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=473; + type="Land_RM_boulder4"; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={6123.4175,6.4273233,1235.5604}; + angles[]={0,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=474; + type="Corylus_heterophylla_2"; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={6127.439,7.6793828,1206.2313}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=475; + type="PiceaAbies_1f"; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={6111.5371,7.5236368,1228.9176}; + angles[]={0.0049914722,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=476; + type="PiceaAbies_1f"; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={6130.4414,7.5338211,1235.3436}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=477; + type="PiceaAbies_1f"; + atlOffset=-2.3841858e-007; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={6130.356,5.6933041,1215.343}; + angles[]={0.0049914722,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=478; + type="PiceaAbies_1s"; + atlOffset=2.0503998e-005; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={6134.1147,5.531837,1230.6169}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=479; + type="PiceaAbies_1sb"; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={6137.3145,11.097755,1223.1324}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=480; + type="piceaabies_2d"; + atlOffset=8.72612e-005; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={6123.5532,11.447019,1227.8784}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=481; + type="PiceaAbies_2s"; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={6131.8535,6.6569376,1224.1659}; + angles[]={0.0099949092,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=482; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={5674.8091,4.2653198,1168.8442}; + angles[]={0.0050033992,0.20036471,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=483; + type="Land_RM_boulder4"; + atlOffset=4.7683716e-007; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={5696.4941,4.8532419,1125.4052}; + angles[]={0,1.6913697,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=484; + type="Land_RM_boulder4"; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={5698.9858,6.2966528,1125.2963}; + angles[]={0,0.83436823,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=485; + type="prunusSpinosa_1s"; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={5663.7681,8.0826073,1169.3019}; + angles[]={0.014998405,1.159031,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=486; + type="Betula_pendula_2s"; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={5678.7661,8.4098263,1157.7584}; + angles[]={0.0050033992,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=487; + type="Betula_pendula_2s"; + atlOffset=9.5367432e-007; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={5717.5894,9.2603188,1156.9528}; + angles[]={0.0050033992,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=488; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={5699.2739,8.6452942,1195.348}; + angles[]={0.010000871,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=489; + type="Betula_pendula_2s"; + atlOffset=9.5367432e-007; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={5687.7202,8.2751198,1209.2581}; + angles[]={0.010000871,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=490; + type="Betula_pendula_2s"; + atlOffset=9.5367432e-007; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={5693.6152,8.7855997,1140.7064}; + angles[]={0,2.6500359,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=491; + type="Betula_pendula_2s"; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={5690.5483,8.7042618,1110.3044}; + angles[]={0,0.45093346,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=492; + type="Betula_pendula_2s"; + }; + class Item86 + { + dataType="Object"; + class PositionInfo + { + position[]={5723.0786,9.3536892,1113.7644}; + angles[]={6.278182,5.2807817,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=493; + type="Betula_pendula_2s"; + atlOffset=-4.7683716e-007; + }; + class Item87 + { + dataType="Object"; + class PositionInfo + { + position[]={5713.562,9.208703,1126.8336}; + angles[]={6.278182,5.2807817,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=494; + type="Betula_pendula_2s"; + }; + class Item88 + { + dataType="Object"; + class PositionInfo + { + position[]={5699.6069,8.8955326,1114.0197}; + angles[]={6.278182,5.2807817,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=495; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item89 + { + dataType="Object"; + class PositionInfo + { + position[]={5689.291,8.6891155,1114.8049}; + angles[]={0,5.2807817,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=496; + type="Betula_pendula_2s"; + }; + class Item90 + { + dataType="Object"; + class PositionInfo + { + position[]={5711.9844,9.1522942,1115.8623}; + angles[]={6.278182,5.2807817,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=497; + type="Betula_pendula_2s"; + }; + class Item91 + { + dataType="Object"; + class PositionInfo + { + position[]={5691.0317,8.7303181,1118.246}; + angles[]={6.278182,2.6500359,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=498; + type="Betula_pendula_2s"; + }; + class Item92 + { + dataType="Object"; + class PositionInfo + { + position[]={5667.4595,6.7472525,1163.1635}; + angles[]={0.0049914722,5.243114,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=499; + type="Betula_pendula_2w"; + }; + class Item93 + { + dataType="Object"; + class PositionInfo + { + position[]={5702.314,7.4524255,1170.4658}; + angles[]={0.0050033992,1.9906152,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=500; + type="Betula_pendula_2w"; + }; + class Item94 + { + dataType="Object"; + class PositionInfo + { + position[]={5685.0093,7.133707,1154.6302}; + angles[]={0,1.9906152,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=501; + type="Betula_pendula_2w"; + }; + class Item95 + { + dataType="Object"; + class PositionInfo + { + position[]={5691.4717,7.1239352,1184.2665}; + angles[]={0.0050033992,5.6162271,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=502; + type="Betula_pendula_2w"; + }; + class Item96 + { + dataType="Object"; + class PositionInfo + { + position[]={5683.292,6.8702431,1194.1064}; + angles[]={0.0050033992,0.40582043,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=503; + type="Betula_pendula_2w"; + }; + class Item97 + { + dataType="Object"; + class PositionInfo + { + position[]={5694.8516,7.0554175,1203.0089}; + angles[]={0.010000871,6.2639766,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=504; + type="Betula_pendula_2w"; + }; + class Item98 + { + dataType="Object"; + class PositionInfo + { + position[]={5679.6465,6.7359767,1200.7322}; + angles[]={0.0050033992,6.2639766,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=505; + type="Betula_pendula_2w"; + }; + class Item99 + { + dataType="Object"; + class PositionInfo + { + position[]={5707.6104,7.6606822,1140.4374}; + angles[]={0,0.45093346,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=506; + type="Betula_pendula_2w"; + }; + class Item100 + { + dataType="Object"; + class PositionInfo + { + position[]={5719.3281,7.8502364,1112.3679}; + angles[]={6.278194,2.4055202,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=507; + type="Betula_pendula_2w"; + }; + class Item101 + { + dataType="Object"; + class PositionInfo + { + position[]={5709.6489,7.6612725,1111.9637}; + angles[]={6.278182,0.44348812,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=508; + type="Betula_pendula_2w"; + }; + class Item102 + { + dataType="Object"; + class PositionInfo + { + position[]={5722.4448,7.9321713,1116.96}; + angles[]={6.278182,5.0357013,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=509; + type="Betula_pendula_2w"; + }; + class Item103 + { + dataType="Object"; + class PositionInfo + { + position[]={5704.042,7.549315,1111.0825}; + angles[]={0,2.3751225,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=510; + type="Betula_pendula_2w"; + }; + class Item104 + { + dataType="Object"; + class PositionInfo + { + position[]={5701.0508,7.5194907,1120.7791}; + angles[]={0,5.0906072,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=511; + type="Betula_pendula_2w"; + }; + class Item105 + { + dataType="Object"; + class PositionInfo + { + position[]={5678.1631,6.2957659,1171.5443}; + angles[]={0.010000871,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=512; + type="Betula_pendula_1s"; + atlOffset=9.5367432e-007; + }; + class Item106 + { + dataType="Object"; + class PositionInfo + { + position[]={5681.7261,6.3626595,1173.9618}; + angles[]={0.0050033992,5.9259396,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=513; + type="Betula_pendula_1s"; + }; + class Item107 + { + dataType="Object"; + class PositionInfo + { + position[]={5681.2349,6.1044512,1208.8737}; + angles[]={0.0050033992,2.4913504,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=514; + type="Betula_pendula_1s"; + atlOffset=1.4305115e-006; + }; + class Item108 + { + dataType="Object"; + class PositionInfo + { + position[]={5696.998,6.8379087,1126.5359}; + angles[]={0,0.45093346,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=515; + type="Betula_pendula_1s"; + atlOffset=1.4305115e-006; + }; + class Item109 + { + dataType="Object"; + class PositionInfo + { + position[]={5707.0669,7.0492849,1126.6937}; + angles[]={0,2.5290184,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=516; + type="Betula_pendula_1s"; + atlOffset=4.7683716e-007; + }; + class Item110 + { + dataType="Object"; + class PositionInfo + { + position[]={5682.3955,10.946621,1166.303}; + angles[]={0.0050033992,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=517; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item111 + { + dataType="Object"; + class PositionInfo + { + position[]={5695.1206,11.26824,1158.7991}; + angles[]={0,4.5591898,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=518; + type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; + }; + class Item112 + { + dataType="Object"; + class PositionInfo + { + position[]={5709.3916,11.557269,1164.1576}; + angles[]={0.0050033992,0.33325216,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=519; + type="Betula_pendula_3s"; + }; + class Item113 + { + dataType="Object"; + class PositionInfo + { + position[]={5702.3696,11.277231,1186.4469}; + angles[]={0.0050033992,2.6623406,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=520; + type="Betula_pendula_3s"; + }; + class Item114 + { + dataType="Object"; + class PositionInfo + { + position[]={5677.1187,10.695169,1187.7429}; + angles[]={0.010000871,0.23225401,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=521; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item115 + { + dataType="Object"; + class PositionInfo + { + position[]={5686.625,10.834202,1198.3296}; + angles[]={0.0050033992,0.29058021,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=522; + type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; + }; + class Item116 + { + dataType="Object"; + class PositionInfo + { + position[]={5716.3555,11.724247,1113.3824}; + angles[]={6.278182,2.8163829,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=523; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item117 + { + dataType="Object"; + class PositionInfo + { + position[]={5686.0908,11.122042,1114.7244}; + angles[]={0,2.7000086,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=524; + type="Betula_pendula_3s"; + }; + class Item118 + { + dataType="Object"; + class PositionInfo + { + position[]={5694.8838,11.287901,1111.4761}; + angles[]={0,0.26992178,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=525; + type="Betula_pendula_3s"; + }; + class Item119 + { + dataType="Object"; + class PositionInfo + { + position[]={5723.8682,11.907589,1125.5812}; + angles[]={0,0.32824802,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=526; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item120 + { + dataType="Object"; + class PositionInfo + { + position[]={5688.6753,4.8228807,1172.3713}; + angles[]={0.0050033992,2.8786836,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=527; + type="Betula_pendula_stem"; + }; + class Item121 + { + dataType="Object"; + class PositionInfo + { + position[]={5703.7603,5.2359729,1155.4175}; + angles[]={0.0050033992,1.1843532,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=528; + type="Betula_pendula_stem"; + }; + class Item122 + { + dataType="Object"; + class PositionInfo + { + position[]={5686.229,4.5461555,1159.9078}; + angles[]={0.0050033992,2.2374964,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=529; + type="Land_RM_boulder1"; + atlOffset=4.7683716e-007; + }; + class Item123 + { + dataType="Object"; + class PositionInfo + { + position[]={5679.0547,4.6324048,1160.1776}; + angles[]={0.0050033992,4.1329355,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=530; + type="Fallen_Branch3"; + atlOffset=9.5367432e-007; + }; + class Item124 + { + dataType="Object"; + class PositionInfo + { + position[]={5685.9126,4.8540106,1122.7994}; + angles[]={6.278182,5.6239405,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=531; + type="Fallen_Branch3"; + }; + class Item125 + { + dataType="Object"; + class PositionInfo + { + position[]={5670.77,5.5724959,1169.9681}; + angles[]={0.0050033992,5.6265488,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=532; + type="prunusSpinosa_1s"; + }; + class Item126 + { + dataType="Object"; + class PositionInfo + { + position[]={5693.0767,6.0701876,1168.733}; + angles[]={0.0050033992,5.1727309,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=533; + type="prunusSpinosa_1s"; + }; + class Item127 + { + dataType="Object"; + class PositionInfo + { + position[]={5672.8438,5.6818337,1157.5518}; + angles[]={0.0049914722,5.243114,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=534; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item128 + { + dataType="Object"; + class PositionInfo + { + position[]={5675.186,5.7242312,1157.2854}; + angles[]={0.0050033992,2.6980438,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=535; + type="prunusSpinosa_1s"; + atlOffset=1.4305115e-006; + }; + class Item129 + { + dataType="Object"; + class PositionInfo + { + position[]={5690.0977,5.9430833,1179.2588}; + angles[]={0.0050033992,5.243114,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=536; + type="prunusSpinosa_1s"; + }; + class Item130 + { + dataType="Object"; + class PositionInfo + { + position[]={5695.3428,6.1118255,1170.3932}; + angles[]={0.0050033992,3.802088,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=537; + type="prunusSpinosa_1s"; + }; + class Item131 + { + dataType="Object"; + class PositionInfo + { + position[]={5689.187,6.0906763,1127.7985}; + angles[]={0,0.83436823,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=538; + type="prunusSpinosa_1s"; + }; + class Item132 + { + dataType="Object"; + class PositionInfo + { + position[]={5689.5933,6.0988011,1123.3427}; + angles[]={0,0.45093346,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=539; + type="prunusSpinosa_1s"; + }; + class Item133 + { + dataType="Object"; + class PositionInfo + { + position[]={5689.7456,6.1018481,1120.8923}; + angles[]={0,4.1890488,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=540; + type="prunusSpinosa_1s"; + }; + class Item134 + { + dataType="Object"; + class PositionInfo + { + position[]={5726.0034,6.8406315,1122.7255}; + angles[]={6.278182,0.45093346,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=541; + type="prunusSpinosa_1s"; + }; + class Item135 + { + dataType="Object"; + class PositionInfo + { + position[]={5725.9243,6.82727,1120.3694}; + angles[]={6.278182,4.1890488,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=542; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item136 + { + dataType="Object"; + class PositionInfo + { + position[]={5694.8076,6.1830883,1111.3533}; + angles[]={0,0.83436823,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=543; + type="prunusSpinosa_1s"; + }; + class Item137 + { + dataType="Object"; + class PositionInfo + { + position[]={6492.813,9.8073626,1542.4175}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=544; + type="Betula_pendula_2s"; + }; + class Item138 + { + dataType="Object"; + class PositionInfo + { + position[]={6602.1621,8.3249617,1497.5031}; + angles[]={0.02999169,3.3092811,6.2631865}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=545; + type="Betula_pendula_2s"; + }; + class Item139 + { + dataType="Object"; + class PositionInfo + { + position[]={6586.1016,8.6122799,1494.0032}; + angles[]={0,1.1101785,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=546; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item140 + { + dataType="Object"; + class PositionInfo + { + position[]={6485.0308,8.5700645,1542.318}; + angles[]={6.278194,4.8603363,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=547; + type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; + }; + class Item141 + { + dataType="Object"; + class PositionInfo + { + position[]={6493.0034,8.2040148,1530.0295}; + angles[]={0,3.0306869,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=548; + type="Betula_pendula_2w"; + }; + class Item142 + { + dataType="Object"; + class PositionInfo + { + position[]={6594.5547,6.9276648,1500.6042}; + angles[]={0.039979152,1.1101785,6.2531939}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=549; + type="Betula_pendula_2w"; + }; + class Item143 + { + dataType="Object"; + class PositionInfo + { + position[]={6586.7876,8.6249447,1474.4502}; + angles[]={0.12435512,4.1408653,6.2232571}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=550; + type="Betula_pendula_2w"; + }; + class Item144 + { + dataType="Object"; + class PositionInfo + { + position[]={6586.374,7.1647348,1486.2677}; + angles[]={0,4.1408653,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=551; + type="Betula_pendula_2w"; + }; + class Item145 + { + dataType="Object"; + class PositionInfo + { + position[]={6491.374,7.7627335,1538.1761}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=552; + type="Betula_pendula_1s"; + atlOffset=0.00050592422; + }; + class Item146 + { + dataType="Object"; + class PositionInfo + { + position[]={6597.9673,6.4782734,1486.9591}; + angles[]={0,1.1101785,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=553; + type="Betula_pendula_1s"; + }; + class Item147 + { + dataType="Object"; + class PositionInfo + { + position[]={6598.0391,6.4777508,1482.6539}; + angles[]={0,1.793004,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=554; + type="Betula_pendula_1s"; + }; + class Item148 + { + dataType="Object"; + class PositionInfo + { + position[]={6484.4351,12.427729,1535.2501}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=555; + type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; + }; + class Item149 + { + dataType="Object"; + class PositionInfo + { + position[]={6499.6396,11.98844,1532.6136}; + angles[]={0,3.724463,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=556; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item150 + { + dataType="Object"; + class PositionInfo + { + position[]={6595.8882,10.99931,1494.2593}; + angles[]={0.0099949092,1.1101785,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=557; + type="Betula_pendula_3s"; + }; + class Item151 + { + dataType="Object"; + class PositionInfo + { + position[]={6591.6665,11.25432,1479.0721}; + angles[]={0.10461687,4.8346415,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=558; + type="Betula_pendula_3s"; + }; + class Item152 + { + dataType="Object"; + class PositionInfo + { + position[]={6495.5249,5.9080896,1534.6451}; + angles[]={0,2.2669613,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=559; + type="Betula_pendula_stem"; + }; + class Item153 + { + dataType="Object"; + class PositionInfo + { + position[]={6593.8823,4.8847022,1479.9501}; + angles[]={0.089757703,5.0289335,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=560; + type="Betula_pendula_stem"; + }; + class Item154 + { + dataType="Object"; + class PositionInfo + { + position[]={6583.8135,4.6018348,1486.5812}; + angles[]={0,4.3877463,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + }; + id=561; + type="Land_RM_boulder1"; + }; + class Item155 + { + dataType="Object"; + class PositionInfo + { + position[]={6493.4321,5.9536762,1549.0967}; + angles[]={6.228241,0.06374044,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + }; + id=562; + type="Land_RM_boulder4"; + }; + class Item156 + { + dataType="Object"; + class PositionInfo + { + position[]={6497.373,5.8154988,1539.856}; + angles[]={6.2332273,0,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=563; + type="Land_Cliff_stoneCluster_F"; + }; + class Item157 + { + dataType="Object"; + class PositionInfo + { + position[]={6587.9678,4.8225203,1492.437}; + angles[]={0,0,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=564; + type="Fallen_Branch3"; + }; + class Item158 + { + dataType="Object"; + class PositionInfo + { + position[]={6493.645,7.1177659,1535.364}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=565; + type="prunusSpinosa_1s"; + }; + class Item159 + { + dataType="Object"; + class PositionInfo + { + position[]={6491.0679,7.357718,1548.6993}; + angles[]={6.278182,1.6900297,6.2432079}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=566; + type="prunusSpinosa_1s"; + }; + class Item160 + { + dataType="Object"; + class PositionInfo + { + position[]={6599.7866,5.8412194,1494.5945}; + angles[]={0.014998405,1.4936135,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=567; + type="prunusSpinosa_1s"; + }; + class Item161 + { + dataType="Object"; + class PositionInfo + { + position[]={6593.0659,5.9370503,1487.0887}; + angles[]={6.278194,1.0397955,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=568; + type="prunusSpinosa_1s"; + }; + class Item162 + { + dataType="Object"; + class PositionInfo + { + position[]={6589.1714,5.9262185,1499.0717}; + angles[]={0.019996032,1.1101785,6.2581916}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=569; + type="prunusSpinosa_1s"; + }; + class Item163 + { + dataType="Object"; + class PositionInfo + { + position[]={6587.666,5.9773273,1497.2577}; + angles[]={0.0050033992,4.8482938,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=570; + type="prunusSpinosa_1s"; + }; + class Item164 + { + dataType="Object"; + class PositionInfo + { + position[]={6597.6064,5.921351,1480.5035}; + angles[]={0.014998405,1.1101785,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=571; + type="prunusSpinosa_1s"; + }; + class Item165 + { + dataType="Object"; + class PositionInfo + { + position[]={6253.3809,5.7706604,1341.0455}; + angles[]={0,1.1101785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=572; + type="Betula_pendula_2s"; + atlOffset=1.1920929e-007; + }; + class Item166 + { + dataType="Object"; + class PositionInfo + { + position[]={6251.2861,4.0670247,1328.1105}; + angles[]={0,4.1408653,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=573; + type="Betula_pendula_2w"; + atlOffset=-1.1920929e-007; + }; + class Item167 + { + dataType="Object"; + class PositionInfo + { + position[]={6238.9971,6.7703609,1336.3245}; + angles[]={6.278182,2.9194372,6.1934271}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=574; + type="Betula_pendula_2w"; + }; + class Item168 + { + dataType="Object"; + class PositionInfo + { + position[]={6250.4326,3.3536325,1352.4836}; + angles[]={0,1.1101785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=575; + type="Betula_pendula_1s"; + atlOffset=1.1920929e-007; + }; + class Item169 + { + dataType="Object"; + class PositionInfo + { + position[]={6247.9971,1.8497752,1335.881}; + angles[]={0,4.3877463,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + }; + id=576; + type="Land_RM_boulder1"; + }; + class Item170 + { + dataType="Object"; + class PositionInfo + { + position[]={6260.0195,3.2135437,1326.5044}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=577; + type="Fallen_Branch3"; + }; + class Item171 + { + dataType="Object"; + class PositionInfo + { + position[]={6261.6157,4.7059708,1337.6422}; + angles[]={0,1.1101785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=578; + type="prunusSpinosa_1s"; + }; + class Item172 + { + dataType="Object"; + class PositionInfo + { + position[]={6243.6821,4.1935544,1323.5297}; + angles[]={0,4.8482938,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=579; + type="prunusSpinosa_1s"; + }; + class Item173 + { + dataType="Object"; + class PositionInfo + { + position[]={6116.8667,5.3266335,1244.0605}; + angles[]={0.0049914722,1.1101785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=580; + type="prunusSpinosa_1s"; + }; + class Item174 + { + dataType="Object"; + class PositionInfo + { + position[]={5361.8262,2.4073336,1281.6006}; + angles[]={0.0068620592,5.2293663,0.022926334}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + }; + id=581; + type="Land_Boat_05_wreck_F"; + atlOffset=1.1920929e-007; + }; + class Item175 + { + dataType="Object"; + class PositionInfo + { + position[]={6127.1289,5.3190737,1251.5725}; + angles[]={0.0049914722,1.1101785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=582; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item176 + { + dataType="Object"; + class PositionInfo + { + position[]={6128.1816,3.8273191,1268.5361}; + angles[]={0.0049914722,5.2003188,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=583; + type="Land_TrailerCistern_wreck_F"; + }; + class Item177 + { + dataType="Object"; + class PositionInfo + { + position[]={6104.4731,4.560534,1295.0909}; + angles[]={6.278194,0.29276603,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=584; + type="FallenTrunk_branches"; + atlOffset=2.3841858e-007; + }; + class Item178 + { + dataType="Object"; + class PositionInfo + { + position[]={6118.3413,4.0939045,1266.1377}; + angles[]={0,0.54167867,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=585; + type="Fallen_Branch3"; + atlOffset=2.3841858e-007; + }; + class Item179 + { + dataType="Object"; + class PositionInfo + { + position[]={6102.0815,4.0721979,1270.9063}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=586; + type="Fallen_Branch3"; + atlOffset=2.3841858e-007; + }; + class Item180 + { + dataType="Object"; + class PositionInfo + { + position[]={5970.083,5.7342677,1276.1747}; + angles[]={0,3.201129,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=587; + type="Land_HayBale_01_stack_F"; + }; + class Item181 + { + dataType="Object"; + class PositionInfo + { + position[]={5921.3945,6.089016,1261.6558}; + angles[]={0,4.3988872,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=588; + type="Land_HayBale_01_stack_F"; + }; + class Item182 + { + dataType="Object"; + class PositionInfo + { + position[]={5968.0415,6.9169331,1443.4972}; + angles[]={0,3.9998949,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=589; + type="Land_HayBale_01_stack_F"; + }; + class Item183 + { + dataType="Object"; + class PositionInfo + { + position[]={5895.6938,5.4396238,1260.8673}; + angles[]={0,6.0700612,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=590; + type="Land_HayBale_01_F"; + }; + class Item184 + { + dataType="Object"; + class PositionInfo + { + position[]={5884.2642,5.7532425,1306.7317}; + angles[]={0,4.9930415,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=591; + type="Land_HayBale_01_F"; + }; + class Item185 + { + dataType="Object"; + class PositionInfo + { + position[]={5928.3135,5.3605499,1330.2917}; + angles[]={0,5.9657397,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=592; + type="Land_HayBale_01_F"; + }; + class Item186 + { + dataType="Object"; + class PositionInfo + { + position[]={5961.022,5.0761995,1330.8386}; + angles[]={0,0.18457329,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=593; + type="Land_HayBale_01_F"; + }; + class Item187 + { + dataType="Object"; + class PositionInfo + { + position[]={5900.2935,5.6659279,1357.0339}; + angles[]={0,6.0322862,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=594; + type="Land_HayBale_01_F"; + atlOffset=-4.7683716e-007; + }; + class Item188 + { + dataType="Object"; + class PositionInfo + { + position[]={5959.3599,5.4075766,1385.2151}; + angles[]={0,0.17967109,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=595; + type="Land_HayBale_01_F"; + atlOffset=-4.7683716e-007; + }; + class Item189 + { + dataType="Object"; + class PositionInfo + { + position[]={5925.0278,5.241713,1272.4016}; + angles[]={0,4.3614526,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=596; + type="Land_HayBale_01_packed_F"; + }; + class Item190 + { + dataType="Object"; + class PositionInfo + { + position[]={5897.7998,7.2505665,1408.8676}; + angles[]={6.2731905,2.0944242,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=597; + type="Land_CombineHarvester_01_wreck_F"; + }; + class Item191 + { + dataType="Object"; + class PositionInfo + { + position[]={5693.4932,6.7678099,1127.111}; + angles[]={0,4.8208265,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=601; + type="Betula_pendula_1s"; + }; + class Item192 + { + dataType="Object"; + class PositionInfo + { + position[]={5694.0762,7.3799987,1130.0994}; + angles[]={0,5.0906072,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=602; + type="Betula_pendula_2w"; + }; + class Item193 + { + dataType="Object"; + class PositionInfo + { + position[]={5722.1411,7.9612975,1132.1006}; + angles[]={0,5.0906072,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=603; + type="Betula_pendula_2w"; + }; + }; + id=401; + atlOffset=-0.45109081; + }; + }; + id=257; + atlOffset=0.65051222; + }; + }; +}; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/onPlayerKilled.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/onPlayerKilled.sqf new file mode 100644 index 0000000..84f2529 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/onPlayerKilled.sqf @@ -0,0 +1 @@ +#include "script_component.hpp" \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/script_component.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/script_component.hpp new file mode 100644 index 0000000..c6a30ee --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/script_component.hpp @@ -0,0 +1,54 @@ +#define PREFIX AFSG +#define COMPONENT Patrol + +// Version +#define MAJOR 1 +#define MINOR 0 +#define PATCHLVL 0 + +// Map +#define MAP VR + +#define DEBUG_SYNCHRONOUS +//#define DEBUG_MODE_FULL + +// ACE3 +#define ACE_PREFIX ace + +#define ACEGVAR(module,var) TRIPLES(ACE_PREFIX,module,var) +#define QACEGVAR(module,var) QUOTE(ACEGVAR(module,var)) + +#define ACEFUNC(var1,var2) TRIPLES(DOUBLES(ACE_PREFIX,var1),fnc,var2) +#define QACEFUNC(var1,var2) QUOTE(ACEFUNC(var1,var2)) + +#define PATHTOACEF(var1,var2) PATHTOF_SYS(\z\ace\addons,var1,var2) +#define QPATHTOACEF(var1,var2) QUOTE(PATHTOACEF(var1,var2)) + +// AF Mods +#define AFM_PREFIX afm + +#define AFMGVAR(module,var) TRIPLES(AFM_PREFIX,module,var) +#define QAFMGVAR(module,var) QUOTE(AFMGVAR(module,var)) + +#define AFMFUNC(var1,var2) TRIPLES(DOUBLES(AFM_PREFIX,var1),fnc,var2) +#define QAFMFUNC(var1,var2) QUOTE(AFMFUNC(var1,var2)) + +#define PATHTOAFMF(var1,var2) PATHTOF_SYS(\x\afm\addons,var1,var2) +#define QPATHTOAFMF(var1,var2) QUOTE(PATHTOAFMF(var1,var2)) + +// Preset stuff +#define RESPAWN_HELPER_VR respawn + +#include "\x\cba\addons\main\script_macros_mission.hpp" + +// Patrol stuff + +#define REDFOR_SPAWN_MARKER "sys_marker_redfor_spawn" +#define REDFOR_LOADOUT [["CUP_smg_Mac10","CUP_muzzle_mfsup_Suppressor_Mac10","","",["CUP_30Rnd_45ACP_MAC10_M",30],[],""],[],["ACE_Flashlight_Maglite_ML300L","","","",[],[],""],["CUP_U_O_CHDKZ_Lopotev",[["ACE_fieldDressing",20],["ACE_epinephrine",3],["ACE_morphine",3],["ACE_tourniquet",2],["ACRE_PRC343",1],["ACE_EarPlugs",1]]],["CUP_V_I_RACS_Carrier_Rig_wdl_2",[["ACE_wirecutter",1],["CUP_30Rnd_45ACP_MAC10_M",6,30],["ACE_M84",4,1],["ACE_HandFlare_Yellow",2,1]]],[],"","G_Balaclava_blk",[],["ItemMap","","","ItemCompass","ItemWatch",""]] + +#define BLUFOR_SPAWN_MARKER "sys_marker_blufor_spawn" +#define BLUFOR_LOADOUT [["CUP_arifle_M16A2","","","",["CUP_30Rnd_556x45_Stanag_Tracer_Red",30],[],""],[],["ACE_Flashlight_Maglite_ML300L","","","",[],[],""],["CUP_U_B_BDUv2_M81_US",[["ACE_fieldDressing",20],["ACE_epinephrine",3],["ACE_morphine",3],["ACE_tourniquet",2],["ACRE_PRC343",1],["ACE_EarPlugs",1]]],["CUP_V_B_ALICE",[["CUP_30Rnd_556x45_Stanag_Tracer_Red",6,30],["ACE_HandFlare_White",4,1],["ACE_HandFlare_Red",1,1],["ACE_HandFlare_Green",1,1]]],[],"CUP_H_US_patrol_cap_WDL","",[],["ItemMap","","","ItemCompass","ItemWatch",""]] + +#define REDFOR_COUNT 6 + +#define OPFOR_DIED 0 \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml new file mode 100644 index 0000000..3084861 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml @@ -0,0 +1,142 @@ + + + + + OFP Patrol PvP + + + + Norweska wyspa Halsoy, zimna wojna. +Na lokalnym lotnisku USAF zaraz odbędzie się zmiana warty. Sabotażyści przygotowują się do infiltracji. + + + + + + + Pobierz dane z laptopa + + + + Na piętrze budynku znajduje się laptop, pobierzcie z niego dane. + + + + + Ukradnij SUVa + + + + W pobliżu hangarów transportowych znajduje się samolot zdolny przetransportować samochód. Ucieknijcie z lotniska. + + + + + Zniszcz samolot + + + + W pobliżu Radar Station Bravo pod namiotami stoją A-10. Zniszczcie przynajmniej 2. + + + + + + + + BLUFOR Zwycięża! + + + + + Infiltratorzy nie wykonali zadania. + + + + + REDFOR Zwycięża! + + + + + Infiltratorzy wykonali zadanie. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ArmaForces - Preset + ArmaForces - Preset + + + + Close + Close + Zamknij + + + + Rename + Rename + Zmień nazwę + + + + Custom + Custom + Ustaw własną + + + \ No newline at end of file From 0b6f4cd5b6e2221ca7b20dce0c410e452c429f8f Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Sun, 6 Feb 2022 14:24:54 +0100 Subject: [PATCH 02/10] Minor cleanup --- .../CfgDebriefing.hpp | 12 ------ .../CfgTasks.hpp | 38 +++---------------- .../initServer.sqf | 4 +- .../stringtable.xml | 24 ++++++------ 4 files changed, 22 insertions(+), 56 deletions(-) diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgDebriefing.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgDebriefing.hpp index 5f6ec9f..7572bfc 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgDebriefing.hpp +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgDebriefing.hpp @@ -2,25 +2,13 @@ class CfgDebriefing { class BLUFOR_WON { title = CSTRING(Debriefing_BLUFOR_WON_Title); subtitle = CSTRING(Debriefing_BLUFOR_WON_Subtitle); - //description = "You successfully rescued our forces and neutralized the spotters, despite being forced to retreat."; - //pictureBackground = ""; - //picture = "b_inf"; - //pictureColor[] = { 0.0, 0.3, 0.6, 1 }; }; class REDFOR_WON { title = CSTRING(Debriefing_REDFOR_WON_Title); subtitle = CSTRING(Debriefing_REDFOR_WON_Subtitle); - //description = "You successfully rescued our forces and neutralized the spotters, despite being forced to retreat."; - //pictureBackground = ""; - //picture = "b_inf"; - //pictureColor[] = { 0.0, 0.3, 0.6, 1 }; }; class REDFOR_DIED { title = CSTRING(Debriefing_REDFOR_DIED_Title); subtitle = CSTRING(Debriefing_REDFOR_DIED_Subtitle); - //description = "You successfully rescued our forces and neutralized the spotters, despite being forced to retreat."; - //pictureBackground = ""; - //picture = "b_inf"; - //pictureColor[] = { 0.0, 0.3, 0.6, 1 }; }; }; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp index 10d4847..4f18923 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp @@ -1,58 +1,32 @@ class CfgTasks { class PatrolPvP { - title = CSTRING(DisplayName); // Regular task title - description = CSTRING(Mission_Description); // Regular description. Cannot use linebreaks (enters), if needed use stringtable. - /* Task icon location on the map - First checks for marker with given name, and if doesn't exists, checks for object in mission namespace. - Alternatively {x, y, z} can be used for supplying position coordinates. - If all of them are empty then task won't be shown on the map. */ - icon = "defend"; // Icon classname from https://community.bistudio.com/wiki/Arma_3_Tasks_Overhaul#Appendix - initialState = "CREATED"; // Default value - - //conditionEventsCanceled[] = { "RTBOrdered", "RTBSuccessful" }; - //conditionEventsCanceledRequired = 2; - - //conditionEventsSuccess[] = { "RTBSuccessful" }; + title = CSTRING(DisplayName); + description = CSTRING(Mission_Description); + icon = "defend"; + initialState = "CREATED"; }; class Laptop { - title = CSTRING(Task_Laptop_Title); - description = CSTRING(Task_Laptop_Description); owners[] = { "EAST" }; object = "laptop"; - parentTask = "PatrolPvP"; icon = "download"; conditionEventsShow[] = { QGVAR(showOpforTasks) }; - //conditionEventsShowRequired = 1; conditionEventsSuccess[] = { "LaptopSuccessful" }; }; - class SUV { - title = CSTRING(Task_SUV_Title); - description = CSTRING(Task_SUV_Description); - owners[] = { "EAST" }; + class SUV : Laptop { object = "suv"; - parentTask = "PatrolPvP"; icon = "car"; - conditionEventsShow[] = { QGVAR(showOpforTasks) }; - //conditionEventsShowRequired = 1; - conditionEventsSuccess[] = { "SUVSuccessful" }; }; - class Jets { - title = CSTRING(Task_Jets_Title); - description = CSTRING(Task_Jets_Description); + class Jets : Laptop { owners[] = { "EAST" }; - parentTask = "PatrolPvP"; icon = "plane"; - conditionEventsShow[] = { QGVAR(showOpforTasks) }; - //conditionEventsShowRequired = 1; - conditionEventsSuccess[] = { "JetsSuccessful" }; }; }; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf index 10570df..aa4753e 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf @@ -87,10 +87,11 @@ if (isDedicated) then { GVAR(playersConnected) pushBackUnique [_uid, _unit]; private _msg = format ["Players ready %1/%2", count GVAR(playersConnected), playersNumber WEST]; - //private _msg = format ["Players ready %1/%2", count GVAR(playersConnected), 1]; + if (!GVAR(serverInitialized)) then { [QGVAR(showSystemMessage), [_msg]] call CBA_fnc_globalEvent; }; + if (count GVAR(playersConnected) isEqualTo playersNumber WEST && {!GVAR(serverInitialized)}) then { private _msg = format ["Starting initialization with %1/%2 players ready.", count GVAR(playersConnected), playersNumber WEST]; [QGVAR(showSystemMessage), [_msg]] call CBA_fnc_globalEvent; @@ -121,6 +122,7 @@ if (isDedicated) then { call FUNC(initializeBluforSpawn); call FUNC(initializeRedforSpawn); [QGVAR(showSystemMessage), ["Spawns initialized"]] call CBA_fnc_localEvent; + // Wait until all opfor players change their side and show them tasks [{count (allPlayers select {side _x isEqualTo EAST}) isEqualTo count GVAR(playersOpfor)}, { [QGVAR(showSystemMessage), ["Publishing OPFOR tasks"]] call CBA_fnc_localEvent; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml index 3084861..eaf9629 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml @@ -5,7 +5,9 @@ OFP Patrol PvP - + Norwegian island Haloy, cold war. +There will be a shift change on the local USAF airfield. Saboteurs prepare for infiltration. + Norweska wyspa Halsoy, zimna wojna. Na lokalnym lotnisku USAF zaraz odbędzie się zmiana warty. Sabotażyści przygotowują się do infiltracji. @@ -15,29 +17,29 @@ Na lokalnym lotnisku USAF zaraz odbędzie się zmiana warty. Sabotażyści przyg --> - + Download the data from laptop Pobierz dane z laptopa - + There is a laptop on the first floor of the building. Download the data from it. Na piętrze budynku znajduje się laptop, pobierzcie z niego dane. - + Steal the SUV Ukradnij SUVa - + There is a cargo plane near the transport hangar that can accomotade the SUV. Escape the airport. W pobliżu hangarów transportowych znajduje się samolot zdolny przetransportować samochód. Ucieknijcie z lotniska. - + Destroy the plane Zniszcz samolot - + There are A-10s near Radar Station Bravo, hidden under hangar tents. Destroy at least 2 of them. W pobliżu Radar Station Bravo pod namiotami stoją A-10. Zniszczcie przynajmniej 2. @@ -47,22 +49,22 @@ Na lokalnym lotnisku USAF zaraz odbędzie się zmiana warty. Sabotażyści przyg --> - + BLUFOR Wins! BLUFOR Zwycięża! - + Infiltrators didn't do their job. Infiltratorzy nie wykonali zadania. - + REDFOR Wins! REDFOR Zwycięża! - + Infiltrators did their job. Infiltratorzy wykonali zadanie. From ec4676765a92a6594237b931feaad27069812ad4 Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Sun, 6 Feb 2022 14:28:18 +0100 Subject: [PATCH 03/10] Add missing tag for CfgTasks --- PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp index 4f18923..01f5fa6 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp @@ -1,4 +1,6 @@ class CfgTasks { + tag = QUOTE(DOUBLES(PREFIX,COMPONENT)); + class PatrolPvP { title = CSTRING(DisplayName); description = CSTRING(Mission_Description); From 35f78db0f1df29597452b742f0128442970d3a25 Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Sun, 6 Feb 2022 14:42:55 +0100 Subject: [PATCH 04/10] Add README for PvP folder --- PvP/README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 PvP/README.md diff --git a/PvP/README.md b/PvP/README.md new file mode 100644 index 0000000..3bb9a8b --- /dev/null +++ b/PvP/README.md @@ -0,0 +1,3 @@ +# PvP + +Contains PvP scenarios which are not a game modes, more like standard missions. From ee254c2bcf918f0a61c764aea4d805e216ad5768 Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Sun, 6 Feb 2022 16:42:39 +0100 Subject: [PATCH 05/10] Some work on vegetation and tasks --- .../CfgTasks.hpp | 9 +- .../description.ext | 9 +- .../images/screen.paa | Bin 0 -> 312623 bytes .../initServer.sqf | 7 + .../mission.sqm | 21498 +++++++++++++--- .../stringtable.xml | 10 +- 6 files changed, 17714 insertions(+), 3819 deletions(-) create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/images/screen.paa diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp index 01f5fa6..edfaf81 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/CfgTasks.hpp @@ -3,13 +3,15 @@ class CfgTasks { class PatrolPvP { title = CSTRING(DisplayName); - description = CSTRING(Mission_Description); + description = CSTRING(Mission_ShortDescription); icon = "defend"; initialState = "CREATED"; }; class Laptop { owners[] = { "EAST" }; + parentTask = "PatrolPvP"; + object = "laptop"; icon = "download"; @@ -22,11 +24,16 @@ class CfgTasks { object = "suv"; icon = "car"; + conditionEventsShow[] += { QGVAR(suvSpawned) }; + conditionEventsShowRequired = 2; + conditionEventsSuccess[] = { "SUVSuccessful" }; }; class Jets : Laptop { owners[] = { "EAST" }; + object = ""; + marker = "sys_marker_radar_station_bravo"; icon = "plane"; conditionEventsSuccess[] = { "JetsSuccessful" }; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/description.ext b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/description.ext index d86d5b3..d67ead7 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/description.ext +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/description.ext @@ -13,10 +13,13 @@ disableChannels[] = {1, 2, 3, 4, 5}; /* Mission description and stuff */ author = "3Mydlo3"; -onLoadIntro = CSTRING(DisplayName); +onLoadIntro = CSTRING(Mission_ShortDescription); briefingName = CSTRING(DisplayName); -onLoadMission = CSTRING(DisplayName); -onLoadName = CSTRING(DisplayName); +onLoadMission = CSTRING(Mission_ShortDescription); +onLoadName = CSTRING(Mission_Title); + +loadScreen = "images\screen.paa"; +overviewPicture = "images\screen.paa" /* Other stuff */ disabledAI = true; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/images/screen.paa b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/images/screen.paa new file mode 100644 index 0000000000000000000000000000000000000000..c3362a904b2f21777e3705a910b2b36434ec0a8d GIT binary patch literal 312623 zcmafai(3;{8uvMqppy`8wzSw%<;;Kzh?H8YP%sdyZLwCX3_+M=6j!a{tttg!CWB~O z1zNjZsoicM2usC8h}$hG z_kDkt1ErT=&dgr;a!#fk0PtkwQ~z%}H*@KuZ3+K9`h4Z$#mh4A_ICX5J}3jlyX4@c zRSs-+Ir!?l99;fN4yJtl=!pOC-#$R>Jt#wni~=r~s~eF3*sPW=9uU&lkUNtFaJ<_m ziNGcKjre_=%O`^Faj6bUVlb=-RYAxwHShBfo<3IIzyo;r@VL_?vmd*M-;0KB$)x18 z<0k0x+3}9R_y!;X?`Xdf5N`9(tTm!svUI3qvM69L7A!mffyb%)RRy6@AU-kCRuP&> zb~*c8dqNQ~#|@QMu!K@FyM5-r9N}}@Qq0UA&01!=fF@GR*59w&XBHf5MLJHkd4<7>k zJrhH`oY;1G%(8}!fMhVMt)>CHw=o{_Fb-9|=7}10DP%Xuk0E z2fPfPVpreeWyG$IEw>w36=CoAu;Uyn1CQN5^&u;pno0VGyXVnU*O1pm3y1>eLe1tQ z8*fBJ0Vijxyum&R0<2wD_rj@r$now9+qw}-+3;S zae;eN_!|)pb%}Of?Leq_abhZJ}-}d0Zxp$ zPYX|kD3;#m5z)89EuLpX;JDN*@$;dM8Is{U7`pH8=VPJWV!ecK*?nPeBObPnK*a#Q z$vkacB0rnBF+ALVj(t}7#_-_|Vrn@#9B(<<$WD^E#*QVfPhx{XlA|rWFmG|voi9JX z8@D2pJoCz?iFZ@>Mu;JzbA3udXlrxD_4kq*BYGX&`!}Nysfe|niis@<4Yt&cEQ*Z+ zJ=t20U#aXV8*b0Q^QD-R>Z4cyT`qsK0Jsd03!>x@Kz=n#35puBg?*jf1atJvjyl1S{JX{t3u$wXk|rXL;=}RrYrr51iXU`zOyFBD@{Nu0PeZ4n&(FuffPk-K z*wC&ccUq!H);Hh(~-+V7t zLn;&s^qS^El0ChpWqJN)&9P$_&o9r9Pc2!Vo4XjT4gERWe=>lb6nr}-yev-hRRmL$ ze4sF^Iq6cy@*rjEUb3X*-o39PASk%^{V#kSEEyQSZ;Bk>utj{#=W1h<^ow+PDk!|n z$Uo%4s+UDP&FprY%`hoP3-G+v&35#HVthARhSTy(p&%3$@qi_2Co}LHQU0PJV~l~Y zw^!GTBiOLjVCa=Q@F|L1KA%9k;55dVlQGFO#n#p<0ET>qTL?f9T<^dqKBhGQk0g&Y z+MNNM)M7jfi@J*)yqVBedVEK4&@uk1L_QNTeFJm&Pn9twad!{78Zf}S zqJ+7ODy-{*q{9bGK1qcmDnzY5Zuq>>21q^t4i5HT!u#ybxi|1NsXOMMHfe{StH-xt zwO)TTyS_~P?+bho{I0ZMBM!RN1*biDuC=%S{EZl}tE8Si!S&Qw>vV7E%>9hBHY z7DAsd{$}QU21XOAM&Yp*RcA(kf^n6LF|i1Y5eCKp%q5d20dQV*Y$++%$x1Uag$2Hh zr}#kl$Is(!!edql5>3zghs*-72aP<6&+mrkSVeGqY_OIXhtDSRe#jMn|1|z!_~@-{ zk*I#)ugeVnuWD~+YV`CdQL@(&PA>WxBn7Rs^AWIqsJR)BnNk^8i4Uni(@=(UmpKsx z^7Dy~;h__2*d(}LNmUu_k{JimIXp~59B(JI);Q^iuG}6ZNvc5E8geet7$g$SU8h;O zY&ALN^w|0PgsbVu-v+ozU%psI4#-0@$buznhfEix(-uB}=(M_z%Ge&o?M>oHLuffE zHCx+xzoOD?nJJrkBsAZHA0mMN+puXFe}#yf6}w=7od!Ga^_Pn;MXTo1JyB4|*Dm0{ zht7i&&4Q8$n%;^le7(K!(s`ZYUeMoqRWj8cGS%+-<9x&(va?vr++Zg`W1Y5}Ur%^F z_wVgt{|SHVdeO>zAyXvy_;L8Q^ru;Xr&Sy~Z4v@^?^+uEn^YiJzvdy~-_Ly>!%pOP zB?sr5K5tmI)&z*^6|6kaQB$7V)DX&OT|`YauG-KK9EbP`ptRIS)SeGz9K`t5LpMSh zeY0aEZw={FRxK6l!`*&M)9zlRZx=BFM#01C&`w$ROGU$cI6POl z^lPEi%~}jXm(Gpyn6FbQjPI}|y?`^FVH^%Te_Cp5On3~6 zxcnSpl8v?TPe5mxFPYDQg3I*_PeVy+X~$Dxa@zBMuxn+Y!+fmeEUrbCyQlj1uu}-G zC(XRa0EZgcKTuC>z^K$$n1#qhO>pp9#K!5BN=-22%|UQPKU*MzVf706G+fv$%utFB z^edyQvvhz{0)<8ugv;A}n?=RR7>2i0XYnAIA)1pkWD&!#Uqv8LW%00jnTC8e;`u-x zC?-CNnARAI$kE^YJ@_(ZvKv*82K3JGgCB8ZZu;h%t^z!f?Hz#MD)I2Ir%2;Hy+zmP%topZ(OKI4Vb!P#}2oAYRG|}o}a}zro#^7d{|hvd#CWclmTjQ7qNE)$>Edq z#(B`=Dcs1*b0wn}ipAsILcsM5SM6&YAPhjKlfTxvlqK|XeZD-nD?=;ce16T=Hg3C{ zV^p&mI&u~)et31<7{q#QlZ)zB);!te<9I*`zy)R)zk-}o>lFUQ1j&-|6JM&@ThANe z$_E|8cuVWITln9I`{uspJsj+_n%PBog6tm75pfLw{>nrVR1y=a06dm^)5>Q(noFgp zPOEu6Y-9XG6gTe|_gjcZxWAuu;zWbtjUh7##;4u3KoCU$TYT(e_@n)m_(zt*(#uCB z+&Xj&yUTH4Nz$G3xca>NjdYFw4=fxS8pb+#_Lk?i(Te1(3Gzr+CSuF1{=r?E`>}~vbi<}?bf0um?x&9MU$-B_0 zIOJ91TGhI#kz!XU$px}a_i5aW`;Q)I;Li~yV%Kqk^ZKo0?2myNpuNFdIS_h;^l%=L zokV~IZgU5|BKFVl94ak}h#%1xp2MRHsM+=b)&=+eyZ!+ssZHv3BP1+OpLP$hYAB5N zoS=*dR-p&S4L|hw!E<~8Y;Cnv;YqFxjO!x8){woNUN7oi@k>UV(vs@;6H`}%s>HfK zX*P&(T+J(dmolX?TbA;QKwr@O`bFq0=@W~RpRA=i(+Nj>ZqqpobS4ema~&!m1$&^` zb!ahi5#<=*G=v5=FOnZxG|OP<#9!~48ODc%mAi`c);(nI=SZD!At{C>geh%`JF^Vb zfJXiZqFp*@6>x-<44#;Co&(o=M$t11js*Q!0`_GCyyS$2V*|otx&tI3>8*S z{?cHjc&NA)5MWw};SHnsXRJa zcTjDcIEm46$Tk~szz3cdUtLpMr*SV#aFh-658z&l$B8FkKBudp z44O7qP{I+`J!vSu$#pF02$`H2QTWolg>+F>)+AMVLa=OG;iTD;QU!_8f(nvb{M7xu ztX`4mV~(#lf>B)@vxyBL7_Qv+4UTt$A=E$Y`m4V0ta^%XzD*;pYhH86V^)paoXuEXdehku(`F(XyWN8-1+LC_qT*8ptJmW1>|jJM7oIIyQW>rTp=H9OyG zPFjq_O`BH7ES&Rm&o8uhCG^&H*WnmmxiWvdAz7!hNdjAIl=y!c#=E+Ve?UR|aJ)yV z9qW$id_h;6D#~(-wY3k5(3xo4IActQzHyt0Z$>3K#;)9P(;`t6j2_5vz8HMYOG7Bo z^r|#EAxtjH(1?L1yN!M(o&%~n1tWk^!@qQ_eUZ)9%T6o~ur<>BTxjl)>?YuUIEE`x zx%spVw_vSfV^1R)}i92wmQ7_57m)UHEfbW# zC}m)h>h-k>I14R!{ZtEzOwN4%8^q40xYsj43pGC(buj^m|2IDy{=B=d$?%w@i{@T# zwc2rU>q*EA%MfpkxqL!OH|kLfPzu`MsDs_zb-7v1wDw$R^SUC2VrjyB>CJ67 z*r(yFi+I zXy`MQCmWve4XXZ1u`$H^dne_|*atXH6T2w3K<=uFs>G--=&v0rtyp3nG9#AKk0z($ z$WE-Upji)*kZiZEW&N;k*4+X8fKJuf+wpAkb=zw3OM<<-SXA8ecj+b{3E6OEX%=NH zfS+~QEPOAfL5WuJaW3b6G#6vNq`?5E_L(`YxHyy1+5V6D7iHQfKDG`-u#b@kD+w7| zO`2|7nlaoxb7NrjSyln2jCl+l|3qs*cn~CFHEXA89pTB_))ri6a^{PXYTQ_-EA{#-D~3`)MS4?6e!M2RMRNYIb90t-@W6qV6>%DHJm+C>zEbo3 zr)}-Q`9mr8IiD3T(dgUsxn&zbEJRkoVr`ZrY>ze=6l@%9LoWk#o)mcL+U9Olv zNAvEaXf|-UOR~O-$Ql}=y(=(@*|*ZLSzQEv6ub29BE-$boIMQoiT7?)RMmG8jr#< zw*M601k2u^_Y8(@O*P$r)P3t>Xy@y0r-+P+xT2lt8Oy_oa;+%(jN$mQ!vD#(!nR`; z3)Qm#dhfQTQmmTTQmEN>jspj!RqR3#xQ7gQ{-+`ulginj3^dB7LLmJ^t){2`O8R&C zRkgBu@^YfOf`1iu40R_{X|V*Cmy<&WnVfL3GFX-YR4!Pem7_&da^NcpWJnIYMNHdu zC`cBl*}AGFDA0`jSsxb4X9UlRbGfqj-Ha%YW3>0nZbkSP&z{TkH6YT`HfQaI*j^r7 z&)(OZeW&U?P7iHg>2Nt{FP3%<$HobWDm|Hwxb^B2oBiloY zMY=ZL42QZrN(>k_1tNAU>UoP8R!Zk1gntdAG&OQQTj%@(zac>D%+#Y)&ugT;+3%~s zLdUHkhVEQKc-+$1e`$3Bv!+4yw2YL7t>y~-q>3teG-fFbT#keC?ts1F-QVH)HulTa zk-@rvJeJRb11Gvx;Oq}ynWw5@!=Zzb9jDS}IFGG>*O+e?=)9hj*$IaD5(Tk$Wkx|D!#YXWyl=51~*mun{+rtxu? zmgaPfwwR85d4_WX!w5#W%2R~dd*q!bRt%Z#bov5U&{8L^jTye$<^A9s;GP~jb>FnC)&GbhYWL2k_)_TTGmp~KGRAx9$k^QJv~4Z^%}fK-`J$am z{9>^Yz=ZK`k&v*fnmpM;F}td7M!1xN>>d2Q;re0KI@D7P=YW-8u=fcIsAP7^KZdi)OBu?B z+xf|CDvC@;XJ$}+EO4WnD|CcXHo&wU(m_wK?1`F}QZ^?0_{zM&em2!Bm#~mqD~&eSe75^6@NF`?;?I*;2LtoUi|kP z5t)FKs!X_`lkN8QiAMG={9st*C@H$zk<6aMN6pD*I4Uv*nq!-SaJ_oq`BS32YCyE5 zr>h4-%R$x91J4n1AoMA7IpCj!z0;rQ!_aSkWucquL@?*pKaKokn0u=s1%K!n_j*O* zli-=ClS9)sROX;GjeIqj+46hoIkrk+NsK=rLk$tJd;Y}Qfbyi(7MrCxkHOTffVJ#@ z0_=$)fj{irJC!X9sXBS+9prHR+Z~+0MAPd1tZRgoh(C;-_X}A`IbbUsSd#T->?adb zKCfmaK*Tg1H633OuNj@VKfJv#UUT5Uu^`<1E5E4g>ba7)L?cL5dylVZP9oycPaR)@ zaU7rf3l9Ty95el5$|o(W<{d-EsK8YBb$|0{o-%cnBra)T<>a7r`?Ho6gDGNRsp`c5 z05*O-FFZ~o{^^=`i#9CRX7k&jz0ID?)q~h~sI>h!=NIgcYZUgiDMls?*VKQ)9~Yvu zg)nD%!R73a^g_2^E?Yl)b&hHos(p5t%#N;$ngA-9LDcs1f6Yy&y*rUnOLx6>G#z}5 zqvK-wy9Fkq<*A{7pfy3;D&$vr8$1wlS`?GtT&#5f!^d>TAqrYJrSz?gQYKu;|oO~*S33bV`0O3PG}Wk<+CvE(P*^tUyQ zjfqpPE>NMgD0v1rlcBj#ph||!|1L*~AC>ss#=Fqe?KI)C+;*U`p6c8R=)uxHZF3R= zF#!Pq@5MHTcCvTLJ4ub9TEP4=ALv($nTvoTS<9kRh0T)T35^VoqTlR6mEj%XMHv zJ{RFWo?&Lspu8WT^cQXlJ_$x`?ix)z{*qedaI_H*jRs;8lQt0s;1HsvH=Uwnlp$fSE81Tn4dEQv>h_EofMqP2 ziz4E>*guh0iPooEGpCSX#lDfQN3sgL#- z>c;Idp_fC(eR`r>M|0&4!AD0fhHdlO%IUs$EoQ7|M}f5 zSX<-J@gmgeOO9a8s<-!6O*vZ=ysl}6qJhLpnAv*tC3J*bp21LQNmvAm*^6Z!@_jI8 zjDHV)pS`<{VpGtmzoMQ^SV%1xD6d$IeGbbrV+r<}Qu28GjoAF*_UnB&u%c~fGC3c; zo+`P2;|4n!vc=jWVN$7LXJUYCb;#dm#VPq)MBeo~Z=YpfBpNLT=(7~Ja%c!Y%~T>V zHa>2E134=;A@6KiCTJKD$8e`L>*a9|Pm&WJvxUa&r1r9;8{HGK^iEZ?;nQ{DAWM|| z4<_hH9rSJeWit+j?}mQ}6v1VW0j23-IeAs2($e*$`#$Q-Ay$KsM2TV-5}+&IJYgW3 z-SWTiQ7})}`x0iO!k11wq{MmkLJ{ixC*o#y*?Uy!NdLOU$DPOk4}-XRDpIHD8*rOt zQxWJhiQ47bGAA{$jdX=_6TJ5_d;G@Y*f zQV4UaGLd&JPIygiE|)lI)1^w|lW?csahqa~KwWr~h3bq_&YO8zckq*;oVgk!^v`?Q4i|)b!t*OW9viR_3Y3NqLy^ zzE-!ZnhrY?yfIcIj{>sPr=K=1TU(uVI61j?+1fY_@15wYW*_S2UQ#`#I+pZc$Gw8h zS<2Mp7Y;9|W_`qxFCD#!tQ`3czps+Xm8qwmoz;n}CfxMroe|zo+_zs>A7|wt^5LN! zx@BuGraY3t}P^H>9}v#k2a$}mM!`Muyy=6T9>b(dtbdL4`Qvdjb~@AN2~QGy(JWm@R+uL z>{`ez8u$9y8I$_S2ZOCIDpJo10W0`;*kJb0F(qx=k&FBB21e)Fr(2^{{25P0BFLGu za>cE`UwPm7DZIAD`!?-l{=MavxaGlv@9551(DHtajV~l@w(hGkHV9rCHSjp=-0N?3 zAHgE7Hm{zDUXas&#&Gz42m21qz7Z|ezTeVKM?NbXEF3?B0QXd}Poi{h_)rg~3*IIO z-#Ax+X?b|#bUMXW5gqQ<&uGc=r9b9;Xlv9v>vph<5ngGeNib_G|Rh6;Zv0hMQ z?x??zlmP+)j#~L~@U%MRX;WP421M*V@P6>hi%GUGop8-)hlzq6zh@>#U=9=x5rN#MlmVh~*41&O2bJc9Ng% z)PXVmAMjy&B@p596>t^<{km_By0oiim^gxk{gq3YX z@P~z6@aeATy5ySbXv2$-^Qy@L@feDHi7GIkD3iy*Qyv}8UM~~`IIpttn(u0=QD+qk z1qPeM4(TQndf+k!Osm()<|1FzppJY`_jbQ7{Fd(6cRE;s(w>8nPpX4%gr7>k|Q4g_RkM{8gvs&^fBmH>sY(sB895YOtScCO_AMla#&O z)grLp;kK=Mqh}WX4jdUi<)zp)Pzvm_@*~i4>a#?4l0Iv!5~mHTUHg`lQL*t-gZaYqhRcT!-Xp^And*C6hEU{j!y0RqY4G%@QiQ~?$3zY}JaiwjcTvXIQQb1mL5u4px1Hu%bDUlD z^mlcf7`|u|UI3?IgvS87Jn~e`e+Gp$D|p zY`1~8pNLKu8O6L@@!LAF5Ot>LzP(QwSKEyS1Qj}c~xzjarPu-{{D;YRa>19Lw`#jEmhc^b3ZaaD!t%Z&#qV=5f1dv`y- z3f7u>O_Y&>;@Fr~Y_g`Ck+&3Mql)Y|ODR)9|EPyfTM84$)GzX%zz}O;A!fg$I<~Ik zM-_=Q5jzmN1`KssXs#WU4a>9nJ8-vG>c#48p2zj5-$~f!tPv+`9ahBBI3rK^$7H$@ zdqy)q15}Q~u)G^f)jcaD*D9@YHy;|fbu^>pTxdOcnu;ICkmq~C zl^jr&MNR*UHhbHmr?HPO@ry&k{~XA__I#*391!;UY+e?o)sEKRFN0wWVd9NUT8t7m05LdhLHAZxN8KH8D~MZ?AJS#Gv1)vjSK~=LGWCwRW6g2lX2xySU)EUw)b^savp~` zta`u#*xE7N!egyTI&J5FfTw+)K%C!(KTtQ~RMZi5#!y%LP&68eaGh?vk=?IoPH1Bq zF;(z$&ec9_OptEueUD!Pzm9q4Q>v#KmR|QxP-@E1r$^7fhot!5_YP8Q6s&LVNW}fA zyQ9_rYe@IC`~AAo)sv})`hKiHjMX$Ex)qtnjlG3s)&3my`X0Jh!`d+N``afr9VS@Tn#XmL` zVl=p*g8Eym=4R9%Jv}{3SUI$|gd|eaqsmH)v(>T!@?QV;680&A1m@fSrFzc6(l;%E z{C(`ww2c`aiUX)~J`2#QFMQ&&5>rH{f6S>C#&|KZc-J74ilT+1&KL|DReNZ4y_ln= z{1>npF3nE$Toecf@oz^jNOAdadMlE&`nqqV5n4P_EQz$Y3qCZ6y|$ku(E;W3mc z#%`~qO-4gmA)Q`(noc{8Q*W@%-X=a6Ivr1O-;sd}?jnetHa> z+n{B??*-ZrXSX9ZmQ$4jlIpxfoc4I`7wDz%n&|0Ydp&OUXXJbJdNiM|Y`3aI8X_{t z7>RSO(IwV{&ro`06!QPo?na$akaSCaT79J7+(37B!T$<*KZ)SVzkWg9Pju6JC^ik* zI6tpI#?>&tSX|9vON|4mmqvkG>faani&cA7YnsPYql@ED*y%^NxzZGh0P3 zc#&w9KSf1mz-}p|LY&@h?xXqDh<%fF>*w?_i0v_E(CJa*2plm?oDF&J#W$`y&yViK`)@R zOvBUh=4j`+OQTkkZ;rbUXVzS~k$_d!#1Os&wq9;HAp-w|pPue)=-5;jV#ep{*Ohfd zclM)IHnTx)KP~^cZtl>8Y3{In+$0+tyGygxP`cExSB$b-XQ5qv7_L}-!*r){^-A%V z4vU03(~$qw>l+ZioXfIynfYOukbc{$zd@F=clmwr)yzwm@L+AQ6*W=9m&3}xkN=9< zL)UQ0N~|*V#m#&XoAKVxVYL{MHpJD>5h$N$W!YW)zrWvLXwzDJ=_U=b{ z>-biDrq4ge_A+3(7qjhm^?`9xyX zgxF&Ib25|IRxO|EDslzWJx--o3AXKQ2rb$jH6yo)gDv%X;g6y~sLS4`TBL|mO0K#4 zZiH5{xZ8}3q73G^)X6!eZ|D(rl*ouMYq*11q9MY3T6QHpwVqt9xy&AwHIQ$u%+2Q0 zh_u!hs7=_llf81yqD|}+MNPQcwhmir_#AC9?}JUrH7-1s;o&F0;-i%A2W!D1EZo%; zF=8C+S3K`uyJm^zELl?%9?sq)vIKjm{r!Ub0+sC5++U$*~X8++R*Imiy&H4s$R6KHUJ?yI=rNzY1=(IF$pu*bAJe+Nrnq&)1SW0w zfyRK`%_#k?whVy!)Ui)Ma9I8h2yBjR%V{PO^D&}JPHy`qYcU!a7}%~zoq?M7eWq#y zkum7mh+KUYhIn0FG0Cx-3NrEM+&2eP8bVK<^0=xo1Wdp@X*Gs^EbE@2rkyXzl@rK$ z0r<+mD~N4_;Etyh6P*SC>TDyvx(`*@zP5nqH9Dyn@*Jhh*Jj9Z%`akVw@_lat4)b?&Wwb z{-55kiEph=Gi(3-J zDcufz>nB41lxnFQV!BpScc-a;x7? zds9*8zwOTqboux&Xg=WAVv79D*0R&$6qkF9wxthcWQdamwwSJ?1qMZ4Hr(J&BjXK} zPK);Boz8YsQ16bbsMF1<>{3PD*o0(CJ!STxKe7?~o>9S0Mj2-)Z!BI0aTywkjHKu; z|Ek}k7yQn|;W2R8#}o#|$L-O*n_FSQKmcCjwg5F_pHJXvEa|o4x;SVpuFdhP=Fy$? z&>}sorTu^P+@X7yNntMmd`tEB6>h_pt_4^yeHwcDy^kDU(%79wDt%^Ikm5IkeD68R z7>ypxb>eYrBYQ*`XFZK-R~$jT z{(o_pMEe$HXsMnZus*8(L#ihc&IzfqP~5e=AM;S8PJV>k$a3jxxgJJ`Cp8PLW2Z*N zefR3mpvX==v?t&~`toS~)=|p&#?~zYTZw#Jj_P+|xL1*`!yI!6#dpg0kbfBNKRm~_ zE8^y>=iH3QB>g#dK&v-9O0fVQ<+^i=nsyF+9`tV|#XF%dvF0#^=kmk1!3ipIb-;Hu z5 z^sk+mtGD+bENQwK!AS8;8`agIY)0&|paRl5%fs!)c&qEpV#luPMRTiyr6+5Vd_6vp zaV!j*-*gPG5?HoY6E@i9VzRI|GB2CWv*0Fo!G-Ww*&in5vN_^eG9OvOyF}w~$$ArIwV3@Ahk^RjISy=L-SKkt1b|GK) ztL!ZFzZeFuMq2}Z<5#>D$Y$k-Fn@0eF8)BL+8s2%X+0tY9pf^t0p`GQEtOUj=q4pD zy!NY5ttZeHUdt|0h=g>g`evxZ)gPZoaX)FbJNP^q<0?wNn8E?3DS+RPea~BccpaGJ z3NNDA1Sqxv7q$>GC(2J70lIk#3w%vprIMCnCHD>7{sy*gz(%J@%cs_MA0er!%^4rE zi-^!a#x1S5E!$lB#y_Y|HT0X^#yZK;jnZDj8GJ`w+)+xTS`*_@rPJwGinGI*sj)nooVe_8%}v1+xwePl(z)HgBB z`7S0a|J(i!b2LdlmEV4&VRP2{Si3z|QJA#|ZQfkc|KF654LP~n zWQ<~axA9*yY!c>X&?he#BT!lfjWu>h@0WL?7r4vb5)?zoi0!v7hyB8c&qAlq=m5uQ z<9ulE>gd1=#U#=1Hv!3M7eX9tfaohK5>1pS!F$}#&?4Qr6;AFaNKCC_zIS;nR*VWy&#Nj2A z8RQL)AK)RhnimXQ`yIOd1K>$ld z_nw*Kn+X%XeSN@=4SdfY{7A%h{8(f0n+76mP)wc6cu&qBg!AN9|mO}#bA zU(tpSb2<$&pFP^7cKaFH$jQ`_!xn?6X;lZ1>L_jdUa6`@Vq?**db~1Wv7H#Cr~gWr zF~ND9m`YIE_f$=aZe?)MV!XOlS*_iuFn>b#tb{ZH@9E65!E z8(TK9G2pS}nN44RjWl7|LU-TZsZ`k3!R5=ZtoW7OxuxkzOV$9{_Vv<@3-LOqIMKJA zk0tK<&eUhAWW+nkHB2D~u8fqTv{L!6rz|0P6~mPD#2MX_#OaZ1Yy3=?;6+{mZG?zWj*_$mT)7L;#dpCFd)3Hx6> zpM*Ns1nr%=2ecg6Q%^o83kzF`&1T7pkBxsjvaN85MiM`sM@24xmkU;x@qfS<8yk0H z7V9s*#W*&(;?J)?gA*e)SdR|Le%RTZ)Zd?V2D6xolU-diNAe1@^c$Dm z!}%!i-Qa^$&OLe6AlG3s7_M-3hyULS*xvqIX<^odl;)D{1wr}ylj2)iaLPXGc_m8s z?iKXVOh9_t*Kz5_)r2;O-!;lU&A%+Xo(sVao`W`b^DnrmtV~qZDO! zRQQ~*W3hP|$(RI!4~FsLXNf3XTk3w7T}LFlii$=s_Ra2j41JR|5Sq(s8F9es@#^Br z!>DOpL6q?FtIBuOaXLC&A-t;!!ej3hwMCnPLKdk4=(KgK!sdk}9SLRGOn$NAhdWok zUKhKD?8)|bQ$35|?<@7$6n_{HglX08Lx&1NOHPbn5V@9g8A2qg=kGGDmWcbL#UK{f z2c#p^H^1o{`I6|)M&XA`?Y7;%bxQ=B zwr)d_rhsy?dg#Z*|0d}l(=qZub}BBWn+y18C^_@DiHi8d81#G=GJG)9K^x~14p&!0 zMaXTZFogIok@^#%pldt^OBcnZbtNFV2A9I)H_Klii+1=S@XWfh_ z-DKeZn-qY)Y)`VRkBvd|a~6G-#V#e4LuH#@)vN*K6>X{jY?(My-U6@g3DG&ab6AQ9 z?JwA^n*wO)+WOU9L8=VGjIr;JcE!eRhI2FD!Hf1EKa(8IcZHvwB%*pIhUaMGNq(DA zLTA)ZoSDVT!+NIC(@MS;D0Tsi0vn4T2T^eNn`*ZKNG|!ab(d^DwCiQ=#<7v%x-q-j zw7L=WMJFE`U0YG3+EUklbriAx zFsP=PXs-l49pwso8k2LKb7z1}aQPBZUhEpF?QbLJu~%{Z>AWToy9Yxd8mp815;zCb#skM)d2J3HTV%V<6Y z4v(rHh+)o<=Ev%B2RPW}6lLbro9N?HQDD*!zFyqK#FwkT6BWe=*V1Vw_)XySD|p|K z*L<8(BgW%oqxIoKrylEvvhCyT@5X7U+A|^!8ML5qq{%c>$IPQmiv-=<=>KqZ?eS2h z|NopbgEP$FjBIJCd7hy{C6yJq45gOVrZE_tGvl(hP+O9U&X|d87qzv!+1lL^DJ7TG z?%Hm{NNcMt_1!ILYg|$`5q2vP!~C9pfB7S?5$8P5=ks~rK2B#3fR$fjnw!w?F%h>Z ztWcUuN1XuoX=v;Mj$JA|i@#Wz&{|Xn*n`|4GCD3>R463)3`z7?1!BT1{y2c)=GqlUK%D{Et?U>pt+zhM(Ha8z0%9sl8AQeD~FTBy9M z&$9uJLuN^2Rz;c8j#d6|+$sucwz@+ z=0xEMo9CievFuAubVYyG_8J9Yssh?5<#(2DN7S57LgZ|!A?C+|`c9Jb_rs!vfZdM| zi_o2`KC2Sl!WIBkWsUh@%rCT+`Q_29;lulzY^{Q4XYS&2EJ##zKPYapwVZ(Lev<3( zvNJ2o()Wq2pJJh_FaJaHkLbu$gpk?#GWcqMMD^QamC?7+z_THwuINkX7YOLPtXMI; z<~dV51(Ys877KTh^j4+v zIJqeq)d`lgh>5xR3M& z0kfm!?0urLtN)TEeGfRQwSN+qr#y)1RX4=2Qi0WRg#>jY#$`AylWm1)QX=H{ZZ@a+ zCOfp-+s~e}@G5EOP@*>3ubKCA5#Jl*qa*ll;XjD^^UdA9*_a--))l+loz{Ywyy~i| z^8W4IJQ#Pwv$p2MOQ_Qj`rU`mt)f$K zY4TkQXjBq)JkE&_S_IyePGtk}^3+J04YUkxu0v{W4H;uH86kfeUKcZ30gnY16kuFP z7hr@}L6EdMtjRVyIxZswG?FG{RAqZ`&6PQO>@;R%|9Ipb=~eQ;ft&g4KX{z-K8cjH zZF@CHQ~;dlVK~!88#PRe5xcq~JtG4eMV#TRyjpUhO?HtghW50yy|Chwb!CX+tt>3u zYrV#{9H@fbK%lF=y*JQ{60rL?f5LhokF>68uH#z?lR}E@!7q>q5GKK#Nb58)3*bvJy1$cyNo ztnWy7yADiDxC~0qxY~HQJwj6>VCn6>UwW3=?l(983TjQfPQAN3&-a>bSRO$*PcBd- z!1mBU;GdmBn=p<%azpzwlwLG3Q9kdtX?f%q+t*Dlhk^Y{Q#W@4U7{N&8!M2U4o^wh z*oO++653g>Zc{#nbX43sDW-lIH9R2yS#^EFKGCApnZ5Kuuxr#?=Z29OC3;Gxkr8KQ zXIo5>&fHn+FEa-l&9 za^bdZV$;&v6RUvZ1VeUU7h(I&5g?ka;!g4@yW<~>2=EPPlGFQ}8r8knwxN>2FJlz4 zGr%zzXSQ|hwQJ%dz{sG$nYPmn>X-HUDm%=EqcDwCHcg`i;Oc)BcHMRpK`Js1cU&M` z_DNw)tynvPKTy291dTqpN##G2ea?79pm(qKN!)X_AZ9ZoHUwJ!t^eeM^spc-s?Mum z72O6HUm8KFV;&xN(RaqQw^_4YL{w4H=nMK0(ac+PF6&E|W1ui1PX=ya!#%J&grGpUmz#M;VO>1#L{ zuqGaZ>}=e9U!kQCle4$&L=pI~eR&9fDrUK5>o(<=Ad&Q{Yi&J^R3cF_dJXCO)V8=M zWP|GFOx^)nF`aDYKSs^~#)Tn})sIW!rM7dp$gq62a%@n|OWZIl_WOxfRvS16aROv` z_L_LQ(UK(gUEI#|ZL-Y_5Ai}eVZ36nVGue(JTyZZ4YeM4^_Bj!>?7jk>(myG^3J}h zE8y7TGBS3q4AKm^yi&P}HsH^4vcsWaA<%j1-l++{!~ z;g*sYb1N#or0?_WTZh%v(k9y&S$sBBEy_mB5c-Zuj8ki>^_YW%AR*=UoxPq{ZCmZ9 zE)J#N$tiJrCqjBX(1Vrn3eJGZ9k%h3AgI+L{N2ePO&h7#%l&zZ$C;7X5*V?m@U0tD6MT^J(}fIGBrFePfgwt{ZJ%#t0Xo5Re1Lo?H(|@PzFB zczy3_zN@9Wwa9BgDt1Ua`CZfieTUghgE#dYa{TqvYc=#3XmD@d&y0Nl{BNzI9Z|`T z3}sDb<=%nygHnQu<%IJ$AP3nr_q&70?a0Y!@hVy$mPW=WH^{5UuXeB;OsH?!7`X`{s`|Ql9+A5?CGX_zBev{6l+J#e zh9o}eVG*M_V-TsGf2urn8q#XKb7XcoYs7WBx9Gw`Q|Y5OrkAUeU-;au(Z92fcMI;+ zpW5`^3sQM=Z!P*IPY8atZLBOgzmvxYmeohgTEtM z_(;Zo?K?B`PXJp0+Gl65vBZ%R-QRGK&LpO7aG*xzo`qW;07zhvxq1Cs*xr+azcF!7 zP{7;W>{$y?c|=Mu#eA~H8cD}!jHmBZZrdN0i2a_HnF)<^i1`=l?B_6^_Q2n>ie8C( zJzud-wbDb-UuE6WL|SIp7eNH!%0(0;-F(qkfWY7nLJ9!88ol+vrL3abdMT)({0LBg zY74;A#UOBw9#M_I{0@#KOG5#D0C5yEAGEfv5{T=8Xm{?q^h`4emv$xsOD+soDR6lv zKa>%YluiU@rtBo$f)alMldDQ=`B5Be^l8?{<+)~uxnR&^xV27!jfk)^Y)Rz)YtzOs zBni`g?ixe5BNNna&*AFHm_@rPT$xGD@b@)g!BJ5f(_3vKIWkg8eAuwtH7cs6;=$n? zo>5Va=UNY&IjBuzT}#SsT4PKe=04uVsY6F84UR%++BMlVPywSV`Sxa9O7(6$f6IPk z$hV?OZE_L#1n#E*v-(P)+mL&^O~bb^3nrE7=Vb>oi%n(Jv?$oQ|=+anCeWr#|meoiJ}o**G+K0VkO| zehybu)(j*#06T}JIC?re~AA9oNu;&HX7G9}U>!$RR(>BZ* zRsN;;cU(l;fWR(7WwKDlI(C%OU53Z>nK2MKW5hhhu9ZK!6Mk?IMT_LWuX3M3Z z*i{4)Rxlvn6W2rucvxJx{TaLN=~2;ZLhrdVHUTAc+Mu?wBSa`B>%<}^Xm zDp^cB(7HlK-)a9u)G209BIuy4*j*tE>=_Yvfh*YVwfr5<5`t;(`)E zDs>G9o8*RJ+7-cZz}x0s7|yYffy z*RLjX+1vR4{tcF>oO*-*d*Q>C;E|~XF2WNY@zK%1aUBB4C-$A_7HR@H3o7O;?e$Tn zc3x`XFU2L8(FlztKzUfX&0viWN?rW23EQ?QOLwwQfn16>Lk_m&=Z2vh%>U+D`?tCR z1K<=*J(>0;0+uA`zxW#OoZQjKyd_mIU3s|t_fN#S2=jra$oQQkPPs9bg(%x1yQSRz zhQLD#nj#6x##OWKk+}1Ya^ol+&$(thB`Q_=qCWfYQ}QC@=&Zo zR`Orh{3=Rg4LU_$L&s1)W`TYpJh9V*c%fzqK~QgZB#I3*?_ll3 z>U{8oY_Bv;LY3BxF?XiTaHDCU0SzN{0yisYJi?pV*;eG{TZ&AC#!b*vRv}sd?&kxP zKvP9pS<+%&a_H4XVo+u~IJ6^MJ(?J=21api&xUM1P`-<%BcX8>QT6E3^_zBLQIS_Q zUC+6__(4f-fI5}2TRRBs!Cx18nAq3ctOm_T-Xvi?8ZL6_G ziiD`;0|RI<B^x_kLwJRzp|FZnN!~W9(;<3zk7ZBHqt0e4EoH2 z1`*MeV5)e=Pcb*h?i&WBJINM$DKsPlM>nxJh0jCal&!dUx zMb?oB3XhA9LfGXG-+q8U6XPfp07o}tF}w4Op|G090xD6@WdJ^$Dyrtp4F=0 zr?zjR(<-5#nCN=iGAo^qz}@voLRXyN#{2d|)avt2+LmR~TU}97!tUmc%=t_+AV{fe zMLr+0B6!ZH$$S@Rcnl|&TY)D9nZPdsjE>S#+%mE>IoxFrGf&TOK4*&jKu6Z0bU|X7 zWl#JjW}#(pymc~vrj>Ye?1tF#oup-5RMgaB^u8N9&6CKY{V8rFv4y!O0x(+0g5^hW z7<^FnSkL35%(Z<=dcin7mBPGWV!)qN;^HnwTu9BCX=dH9IyK35esX9V28&HnNiT{+ zqjScz2>Ojn@%jrmC(#A;PUT~LUZv_14YYI3^2h|zWPJQwtd!V$6~KwgEzAcin1}Y{ zQaXT0BxP|K^aZ{IJ8|cVJ`7E?;i-|*WcnBU;Dxp}SnMAN5`Ko-I9wK&or1o`epY0? z8}%Ds%be96?{*KF305w@N7=5WEmXYyR$9!y96P15pm~Bes8F{J@juMPyeIJOmcSs! z>Bz($*x3`FngL|az|d@eV#P1pTE)g@Lf?NS{|4QS%Oh_VzyMLC9CL)~<)=r6#3fhN z%vn3h0es`O_CO)B_Wn4}rQn%JM57*j4^Zrk?hw;RTcUh`OuI!kH%fmVq(RK$cZ^8!&aa)JPud}Z=P z^^?Z#ajJ2*(yqa>QV0U=@lOiGY=*=NftuapeP1DwtOxP%g^wAxhrgeAcidJGFP}?k zrgL_ZR^99Xx@R%sRbTftSKmA`yrlpvNBo%DG+|_S;wolX&FXnopujslxQWb2O?{z0 zksh-R7`{fL)6>6Zsh=Q|h5E8-lno&=5|_=nrsS#LC=dw59LeLJb)K=Mu33O5f*F6u zB?|N5h(3@i#b_;m>V=mBab@I&GhfG-kzv8HLLMScgC$>CLdVa6Pf$639s++Nl3Kik zrFPU+yGa(avdu=8eCn|zc7#Bl$*O~jAIJhwFD_Jjw>d82qc$@eIOf34lc)PL zWn<`;b%cdh>2w8tjN%nQ#|Bo0Tq;AWCcGgM><*1w`5Co}q^p^W%a^DZqPMBli1r-U z9WkNGd;>HdVIJCAkGnJ@QQ(wlnq5rnx8lI-;^Gs-fc=DjmE3$|*GJ17aNfboU7Azk zW4n(`<$G|OY)?*Ui#ko;M(^+zIW$6ugoGwM{f~qDkn)I^vp%$Cf0$*k$Fq+=MndPV zq92b6C4m?|Ywn&K)+o@%eyY8_kZqCLcm&cVoZHfhir#hXI7SRsG@M3$08g=CFtl2_ z$Ft;3-(_LrHvE4VtABW3ci*1ui?hp@>^*Y<8cOl>%%L$v(cm?AkgnU1K-{+S=YLN7 zSw=_aP7WX{7fqd+)yzLK$zQplh1a-E!bYy;m07OhWCsmaRaraRgMNnJOdU8c)TH2D zy`x=pEXw$s94uqw&F`(UoY7=EKVCxeq4orRI&D(~)JgFCTm8>r$;t}LF0tc&!sHuJ zGQf04h_!xT<{Yz|nNT+u$Tjpr48pH#$jchl`3JJ0FZG+4as^jTjX?=@%<{SZf|OGWJO9kce3#Go`vC zGcpn!MurCoZ{LXWHxxCLZ<>hOgd%lodU_6sQ8M1%x|kh^No3R5WIU(4(2ZVB*rJ57 zV{jsP05s&c!~ymx`w37pWAhK%bsfOT#(#~%rQ%PTCZ{RL;R{KOnuczWG04`L!`2K(5X`Gmlks~prhREQNz0-5ef&4U5N%b&`>7L z0HPJ~lS8I|g?MzcwiOs?(Dg4g{Gpn)THPH@$J4l2x0dN5Rq7;4q~_LN89X%@m#8eP zEBXi+&Y>(THdW~v9+aW}d#K`|_BzpXc4%W2Js}r>BGFk8upiSfHnxmQv{3V<8S8y! zhg(>pt;!{x_5sZ7M82B&-AfQOi@9~5j%I(t&!#Dhpmug#K-4ERAN;*3Qut(Dh+tkM z?DXwF0qx+jIWM_l$j*U=9Vl-!>WJe4s8h;^tcF|not+;KuyU`~sEB06f_Ri2)Uz$BO6<1_7*5%hUa*Nd zI9YoWxnAq+?d{!zgD{$g+TRqulN~^pgc2C~D69+w=B6BMp(Gj9@qPAG^5-{v2t;bD zIc}OsF)PAf`HiTMPUa7Vx|6+4lo!0n=oL=}MaQY#+Aj3i9VbRG6f$X%OBC5dMfxJG zAY~R{f?@9i9GSIjXs2^dVE(z$I#qQk4&SHOqz5l^fR3ZkKkz;!+6uMa7SZw9A)kY*WY#duJ${u0(+#rQXdX$0 zj!P6&OtgU0#198gR&oGR(ghC9EN6OcWA|==+9P;RNcNiC`YpL|hOx=kEYlw7!hqV~ zb^SIpCgAc%_jPs&7^&+XJBPAklS|LE96&)7 z^0@e1SaPkhyPGPF0P2&^#}UXHgYRu_Mzhp*T)ytbNfp)tjBBCx2g`wDlOBa(9LmgW z@0v9F0+@#UekJ&&oVtPBmWoOcY8?0fST5_Sxu_FX*t ziCgd)&rkbLSIkeo=^0qdBEhaXAguRtHl_1?8~+d%&%s?oZ^IB{y6-^u#lo;X zo@FyTeNa}M&x>boMv&LeXWNmP))4&d_$J(+ zpI(f|w0ZA_6DB#3d<+eFc&M3I5jzDq$?vmc#QKjv?W#tNC0b6Por}T}Yz@jR8jT*O z;xepPHj$uxyBsq4FgP) z7XZ#RG)C6};}fOA&Ao}ehr7F56{-kisyV)%iB%v?&@cGqo=dJ!1tZBLXbw?KStF$y zZ-A1%&Vw)1giH}h%K@DSCRPfV_##j*x=r`Q%4F<6(6AQfu3vr~(i$pnK}8=w3HfWI zR9RE^D_TA8nf?AL&>rGM)2g0sTjnn(%p9uMS5;I|qEIeDb(}dESfzCFYFP$`KPzLG z1KnCMqw~fgD&Zorlf051gQDOPNDB*(K>kd{ZhIH{3!IcA&kl~@2GiTHt=dvWMD%ELsne_e%kI-ng8XCRZZ4;=G#3kK{h;J4K5 zr*ug5)S-&64UWr*&Ij}wd|+sEG@2T6sw)LG8mjxZ3-vHS6WET_bim+_d+%Nq1Wn6i zwH*v|+-5ax9EUR&wJQYfp91<0Z2w#U8en)fcU0{lkB$?w#po%wW~*PlD`CJdeZXl+ zD)t%N7MqwUx64H_Ra4+H=G@3x$mcL4S*Z16qLqksSd4&gE4dQ-}ju47&Yoxj^i*<_JryJ9i-?e==o!aS#(RpIEPoSxbD%AkJ z`s|CD2;Ipx1rUwuK(A+WoX9Z|yL*8_P~ZAcL)3f*qo&N zq*k3vi7@Kk*S-JiwYIC4>Vzl=ZtASBf}V*`V4nn~bLjEPv4;0c0!)*-YRG(pF1avZ zs3xS&Tyq|K5GOD5=h;2|04wcfaSm3>x#1qncLJJy(C=rtfa&h!m0_3mM4Y78CkGG2;@oXT~U1FjpE)b8S(3h2;2|agct9 z*Zxs?g*C-SMWNDpQkIj*cEwuILXkgzdv1vb(#~K7UM7>PuS7A!xKJ?jiFM6pTI?8S zne*X}FTQluU}k})2_CwtXU@JI42_w%tZgz~ZP9k(CO;k}iL4nYp9z(V6JKu!^d-y! zQtP*FF^JJb6ZorJ@9Jb{hqmH@5T0)W3i5&4L~!YvMzB-@j49Ab6l`6S9uf78MDY3y zHvyTg^$mR&(VUH|QtHs$7YKFkDrzn-$i{j$L9rVVOheeu-WB#4?S{*gOuYJ1cyT>d znnNwad;|sjMT&jVN;^?IZ{qcp@+LAZ_>e@SVgF;-qwtC9ii-^p_3Ay$$kf4=wwW0j zNPfmaj&LC)5NmPl<5f0LcZu+-D^J-+-vW-VsKy{>%Cf)e>=TqzqF}adwMGk_n&`a4Ln`(VWAkSz<^_uTS^ygZ{=TpV(g~ort6XKe z53Vj6p(GzV)A>N{ER$v+gHcF$#+qEmA$Qz*pJMTgW_&V~hE^MPWWG)Y-L~=B1LdK< z^zV$T8=$lCcaI-F6e7Xm_NP0>k)rtzah@yeRDaw(Mv10!UiftU+nXlD)VO$l0lHrU z@k3WiyU{4d+lg2G{b%N?FsWRsMg%60*7+_eL`ovxrDxL+xQf^K&ps_|jKSY3=nkms z#KW_5)ljR%ECH{s5t8IRWY&akY!AQoYE!8|~3WVy~Ws-!`P zo2{5{Ww{?=|8zK*@VB+}mPZS(`dBdBuaOT082%>?{Oab=I1*1XNxfJc@Y^R=?Mere zF6UUJY@qLu5g7+=Ab5(mcOnY?zWV}>{Q&7utHR2`Q!Qa)2d{#}h=^q7uoU~0{SL2d zRph8`2u+?H_K8{416Ax*GBZ>4(E*^{glD8D{cBhBIT4U;GVG4blBx+>7dxL1n+BW+oAe%Ch&_>kI!ry z0e%Anz@%|;Vx{Sd$y;nN;88PX??jm39~bZFs~Ld{fti^L!R~0j3;mA3zWH{oO2z3F zr2mM5{3jlc(GNLfP-4*26DTTb?YnVNnN9M~S1wanpv8OO!rh}#y3>|+5$FCSr}?Ys zIUMqgY5UpZ46l;!Y1deSUp!ZJ1!{wU|I%=%ij|?FlFO;BnG#$xHg2&wk^EH5HbCV^ zdlx+fhDb0OEThE+7hbpJF&7C5$jmRE9cHQ6v1V8=SqvukzX$^Lc`|`h0*aI-pQnDqfm0%Wmh6`5t@n6Xbh<7JT-|2nAG$obc453z0* zB2w^ZI{7BD=DCZl&alYu5F_lWM4kr7?sE1|2iDgklEqp`*j#gZC@U&;@$4KjkOA`ycgpy;i2_HfAml3qWP7;9sY8ZR2!jy=BVDbR9 zy65YJ$qM8frMV#R$(7n1yQGm~fBGzSLY|YNhb)TG?3ixo=`D-i3RGPQ6s-67 z6`8(xj}<$Xv>@|Yj~Ai{o&05j@>b~gH(s%??=8EXcsqMwLzuWEwr1XPs#J#mJ2q*A z>dSpE(A@h3l@r&q7t2uH!V?phRp&bSHcTnKYCgBZ*PFNSiEW_vxbi1iTq^YQ!U^}K zOCkFmA6A-V^W(V=Ap_sXrv@iXPvFv)${f?!7<(VkpHLVD)W_4F+rtvIDmMWbUIFEa z8s(<<3U_C(@)iN_iNb-FLY2RXYy<7vu2N}MNZ#q^g_xvU2#LT~$Av9LPZz&=>rNrt z&9E;%NbqN8;%4Q38tAti_@^{OV-z$>pz#8@^gj+{OBJ8btOCek@#)DKQS3AD{hu<( zu(gCtjk-WFZ`JEpqiMk!EHm_A;Ct~LyCzY`&S5_Gf+c{Kji3-jRc;S5Q@~>g2x5=K zzHU}=x3DtW1TIR^`>8aKR>TV%{o`hZp9JdVHtu>#6UTW%&QE*v2pKYD($p5%nOo4j z0XQzT!g(7%-BA@xJt4`j4vN_ina4#?cM?z8kR1tiiTK_jlK~of2#>0}XIJq~(wL*<||{nyswk z3&W28Sk(X>O}J%Y|IcdE>ald%#HsK+e*)QU5&CYaI<_MkIYK9@$oMIWG`MPoiOZRYq(yt znvh5Sm&&1|d9^t^tkRIR!ln7#)r6gK}L>2zbaN?uGg1%6(Xrn5VQ0SLuCVy_5_8B68kD^FPvcfJg5ZZ&T)oL zo&(Ty?}1;wv!6TE0J0Z{ zvMY#-mrb>|Azg_Ksfjj`bOQ6!UbILNHh5Y`D%Q(0DM=9Mkai*)cmR`n2fL5(W8CEc z^0yW*pNiHp#)63rq3k5bJ-}P&bOI(C`f75Z? zJ{6}G7-z8!MEOVz6CrN@yOmDkQZ(C3hiFpT*moOGcQ zKRZkXZ6KJb3BVY`ZUbnNOZE#Q=W#WX4vs-Qg0JsEz+Y28VnlUV}Fi7 zAwOu_PAEA12q+bA&vvn%xHQgyE)of3mmoeaN+y2|{nhA@c&Ir67aAx@67}>q((PZA zyG?%&4er1M?jJ>v0VDQX0cYMY%G$+&J>wqZ6h4OwT;^favcH1Kll-mXfW}?Zg= zSk6m3C{ZYp4wQ#XOM`sym&250g4*ENlYtn zbw|!?q?BOYAu})1p~vntjp3R7J@)TcGi+|VFu9h`iES>oaZSV)1NH(`WN*9wUJ`p5 z9Q)^TCOt&h7S)ApfPUWib+01~WDo#Hx8EoB{~?M3 zmlMF&l^sfjB_hIfW9r*++2MAj9(b2qZ7ozpE*YjQoU~v|?wmtx84jDQQRznE^Xc&wbQdlN92pT} z)0ow?z`fi0N>2!2>JzB$Q4=btu|#}qYREyM$f3U2_m6g9bW{GIh)iXV z0H1~oVW~6K7*2^wsHex<*oU&`1WCV6ZO-MOiJkr(jVQPJP_^?aiJ=#X>776k*<=g; z{#~K=$UpH8IPO#~nQLvu_n;c5W487q!|o_`AQH7PpE&^PxM@h4jEtKdn71j}p^5CP z&@jDa*4c4!00CFW7S|P_n-2f!-NX<=-llyG97Dme*>ARswNHq1X;*fT^g@(Bq4!rW zjac_PCAo+Q&W0ELb*@PF{`Z19A;H`A5#I^2dYl~p_Gh6OZ9Ke;!tGHd%SkxfCFCey zNt!6pAZM*>#k6T|!cwGd-J$F6J)g<*t*xo?n4f&Z^XOlj4MLP}b+YpEw+MvVI)3Fp zA!mEvKPc*b3@L3te7yY`Durx-$qNRG8u|*6f|0W-c!PESps+EK_)6@3X^_V8pN5t` zhDIbOj*00oBs-L1JXqSd3n0Vl#<=ZPIaVC*HI02J4)IMx4B1*U@IZ*PNNs!^QWtDhkwNwhq# z$ftAg;maBgZB3BrL$!TEi5aSn>_@RXrV2q24H^%twuDeS%L;($)H_qL*lA@XFC7)o zG(019^E(~`MZ zea(ex+hnabaQx>zj;FgPbg!taOcI;?S{2*1S$ONP$62Ikz=Lk$LP+1il_SW*rJ5fY z01Vqu#INDYNf)&Un6ul0;nMkR=$PECAwcJQC$^mP&wTP@+B9c)+hCPCtH zP+VRFbSDt5T#z0iXQS|dxo$ZK7TA)tb?f_Vk?w@CNknU-Zn6~`D|k_dm*iU_&3pu{ zo`A}^Z$)BC@|7}tNp*s`#i#LcI_xDqJ64y7Os=te5+RL9`v^!c=DMGqUpYU%N$kf! zLrUDO%rK9&s(}AOy!mfguL9JQk(+S)1 z4cvXu_$ywXXNf`GKWH9ipCDdvi$55rCrx_b_#;8O3}nZty6!uafA}>}=u|ysQ@)`w z#rf#pK)`5LC;v2S3q~PYn*r3{u4PQBc7#~$WesKrZ*cO1u=QbaPp2I~R~VSZ=0c-J z-T)R4BjEGcv4#=VXgJD*Yo8@?X!02>WGV3QB5-_@tBC_e_jxVIpzL{somdCjvMosj18Qvy{YNVV!eX`wFkR zX3B-yr-~St9%^Tj%;7f+IN9FYw>*jF;AKxIYN2j9U?wvm+s!@D>~cVa*@*qLxfXRJ z{3^AFNq@ybWDO@2XctKX(3kAAdkAO^;}nCEQ4knLqcxh;@n(ebCxCbEE}*^ygY_;U zLJa_=IV_LLoj2;Nd_~{S1-f})#zu9N(sZ1>N#{e;eftC9VkO-=ZUxwU`0OARagd%0 z{a2r+C&1`N*?Q`!mptizsu|(n>gXxJG7eAhU(ldo(VG=F-x@7QzMuyln zGBLA)wgP_b^dqWC@#kgjEx8bAJ7|gI4f@MXu(N<49h;fOrB*)2&7Gm6is6*AyM#^C zue+Mx7X(5-WW2a6Nk9<@_Fg?9!Y26^leNXFV7`TX6#ZxgMEpetx z@1IU@i>{Gd=SXYPVUq)GcfeRwDLxA=*IQG$oHB=*-k8I0(hV@aF ztTWvNOOAcx=>eWafoWf`<{WHR!tJ3@dWsx~{mxkxdHu6I1sUdyrs0Xt!Ey^=Fw%r} z4rC71(Zgy%f4PFcM`0El&JTsE&)Pt)3qf%SXt=>%2TXhxY7V2K@BaWD7st(x$w!fo zc>hkbdiEtAnHavC?Ig0-+@nv@ooL_r=nyQH*U`Cv-A!OF*Ow=-V>r{woMF*6j_w8PZ>@3P3u3=kw=L_ej?GJMc&WJxhDlE;#&tL0*DonV*E4#R(55;SG zF3{a0-^*mC+b#Tw9pyb(?s@(Y;t=cS%@d${W{6A3WhX6*I^ynEOKjhQ61=MmJ=k zT)kWE-umZaVQBP_-qK?BrLxcH3^CD9p-&@UTAF-k^8qII@CSwB1 ze6zPN2o-mx$mI9blluNwz|jRUjq|Mz+QUGX(#FF;yBHOGs{;oPpmP-BerAks#>aVo zq$Qj3k;ipl?e(GM=(3)v9&b~7E#9+?!X6L_m{op~;UzhQ7RN=mG78}azgO~L1;#ymoj(Dg-_2;j@JT15tU4)xe~&zTX}h}L*Jli zJ!dEOZ{tBP*!h)7sVoU2O3SFygG{vvJB1Qs%WEpT&@F~v-Me=YH2y@)t5?aEE0vRP zOk&*ze8+!%2j4%JOYQo(P*(uirz$TgZz=MGy~3~bU+z`7nfR6Y|Q>h z1qmxv4w=B|El26l=5iCT?o@u#*@GBc$}4QTI61_Up6%U$&OG?*pL<@CiHDp zQhI92YMkUf%;szlMP&ty50|wh$P=ky6;x&a&6LP2PE;#E- z@F7!uJv2U|aEt!w$!?pZJM5O-?(9(8X&&SGJdc?|je=J>^wmp1t_s#@G!g}mM7FXO zYOc|6*zU>a3Y1k;vRvgc59)S+?>j?<$wFBK(i4}Xntg85rU>=RhN5!Xgch-E9T^$u zWyZ=SjtGSWe<$2Trp*&pHV4>Q_=TZ^w@_vt^<=KSwbctB6ha9M232B#nrqN`I5d99 z5s~`}-KVpYR6SNMOc1f3Pv1FXGu^Ki>i>O1VFf^~tm&JC^^kt%P?}Kn=e}nr`G@EafuUPW ztL1lT4`u9|1sd*MYFY2)g;ng&#FRy6TDZ(^mP&Db3TDj9$>pQj56q;V{Xdib(JsVt zBXsGa;h_RL{)s0{zBQo=XP65Ey_;8W2X8(_p*3V}b!jPCMxLy!tb}Y0Dk9WVQ4@*q zCm>d4sMcO*@-+_K(%M|+JKMM@`(Hrw4wZw*49<}02QZAyz{gIx2S7g<$FZM>wt9~~ z0orfT<+S^&J#NA-hI2i7NB<2^<=sSNU{OXZbC75*sFdXG?4~sCVC5nWreQ6prg(X> z;%xm=u8}?KV3-dagE-x`2bv4aAbkw)A0OOO| z74O0@)EV%L4<9zDD#9hxfzFfKiAm8q3ZM-5?#&es{EtDWG5z<O|3Y%!(hw!Fk5bRb~+7 zp2Q}n@Q;JexMcr{E3w~0T=&&j zmCC0DTx~gx?gha5DyE|~9obu(*-CC(uuIHM2te-=!TR_ON-d$l+i-_ocFpuWoixb zU-W{Bz@tJ;Fqdo_9gZ59RQJ zeaH1k@7&1SXZdlh2Z|Z5K7B!jgs=Em$2p-=XgjryUyQn7x*QmnDDT;u-Q){^vMU0?6U}X97i9{}Cb! z29t7)1k$NM?gI?26cmo3TPWdy-Er=Dprt8C2NWE!oWS2s^|?*I#)}GC5}{+0ycKAV zO%bgUCSbAQsdS?m)>~as@pERPvmqX+ZY6^Dco$~U+hM0uH83uPx_#=2iRWTqKsYej zV{$`nVF}S{KfC{|;K{=vt3lwGgf4HiOyu3zSS9_2x`r3G4?(}V#OeRz=-lI)s{cQJ z&Ng%)DCbPljUoGd1}b(Q7my_lTtR)X@c^YbK+Y7}9 z$;l~;wNtGIvuC!;k=6&EVe?I-ra!COJ+ItLcUNi0_Ail zqng>l{Knzm2n`O={$9H>R8Uy+!-I4J{K-D#QNNc7@F~Sv1nO>{GH&EC%nU{Oi4dw> zjJ=Y}RFf`#-7K|e908^_rN9vCd^}+4SwuvHt3R8}W8cF1O@cZ_4AMOWf#j8$OY1ye zPnzFK8uMrkLuD_18l+w|$J5Ng^119RvOc}uE%9c~2X5Xd_d0>c>E5+K;uO_K&^f ze}GJZf@7D#-~vd3@OxOlKqIt!C8>Il85l+q{;Kf5KZOweeWY8&uI2iD)V2PApDHOg zunXIx(%ungrw5c42~r+#`p=VupX+5Zv}|cACPl);nA{;r~+RAF*=KA!8E1kRAC zsQXE*2f3l@Nj}WCF4oTFfTZrjuJN&4gPwuD{rO)Ar@w3-swd(hI%JQHvAA%{tGAOyL9l^AqEbIH@J?waXZxn4zYi6NNOqI+=%Q9NMUm2p4eh$ zSBTW!WJvO>0X(W$?)(iyncw2@=WE*rG!3n&rPl{B`-L?JC!iLq5WTt{&AEm6C^IIV zHeUmlf+LzXZzIcR`$vlk(ipJEHh|{IOK&!C+!C`ult;D?NcX|Fa~Tz4lcdHpN_~KQ zl2!SELhgZ>4_J53*WOKyRu)&G{crt)<2s>07dg?F)BP;4R zUEBYOU`-+WUvxYNX9c!IF@b2xMn-^74{f1%1P)CQnktcgHe3f6e6(XH zt@BN2?fOa8H~Mq{Dbi!Hx7e!r|h3tKlE8W|7mc_BTVHJur>Sj>00sc_XCyW)brV$#iL3K%F6% zp9uJfR&%f{0y~iJZ<{FVM^xtqN8e4Yj^knwS~SdLJ>i5Htp*M0acG!@IMt{h0kh= za8Y>WQsfLu@nZ~afHC-yRqP2L1}VN|u%G^J!~x zoKYZgA%8Qyg!ivsX!!_ywiGd*fw{*H+@g5GxWvswP*@q-s!U)!q4zHv8xvR&KCMlq zhy(iH<$JaNj%fG3Zl)!XZi$9-A9cvw5@Fhe*y*rfw2W@qg}ry*Zge2#Dz3FUHDbks zuaRs4__Y+~)YlzgZ4Q-IV6CGbg|co6=lyU9Ac=!-pP=Oj^_>ujXtQ}PPG2~@o9U#@ z2@Fp~Z0xH9^rnwYt^MomVSh?@Qn+bV&Oy}jVYusjYRNoYV`Grq2d?I`2*V#x++lAE zhyuPzlU$88rxzewJoA>KBjHSkw_Pj`CF6D+9M8JN4<~8F%flA>d0OXV_Ru&re_Rfi z^C>_^wYybbQd=j|htaT0(~_A|aj~!Wq8|HGp)Qq9T66=8Uk`EUBxM*fzawR`q45so z`Ba!j@#&04)G|knLM8WF6W}30u(`A*GC!RTh^2HAsh1x@rX&}V)Q{mf25PST%1q?$ z+0vEkgy>{-Gz%9p6#vIE?7fe5K>ET?ssi1**-7Bg2d_Lk71v(ezl;#mg+r=@&7Ovt zWW_*B5e{wJ-snqNKM<9yCcvT=iiWzRc}c&O)>D}l$plT>UM)>-xrq#$Jh^L{CcTYi zRwhq+=BL^UCWu)*%PY5(m$Ff)w+*6bU~|&*-Ao2&@U* z+`t3B%&C`Jl+3Tl>-GV}egnv$(#JNK? zA4>XJu|Xym(DJZ&NOab6h}H+gx53gE|8Tp~1|;vTv>7h>jFDQbE1wFrY}WmeI8;~9 zzrnCf0~k(r>Ivoz+!pwfjRH6~vMCrYrCTKp?t{Tn{75_&UnbSXPqf%8{HfcPXl&|t zd~_8t@yL=)5pQ5wh4XTLM&<1_4erX-ifG!PAVULoIW(Wzh!^$&qyQ&AD35IO^2XtoGB2F};O;V#ZfqFx}=+v|T3TT6W zS;()055Hv7Ki|ALqSCkMF{JH-zIbB13RF05 z^~1d9y~zjXti1j14{WZaPVRG8ZH+?{OWt9ofR&SP4O_fDkq>eKTI9g-5hM|mCm=a}41N^b^ z9p~Itzqoz~PDQ`{T}SEsv3DuML}oks{@<&}R)X3to}8@rf2Yo-u1zQ|f$V z^Fgxpbo;?cimiNR4QJrLyK(1TFOa+2yk}|GymxjIdRVAFkESRp9G=!R&gGty2WK$D&Y3ssZWg#_5*MEKjL<|qH2n;QGW8r{ zg1_x`<&EUM-z9WM`1Yg3M_Am?6uj=?$hcAZo77?IuPBH4C{kUrNAH1YBU`LZ^u4hd ziOUg;vP+MiIIDVV$MSx}T&5QHR+L>~b!ZedVdftyc*X*nn1N+iaOkHOnz|_+&AdTY z6gB_KOl5dd{Vm1kaaep#aWd6)uK>+ef%UjGy7y+@!KeE@L@E0%pR_UWqYT@!q^NOd zWv1=B=UU~I+B3{MOclC6qOH_^R7y2i%hpUrk~sDyr{dUcavAfGJ;F9&Hb|@koXT~k z9SwbpY{4|gG;j*=OYwh2vt3G7*^l%(#qUky-ADqxs$wQ4vzh@EVkEXBb%$qtdQ-I2 z7BXgJWuj@-W<+cW>kU`E893;G3%_E^4R{%{);^rhyrRj8z93uLK;C>vI(al}Jk=ja zWw45vz8l)gv1E@kE0EHDce`*^tEJx^^Y@N;vLRqx!HtbNZ=)#Hh3YKeLQCx34` z6eN|#he6=xd*{)L9K!*>dUv63Q5T$;r}t>3!J$LWzUeULquS>+X}Lv_;P?55P7-bt zSdGs8jvq}wL%#8!-vUB`!LQi^T?}7w`9psWKlV|q3#H^{fwVbcPa`{mhW5d2)wJ-1 za~W>C=QTP2_gjF3eesrd$7)9DDajxmJ>4mck<0%rbXHT2RJrzRI2vu|tYumU&nh>K z?&06g*phm~^`F;p|EApe*Xb~Yg;_PWjxQBP_?LXsn}CDkaw%dK&v~I?vM;AVD>Enu zc;hJD2b6l2=H5!aH-ghk>&5;OPwOJifTO!4TVaC()Dq?>mp?e1r2{e+3i{l{65zNq z^;dCGGM`gX6WuAva-Z&Bq971wZ;73GgCVHteCpJ@gtIqRT0h^3Prpf0<|~}m=8%%Z zihaS%CxVWc=C6=390w=G>c1ns_dMO6@hRL{zQne4a{toJ+p%fq%B>I385@T}3v|f1 z2pOXZ=c1*XlEDz-H-5&kv2!uy5j~)}7?Dr3>fgG6#qsg)L}Oc^6F2LNu@MWo6a&>e z^Esd`Vi^N+Vd4GVHLM$1y=zMx?1iM@(9$l~|q#$?7MN}g0=cN?4KO7hCmOOxH}`66AaW_E_B{Jb)t7{FK(AxCBJ7A9>E1IbHU z0iQy{xsuXut=gmS2~ct=PRh9RLh~ESk@(ffScjO0NIV@}vzE(3odl2O#|z9qllbZW zkk`YTsJOM;Y3n`bgol=gM|l^heOm1N`l1^-~JvRVo8I6KcJT-Exa z@iWFjP7Cyfo0XjW_hW{2b>f7lzIZxkJ zFBZ(kjG0VMAFcw^2zlOgTMFN;{L&l*KmOdLlF{mvG0n{<<{t)H!%lf9ZYheS)Uf(o zeM6$+lm==J|KVAm)l^Aa_j9Btnb&OsFF2d>ZiQ`5# zKD`ho#Y)=j%bwI^l=3$t_8)XQV7t@(GDSoewe%w{+=j@Y(mn^)>&cjy#CXgYP|H_K z@#(Jl2&<>hMQugR|9#BFN{zFy*RP)=y}xfw%66<@Oy0U(T7hMHPM~k&a(}nVX#&X; zWSfWdO;T;F?J#&kw~_YYjwb^3N6_Sg?K-R{{-eo&=(t;&)!x*SRNRu)kFM_a>)9yeY-e@lzkQXggm=@C0ng;^t|co)7;g>iM#w&kbB zmk13hsO8*2;aQlq_)2A80&G8blFzLb3>ml2Q(~l;0jX>O*=+gU%#OfS4ciisrg{^t zb3$IDgMvbhLd*5cj%f-dus#ueJ2Q}`h%Zr4@)l|jxsUyV< zrJM3k6couvS3{&GW0v6wzBgR4Mfi8SSnV%5^Ao zZHUgm4hY46B2#)Y--*(}^*j$<%|qgYD5P-6Aw>J+LbXgda}T;MAur^{oP*OV4t{ii z;bG&iu=PFO?bwB7CitmUvQtP$NAJk%37)3d4K980Z*gFMeQv9GrX@=4=>kbT>ECc^ z0myVW(cCy1bXZ%gSofXCpg@jL?LZ3_>#*e=5$CrfZxHVY2{RTapYd{(iwy-xb+(O% zT(_h9;gozU+P0U^#rE@aGWl*Z)-nPeT#~P0u$)O2*bO3LuCrs%6nMa|fWKqgifQaG zmV*W7=(d?`Mi1s4Vx3Z{_{T>-rNF0xt zIl@O=Y+OYSy{zhIbR74ijYs|1kDSjpoj8N3cK281C3c)=ivHLU1tFMg1gGw1T{eWi ziwh11Tt_LwJ=O6|*&yh}nI*;8*3aFvXAiI=u&S!ipNA}RQc+fVP$Vhjq;FHN!k$Ut z4uQObZyF4!;8KXFEG=Q|La9e{^>o*rs%A%dhbX(Hq$G!upQSqgEE$faITcw?$W2*{ zg)APnk7!zYNSASL&PX{~t3x&kmESTzC4Z0j!hGd6piJb?8}?L7(Koxb*t_Y~=yoZa zMJ}{=3}a><$sJeZpck{tm!%39e2ent?V9wpR(y25S!&Bh;yHr+!QWA4?qcS+^H7Dc zCS2IT?>u_-QnZK9MhJD1yA@1+1R=U~0{J6LNXZ@8^&K;mh_nk6>O>?5~UhW0_Y z4SD@jq%DiN3;w4}f1P$>MYk1+_iGAa(@y{o zo%g+%SUTloEc@K`5aftC%996e;S*NQif$8HXTi;H#;9Wez(p|kYhW-Grj#H?!pY^1=Ak*TfO@v!m0k!z2QvdaoJeQ1aD&;VQkXTEW5KH`2*BnD;QU20sp&E{co|!*4 zpwp6QKIO@^I&|2Ti?mm?rf#8bJC#+D)up54FSsu&YK-u3T&5QlgElqaGNgS%zg6_Yp1Avacs zLW`!#Wy`CVw(*G(5vB_N`te``*;^X15kNKN*FyZ^#hvfBKFqiX{D7aA?M#4Wm9X1v zo?Or3jRyF>KxTPQB)f_498lQ*Y>kxKzih3*>O-cLltPced*B?SbTg%TC1sF+kXdE? zw~02Z$iTA59oY1Eo>vn^z)*7qvjCfdIff2O(!lg5*~F@eM37z56&c2MlI3{%bbK1f5axxfKr!hayPWA1G%Sz&r=4*| zKJe%(rETY9nH?g@hs;Y#*TpH|rzS8`aVXi>3)osQoW$-(jS>K8u&+q7&H#c@xNjph z^po)s0wGP5N(9MrsKkb%w>B)gF!Z{fY_=z9Y-xl0$)R3o5Q4W zA$YD#k5qHrSG%rIbPpMOq`@Dog`27L%lEdyinuj(>u;XA|8awFG_Fo5P#P+GG3y^+ zw~Ds`Y3mF_Hf9TlpHqF|4or>7;-2nXv_V99i4an4CVH>Y)<2OpDxk!HEn8t=Sz5#H zbB>Kp?s-?2-9sq}jk-W92K8O9CKPh^!^iD#ydt5?76e!^Q zYfoPIX^Flnf2!_Y*n~qPm#TQB$aY5RrA?WzcTHT}YYD4z*q~#-B4ZyY)hx+#IGlXP zryw?1%7h_XF0yMyZ zTHs&peO?DWv<~4TZ>d;9b&)PW*+ucPzqO;9-d+KbPimDVEgEt_sG9-)B1K3MvS>I& z+^XgKVR$sNYSU+0!n&Y9NFbzCh67Xlax${N2lPIZlKG=fnipPCwFvGV%G_qV&@iBK z%d;*=1ddM zna(kDoF~>F$PEM;ls0?_!Dr(-nEWs<_)P0RjjkTBu@6_Bqs@~!1M4;M#R{GWG~}`y z(4KequoWcfR+&t5Pem?UjXthKUiZ7Ou~8~+lLj9*k;lNeFb4^lC~UionG~*YD;2cU9V6bhuc)BC5RM; zKMN&XZy-&`Vb_P6R|bgqhHLLtIe-mWRcaE-XA3*HoDxd?lo&@6)w4q#KEf=1WzNA; zo{&p*XQ&*HCUYsrz%HhRTj2g=Xy}(113yhD=@dzqN2}6Bh6WD5N}XoM!5=QA9u?A( z4l;VQDT+N9=OsOD#7M1TyV3pm3aw5^3ap5Y081aTg3luWi)XW!DOmzV?3G$nu(fch z_pZ;A>K}5N+a6BN28V@(RmK9`<$sAWQCOcD_a(Aq!@#5d>cs-)G79ZTT04UYfPv#w zeUOy-0}(6OGD`VY>?%m|E!^A$4$^DjK!=(JqZ|!gr_3!7*6ZwbT*Zo_NYptq3?lIQ z_bK8bjr`NC)x{&I~A8l}k3?y4y;gOv}aUug}Fe~GOV?^>B@&LlNvQ}QK{b>E4sgyZi`;za{@7kr9R_8XYa$@rG7)CoYZ1YD{*b8@* zaZhK!%uk$@xR_mi%Ah@4xE~+z)1jJoo2B3$*w{Uz1k36HDkauZ1c!n3UW$VLXcTcP zdZ4eT)8Z&D1J|U0e6L7*ak_Z7{z;sh&|0i|yv2d>XrjZpC4l`6eKUVKFK9=%{45R1$l`b=(lV2qyzQDwl#zfsIY{3%BE7>ZG^wgy}MW27G($Dy>5lRuw6~ z2bJ{fdP*09LVDJu=Jnj^)zb1j#am7aJHc)RIadZMm`ULbN$L)=e0cZ_7I&hMEvY;J z@mPd9NH?&~%m{@gKuMlNsz&V9BJ1yznUHEjhIfx5nSz-JS41`xy?U}t(9xiB2pZP! ziD&Yb?S4EWlz`iR8Gm<1#(_B`0hnW7EYq>Ogz9V$olYq-Tx5MX{A0yeVJDK4iK$K= zw6zwAv!r>2_tRSt#JHF{1i5GRsyg>1Vs^;|6Bmpbfz7HOER#@~L*HZZ`*HpP>5Shl z8Ibri63=FC;+E)Gfb0m&lclz=!KmD7v8)nh&P+i1y)2K;6fI?{soI0Pr@~`5w3IS` zPG`BUNo5X7WoKxs8)>*uKAY7-d_Wefh=`*JPqc7%d@_=K=`yRdGCl`tbRsJ~n#L-| zHc{(BU3sWua#s!~$H%X8vcF5Rl<6ExbUR{sLMV)}WAS4ImJZtnjr|E+>@@_GioM6) z^+EGW-h|v5moHh*a!QM}YJqrUYOm}~IIUIYr%p8^w`HW{D(0}*& z2$5bw>Dr_%@@B$_j0=VJL`ea(tSkRYA7%(og*n3_P0Cr?QBFEZ3#)CFI zAQRhv8w;F=${stE7Th_Qu)Wr+ssAj z=+Ebn>>L@@G^%AeXwj+@Kl`~l34@C!vOmy7oo6AocF$((c!}G4yTB!>skuqj+xXF( zDF^o{zt6qu>LHSNW5tg-ic{MuT@0P_^^>7NPhAGtGVM*JNCGw+)hEq9C=5#6lg;dO z(o|t8Wv2_ht_>@t#4IHG!$-(lLX1x^Y1({*$$ZteESJv7m|t00Oca9pThcS);Gr;g z*o3I|mF}XVn?6VrA<+{qS?)9a2cmua05NQcW$Y+8{|VBo6+|)dw^Y@)F+)qq576zm za*<=1jz5li^f@RI09ahV=k?iZNQxBKbQ4DJkCft;)b)I)@v9rxJef1&^5>~X*1U_- zItmKl*T|g1&N*=VdX{?XKiUvNJ}HoV#yXsb49N{NTec>!sPa4r^+Wd`Ae#yXf$#pX z;`(b~%mlySi-7$kd%e#0W4rwC|G7>3A3E3fa>VWEcu;6KR_F2KXMa3zv>{p|LTOlPtmn9lI|Pe*h_n6K(8zTFlc%M&RI)#DtUGt^NP()TXr^P7 zu8W`VcC809>4fuDL&cQ{Xt=sjl$-l&M2fI6X$^B7WfB?NiUroTF%Cs++~YYqB3K?v z8$1=8lSDA~N}J2LsX*}afX{+MM{{!?FuBzLt9{(xl%$<+xk>t{m9rA2|0 zv@Nxzc1n_rl+(Ab7Frh}#S;MPZA7M@+z!m8<(sIaf3{%nycktHWpxE*{M9MJLN=W; z?ng#nf!rCfZ&Do_tCc{ZK+4+PCN!}UsS=$a9d9{KDq^CZ(*}q#R0j89ZD;qe4H^B} zPUwzf=An3{6Sl1;&BeEGv&YDB$B#eLI?m1Zmogh&xIo=LsELS0qM?I; zI;o)%p~JzlRBFjJY?N`_{&d(~CK~!E^X7?lqCRvs)F`?*m?8wjJEBY3t?GS{#NLYyq3l|Rb*4y{Ak5;S2qevw?|@jEvLs`m6EJIZGZGF z`wzC9)l4|gd`Ig{Smp!iGe_^J0}im*GD;cNBH3wV{tR1ea5tPPvrCN$WYzG<5N2xW zO#cIlo{7v^nh2%pMk2w(U9MCNYHhL6D$2SJYSq^QFG8nhC0JY+=ZT`)RgPg(E$fci zOh$@qY6$r<1RVyhVZF|W&4jzQI=!b>%dae2CRIqD3C}iQOEOJNhnyH@-W40l5YfoA zqN@>}XsH&-$Qzz_q=7Pr`C1;Kj3ossfFJ zb>pTB!YhUW%9SCH&63d{Q16+n5R_^ zYMOj;cBNkd`#a$>Yh2pBv2(+S=M8&Qos$6^KQid( zoLtW@0a*$x#2jTp+_u}adYWQf54!#{I{6conM0zM4A|q;IOKY1Db7oXPTwZft)atz zb@Z{Y)Vzlr2M}N7cD&nXill$kH)K)hPe`1^u)qw~5M`8M4xm@tDs)(UY7D>0pN|_R zC%cQ(=R^(u1(y;$2Ybo+~6$<{i5Q~?F{d>^0hU4rJ zT3yD%X5cu9_1QG>3B(sTe9Za6t{8NuY!X2dZ@Wi{4XczzYAJ@5dex$$j$4#%DHI zq@oh?{lGSJu5@7_wi(EhzFI%9Mv)gHx*BP#nf$Tj$u^Mzkw4o07=>SxTf3i%2rGHv z*e~$uOUP>fi+XHZM6TJff`{`m5=WG1G|e#f?QvuWww)5#VlyA{9kwoIbJ-5neq^v(NE4i^v&SU20(}vYZ7Q(N0|4JNm=$v0BVPklrx};!c zAINH)*n3}l!>rEEe1XABV!T1A-O-eiHh@F|PHH7`C^v^UhzJ7w*{H4Y$N%1C2ho`m zf0iibbW!U!Y~}f&GqTti4_!T+dMRQ$(yzp){Z=D&j#hMJ=!KB@K!j&P^|l9hLgMr> z&K$a6R_FjRo?Xb^#mdnCT8Wc@av5JzwFvGpe=X=md8>(&_pt319e#Z6GA&m&zYOFu z(vXu6;U$=d%@4+2Nkx>o0aiz6siyUi(7Y2op@*wSDeEfK);k>DFKXvOR{~~^P+n8- zuxEtq2xZ_<_4`ZvDYGj&gEIC~Y6sOB?l^rKE^_3|&szq~NC^ zuW4LG(J14r-5HEUsOGtJ{K}h70*RaR@nt*Xu1`+lSDdw%v!h^m=)YY&r_kL)5gmHhIwP zp?i=KD5+#dY|E}Utc#>Danwuk-N)Rfz@pz=!re(pH5p&MbM*Dg>ZN*~T!3X}#MTPJ z7MD8DAOHH6-%)ddZKnyYz`BuI0=}6%bid^^{}v?<(RP%EW)N1`U(|?JE6B>O6>6== zk5>i-<}>88A!#4htI4*|9EXxi!16;|p?G<}YHW3WuT~=Z@};;l(|pi{_lh!?Fq@bW z7|=+?*U7$8`=FK>sdac7Zj=4}ZUNX^?!4bgs>&NQ4N_q#VH1QS)mJ^S+T|@zGmreS zpKS*2EBUmy?5LJ=VjzHm9VOE|0i5^P>shy;Ftj#yfYNzWh1Q#g-l8N^+25s(eI+5! zq$)$LPYtrfO*DhHR>VvBW#-pm{9gs?cg{>LccJA49R6TMnF$*mPy?zVj)l$t0Ne9o zp+1pA8TQNngHa)0V#AeWxQv|%XzN+nip zk79O$sR*@YlpC*VPxL}UMiPudUIjzVK^zL*8OyBJs$Q62du|1`^SEcbb1|e}PU^p! zhueZ({JW7X69tFVj+qD*jXwtjR7h(Us3?gY?5*UF!{r8+qzV?y+K)yHG{TPB{d0ui zVK;Gd&bh{NVlxc(^`7-h)3QM4R?V0_W?=>~P~!RuJt{-BM?2kJZ<9J=BLEwm(_))O z3MVJIJ9gI^*n6bbAsvS2rmehN3%Cy#&PB!{>@1B_?PbH9)6@56^sbQ;HNn1JQvL79 z63zCJUCzA^u_NnvNi0Q71bXJ@Pr-^Jjv`|!x%Di;+ojz$1fedr9NBjH=s`i#l6ki` zw_%0SkAzvPsX8uUEoHcZYS$%f{{I-w)UE-D&tX%VTmE~h>AMC7kfoVw;QV-hSX4hH zRzq3KRV9CH`UwTUrJE30+BSq`C&_!Ir6%?g$HS>>PY#6fR<-{YOlJ$D4GzjM1?El{ z4mz4y2lwU6l+8W}Psyv{PFR`bo*~q2WTtV5Ci{?W!n;Jw5dW4>i;n?md`K$mD;V0z z-VuhUkAhvcnNM*1{MQK!+?A>}=56FH@3B9DEyrcLy_@wH5!>Jm>$XFago7+@9WJ5G zn@~I&j*$`1g-aK8(nKk6W5s^tiHV*UU~E58{sejXUlFP2qba4cZXk=laIfV~K)*1lBgW1my~=b9JTA$j$`0>tJ)MlZ0kvKa#Z^Ll;*{AV7S_MPc#Y_k69JBY+; z*kfP4_|6E#Xu{?8)f1}51efp+M~)AFzq5}2^}U#w7dz|u&`-CA?N2E3En{Y5TQjX* zN6ua}dxX|m&|mi&wF~dvQzFa8iAnn}qL!bRq2PoFbXw6MKb02*h$(g{x4UBN)5@Km z*6GN$ke5WbWxim(7je(UfcCqT{Pse}Fs$f98TJ^!GC2SC+caq(v`t2C+0qWWE4h2f zzl8nY*rw>>(d{Yq?ypkiT$S$j{v2tjF>sdyVz}G_{#R3i4#8y*n!ZM%0QGOpn~g$i zGK$x};d+f$9{^kqI5EiQs;DR|PJK-~F*4|{-y&U|sKqlX2TQQ69UJFj@oh5pUxKG$ z<3u$Wx)xGHe+iT2RWMK?&^MCpG}?aG!(g3g2AOFc(rtm>MRHcf!Y5+n>!9R3I_c3) z#ORRm3s_opw|$ISI($Y*t(N|1>}-#a~B%nK3&y2H8r{Xvac6rCs&s zpHGGAW2hB743zE|^48vzenuN^q0|4|)y`pA2C-lA3iuD=Ecb*W9l^|Ff9I^(`QE;I zmC5nCn|B*heRkp1h<5+XsnZw%V*3%?2X$jzC`QTb;0nX}wa`?aS8^V=NFj)254VoOmjBNpnKsk0B^Dx=D4Zqd4pKJ1su zGDxohg@!I<|0LajK#gsm_^=YP2bV zP=<#Jr*i&>@D=_q?fG-?`H(x(Q_Nr#Pp=xd4U+cBSbYyUaAGKcear+YJQ3uRQ=s<< zW#GH#!FN+T(k(R>k)?y009Jwmw~?f!zS^N5&uJdWFdP)A#n5AjgVl$? z1Bz8XQE_`bvy(XCxAe~B?BQX%Ab;I1WPGLI<|8>A8RR}TfbN=~j0hI*?;nBv!2@Tk z%MC>K3}|w-ou%a@6`X!U!?n3-hd?&1o@MHxx$S{P>){X4nIx47yw-GG{xYd0i#-0L zsnnCJb2x$(V+qVwuw%%)Dc|+@TG}aHIWlIEmqTZK3N2M+kS~}4(AAApL00b?Z1kt) zHSA_j-4$e63d=WhT?!6@s(1ej?r@I?=S?=q1r7h}SALAe)l|MLf#!tFR}c$d(_va> zEz>4d1cXxR3Z#nJvsMWS04zHPJ|4w~tHITTPW~y)7))J_**QR;-_q+5eVA4!hD~@3 z*g&Don_LB#yaahKGF0^=TNw7*oy!wKKueh} zl^q#7RNSFkf`C@n1t};Bo!BqZeeP*hDNY!uWS@*jxGiPB+dqVkQiqeVD%+4qLU21w zt!=XsaY%IKE)c~nw~%GPg|FPU>DH4u?e0yLfxfs^zGA9gDz$87I2s=h%t*-9D)57t z=S7!RBEVu09m$w;6hs6@n=#W%0f14)g*GqM=8bCFDBTVu2C(uwKY>k;mOxZK4h1U! zfMHdD<=7I+aZi3(4M@BUZl%3r#(KYZUz*cnCO9R#TZEb24V0t;{B)%i>>%m5(pvu- z27L7@w(oQArQ|Q^hJ@}?$X*Si4eL0PYOsK2xijgT`jUa_oUYwHki|^rl=PL)%!&#C zGHgbx-Y%5Ki2G%UzElho4y78Pc0@BqF})xPvyExKsW7{R2|o9ri!Zu^&r zxP}1VX-M|fxD9?5{e8<3U|pAPx&`#2JcHBfaablN->5uvT1$NT^<&CF!SL|nnGfQQ zKxWTB#HB_g2_rj`njYd>UBWN?NwA9jz4*%qI4>_M>MnBZujj8s`MDF2_VAXy3DQut zSJ^FrA)Y+Q;ewNNea3II6PYFQY@}%uQgyL$xa}}ru*g&X3vcRAHJ3k1k>b;m8?@Sw z)RrF1pfl4wsC74_Os`9H)9y=~p#u=A4mO2ngbzeP!m!f6SUG;Jl#0%+jMS!God}-R zEvJ3%V#UK|B>&*`!FX9%Lx~pNS4g(>!Yuf~aCx4#B{Fggc!;Tviz7YA_&(J+v+q!l z>&tOI!YS=x%k}|lu6e)?A>j?qg8|lI0KrhRCN(v&X;jU?Dja+mZipL1`5UZcm6q1E zqio3cCa}&o=?}$JQ(NSCk65M+*31)V`av6_R-gJ8+&pps&qS{*>%9 z-F`5!{quV$IOYfshTbcr+E+~;fY6JPGNV`-QrgV3Ppog~$nsS4kS${Q=-V3aGrG?g$?Ox=i?Icdxi+eiMy;%M^Gvln1n590)OrEXuLaGTFOVaLPUwFwONEd5##U-`+_Ua(McXUskI?U6Ot z-GRm*_hCe#``WOs+%8cAGko=RD(4hM!LFLj`=)x&#($2a#$~S9H5};Djj;ru9hwCekV3c1Kx_o>m3<(J!SlwOnobL!lu-*-@P+ zgn5Q3qzLB2Vh3g9p?^E5Fv{Tr6B%cdsTqs6Q7w1p)8u~bLi_SH@TXuMlk zngy0-Rscj>l#sTDCk~tH1-orpoRp~}cN)8QW1BY4c_L8=?07B}eBp*vmgyVf+t%vZ zmhpC=mIqiyC$eix@7r)_hJvgCns6mwT9`D<#FOdW-IXHwDURY*|M4<~c8~r(Wt{=B zVOrNhX4@PZT(f)@vL(`zPo3`NU1-eb`-fxO7wjddpG2}zWQ%0p5UJg`xgKYipZE&1 zr9Q@a+|kW<^WQpQd(9>mzZb8~$BcGdcqoC{jwH(=87&jqcYGf<)^fM?bD z{k7G-`{&g2twT23{yAJKwrCvZ)1W1&ru#*n)4?Yj7(&%(ci5pPtnHiVGLC|n>_QU6 zc&APYIVWerxH-x0lsQNW4(G`^$e4hPW~bregY}aUKNN;>VNUMMIeju`D9viFQ$|)+ z5>sh;jPpf9rqlGf?fj@!orke;H@XVqy8C0OtOJUFTHo3SdklTbx*8`Lq zd}{8In|AE%1QF*=N&cMmU>OQ1cZ_C8qbzRm>$N_y#X6^@K2r9A^051?@mqTvP^(XO zDDeQ>&X8@>2Tov>F1{)lwe0IeXF7*>yZWKLsRNEu(BKp)Ph3A2<;TD=ItGP&XebsC zBpF>*P|RwCy4#-I%R|EkPu(rD$Y% z+A#PGNozO!%^U&ToYdhj4`=aXUU8G6szv94}N85+dt9}90P8a+ho`N3#mYrnT6GDB4Vl7AW=>K z`r=}IX3-GiW9cIc&et4ggGAs}YC(JEG-BKEM2Q}3{m86meM!fzZ^4(*hAg$OfkOHN z@{?GDze0>cqzgxiMM~b!ivMXvx@@XmUac2i+pI(Oj|ZPYD-Or~=F^@ATK+4!WlO3j zwml(-O8ZqX9>OKfz0h&vwV_EsFl0hp+WXpp@;->lF`xsy3a*Ty<$6{0mVfuEGGh`T zt6{YFIE0dJNDd>Gp#oDaTD@BB?^ zPt*{9V|Eq|qdP8nYNY!%_Fgiz_Oj6Y8FGYNEOrRgITV?3hdmAp4w=t?o)C8m-Q6uD z{zrC~xo{>dn{f03vs@77(uGZ5YGV}?A%Q*vSr^ri$vjA(DES+U!|`YlFdBx%gcEI^ zL+egp{ikHth3awQ`ky^uvnyAOFj7k=LTCnNwem0|UNeS2O*;=tKeFAO`-?y<_^thW z2lI+Dyw5GVQRqG)MN_c>`Ix2p0HGCA=D){8@=!QGZ?toiHKVI-!mI;X?kMP16m3@f z*p^_0hN1S@5t_2g@*mF)te#z?1M_Jj7%dnT$}dovPV0GZ(vpQjeFqYMi>3tcuR;1> zw9f*Ijxs?19H6ao^vWkvP`I#m2>v^Wd|(Z-y=23r$Ts85jzaV6DCefnNLwtWq;Yv>=^bjJj1Bwt2mqyx-gIU z!n55gjQ0sRxsske!?F}`u1!q#j*Wpx1nexf{E3E40O*lzH33lF9GL6shl5jM!3Bw1 zLnBi)6B%Tv(>f1k{2xbW8rQ`6e*KvwXxN0ANM!@Vbk}-tPEdqAovCd!pR6bN9Nna;wyrL zx;KHftEPijhES3Tr2eJP4kYkobT@=B=aq`)fnFg{bU|m;xx=4+0ys*8eX9SiNvnA z^X1D*XAQrtqIuHJ!595`X`6sEoqCxvCh-*fL%zLb9gNk+yXo=7lYmO+xNHjJAnjQ~ za)(TP_pO7_WfMnLO`X!i_tXc!d@JBDH=Pz?Dg+!A8h-TGh1@Od$L&DP+Kd3UJl1Mk8!j zl%UeQ{ldP!l32ogPuAkwC{}LDz;X!5XO!dxCsCIEQY+A`5hz;mJ9A$>tmegZjS`A~ z5yVDCZmbyJx6Kp24IzZ&xtk=+mi_SGuOb7De1B-(5?orD1^#K%8~E_ZKSo%ln%l;b zlt23rSI(XCqB!MUptOC1+{5sl9PfuhO*NCKKAM&ZUYro<7^oW>=~Fpcfhvy8;lGL# zqobq2H{tS{l@jsaB~h|-wZ-u1Hm^$8+S5m8!w<))t@W)ha!Tab2cpnz1+Fq;>mN$% zDD~h77>RA0nwxvC1QfV-mNfdauiC~kab_;j;XGWU*RhywbJGuB^g{xWHS2yLxp?3T z_y|u>ssGoqM8D+}e=lme&1~iH$H!|lGq>u2KE*D&GN zSCgLum%H8XyRv%dZPVa!ESn1wZu=>h9)KL8g8>@jUJw?4G9i~lO!Dwi_RB8yr*~mWJPiW(WK~{kpxRaVxGLX|oD-L3HchIq2Y{%jp}LHK=TV z&5y|RJ{Wf=?(9`7H?BpZTQnO5-W91plg|d!>X~M-&(%6Oj9|xe9Nw>J90Zm{+(8tiQOf zkv4Q#pND$@ZYarfnCjPuFPn#^e)0(NC#%+-K6wHVRa4vWvg7hTW*uJe$-wZ8mBrKZ zXfj*E*|O!s-)ZJExLQo!W8VXNM3+BoHgUu03-H_5p!f})bkdbs)Cth5^6|4P^pDxO zxY2&~QC5rB)fx;Wc9agX0EREr=hrn6$nfKb%4|36H9S1`-U2q8*Hx-DIV4uPiI#&9 zK+-uF;jom-KX2vzh2(3xVx@F>L_+Noq)jLK?r+KzXzIy|lAmQ~tNnRdtktG?_3?a{S^#-6rD$p?9WvqK&pv*|7>JJ#PyE4f z1Q?9@6}WnIbfzCpC=#p3dM8y(HzD^MyI{|b!{$tY9Y?Oq@Oh4@;R4+kf=jHy;3MeJ z2G&rLVNlwL2ub-wiOXWv-a27z2z3(;;CT&JxQ-W4CLuDdLGtqT$$J1(2FpAdtL9D* z_95-K%;v{D%9udUPfCLYKOvf&iFc@EwR&;yeO2xRq4P#P@jb)L94?J%Nl38=omkYZ zGb6S_&8wW;IX6XSRhHXADG*_Nf*6ICM^vtB7!fl%Zd+|z!xwwp?>Bm*&^O<>a0#(S zs`8_enT!c^4_ezoRkoHchgcM|<>K;PW4@P2&cN(&&Ne-D}(>6jiWL<<< z$&7mxF|Nc3dm+8Vl0<1vC1GRpbxU}$V|%mn`Der}8u)~%0xBkJzD`PLEJ^z|qn1>6 z%>sx$5#3{IQWPqbsFA5#x$CwAcW!&&69y-N*TVcoiMWLMJ9*}$@vZ=j+d2a&NhWnh z0Xh%t@DGsT_YFHYz_W{zuB;d4J3Nvkh_$PcW`~;lG4QQ5=g{=$58?J7LeL4|N|iu6 z$y+i?fiRH#o0cxsbHRI2YgcdWckXk>>Q5a}-gHFnP3p0PN1Zb3Ha|}JOhF(Ngr~f{ z!vj(awepGSD*;@}-ls$gVwR{%Zwvp(Yb%)9hn8jqc2&<*lM#Kjv6=B8+4NeDr zP2h|5Ob#=Tza`c>&;j;Y-y{gk=OfkXt_irjtj`=OQ5U`3v{_)B$I)Pt-NQ+rx!3{- z&fNnAXcA~vWqaq`qD8Y`#ci$Dl`Cm^_D02Tgamw|yK@r=Nj$I*-dOyAJ&Pv1_Z&g) zaTsT6y#Lk%ltLJsibqa|hLT^O<`F$@0mF|F;z{{gIk+N#Hv!cvS=;HoZb zqLmU?qV=3q_NvH8uAL%Vq)~62v8WnZtNsPR$C^{G@TJ;L)q3341wls`(2ax?3w5{y#@_#UkcV}&iE9< zXzTlFKZ0n$^?;6hH39{){h?*?D8R}BLKdHgN-cz!eb)jOY`N{q15sIGLdS2Z^EI%6 zd;>G3j0)@n=*n&ZR)bFu)cqueH-GX^MX+h4Iv!-7A(G{hDF2h!s3pO1ko^cDuwfk2 zn0y^FQS0(dp>8(e9?Lue{LqPgq&Xemu)Sji)5YPRAFP>xDuU9;B0BWwM#Tng7RL@R z@TMK|@OpiXj0Rtofd|ut6&_N-rKrAf10`B4f78X~7;PQd7oR|gc2fP_!-gmD^#?a2 zho0|!nKFApys`dbrH(XqvoFNGtTaaJMAb&|h!cCnp-Hi_bRjrNO|K&NLb;SO-< z%Iv+FxSISvh)md17s-OEVS@L8c($F=h#6GiCrc{5ria!FkWU# z0Om{N$CWH{&xC~5_2hdW3adQ#oajf)A-Zi(S~LtfcwF-OheF9#_}M8e90cGe_g{eR z@HM=5^ko{E8qw98gtV`Mu`Vn*^|5;A*?(gxIBH~3hDKzne{-pVAw)T(F3YLY#zdgULp6cvOqwZHZN)}_Y4yUgTQz&FTA4GWsU2_-_$VH1GO~L zrH$ioh9FZr{%OO>74yx%E3F3{Zi*M8Q|0jPzc1tQ?J13p5V!kYSmLmhkgO4am>m`Z zV|Fi6m1{qmo6_22ag%g#?@l*ZmjcR#5P874<)SF$h_FFBCuRc8?k{i}1zlpgTCRlX zF*k+pc+?SjSi)l=gF>X@A7%XpVfMDc=YK-Q<3MvWC~F1yt)qv*bSj!F+J<@`HJm%I zwl-L6-7thdy?et>Y*?FldbKlGEV_2~SN<+Jzs)+zjL=EpCCoE!IF|DG^gg?ACQ=-7KcX2v*m^{=`pEyXvsnqnz zjxdED?5AWnDcj^`jt9Ir8;e(FB}@n^O;FL-GD0ginP_$e`X-Swmd&Z)f4lnQUw39y z^5cR3R>246aV~-OXwbr)>~sopf5_?Ve9YM{U$%MAPGlNF3wpU;RP)hfzBdwukQJ17 z*iZ!IGdY3!kEB8Cm}JY(O@dt5MNVMfZP)h^W7}0-ck+beY=L4 z9C^?^Y>BtD`)XK$D<89$^24|J8T13AkHSs{G;MjLeiU}VulC42-$!B9e){HV5MWcB zF~!C>NZ#{vEK)IhA8*iEYsggCopn+8UpQTM9oyz6dO(H+Ayl?P5B(Ss20oWi)N(I5 z>(lj8wg&|~p8$-Rijtf`Kkec0^%}d!fKbEj^k%hCgyTniZJq#E0{^xDMdDoU{ZlSm zQBV%P$k)(9iZm33-KR_CF5o91Mc>3PPb0(akg>JY5zv>lcrKA zsAN`jZTNnw@iH_^nLgrtJ^sTFX^bC!aHUHUAcr|!op+c>W+g`M`=8s?FGup7rFk0r zqWEN2%joF8Me&zbSc3h1-_Ba=w1p0bQPR>~gpbz&#sXJ%JG(MWI^ob) zipf!#2jUa?PjqwaJ-m1uz|K_^K!zLB2WFB96Ne7*q2wL2JLTjA|GHmf8Q5^i1NDmx ziK^UwQ8HhVVl>jGF5EgX{*BDH4qGoWH5kt> z@WLO*{{DW?K!B&OZ=G-A^?>P|9Cl_-^li9UE98oPXwD!sZ#cY(-hRBy`DXOvfQ!>E z^JlQv19`P)h2~!T$l>-{Qk0CBXZ^SUCPiCqRrCB?(c8U_cvtSHgSshpr$7^IyDG50 zww=!*mZYbovkE#08jFr{2x;dlCm@4_*i1t7mKP z<4NG5p`3WaD2BZj98N-LF<(n)PBJvNPqlZ-HJHa&G=krX40c&l`zaR4tV!%2`W8FW4sRU$r2Ve}t6y(#%(Gmj!M`OJ*_DkGx>8jB+0w>NwSVZ~G=*)YIEB$!NIQti zuZ-=nvUd1nL(Ukqy-_8nE|FZ~g{>zt`BV9kAXoPgg&AiC)aqxNUpfd;9mM*(TkA3a zm%Il}N$K9*)oEF9X;5IZK1ZLZ`DX`)LBt~zYw&9SF-M2Boao4dE>8s=L`evp^dMPW zDl$?P;zv|+y3t`Veq`9-7(vt8-Jm-^o9;5P3(;KoeOd4-~msGhtwSYE# z4AE1nePt~VQ@cKS0Wb4JvLGuhi?*Det6k=1l*1bmFS>l==8RuWzIZVlDet3J^=6W}aP{>Y|`8GCEqCPZLg@StMsSk14?#OD;+Bq7hN4O)1XN313S+<(C_)7Zb)a+%VTq{a1$4rXHrJ{MoJk zeiQ`nNmZZy5)j=!dPzwf;aIu8J}nb!A(aiyS}tyr^=uA1%u!g!IzJFkO(jKSQ06eC z6VvME=hIUHNifb<+RlSjrM+EZ4q4IbIj6kZMy~zvzdNN|8rs5pQLl_Y=Nw%gHa!m4 zuUa@uhpxZY;AWgLIC7KuAH^y=+5fo1^%En~{aOxXgnsyf)C+TYTw%HghO-3Wo;X8; z;4HVFWcfnHHU{+dxYYI4bZg%>!iac>F4qK?5~H(e>-+qJia z%;z+smP4!;uCOY5+XP4bX{Lg(>||)>GF!-Uz%l05{?@3&w~#2_bKT(v04~H+$YVOS z@!`xva_h1q)UIs6v(@StQnDWJJ7RCI%zDXxMwwlxD&Ng}(j7Jdv;Fy`)lRsNSkt8U_Ex5Jz1>AK>+#bzo{Q%uqga6%;zt@#V0%AqG#J1%M*Z@w z-%(1`PE=knG*F@!gfW``;`g8vsGaZWRXf1k>e!8op)@0nzA@Z zub085BG1;Ula6tzOU_nR^E_~X^VHI%=E(3%vY+H@9q|HG_PT!&+1D7W$6A;|=9o~_ zSlaqE>jhcg7@7Pkl(dFgES6$OrEQ5x+{C`5r~dL#mCU^JlhHT+;-DhDr15G5-TRuC zR|A0Jh(38>6NSMbl3zqsEu@KO$mqkKz%|n`dsW zw+oV2&2qhPZF@n#Bqm2;JQ*Jm7F^<6_jcBS$fzR)oVU{%A%#4Oh~#t#9(Wx{!urJO z<$x^!v1*lV$ z6M?jc)QhC^hnZ)X-C?i%>)&VGik>)kE6q3co$x+=R_-vEZ7$aSc$Y4|YhSQJOF8uLU@S%wE1cb!qr6#f3836bM@Iza};jm&X5Y zW$*EP?VR37rTUUw_fp0W!3=#Zb$2Q~MdMY6d9RX+ZoGDSS`KZjkDFK&@>WzhZF(f= z5UtOM!3gdrt-|B9R&JA<^~doF{?VxUx-;PR-wfv{VU`nHzh=3d@A|vP+99@lLfRIn zyd4S7Wl~ay@0BLqR!?WfZ(_89{97(O8-N6Pr|VA(jcIuG+RROKOFgo{U}5s+oE}!^ z)iOh*4piz8YHAy$D4{MDH2n97)Ggq2X8I&YGM%_%#pXCt(?UwZ*&@8+N2{C;TERff zJC57$9KQdJ5IxOUPe^}e`uq84-{ z>E4))Y&wA!+@h6><4SoVRMtB%LF%TEG7;|keR$)s^HZem5@V!vcEWZnNsvOjbR+jq zP!jCZLppd-WYbdQT+!q@vmEI;^*IfLYd0|((-=eLw_OGN@;&%HZYH<2soYOM6%yw zvQTbnT7rUn7;vIa(yba-$#rI!s7Of@_nK^u{3Hb) z7xNc^&$5APx-n}`K5Or8d>i&5D7ofuQlu8Q4u*@}e}Xk5nzAq-lANuL4-peC4u0^K zCuM3!4r^}<3b z8Od>ML}<3o)tn{^7eqYkzS^-l0_?KOe)FZF8&8L5zwhV6!^~IvCw{ z5t3FSxjxgq->m6-ZC*U_W&eH4vC*%uNoTUm)Vq3sKgtTx5DEE4F!w z*dLVzTihh)@%rZ4Vn}u1lNmoWk^P~OVPc|BZRQif3#OnAh2v};tseuzJIY(^P7g@zBu81{UZ1_f$U_#$eo4l~WVN(R5O8C#8D@wa6SB z?XfwjDb7+3A6uT9>N?7t#JIojIT#@I*6V-IdlDwa^!oqhJ&9~(FgtSpoD8LXr?lkb zGbvWd9Vo?Kp3&*8#x`Wc5_UEperz*0mI0b;#(RF#Est*t@rpXekJjdLIipg`0Y8Uw zw5k=lYVdz*`z>^6XzNnFSpDjRc^Y8Wj0h;nwAL42o4IErX^h5onk70q$kTT3WN2|l zcs};}5AC<$*PalkNTN$Ud?>UqgD|(+4iz=J@WI3PP_6BvQOE4k2 zp{kC}hBJ#at|7w|E@(;&$z2X!ScrelSn(&Ho`)T~#J2Y@)4*pLOT#CuoeODg8)m!i z-jDS=VFhWLQmZ$lUJsb_sehv{G%1bW&1LR_Gc_?+|9oB4n`q2>o)wBUZwx|KZy)EN zUtfKfn+VzEEDLJ>IQpPh*;MMfn@P6+Qsx-)zUU|0i?D@lw=17qI&u?;YH>O5oLB>c z`#cc+i=tGwMHXI^-g4f=B687J>`> zDu2XmhY#iX2xl1Tz6|HbxytZt$IIL4(0iE=8xgYxx$lEuv3jIr--qSc&`=VEXMZ5p zifH-q7}J-;#FF%ILir;`FWfmVI|)tgpvwkgzNA~~2=gHd{aq=xSku%_N*P1x6a+pO zHbwu4O(jCfQD!e?Rx>YA`!6d930$}n!0AbKJAkj*5AT$Yf^B>w^96ycjRfui;ov_g zkq=@19|-UD!~>sMea>g1B%ir@{3bLOGVjx--`pgbGBYeXQNPaVOZ^1vq1=@ONnTVc zOXaO%A@JqmZeAwDwxY6Xrk7BBDOXtXpyyPKTIIKtAJ-uF3lMZD-MX3e#hnT}R*{mU z_|W=w19bVa^TUbE=MbjHZEXAN-Hq!h%?Gl*6HsH;MsPj3+w)Wzon~4K8+SxvO_VMZ zX=DQYXFXOzis$IC5Gt(L=rq>0YKUI=Yw|5$q`ibpTP5D`SH|akecnQAQ@H<5nWlv$ z?(n7+VQ3X1%s)pYF@KQQulTcPmLZ{e5B}HYglOnoFmkwGSEn0IL+|%J{h_zqcI0R?U=1U{HMgKJyxF0#E-;TI?ixEd-1< zq$E*jY!d1?;+7<_@5J#5{y{{hSqL1z@?VT_IRd^(1x;2{}LEyK!$qF$k5F*`t-4=Eo- z5?gO;97Pa(qdLNEvS1@xS%{2{4+uGDtyZKhLE1(_^d%%o{X3NwH_@bHLh{~w^SIr7yF1dB+Bw`K?0o+ zzl-TjWXI=4xA5&y4YO=l)-K)-Zn!h$eZ-E`x#E5F$ToP(Rt+{(v(vo(^nr<}blgq% z6~^-^UW3)?_1MjVD$#^gX1*R)DYCO9tx0g?av&r=lv3!5HA_e5r1HEVg!PI`j1!emDZz48a-JXNd^308Mu7;! zI?pefbt+Qin)p`eE2TUSZc;*AT=agrE&O2-owQAcM80$B>SpjbwBZJ2{Zg`UQ(Sbk zSpGS-ycWg$1GnSPbUZ$3?8UF&vVDzaqS4(0gh(X2IBy;ySw&PCR$g8!o__Grc+7E_ z)rU_FFQuo9c9y!v#p!|l&h4vBF=+zya|~hL$L-@c%=r|2(su~UyX$G|qBTc@1xBey z@9+6opKaFw-EtW~^_XZ$7Kie(v9U?ZU7Kuiv>!g4TPdlnEj}2TRkX=-(MIootb0|y!!v(9{w~w}_ubRj}LEmEzmHh2{cJG^$c)+U= z&qtp_2*2*h^>t2(A4GjtfB6Y%RO9ZJYxQtT#h*VfhHS2Z?*a5cIlkD@J46US#sB3# zhRTjmJo^W9OwGMrznL-`c<*~1jIv#HQ_iz)Jx`clhx796(v!?~@od&#OE z|Jm1JOThfYoKsJa219ne3CZr&>=iT3wiooVokyc8ovSZjzRbJ{%X$3}o8yqFUs|3X zUce{(4qx`5@=4BFX_b(cRZkEqv zD{`@GuqsTD6qcevag&UBOpW9|M78 zT43f8iZY2k%$Obi3lg=q0*ul^>V6$jm60(rBG9N8!EpOCXl}ovRR%ZnCS0U=yxpxY z`nM5E@f^CFMj8rfEnqVhh?OxP*}k~$vj!z&dgG*etGxU9P&OfvbMyJT_WE{^prn?C zS8qhhFJ)8&LmMiGtOmgv{BT+#dOZaUM0Y192N*x08H8y8YIz-*Bft`S{noFUWdGdg ztSsuHDcq^?=L?@XHUJqBnI>sd8J^Kw{+b%wrcMF~tL-bt#!fu|tGalixmh)>ebr&N zP?N;|qUOF<3ajTm+;IMng5wL}B*M7CrONIPq8_+PW1P{M^g`#ntOAV((}A>sZj$`j zA%SI~yP%srty*XlQ5p+^%|63Gr*`Sn^ThtWbWk|{N_KXan@&Zvuh~E-T8Pq$cv_zK z@i$Ef_zkIxF4R7zS>sGPVoE2(7+Tv*x2y*FGQGFciM7Ff3d5(s6iON&2vX@|XD->; z{NiSwQg>;d_ljAS%|>~matv)#Wycd4Qg^!BbPis_1e}*PlafRg%tFH6bw*sm8I<+caEVlH#7AmUw(m z>a`PUj=amC(1|$`Y*ODLE`8Y$CVPyS%c#4mnk-arlpG{<@3R7SmCRkO7Kmoy4OUAg z%SGQt>=7zN1j_7G7Sv%Uh#8;E|4j@Kq8?;j>RD|Ayhr@(cf;eVjUz+YH*`=oF7tJ2 zm`TH*2-}?o<(1aV=^#jMTGd`0+P$1^Sx$=2tk2p=ta3)vezJ4{yox5Lt!L?le!I6- zQ;JxwZJ;Y}77lHCo60WccrKQLN6$M5ytx&t~s@}lP_6}>$|v3cra|P!UL1NdmMB2 zvAtBe<9PquHPWFY`Xga0G}XPT*;y$|WHowke#)gK(yr~swE+*7xHMYL?}c3wwHo|= zeTv_U^z`)c@hNsFWK^;oheCbs)ZJ?XzvS}M<*ISrk}TdPu$t67N~>BGYn^_~3q#J^ zbMBfLD`wB1y?C)_dIIJeYPG7*q$Dp<4AeJ7?=NsJdib!5HQ;G${pUf$FDHBG<eGe66tWEit{X-2qGZrEFhvO47*^N3&a}Ygc z#lPu(GzR`$yh~pWY#RmM#;iIAxf8s{R6PW8d%(VXrGY|)(e{_Z3a^{d-r=RKmX(0- z;OzCu_|}ejhAw=LS|Fk>V|I{XI*{xBqfP5j+mE>s%xn0uV~>8L$*U-PRss**7RDDzO4NT^XDWH* zU@f=zZO|);I-~#(=|;3F9Q7(C*lPTLDq5R?kB_{3BIN8S2qO-;GyCw)PJ5lWoK@8Sl^Bw}ifqpUyl^jSoi;vQzk<-7nlokpw@A z{}@LHv6T61G-aeNS%3X|uhP2EQ7}RpF>dK!_ogW=IO0X92Ya=up1qDW#(Bt-4GfI8^a^DHA|LW3qyQ=8(Z}5@l(6M{OjIdb}Yu6b8_N(U|@=GJ%8R)pL;bvyo1Bh=RQ~wE0g6MjI0v*x7K++EqF7`*4EzM zr}##}|0#BiI~3o@9T;vAE-TjO%DrjhV8QJ4y}6Ig{Pb;`a&orkY>NzYmZ@?SmsVhW zPaj9e1Cb(rdTw-2RBno>q7cKb?dBp`+%AQOp-B}B*!~Sb75m(a4h`8O+d@b#VKyA1 z+mgNaW|Wvn+_%1Z$*XIKV4KTnCuaOG8+95QsCRLRZrB67)8(g|&?q}s6HDDV_dKVM zycD~6_hpAt=t1K|Gne@7vX#uVa`969-E5)ecU&ttdReW%W_y^@-39Z%lLNn!*1i_E zje>iucc9R7)-0B5)9|RVkOpH39h8Ade)-~2+S28rt;@bV86U0Mu2_S{BcIpe>&eaz`85unCcCKY`>2lb~CacmPYpx_$u8{YPYt}|~xXNq0v8!qQ&Qi72 zd+jDTUZm=p{uOk0VV6xg<**K2e0Ya8NoILB>7^-4#JH8q>2L)c&1|vugkAMXeL4>Y z%i`jr7M{afwgba@`87WYzpH%VO6BQf^l=R-fdg?r@Db77?u#zPD9f)g&kyCV-|Ae*u5!5wEa)0`oQOsC5PsB&eb?c%l{miQS=VqY zI+aSR_HW#nN)xnplMUFaZ2K;REGI>_xJKXBMM{$B`7xh6&ZeA#%bGVZJp?Neg#DT4 zP)%VKFyjO()xD%*i|VVUMi1pzPHTU7NJM}gGl(-W8M-{5S&ZAx;<*Zq^WDX-vk;#vqN+Fm}3G4t` zm^A-rEnONF8pe-gR)C%I`fh6TrT;t7>=QdRijE)rXhAFQp?tE{RmLLI1+5{u;} zDRD#>RubZ6?fkpU|EamTwWleK4Qi{o^N-kFZc}?*`TmAf4&f1UqQe=I99*DXPIYw| zSU-HMexR0CF5f}$UP9E1V9y|TAGv$%ZC9aA!Tw8672$ztGq_wiQTYOj*XNK%i%ojC znXk6~I}WAeMDYIgG}9T^OlaQXCSwPSj+ zRmARA`)-l#5l`s==v6Y$N!ahPEp3l5l~i{3Qps0S5POa^wuzH^V|X|WjmtuQb%b9V zAtNG}f^~<5wZACtFoChCT%A1vy^^qsTylah@s5HmPuD#E;)E2}d<~`>N% zBP+}~Avaf{{%vix5{sIv8y8-x;8%P}D&BB22fOJk982pj{VDPQOG%?Z1N?&(!eq3O z^2k7~c^EZ+H=~{yni`-KZz0pWD6WI<&O1u%FQnP;sCLm&&`EP6J7bl+>rf{tFuF^k zWRBPu5;>`xPX)OUnjkKQU699?0#$RW*a}hPZp!FN_V>?K#)?@Q8X}BhFz)TVxBH%Q zPNDi8h9lJ61+LrT9%W3TKvItOy)Ji`c#!P|OdKrVfLbb*;ps>lN(M!O@G1T1{1|IN z)YGt;<1!{&{SlD6zXyV(8yNRnl8Er>UMnTpCCoSO78n;2%Kyq)I3f6q1FcDxb8MvL zl<`aDuHC#mW)!#Hu^LFTf~aWh^e8LX5+m%lX*hM!4Kt&bH#|U}%87|t$B=-N2e%7j zFSDJKSUS-NA%AxXR0^J$%p0T= zaP!j+ql%?F(9}*g*3BG^?u%){EW;}os8UGHQGDl~&EQ}a5$?9kB06}(7E19c9A5tD;NaOCL*PxF3xO0*ln0>QQ*@lu%2g;*6;Q(=$Lh*i^ z*=anasqzM#iGdAMHD=o=#ILH9O1%mySBNUb_}Sxc#ur>lO?@w3Bsw;hm$l=|uqCy& zwvOwIkK`%`F>J8l!K$2HX2rElmzJEG-86V3_duk*PiQb>;TDV!^e7#eX^wZzfP9$) z&M{U7?_8ENE63sboSkX8C*x%dn{y=@Ip?Mi=#|se*d5FkI~9-d=Xu&=X9}*RjWl}M z-#l_485ju~?<@$9il%6b@+dy-0|fy5mZEOZC$8y-8g8)1m<{&cfoq688yV&V5J=1_ z)<8u4PyaqLjS~fLWM-nESE-aY9_J$YPZj(ON(1hAi9ZVVvPD{hEz3?lr>P2<5Q@F& zskNLl=Ym2$fZE50MLsVVY5!myIo=I+dV7zl*9hHfaKlNt8FWmjSp;&Ko8%=%?#Z28 zlGV=V+WOpbIL-~|8<>#7%$VFi`F+)uf5$96BGt% zY}^xd?B?VR0`pH)P!XZ{4o&w$R!Z_2*Av`9C;)8iheP~qLFhbk_Ia65(}p(&lv)@L zH}LFu&V@4!$IkcQli=kbx_ZtF4cO3C>?dHDkb-KQ-7M`ZMjJz-$K?PM?AdP6l=`*}0Zy=Kt(Y*UdgS#vE#czJkvE}VV z){XJ;U(@atRJ%tzZSsX$UWG;lk#JHMv8biTHX(Xqq6q1*$;qZbdSQg;lg)6{&@Dfb z1<#eEyl~da;rK3guVN-}S$b>N%z<=oMjCU@%i95?eJFS@kBA^Deq7*vgmxdo4fTWL zwEGp#U8lh<#b9<7Uyr;c?(I_>dW7aGTrR(JYDTh_w!9Gv(;t4mM>PfrmMj!@zZM01 zrV>9h6qYMQ$$H)%s3*7&NOMSGuz54TwmyO1uc$gESD^b6{k=0Q7x?Hz_|=!il&FJg zU{1`Xuf7sQyXS-M!Oq94V|#Mwp8avP4nuChESu7?4IW8lh2jsJpvM z!O?*;8+S)4IayfHtbN4^sr>4q!(w`B^X#!LD$V*mJipV|nF^ad9)3CLg98!TE2JiZ zc}nQc396{h(QNiE%|ucfO2(DOP*^X;Y3*ICdKS6cakVFv8suWhhX1yTWj3V&x&R+_ z@yUY95+U9mh8`TIgXP6Y%L>5jY5ZCMCiu|i$D_dlE}jW!v6k;}nOq8IUJ(0~wFiFR z!}-|HC`hjD<4BdgNf}yOp@uUzIb;JRDNs(#VKAZO7d6jv!3n-m@cANRlt*jN7D{wj zIhw3>Lfuh!z)m%lh8CGLhM(jOE>r+bwa&%1;&Np+bdA%vrMyQ9sT~%Hds|Cf z-eBhnja<4#jJFQN$=o@dP%Fd@-6U7t%^rlpvt^Vn_jEky3&?hujr$u7mQZD50G%#I&HQW?C%p{3i${;3V0MzWwhQ}+Dvr@txi+P(IJxe;*7uObWZ9yh2J`kypVAz&Zkq=f}-+Aobk*u|00l~qI zH(0jm@$$gZDtjhEadQaZQtO@eum%RoGztX_TcJ|RFE3wV1Sg3xMhq(faz{#xr11c1{m2LW_EtmdV>+lBeQS-RLvK5V zv?1+9`}A&WmI19d)!`;VbVp3mU7tN*U3vH~c4WIK* zms6sc5{7AS!Whp3GfX*&eBW{t$=PlS?T|aJ9$~J~-M+UN42=hY$AQBkcv4jaZcT1gPYNWG!;S(gYQXsdlo|@nf9?+EgoLpMi_q+7VaE558Wmvq`gBJ>rv~D z$=M(DIeYWmsffe0!L)XLywJ=+W$lwau>XkrUCfT)(qjvL6qv6`T<8UhHjMCMXiGsF z()iNurBrZOE-B9cv>9GDlOScj9De*%C>fYF@#L20ji^HES(5x`LC2+>YeK~%&V_-| z&L}2P;D6KX=EY{p-n>KZBT*PhjN>>NC5In-mi;V#t;2TAjexr#?z9f#S)->Lco-TqgW&$`0wGds`K1G3F%a0P^wsC|4OJRQRZsfj| zUQq6NnG{XDV*V5FY&0AfXbdPgVkv-Tm9Vjyh3@W)wTQ43Nwk{xL?uO22a$U&WINdV zNy}cLSq0T{LaaV6j~x@3-Eej9v0mCD12|WeP!d5^vM=*;7qINPs3lZ2A6C^L~t0&4CF zD2s@;rHXpn`={m84=9tl@9SLWe2@K-*r%1{_y;R^w$zsiqrvC*!TM~-Q`(m% z*imT;_#Dl*;Sh9e+9qRWOtHX=xEq<%k2?>Jc#9S zA4KHZhoH5?QiPivicjdDahd#lB$+ml9JgNVa|iDmJr8S`xwzNdibe>M5cupqs!Wuy z?k+05POvxCyG}yq0$JPzXH0EWV=?Y}Yri}53g5Y@Xg-)K@gQ_Xmpb+Re+Y{wyTv1K zYtl}tQ$rI5fW*{uxXlU*TaQ6(sG!PFS;re{SKfU^m!~?5MFQCTMyetWBr6q>g6^c^EO3B zUe8GN3a+cItu6jU?K0@R`!WC#V#R!46G4HYA%guX#BIyzx3<h!QN4)O6wY<88y&4JF7US~WXjms3NK|sbd^x`wa^?y`JBT=ffpcS z>`Sl~9a@T}J)Xd~TcKe*@o#$Um_|;O#u54~fjJcE9P=Bll6Yu5GGvje&jq&Gq2jy- zxfc111L8Cpi+$tb3pv@&yyC4}vnBesSPD$2eOIYtj(^?xiIg?8bcGyKN^&T9=o)O2 zx1|dbnzjxG7dI}TozcaEi-4a?S!d&qJWeDr;z`b_=}DLC>gt}Ti<0tk2YUdIz#ge; zs`+aR+;uVBHuPjmm3mHnnZrN3N?qJJ>{#v|lZ}gPZb{e_=S+h}Df7=hk&)9paH+PS zNF7}7%8JpnE&#pRlDJvgzLWbt|3uaHo;i|MWMJ&e)AL3kcf94YN(=^-C&?7J)8I2 zJs%;pY-=1)?UBREIt{P4GAGQd`I7Os*b1^jl(Cdh&A>+vou8EV{FWM5vw;;70OC~{Ta&+hQ#P=cc`3xU>vAsNW~1-`f&LEC&!KG1 ziM;M~==(Y!+B71bQKM6O3k?gQ2$z~6myI6uUb3Gh`j-%ev06NC+!~_aL5sU?uHYN` zSye?h(o$&**BFQEDXRou9k*7cbsJ#4L-nBJfg6X3kHLZxi9knq<%IF<_J4CY6p30L zgs2tFQg?s1=$SCq`3u(ntWc7_q(P7r3=7JUhud{~|30fF?pFe;H4-pxkBJ_t?<6W6 zck1d)eI3{V{PT+^*u* zAzK4grc4Mn64(%;e-KzcqQdn=&(1Ahkyw@FPx6ZB7Gc&gFLA~J)fL~9<_q2yk(e=~ zf9Qh3VE5}h@(QV+PdGrqRUb@VcV`r@a0zT^o$u&J$sqR+6}4v)^- z2RSpfdPyVY^MY&4>}92)0H4LjsO>uyf{K=3vtbJ6se&k*I!vFDXq(2omU<6hr6kpvE_w$3M&6ooJ32Y&p;H_Jl+w#azN= zxyl{XjQj>|5~1p0BW!lzjT>-_x;QjcsOxz?%7}ez_zvCC9;(rh$QPHHRhwT3EM=&x z$#el(Gf|mj-7J{c<@h#7MKjpN@rbfRz>T3u%OXnKsKhUfdaEA)|Jr+Scho1BF)#*g+e1!gK7-6jHP!>FE~w zUlw-n!Gl29y{=pnhv*T){1LMG{lT{c!#8`_pjFBQl6ts==1*9yR7aQqOCbzqqTt;J zwE{yKGW{m&45cDoED=0@M4GoVv*;8y_nG5-dyO~Mekhbo3ts!#38DFnJf%&{oWZxX zuX`Xi=^L(QP}9}fH#kSU&7*`NopI%Ds@02%V^!G7+%YTF*p3pTk=3v9-8aGi?wtAp zky{NmBcdtT{bW+BzpE>c2dZiFoB|#@6Hr2pQ zjb7t088L3=?lm$^rupQW%DKmvE!9)_8)(Ci0QTX<(~l0+oaej_}NLIcL>dn_)?OAnL^YK$sPPw}A%`ZPjg~5Re z)c6@;p^-ZC8d3SA(Qfx%a&J6)kPxYesAHcr7PCdQR4Vdtc6R2mr4{~`v7DR=e<|0{ zzy9nO3k_VG4f>5czT*wJjF$#3M8u)cx?$?r{I%}0AQv5m-%Cu}ly|wU4ckX)_ntta zo744vRO4$L$Jt;AYsNR!?>-6XE{yeU`(Fp@z(4bkWAuDh>=yy2zuvluU{MQ$hm z1PE(reN)w{v`+(a#$JqpBOPPqWl|*vpCd;>dSf8t}Xj$MbwRXyMFQgP3NfDR7dFBl>bL76jWmhZtogBOoh+J z_xEOZFiH63MXMa7Ap)oJW7MR69KT%T1RBA7d~|rP`3xHZM(;vwG6n9xk8)`-Bx8AB=Lm&^ayieNc{%ij6t& zvh0OEwaKu~L#0Q>x)m=6>IuE_9iP!0v>*X7-O!DY3L#fP&*F>l)|sOu z5Bcq&nsqt{1wlO(BFst5Tr`cIqI0^Hwt7nCyWiHAQS=Kei|xq(iL9A=BOW!s>v>jF@QJ1ZEI1?I_F^aP^#L4UO&)7b=Yz3aBhz7@7tGw^V%Xv8++A0 zPBrPP1dp8|)PWk~ARIZ;CZ7t$#@jl75^KY^6ROXc5#sp6`y2TApC<5Ci}BIU?Y|2# zDgLMCuZO^NPMnG$XCF29XJ|zO8MIiaH-MLG|I4m7_0#>V%{zP*`db;4Ej$)oS@OF# zwrfgjm*Z7B1pL21S936LNjILcRZAo40`_EZbPZYiwCu^8V*-5?{CpP_$`tPEL5F}TL3+;sHHs6lN_{J?0xiIB* z>gnKbjp@RPHNMjM5sSD_ zl6<8ucjI>yXD^K@aoB8bCA-%cjZGu9nwU&kQ@JH3n;iyMuf*QDQm@A5=7&zSgJ-Je z-FmzL_8G}y(WhD|nbhz&-S((3%Sxa9cqW*nH zONg4lFEz!*6}nr(+#d-rFZz&6Lj0fQCz8rV7mXt9nnHABoD_-JY${^33uD)y*TaC+e03 z-_m2b*OSyDOGCTtI?#Jwj&;kTV=DX=3XP^kB*9*ITsUQnS|X5V^a=D=Sj5YXj)e?~ zBKOgM1-R=%kQE8_-{bd~?7vBU62wNgtOYcPyvg-$%tAJyOZqMXI2@>X7CwiljJ)pX zCd|iOZ_L~K>mC>Ploe6B(69!|ClWu?Uy%*2CyZ5CA%3(uYeiI*-=PMQ;Vsm}<-~#3 zhtKst^*)eX@oz^?o8J8SeR#o>y=Cw1SS--11Qs)Xd0=x0?aERnZyEed=~$Izq-}yi z3llVniZuMQBMEhcuziWuo0m7jq51ZEvkIA1mgfHPZ|kP0eL}&-imMC4rwXy#%n_<| zCcfCz^qns3)T=JSvI~9_-*mUl5UM`Gx5g#sfPhtD&rKp*xnnPWAuPd!xzVY1VgQOu zxhp4a<1=7?Aq<~`JckDjRJ731Y;62yh-tTCW~j_91rh;7lj?Qp3)Hb3Xpk^}0&0LP z2Y8+}580Cdd4J{7O}>gRZtOsejcSY~RUXJ1EoQ!B@~McPbZUA;LOa0%keom|Z!M%f zSlSIKmujJvbnHh$MEF|IP)r1=`i7Ia5V}R%5@_cs1%;lwe0_=qM||RZiSOS7Q{?2u z#&PnBcqKY^^bB9$BsBa61+V8k-lZDB@H?K7jXoA79hE`a%4hDI9B4<-Os0fYd;k;n z(7dF>dSUr=2xeE_qTQ2X8iedS4{~3N6?#(%#{(Yp0lLmUU4-#lzlu}A>uDwnb5!-a z2$y`bsjo?FHRGGDpM4AkbyJl)2-QQ#Q@uC1VFUAD+^VbZr074P*9A`4x2|yAt7dH* zn0Linzkt~cJhuud*uX&^P91swxVPC4AAfED%vl+k->^w2R)=2Q$RsfwM#Ss6IP7|b zyHo&g4S+4=(`w}NGavt<%&Ek#DSC&v!z46MI6ESL*jnf@qD@h} zd8i)Fn>f!e4_}F2`ZV55NDO=niFw((BBo`x!UucY2=T3M2s9`@jP4Zc3} z+8V>yE2Ud*y7X``#&ys7BFq3{&CS$L!pz^FEQc~F2MzbINc{BVo!vfak)AM=(u0yI z+P~w7$993&QK5M;p-Mr@#j@>oF&#;K?*+3gGfk+{DmV?*%&=rJ6^RBN!-OPOc%?bc zn|;-B9RmO0eNZ9kqQ}Um1bV;_{ib?YrKL(63GFc!W5Gvd@PbB<;*j|RiY}1z?vnZ| z^gWoUT06ABDs&V~+hIc;8==z>i9|5jKHso9oYb?Bd`Y5ri%4b@VE?6`A&VbOslt4N z)Gyr34AS0W9U9#DKLTs=r4`JCFiH{-MfTVag-&wq4}&U{4lzEg8+8bwlfhcZ{7vM~ zP`}wQqyedl@_EL1;EF_fH)RDWUTl>L4Eq>YsJ6bv;4>T3@loB{6rl<+lcqfa0t zxf^xA*-GlgKF{z)$B!TJE&Y!2`IXin$-7keLY}dbs(9qVCNho2Kt-L0mcH-Xd_a~! zg~#G|e@~6dv(Mi_b(BCm+&%ArTcqTp#uOAe@6Y9#RO1VQ&sNkC43F&jkG8783~x_P zM9dt-+#%wF00WJz%TVJep^q1E#LQh>qjxQ4YVfuMWychX+!pP8QtHv*^3=5$buO;r zwz6IQGjD3DBtBTk&4QS0M_{$_S#f6e$guHJt)@6TXT2&jCiD6lOjNDP%;bc<$WbJG zBIShLZE$woy~a0eenXx3#2QXmaWnJkI^Bgo&&=A8hl?(uY2ReJvqSLz$|g--8pF-U z@SED}YPBdQ=Yf59jMQs~{FvVdlV-^3@szjR*eq_Fz28Dj`(XnFY=nk&6eAak{w0wj zm4=0RJE#XDU6N`GQ=i0ov%lau>c5zEJ-~n+o)LLar&;~cNkX3hj+*?4ZQB8h?67X) zqv+Sr_siFZ3Ce?e5v(cgmrb1%qPG&&&R@=BCD=JNpKH_<}HVWfutXBIjxwMJ5ES?mztBQ&Qk`Un0 z;COz%ZZzkthR`2p$41#|fBgw|Lrm;Uq`1fCVH7VcvE;BZJ9n^>p# zt`3O$LKIX8glPZzUlslf$tyQ($oeCEGCfaTTSYaN;?1LD9RL90Sc(t7a$gJ9T#!|L z2yxcRv}_Je6dtsyiW!6t)Yn(R%O&E;j!Co*HA{+`e4;pq=2J{2iGTbv@~OZ_6Gm1+ zE*zg|zWtC%CRL3Lj;H8GFH>4SPr=V?iU0MbQPbZ|M{Z))B8Q{%Hob*Oe`Bo~FfT9E zv202^3Re>%wg7|0!iFgrg-VMMZrMeo_I_bwnVkZWDe}+3ap;|5E&&P-A6)ot0x623 zKSe$pV6*enz2pu`Xa3{wwVc~@4sJhgIs+CUUdD!}-=rfIrc>(flB)mmf+tTdkzf@b zh9jSR2m1@W@@1_UqUCsYT=sH!3`+K!L=3=^YlhAVRdd<;z_(mCWzhz{*#?W{6`NPb zdl6#JzR$MnoJ40X#TO&xnL_PBs(&fYKK~0=qP=-t&Qmrsx|x3 ze|#~vOlb;n%bgj(GZxf2r&fs8uTM>V2FyevsPLsNAWrR7J(l>+DWKIA);B>q%~2)CCS4^RqvhL!_;)`sLKez#G08KgdLK|+OrPBxZi*p~2t{B;EJ z_;dOdgzRIA+=)l#BEnY+^5xq2A#I+cPb)AG@(JKQvvnNB*1bfOWM3@vLdQMOYb7jS zIZ3%gqutt{{zIP=`{-a>_U(d-8$idQ-T5H4B-!)2v{)kX_zO_%d_+oDgw6UbHBAER z56Bc0!>BmYr?kP5b*pn*6N7v^DnMh^q~y6z|H%zOT5$nvAoCQ#32lN$CaJ&-^odM* zs$`*#{nNn}#DYRpChpr-SLTu%ry#@9AYOljnMfQL7$_Eo-8&{1Tf5)3l!JI|YhuEv z4!Ch*LW`F;T!oK0a=(M`DjQ0PXWkOX^G8XR$j=ES_MpYxiE9M#o;N>0@t@Oo3CVF?{@M*!`K?=;k6wJ^Xfh=~I5k9Cl2F*v zB#NnHAksD$-`Q3C5qy@*?6uEc|Ea$D z-aT@`;iPRWs_eb`sC(X$xwvP;)s@=bRfzeBn)aa%_xhc({(}+i@`+mih4~&U)hYM6 z$*ul%?vq`N+1zBO$sr-n3XIvc_4PD{Z79}gj8w(Vg5vD{vGI+?*)f@Vvj(oNeqrl# zG#bvl0k}c_n+i+Y3tnmPrp+} zOMB<`Zmryq4pWbQ?!a+hsl>z5p9-R^)XT}8xBnB^#bJ6&PCzWi9WY(Jbwc6Uq2t7n z?77XCO+>+x77qavNmw9#U5}UnsHp|xjYTNbgYS+bFr=YoQ4bd_&?Dv(LXus&mH{1d zKhCbxK8wK*JrCAE5a&hqTuo9&$0Paxu&A>c#69z-8MC2jcv!`0;kmW$7o+plZ3`T$@4b4buYY2ApA0@o@6{0UC%U z5axg#yAoe`=EGLzHSX`W4_e<8ylckEB~QUiR$&YjQl(uOD?#(%{-&(hs6(L<4PQba z^12`mY+@ff&saT?GCAcDx2USB2o9;x znjkxvfw$WY13J7x2fr{V2$86_2=v9u*Y@cPm>Kmg|BvN?*Iz zJN0p!903fc<;Gnhp+AYjMbcS4DEt||I_>#2#s@Dmy)K6aKvEJxh0ja+43IVRl4ob+ z2)HwtdCUQpGC@h-l%pF6>V2;`5rWkE_$tCugB$A~P8Cv4x73_xl#aSHmIsTl;~N_e zF`v=SG|L;G(Ev@Cr1@QDF{$rhUXr3DQWC^74s7_e$3w+EP+V@LIf{R;0()vVixb)2 zzMp^P=XI#m4@G`H;;5#|qFhTJ5e0>(VyWv2taU~4>$~&@-VsEp8{vQ@n7uV;td->K}=VU3j z@M&o9lcXO1EMv95F}ngP1ZK@SmHK2&Xy}Y}8@GNM_S3+y>*>Obfv<-hz?!Z+u$^8TK#bfsWglnimC z+@L5P&Z8$#cm9ied63w`d$%e#Q9h|WWzrx2`z%(C`89+(F_Q%yabmbvJ)3=@RS3(| zngm-PJY^-uCOv6Ua&EcfUrV`lPD@#Yp^GiT9t=1NblA3v3dA(AL|9O>-W%JEYcndn zD5a!R-YM37@7Q$O+i(JZKl9)-hD=;eh#nDXQColUWrW0|@G%`{ERa>o!^fUI3u4@X zZV;}+S7)pC=~!EHp&`Ts$MJ^l?okqh7C=Qp8;rI|oCbaYYjdo(eg@uo{`mv#>jZ=? zgI<-!{}3t*bxaNOO{AEf1#c{T4`s~PI=v!%<-XGk4?&6I$MdLZzC(VUx+kQ_gvT>$ zuE}jH5O#yn;cGWE)KQKFNh|vxQ!_;pOwqH2DjBn$7200bok{;68iV!(6}=u=7Eo3_ zsmJMKE*`h4JV%UCdah2nE}kj{vvdLR=#vt$^}3&RlRz(VHDE5qwE-<2yoC~jhZofy z*&GS*r%wqi3>mUXY!f~LEnmz-pDU_z^uOqLko6lHhnu88beGazxsD|f`cMp?5$c|i z`DBf)CJ-ym_D^jH4V?w98&*?&T^)q|vj_SI@@~Q;nVG{V;lB&VE~MrLq&}XTlbDm! z>M!*e%ZaLP6{)?%-{}C5BlVaQ=`i_)6^MRm?tXJ`d6~Ud?#5$@!YAwr433e%KI%^J z4Xf~9e9|Froh$O#oTJb|BGQXjH`2xllX`5{M1g#_(CJ1^L<77g87f>1NCc(qVg+@q z)05cs5fwTAqs?*gQ(g6##eT2Wz%Ae^#>Zg+{R2+_5#Yr5BnBV*N>22l0B_Y#r2ZE2 z`C8m`O(pjW;)~BNJg^v9lTd`j30qA0EFdjKx`4sl32)I-HJ2V0!6l*-^Lj<=9d=_zwr>C%48ZHYR zh7>_c;76MOKdlPJxs^nC9P&}Z?r!F(8SheH4IF^hH>BGT{ZHP*pxc};X;(48Ih*W>$gC8XS;r?XQMOVCe*d+byHh@Puy<|F zM=8qu`0k;+x0?UNKA`n3TwCX%&=&4*u|{bD<_*;x9AB-E8}>CJnMQ-0xsIB)bcu_n zY@WEeDFNK>B7Dx}`a7gSiuaG5uO(IL#F>QQH8}Uu`p>mNOy1Xa%z&nMG&|m0n4dm# zjEH?|@!BlqEw^R(-dneDopXq($(xOhehu0{0B9)}FE09#$-v{+bK{;d{!Yow z%z^$)jei`D-KVRCY3O8AmB1{5*Sl|{4)19{yol1}joLuGULv4!M$gmkg0!VIi%Q*{ z_LV*pV%vD_NvR*UdO<~BcS0x?t^l4J^Itepv!DHR$U9Xlmy2PH*99fF!|L*K_{-yb zm6GC&VIH_VI!0CCd3a$Aq^^tyM_{<=*-9eQ&cKg}<+} zud>ZW%4iW5;6719bvOuZniTF&1an(FU6-KXOxKasAu9-x7?pioQb0j7k#=Oad<3kY zqzYjE>$YgecOuLmZeHo~&QU5{O))lKaEAG$`e2pbA`aV;kn=nwjTuKidK!`X$E0XU z;)i1Rvbmf{3vZg}fWiXg6@lWDIU;PJaF40Q?I51@YTb0I)WIru_w(zgO;c0?9*c3}=X_RXej#*K?SV!oTA8cGX2M@mBqYk7&np zsE#f2vm=x|>36};oAPXTdfk-#*6#vGbmHmHlsovU7jpg$s%zfPlqvdi_~gm;Z}C}c z*M4`ctHmyy{c0_709smaK6 zOjPJ~6MmCf#G~WI$lle~4cs{Q%*_6QiQJpnnVGWOwuIu$fYkfdW>HLLG|Z6wW6|^o z&pv9k6nKfamVt2xgSk*a^|lI;)Wh|lZd)&G)Ld&L8k&0j)m|OzcE~D3A`k!D!^6FE z^FpMo2kwvCed z?UePN?(fw(%f#CBS^>uj-!Sk}#l%zaf&2M6MIR6vexxNJp0jJ4Y+BwzUuG8-{y*O8 z)$6ab1!}HxEm(y+{)BO+zCTt-@T&98(t;#};^0CdbPv zz4Ez^(*qY;z4ATAo9k;~1IGR~(->GZZ)r4#7by6QYVmbuvI9}sBekM>=o(r z>kl~tQD<^peO*kpb87A7`r75${c5b@lGQ&`>XoR{>rbqadcl4)eyOx#?v+P>*q$U+ zEC3votysg6KHnScxA0o;a=*yP$lTk$VTp;GH>ZPTNB)J*Nq|kZ^|?Du7N|Yk@oXUJ za5&Q9o*d=U=mZs%1Xdzz2&+M+un)=$`UFb@DC-f->%#EZxPKg^(A$pBj>%jqZQ!x6 zy&7)npkl-U+vTJjP2Rw@q)Jhag*4}~IRR&D_Me37RzbwOd_yy<+Lf%mrTn+C?lz6H zpN0j_9R5d$=`gb16#4d?G+tC+ITRrcKgS-9-jQS-k|Mm39tk^yC0_%-@+Sw)Q z*S)nvo3nnI_vgb2hftD_e|KmRKx=V~ovGQX8A=`qJCnM{e_!mU0R{aBres0f`F=RA zn3K{<=69!%`46rOB=JlXE|a~Ar+jn>pI^;klj}b~vj^$<^!a!mtw0tN-GSuu_r4j$ z9&x+oKk>FSy6kz!csv9~y@37u_kXN>(f`jVapf1>c~!}{X$O}vjH7>Zy`?GJ+>R2h zeuvM+QcMbo9nnRN{n!U)1Oj>%%&Wb7S9$sYlgW;zQ6oYsHEAd3E!|(mm1_yr0AIbH z76QX4bfmMBv;@jmNGY469d==)rJLF9^eirlxE1Ot1BR!V84*wWGJ|ihyftt^6F4UY znt0rXsAGkl?mxUg#Uc?HjI_eFRd1dZA{gn9uIG{6`x{unUcTwDX~jTF)g?& z`(2kje#%a=!sC$#^14s&7KkNXEEDj*$t$|e$mT1Q`^-U++I8_t!u+=)GiVVZiWL;D z?;KhNb%#8s07p|@tXR-cbt{d6l~vQn(D7M=yWH5DMs-Fd3VvQiS+ntmOA89A#&k68 z?jfzmRvJdeX13{k^O+v*q<`{EVxNP!TpL`#Oq&UZ=b^=?Z!VXgU`lHMb0|5>dWT`^mQeSiBvef$X))>9A|NS)I;1-AdRO2ddLzLuKcI-l& zux_V(mcza0`39vONC~89XQ{9B`edjbp;LwW7?g9AZ|-MlPH{KGK2wLn5gvtsJR67@ zM$mg8XWe!_yZJ`O*YxL@n}4v2TQwj9JS3{r+batzy=vG{sZh8#TdUJ-e$L@wF7>0@ z-s05$nADA*e7_+#FqX>>sM?rYo2g1wod($yHO+oOMRZ<4>Q5#SX~$Bsu0m}WViuur z74rgDjKAz>04Sv)Ez7jg`{)@0c}l3zFpMW{kN6lW2k^Z&x5Gkc8D6z&=UPZxEGlSm zgFU25s7e8)L6*zJGh=cePtq)<=yB#Lp8fji1~;6PuJvOc;)~O#4o}Ocib(Tu%J$)3 za=Rz80G~t61d^7exTE_Mxz@D`(OIM<8sC|61pwfWrS-Q6y_%*8)m4C~-!a{((|QBA z^=-x#ueiPT7b@IAX9=)KZ@mG%_mwZ5CT<+!>sdtWisrgj_#$bUE|i>9yhop;PYKi? zg)*eTXSLYJ%yQ^H-xp1fCq=cn;ZyW#zNHJvBm9u<Bnl+2ZKK`KnZNPzixZbA zd(BIDf@6^KtGe;8nGVk3T%*V}szROG?LgM4EsK|w#DNw+-6}OmvDg!-*U{(t( zV$_%|nZo4YE(ZsPbs6JIC1h66vM+B1d_y%sKdbKwN;&sQa}7{A2`<~&@Mb7UQ1!?&RdcJKX)?1b2J(_2hCF5;uN$NxETbDAcysWj<`|TU znAF{C^s0e@>uXy4H(Lw_-+34pdYHzbkG^x_fKly%ajT#ASYf6JDsi;IP+8dGuu;qv z{Gw@Oh_ZEGn#9LNm)cqHqOx}+=?ZG{EfNUgWj7J|>N zg@!m@pJ&>oR<8<=hbPxG>sUSCLdm0uQ{b^poa0ERR}mbgKre`9Wy%hnceW-BI&>nE+e zuBJ;cR$ZU$>+gFPM4Coqxwi|wR4R#CowxwEj5|h!uO&`|#pdpx$_}^z@aFV+6(WTn z2%>5{8ImnRm7kz9@iX1W+0Fd~?J4Zp*x<*}veUzYT`|2Ji=SE7_Zq5WGK*rA{r;GLs_(qA?i|&sG^c=r_|iJK5#kYxyt{gPxWvK8B zN@+;n8HY+QK_09tQy@B{=x{y%rrN2~T!eJ1N}}E(c9lcZW82+zZDi`TsdCOsO1b1e zMyc2btOkj37OEo(?{2FC#TenW5rL&Z8i(*Y>|@Ke-5;mWp1cfQ(^=&g_AU>7c3u3weLY$UKFWNUK*z13|Aiu~kD!9n`~pd1NpIta6rK!g!` z9l_pp{<%M&{d2A9w9YG4<`+K^9jz7;c6M(&DTG|otzsWIcT7KN|}F? z{@wzN2mv%xOb|<^FZO4Kl?S;Z`qK+_lVcd3nYXjw%_!zi*XHL)oe2WIDqL?&RP?shzK<@BF(AG>Z z#N*Ug57BR-i0E;F-VGQRWtT76sg8N9t1(-1GPND*DWWU5t=rK^m6kJW!IP(`lAR#1 zMBeXLoa)j8db~D_7X-Q;MKc1NLyT^f7@6s)58}=)EY6nI73)_P-qgspDRs|4b+rr( z=xVbwGW{1%cVlBd#o3NR7tAfUI9r!f-Cqmq%*_5AO+f1PHJ1vLmHkQS(wt$X9k!AF z3hQ$VGX^0Ui@ty!L$(L~(71)0bjmy}HU~*QqK-W(Cj0_h5mSddstN=mLN z&W89?jlT*$E~UT3-s8%TUoxMN_IPzw>(8Ewiw;oy5#|>g+bg22uMYdiu~FM17gknW zrPtQqc6nyS`3A@iht7|Q>+wHz;ao^;T#Ns#Ii`e68h1^wK6}{@tGe85gMV!*r3+PB zq2RXrs?Y*eFE4nJAqSkJ4BS&839{vi)fdbJ@IY2z?B;|9cVDFDIwpF~w|Z1~%x`hs z_n5ZxMjhRoD!8p)MMmiGVzp1iMLBuM>FrF?UxnB(-kXnZ>CKK~g=#9n`G00<^ zB1b{$zvt;4Z4C>r`32|;^K0Ba==Ijy2#*8)R^e8NIRpDLEaEM$nLr5Hc8ygyM9lX+qdrq62! zDPGMoZflK!=~y*3Sf3f!>K{D+TWGE*W1VoV4V)xw?Rs_kv=HQ1S?wI~m~`Wjk?$`S zO1kmHv78sAs2e{R@|R7>7TM4JM6~F5QE1#R1UCPA+;s50PRb;@bO3hC!>(DeM_+dj z!+5&zr>UbmwDwv7HchBDjK4)>JV$?BTfdoHl5F8-;qNa1^YO7VN1sqMLuhI7UXqv) ze;@j%h;EYZ<)RrUH4_t*<5)HK4DdQ}Dg)J%hT9 zSMK-;und&<$l*XfYGTQvIRzz5FY=M1`BV${ZFxm8ZAITLSj%i>Khs#tJ`I?1<)>4^ z*2uW^ALv|*iu%yBr{$A=y|98XJ2N%x*lddxsi;1TnX2zL}Kb z>r+WJuEs+Tb;_x3s-Oje7%KX0h;C7xAJW{FItN!`y05Ee_%H05$%teI+CG51FH=?%^)P6v)f`&~z&D{2SlTVnTBH&4Eg#yPE}) zN2sgIIPSJz*mEFsi16n1c$`C)1V}^y5)XY|Nc7Hd6gDz*SfUFT#($%O>30N%zgPv_ z?3h0KXYsKX7U=a&b6g52Yo(yb8%~lh-@p6kxZ8BY+kRI5 zey}|O(Q`3QDz?z%>3JJmtgFYy`oDlus2{$vj zaeA{Qr8qS@3^NR@{w?)`c`ce;-Kn?=QP$REIz3FpO^cTa;5xPyFi85 zIMy)BcMqjIa<^lEJ^`cNICVUUh3lHe9MD{qBMmnvLIX zYS^3SRIwgkx=-PVai`>!pq_4`#f%!-g_S!JiwSkvHbRuAJg0yEy%o5XaQqF}+X zH@9M2g_^#JUI%rrqp$*jXcAb}@^T+^lNKr38F2_qV>3-<&5AB@qlqY$2rTDF%C9@` z%`oZY6thKqEGi!RdP+H#M~Hxj`*kWcZKr-xn&}vka}1JIJL>sM>egiRA)h7G^grU) zf%?Z=7?_#eA6Cwte`sU`Zow>B`~xDE@;M6jbAZtdTndCOQ5h)#VMfAIc1OBp${i`n zQC|TB{pL6(NXufX>0@Xv6QR!4(Nx}t)^@ir3N$;lui%H+;UI@;$Rg_M% zCnN`RDKHrI>@EjuxGAiKV-e?9H}nu=%tLd>E=^+BS%wV!oE!s z${|#HAONuc#@1xAwRLO8Rk6=HmLmuPa`a3raPY9-$=FzSK=A2Fh5m6ZqJYU?7?;Pj zic(j(0`ODtwwVH)8mv5~emh>{BmS;GxVCKx4(1lT{|kgU7hoGY|A*v4No zQ%}rG1mll;urq*j<~#Bn{u+)uUJGgv=ZU&@Z(Wl=?QqH)&ryMOCnnjZT#A~%&rwm@ zA`IDA-fKqx{yd4>P#5GfrL)2xci$#cd;Qc&HN{FHN5mfOqH_}M;?6s5?pvgj{cJ{z z5anZBuMxWeOOMItYBH-K4XgI@3l2HqpSo09P21nf$c&C@4+TW~aod=ZYJNGcaN-yR z1*|$(v~MOLMlqMT;ued4=98p3*3H?=GkfPI=Zy6aCHMNX*gT#P)8iVAB z`qz}`@L!e>cpDz!zdBdJ0?zPJ^ct=k;ymIVifCW90ho0Pg(8uBq~YQhv%Pzc)E^K? z29&P{HQm6U=A#?8D4$;v(^03jS5OgXgi!8>@6Vq_ND%$f+wzPoD4e+q3LbpJ4Il{G zPCtAOHnGG@h`vFHR^mC?X@j(#?7VpsQfU%DS>*oQkP6)K~ z#yjZskv5?UY<}Cc9aK0#rti_DP|s&xpr-hn0&KecT?e9{Dz}AJZK7=Yx407m(eG0v zU+P|V<-HI{BIRydIB@MfK-e%(xFhFjb=DO$A4RO4PwJ=B=^}b6n)Ij{_Nx-=RmmU zv^A3E523)BFB-z1*~bmcTfD1%_3pRhdOcdz8NJ|r!%s&nJo{z<{=W-umnnJ;KJIvZ zhoUp^#hV^FC{r5!X8>XNmXJij2ur5Ln`}7I1Fbb!9OF$&?o-;OGGdoTXjqK?SA2^Q zocs^f@d4Sp1hd16uAiQY)TdYRuVk+y3>T5<fuLRQfHXzAKYVj(kX;==$9AstfpyMhjg?PM+c=T9JUXeh$A(iM@ zPT;)-sI2p9!!o$@@_OnHwSR!3xJUl^h!mO^KzCg7&gXHdR2Ln(Uw$W%cYXskw+kP) zKd&au&q+xreX1#vS&t}4sGtj_#XbQT3HN4GQl9= z*cVsfbv`h(At<&*)N$|C=!qD$M^NCexm3pk%%yAo{@zam{vSnW9@fOUw(*%skO>6I z1g%U!%{ze#SVh`H6$J?(ZNXX#A0^nfHB``~KZ&WSjEgtJ`r5)*O=>kxt@RzVDM7 z9YE1kv|%~ya_0t|hOPffTw=?dIq~qvC2!jxR$qj8fr?vjpbFj!_}pIZDaU#SbsAV^ zQp`8Lka||8^w4YRrZPJrwkFb%DfQuEDGzUP^e&J92$|U@Sct|VD8snMQH|X|g{%0H zwNGbhi{l=ejW5V|=^$^FKhw%nwDM3-UyVWSaelsi@1T zjb8~b(3q20&M}>a(cv+#?n{kXkPLT;(!WMuE5&)l)(<9$^=rAWWh(3J1&3(QcUF`1 zhWVgmN?HiD3ex3hpB|GiPviHBAC*akOKIy}u@&%n<9oAVFApkiad%VF)}>zE=IVkT znWMC~tXpQ59v`m*%PcCCBJQTfB?Wn})B36u40jcEu5pYQ`OCa;MhznofHXjoljP!N z(kD#4Lfq~6W$Vwh)a;r=h97&9k5jp1E)ih#k_%aw=PD`bQpB#Htjq9o@#b`8UO}}` zBUaDAkKDctVC!E6c1yr6JtVywD-Q;+SpWtlTmt-KBfC96OyBq^0oy#AJ*~2gb;Wb_ zH-{MR*C~dlh`T{ORx<2iqSDwq8l~VLrL1KPn=Lq3b=1}kOFV5!bsxhe@V$!lJM;sc5mb%o8`4nXItkGr8-LNs^)XJg6Wc$-K`(v!5Tlemd zi4M88$zHo2WVAN3(dY|dBw6weNl#-CIe%DUkt5EA|K%7rDr>zSN)S*G?EH5RM-3!1 zRPqn;6|4{D@lZ}zho~?J2|IUallMam+1^dVH{eSt*`xJ-(ghAYjm!B0R^Mbnf zB(#!oxt=zoY0M?E+i%;pX6y<(D$vAW(kl^7(uZHpbrHG|XzKLF0(cWqSnzf}jk$D@ zS8lZ`^8Ina^@jEq|Hy6;o+n}Z(sD@_G^gQ^ zW3-!~+U>J!H$2sSyUA%OC`e7l#%ey@Br?iepd<;xOTKP2>Lvvk)9H(jT=&1vnLyDm z#aw6obi!5<#6y)#ZqC)1ZqLbHDUgV`B#3Zv5oAop_v)zoGcj>$bcE7Ak`)cTf3_9F zDu4(JzypFz>z+4m%GFCr-w1&mqq5*%~W5M zjx+V8m`l=%`-x9ec`>%09_SC8hN}RC*S$g#8L}Ba<=s-=WsgZ z)SJ8ovb7klPlD80g7+T?6~wiW_1PvE@>T}T{kAvPEu}K3uWotYL}Wy>OHPi~Zv2_N z39EoFO{1T}Q+LlkxDeve@ek4-j56Mjh{5rgb(`2Ff)!~uU?Bh4A9(#nFC>k3nhQs> zv*OueXkGCmIpRXD9)u{e!cF+O&rY3Y3g!5-zwiI4b+RAgyG%GQVz;Mnm)RYTCv?P< zF87_SJChjBfRl#NLW$KNNzEBx+h}NEt@Eke0}dU~n(4G6doOMIcuLMU+a!4oWy&6j zVWwFBG0TK;BU}o_HAkt&%40;24$6_jb%`PiQu`{-@Ier1FZEsjnDC(5LjJ2jcRrLmG|D zyWeN*K5BCidsnai46##@;;T#)s>0d0J-5Zy|KWxgjzRIGFpIE{YSwj$+G)cm)6OiQ z_-}wR4;5}lp-m_}a(hh+6E0=uoTDsc+0tMTE_g9 z@qw1YmcyX!!F|oRhuRGNEK~fS)Fl1_hMgto8{J}RBGs7j^Fsvyf}z{Lu14(d6p`gL zmGQ2{Z>7h9i|I4`@Zrx7OvKU|4xd>FJ7YBVCKNa5{1OD=^F@YyY%9zw31ii$LoSx@ z1C9XaCNAYorqtII^Hy{8nu+3yVU(Xe@hl=$!Xl3U-Q_oRUs%jeT;= z7e!)w_w3x!?CCCONpyhO-4!F;>&7$Vay)(SG{4LcI^nN+%QCrsjOhHY?=r!{Jkc+^ z6vMaT7*eA+9;|c7JnzyN!@8lxOVUYqNc+*z>2@5O=H}Zemg-RvBuI|2IDdYNio=rT zQl;T?;THTU=g3p}>~?@s&M-xaY5%xyuTnIun?LOuDMqOa+bHc(bIO7R)nuuuXH1x+bLGReamzz>EKB)U+NPg^b# zWN^hBbxdef66IA|ejC{<5Xpy0a=KXW;Qj>?V*CEx!(1DcgCOS6z`vfljeFl;E(=YU zSRg)Rsh3)h7xd-Tds%&DV|kPzGQu@l+@0St4$GbI=mx2qY;lvHl+My2^H-bqq%aQo z&jT5>{t*>L{$=aq9B|uyI^CkvjU}#5L2a*rCt|K`oDDEvs%-@&od--Iq%UFGdL_~~ z#D>noPm~+~RtcvwoLX$S=+QmZUQmDv_bO){3)4B4o_#~2hX=f=eQCg(c32phThuV>^ak+Q+DiXp^6+B6%ihU*oBi$KhHL8b89k! z@C)N5zf9h30>M#2w&sOtn}6Ey&N=oBXhJ*8XEFGlwDoMry1IrRV*IOzy(i=ceP4M( z86EO?o{RD0cD~BZq8{;*e}?NE&#g@7#&(q!5J~8H2L7ybftZ=hfF4qKHL4`jF zj!mr|>Hw6f1lphLqy z88tx~s4s^8)|~VY@o$t4YOTc zZ-SXe3vn*%V$wWWcBGOQ65%;sZN&0}%KVO0nRu{K^_*Lnp?|t2N91a@zph}~%-AG- zwQAkUGCzai{7}W3Zn^Iq|JhI1q)L-wPwkHpt|S~a!)@z?JeQ1&fZ5<3n&)!iS6d-#6;H zErK(B5BIKwgpL*<_b`w&QD5p6RdiT?AJyw<-j;)c)UtiCb3MW+HcGfTf$J*F52RtO%GfJ zRVd*OH4WUN$onn)@`oF?F`)oE3NQQv#%qml%$&&`WW4j3nHN{aDcNVR(|N1MFrwoP z{Gp-rizv%D@9#PJRk4p`V>Mnmoi^beP^Ogq02w1kr=hVSrrv_avo}ku&8YBir&Z9* z(x;6^kMi(sqXU$skqKSLi9Dj@tEO;M)M$ofE%%J*@7OWo#y*!wt<2c(Q`8C&0*xN3 zwimud1_xjNIqs1tDIqalY+XmO!L&X=ocoFPxmf)VK3ILWSVuP7pfUf9wyNm0lh_tI za?N$$;-T7V6!uS!yTH^xOnp6oV}!xzWlg8lP0(CRBGx6z!qmMuRGRhqAnq?KTcS9d zMav~(gBd-zdJMiBay%h1;i9Od=y1!K-Hxu#G0^I`GaY52u zV`o4lVBK9C9TLk$Jf(w+V`fCW_vvKc-?qECpH$q5L}RJ^|0XKim#3$TvFAj56t*Q@ zY&azgl`5_eP#{fZPq-xTkeqBW<4+F9wM%;(U`+!Hp zOarRlyrd6^eh?=eb`5Cj;anuRk%=u&_r54sO&v9xQA1#wyC6Tffg4luzgo)L=<()6 zfE3`nK6&&nIN^`l*8fk#i$i)}Sd#M-kIi@fB0W!56kCqkYj*6FP(gZAezWSZIMj$%r!&^B(e!h1VM()GW4sBu0{ z>}>gMZ>o$76kD9}g!?i#polSJ%f)4X4!*=N4_VG97e3KoRkUFq7muI6ai~m!eM&2i zPKCuOn)&AP>p}ctv0=~ZqXaomKVSzfQxO^0_NBHjD_rNwi*TcZmZf;3{ z6}>C%ek5jPIVu(DlzRu3y7i|Z^=pnJdc%Gi^>>?f9m#)(y)wqLCDyn?mxawCjJHG(cF!)7#A0>Kh*8L$%^ zPS<~ic1lTFp(fAtpOIvV zzi>8gbTt;RZvp-~T&JUxHdtxH-$=&>$G0xrLd!oW0Y3n-dU(rFU|JxN* zkd_}}x~8=kq^Ui7d%H$%CFh6y{mi$@l+5?<%lsfIA3Uc&4uyN&Om6a=6FAqtY_ zyrX4TL1ZMwb;ieY|HCG&?zl4;6Im+y?WLnSKPXKU5UXS>Lg3!uzG9PjqS-$VmXxbz z9q`+W#)?7tcrCC_=tSg-2G1IyS0zO5<@=v;4(cK_ni`cWEk6yayFwEBBmKLZM9L)Q2fK2sDRoa#VzV>nM~VaC*{aW8Dkt=>~?A?l(rgB@|4TSqEZE{V8* zPixPQ;RTI+Vzcpr0NAe`0Wu*X@!n0@kQo$UrG!X!f)=6wTD;? z&$aCp`;M6@b!}lCxK~iyo4nvj9|Wd!c}QRDE;=~qzwY^PA3_`$faBLJPiHjpV{~Z> zNQDYvS2MdHV6m6w4}{gjbd6{*^$cuf?Oqn0qVGDj+mQbRbh-e zlJ>(}+*MrAZ2}NVGM)Y9c0bfshmuBR-lMo{xp|n;#I&M_FE)XS5!L_fN>IJJoMR9y zMxFim_d{$mpE`Nc_sG>CpD}+K=Rj?0t?23@>;uL-3SYTB{UcfD_g;!M47&v{DSq$` zP)yO9=wJ{zQ2Ge^QFkegYO+yV3G6y*+c+&GQV{u0PS3hz4ep(igg7fz#?0PD!fPm&7jr;}kHP(fa#_8T{ zJbIMUf5}&4a5C&KWikG2o1^bctlGm;!_6)HWvadtpaX)KBc>W(+De8y#vLB|Pv}dS zj?#_jX{(=4=$o`=T-)1N<MiZa5fnaRI%=K;X<_2n9Gd6`V3sgrc*UVz?;DB_A`}Y^(EYRdgB_{ zaG`o7ZS|E{GU)@8RpJA^pRh-1=2&~Xtj!0v58DZ*Fpn;sHkBz{H=+JCI8)b<>tLn) zu_uO&4b&yBB_kC3U!$=4NQD#xSCzs@^7i$(q{^U3l1oZaTvE7qVAs%3i=cyCjNDR$ z!wmO8Y;B|EofMvmJ7*3L#Y>1CfmVsdhzeE662`StVI_w>^eCcZAM4<^4h6bh7BP~G zng?#bMp3!@e5X3`HaV-m@bu;L6x2E3B7}xPG)9L~#Y0kZ06SfCCe9$*e$#D!W?ZS~ z#@|Lp__2h4d^}ORE;d!IVBdvjK0!Ls z)cH>pIRTV4%_%V5*Z)D^vVLw{uwcucX^*98q@%B6q6~fZXVXIds0%rLcYJ$QTsnD6 zy?rB7uf~7;5TcD8_?eF%HUcH;X-B$EBKI+eF<2%gU&uI82mj}wCxmR+jN)0oxs3Uz z@zFjgEts(iudg>?{g3!$N|x>;+jN#0+?=%kY%8fh@7yfs)@FMXDvey*66boEf_U$G-6H zQYWyCO8s)g<{>TRU*L>(gnj0LMTzAhxc$`aF5S*|9Y-m734km&#Ko=BSoFm%Ft$1QpJuA43>lAf9LJt74Sl+A{JiLGBL|_+|H`wX5)TG-wELE3a-_@KKIx& zl`QyT;J+Gv9i^rr+70(JnoJ6e#2}DwkqWn+b%Cj;tLR*HnXy^aL>diJ!(%0o>apMO zkMg=bRg+uX_QDQ`J&3uv<@Ied*4nGx@=V*ZjmERjvkzqq{PIF++7_F3pn3~4(-LDC zaUVYw!$_+&|Fha>O-rZO~Weo@y&17(wNLL&gSUUKWGVaR_#mZ=usMCqq)PO3R4jYDl+d z%@IUwjJ*=#JDxbaF}6&^ssoHMOy`++rQYpGIc+JzO$VMvK*iCE?GHg>W_;v3Wq_)a z#+7I?K7SmmV9dT{Il00>b`&>Po2w)_Gk$RM>VhLQ%Lgh*TCJ161T#*pz4z>6&u)

sMWOuy%#ZAhJ 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%0AF9(BcAW{YxNrhhml`q0-; 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

MgT1lJMEs8qqkNKQA1Hr>@F1&{<0x`1Zk!JY5 zV{(A#F@G`#8}C}7YS+aGZ|V3pJAfY{epg<RMGXK$a9yWbOIM-t*n|WcLwD|qlrsy8 zUfEHvh|$l|E!0zlTPjSh+Nt8n4hVa0X(k*BTrV_tgsrCLp}30rSaUSlF)zu`BVdvp z%e4^}eikPbDTthKLrevu@-qrXJjF|-H_AdCGuyMW=u>F?EsNYZKZ(~Ps%*T$zhp$p z(L$xJ6xXZlez>T)aD$g);E&gZ29N`lJTrg5*w#)^K2Yz7C6I~za>|0980oAs&NmA- zm&01_xDh`YgjP9qNYB&vP)0hkOzY@p!yKSxCW>%BkPVxUCAPX-$#K(TayJB$I^=18 z3V08eCE7?n6mHopYsFFt*_{N_dJgX!zo!GZ0@V8h2#6n>j9_$c`$vPRL{P)EO@(IzmUABlqw3 z(N_EC{92Wd?6CjzQvpXa!QZWIs*`M`nlTD0ye?{XX5($d$TXsR+9G)dH5L=9C1qDl zl`G}wh7G!Z?(A)@vK>GE93l|%wljC&IMvI$x|x=?vR(h%>7s;o0Pkyv>ny)$nj$IP zgzW0!E;kw(VxKp4-d>mtEb`~@L*7fgcsvs{vl-)lDUkm&u$NT4mq#TY5YE;Z%ugcM z3;!y7XJ$T+Y5N}EMCAfqTm%i<#w@xKO*aE!V$~~g<22&^)Ee$s&PH#p{YN1TYEYQ@ z!=RkotZ@``)}oL1pa`_1B3aIi(JAbp)0s>aAtJh^?no+8><;J}y(U3pN0p#?;ffq+ zOIS(j`Rgfnlnh8y!%CF5btJ*6*SDEt0XJp1aOa;g0Q9zAeeXicxXH$XiY-y@(9r{N zil6a)>lg1IB)z{}`e>%*?zew^^IdO7;nSnG-V8!`xAW%V%tFri_&clbL9vDUv1lTI zxxYQJ>KZ(NEjikH5Db%ag(jK)4B-!|73m8LJqWLT2Wm0^YLb5z!H$0Y&>3jb_TgWP zyBEHD7e*~ci=NE@7#lWWv>>C7ve|Q{Z$8qWXg_yd({aa4ia}5M+1t}nUj6p}gLWt_ z_(-cD4dd$$PNcIlKCp~s;nKMrWWZ3}O>`SaI9oOa3T)CEA7Zkn;IgISxC zY^5IQ*7oeum`;c!f--RYP}1pLB;=>!b>pG*#V;X=``Q#(5XN^hatuVL7i?WS{gPO1 zBx0t%66?I<)d7@@z=~#o{||$-!emK8e?LOMSoN2KEV>kJc7?2L2Trn;5x9A6bmfC%smb zdX0Wql5kPcBBavOy8!%xd{cRG6g{W_PXp-j{|1+>s`W=nmuL0yz|K%m$8!i z^_xreYHRbjjIT={gjD;ywBTz>+~2Nc$b;VK_=Yq8K0Hs&w3i$9{#_UQ#Q(_2qeq@Y z9ARwToHJV?Icl)=2W*8y`qfsTVd74}=pZG8uZ}9xk16g=K)NDLeQYW_6<9s#qwrv#4DCsY{x#lL+1P z2f`TM{vBW#t0fIRMo!qcJ59VyB&_JVJ@<#U}JN`9Psj*4`KBiu)7tsq*eNII@*ad@S1qpD_V@XSxr8c3crC(#TT1fi zng_y$I!Dgs!WAo8QW6WjQj(oVLh2km14D)GM+ZoGWU})YRVp%!x&(NIS9M}g9qJwJ zU6dFTrtcJ~V6bQSO3p()*K{mov{yH3ZD^pviQmHzZ*01xH#ymTc*kG&M0M36jBS3v zh2&(Rs$$x}c?i{GPgE+e6`ua87d&xh)WOj89=_9#LA{*Fe9%mr5X@(Kz=^A|i=y-| zwrs8gCw6r2Xg+MF8j;g%`b+eqU*2`np=ezaO)+zw!U`z`Ve>mb_c~pU_GInaVTx7c zjPbeP5A}fRq%+#zdE)6Agnw;yrWG+}k5;GpFFlj8u46 zt(TZ#_pUk*ygHOS=iH?B8yg7S27PXGK3%@Spu$IW6Uy7$l|OKv z_isbeuZF)qG6lNh7DlF2 zdlfzf?sR`$%buC51@aI+frK2pck)8$e%!mxq1HQ!<9+(^i^CTpIW8++Fspk5TZGL^ zGBmA1puwxfp$BxeunAj#_k3ilFu-iK;43)9;nFQ*>$ikDJ5?~xHm`BV2Ri0ce<1u) z=ZfZ`qh2YTKwRucu1E5$k-EyXR5=aQ5MQnx0)|ZisGVc{D9B zpWq4^aeRCZbqnx7B7@26w~5GelfJA7nF98R)1%}Zm|HAf zJzu_ox`HOGkb@5a;D`J7cUBw*EONtOecY8q8R9$8Fj$+CA}k(NbsY)>ChI3dxrhB_ z_?o1+aKP|jtuM|=?fG%QM>n9Ri?||D&+mu*Qv~XXgwcJy_Gd+nc+VU(Y0Z~5stHlkI<6qce<^dAfA&wL{19n=#c$@mW3P1_!Tg zMCa+!DrAPOnuo$t;fH(sYBd*xMBs9gUxJ3>r3|&0a>d|(TFa;>KBrL=88vR5&ic zLOxcvdfmJC;Qhb4?UD)|(HVzuN`?0JyoRfZnNiBZq#KKXnSW%@$Q}m$)jVf{Y0mfU z++f&+aQy9^`!3Ui@Ct1J1;^U=)JtBaufA4x6B-%U+%p?ciJgFLW8y=ugCaD zMimQ3M}~XEuF#SB_3J-B2j&asNck;Ig!g*j;FqiIASEM}HZHECEA%pgac)R4Qp|;@Lp3sPj8~MzMbJZ%3#0VJ@*_v~_XdK$6Hndb0-od9vsHzy z&dGSU6ywy;iDv* zP;)h4w(K;He2;uZO!g`fkgL$IHc^l{nA|U4By%X&7>LOcFww@h?EnbS&D^CuqH(og zU#0f}AM~^6-V>X&QgytY^Cl{kaFMR#LuIP8Aj|4FAVcbiE=3<<3^8l$?1)Y|dcxWq zOyT2%%C$O8Iyjk2ZVlRH*|7~086*9Pv6Uq5$AnYC zn$W%cExPr|la<_8I;Vk0>mBM^h4!M_qx^^b6x<%c?AW%!Pw(B!JO}_Z6@=L#F5ac3w;7DG-cpo*GSCv;#sMjvPT7HtQI3;L#w4+N1!8}V>68&q+F0mO;c>l z*tsdV?QZ+K-oRENr@5;8e4q^fFz_z;kvo+2KeG+BIXB z%L)Wq&<6C6=PswY{D3l3(qVrTDg5gP*>dkx2TM*rznj>Tk1E!VxkS0!&oA5JzA|dP z&`?{ya609QaP*QICmuwsZm5)Zr$Q($PMN@5(s(iGw`qLAI0V^zweLqeZv?mhZF?SM zV$7uIEi>;O8BfrOgegIpKat8R@2`Qu@y99pgJm@cY@&8m_ zF0IA~2JHmLs0RDYLhU`Siwqx!0;UA;P1hXfbkmHzW#BFMfU^v*KCt=uLx_*o2u_|9 zcSUpwDntTQ<~X@ssp4w51m1Muz`ldj9IPTKLthHmqfL)~)6!vBX5ZD#PhcgZd#wT| z!m%s0Adg=Fe!{#y>i~6*=bYMl&Uii$Mc!QALM`Hm@ux5Mxzj?l|3S+`+8&S=PgazH zcJ%PD>EzTw4lovxQ9xyfl0AY8R64r!g_WYYyz0wum!v@Y?ayr|ELE|?FJ5rHF$6iJ zQc=MWhu<~7t?j&4`r(DZR->aIT$uxabTFcFjIfR8$E`Z(0nXu)+jGi5bvJ%?x(&ib zBULA(!DFKCKzY72B`5h`k3CAXtf4GUOixRkKe12q_!j>KF@NcPM^0L94m2~2zXcHw z=p$z;6VY?9>;>*#m#7eg=Q|xQ{Zh7Gc*ZvLZe`S0!d9({{KJ14o)@d;`txPD)JpbU z3=I{2mwox@MU9<4bhHeREKUt2^&?82;D$m(TbpDvVaB`R@VCGB4fW0xe6O zWt!hZ9UDlp0z78yef!&Pz>1^Fxa+TtXG6h167PxBo>Olj4sPI0xBF!!G2)9JJ}WbT z!AojaCy6@?v7r%L(Ru0@-WWfdb*xN=t1>wpdOl_yXpvvEPXZ0!aJ3=y=i!?cY+T;wxEQM_0Jk57nA z6oW2#o}80K7vkgP`br+K=;$Z!(xJdAjV1z#`Ak%!RBFJ9QYESrpo1(rlFTfCn8KTF z*1B-59710bLZiTm4<#KD6wU*h7R^}5E30FZ)YKsqUtatx)u@w_@j8AIm5y+`PhWck z@x>#}wbNN@c7b8w?c>n(j_IoSFe(V8Z43hg$eY@sVx&)phKMs>gyV_22FX|mcfS-A zSq0-!VsDX-Bc?WEC*1DFwSv9hAu_l1QtwdooYhKg#e_FV+c?kpUZeDH_IOiMu;g*z z0h}={T}t5`JSFq#Gf!Po|BGB=$65q3WyL|q@0Vu+zM}5Pk(kuXDDz~g6k1~NoW38- z%Zw@&#zQfZxUmRe7S!?<%7JiQO9Vx5mLey;uU!*Y6(s6wC>xxm51~IAI2bv7>t>6k z3l-}g@3HZ2zaDFMka&R8r_ad6x;e_KU4(JzK0)hizN47(LQ_+pPJnz>S%9D*47f!; zmD+;Dqccw?AYX~QW|~7}jEqvxCn|N-4o<(diAPiz-WD^wgP)1wj#V{4i9{f77Gn_e zQbEOgxW=IACdl430kuP)!MKr1M!#>6xA8fer9f1Zz((dXdgznS^(rkfH9=4;qEANr!r8;B*w1UEV-u@H!I~yxmKt@Bj zG{BHm2|E7u%Qb_rf0wo_%AyVEo9Ckpl|$?;9gy=ka$21wTg0pBf6-$*<5f%ml;cxx z#+3>qGx~BpUBtNVPHim=GgcO`;@2?9lbqOTxlu~}fYm;I60fJWVV6pdNWv&3mZ&XE z;8U|vLqT7kwgl%PIQ0RVzVR;Q#(4s)FCpGC;7LWO>Z1SQ`Z|x17>+>V_8>~;*zljuIlTB2{8s+qSex> zhecX7;W`K4K070gp@4ZQuW6H9jMR2ZB>V#1VQ^=O&LuiKW-TLb3TZ3k$H6(WV>mln ztn>Y++mYz3AkGx%xloR7hJI$o6JR8)h7`E=C!eFHwc|$lMyOov)F#~()A@Lo>1j1I z_!7Pxv{7$}?%DOzYpd2SS)%2loL1q~kdR`k6+^ag*0+Lx|9149iuwh^FJ!f;=z4Uh zzs&+p$F{Noh|1V2b&Se8)*UH9!PSB2O7(%0d?#XT$P0Zm9Io%~WdhwG*g zCEHefHQ;<r7jlj}Frr1~j83uyxWZEOMP^PR2We{sP*oWIvt*l$vN< z!ml-~W}|kWY!fp&Wp|}VkP3)54SJ?6G&B>MV6->_ z&>Z?}C^$P(#%7FGFK!TbdSNm0S3ysxvxI97VU17WSE8bUPcBjU=pCIhUfiA5kyb#= z_YdVeqVF&1pJ-6EVETZv9`hHw7l&x2ICN>*=tF3{x(MI|gB^lLB>q$@o}b+z@Mxho zqp#)x%xQ4&B(!uBl7_XAxK9y|HZ^y{gg=O-NPwB5s*bk_&|i>Ov}XAVpcfV9 z-ph}tBhjW0r?TmAbk$A+a^Tgb3PCg=0cX0B@Q& zD1>87Tn&sG8i5hragcB=vUl@ybUX-F_07NTT9#44SnK`w?^CE)`+Er=Ua~CY(`HPy z_tDsK?8|)}v{F$3-3)Vkq_4J?X1Gw;^tvx_zn0mv65>2NEUJk{zg-A`=Cc9i6p$V3 zLHl9k-bJtE)CV*u_;M?2fS!2#3XJhXhlXNlE9YAM>7hg3I^@}Dik1_ik6h#1+;(mN@WI+Z5SJegxSGAx~zc_U<4rO%;kLGVhqVvQ^B*BpJ+VPA-EVTs6 zUJ!0IzB9ETD}qSHp;1}cCT|&17{OM(O9}OCm1BLfu!b;cp9B)p=%Hu6Ktv`6Ea}k}}>Nij6Gm)QU7H0*e&~J0;{$MHd4@H=6H$TvA$jHzSKk$1op)spJ8e(J@qe51TJ0;kh`t89FHFkA& zPdWU}+=tGC12rD74ej5J{Pk^bXtmJy2n56+HRw}6prWo|!tB)C9LM!Sv;;W@Le4PV zIV~RX=e_E`_WJ<W};R^5#0`k~SMZl<17W?Ie;#K$E~hj(!h0gxc!S zi$1dbcz(i?)y%Bn$Sgp&^3-Q~5lhbzc{dEDE3yyn0)K*cHHX9}@ z?r(=}rU312gl}31CWcMi9iF&EPu%?`8MptqZznef!1e(Fnv(qvHZ#e8p=D~+{EDi^ z36~3?EjZw4jWtzFTpCdGV*T>WPY!F4Xu>!n9Qb&6zf_Pj?7RyqpwrJJcSFNA~e=Pz<*E z?DJJ@spPZMN%al(hO`*cLc%84H;c;lhVDX5BZvd9?zlv6_ zgkTsBO)$>TD37AzZ#;%bR9u{f6n91ddAv`9xG{p4`;q%-nSZPEzfXQ>5L03_QG4?R zJr2R7(%q*YLhHxc(V?&V6RU-i8i@olXrh2R$WD5mx=kpT!xp>wpKtS-h6(0)!Wdp6 zu-)Y@V;gY7HTFxK1;Swz&mf|BH zimutuO?D_rYo}W<`TI(GD&)dz^5WX{)EJ<9_^VUgcoaJI{Q3@Di2Pl1eN5n_a96TC zT&JtR=nUG4d0P_`d#Rs!4<6pX&vmI5Zh3fe7>>T+Q~3E_;U}pC5sjeQ&57Ejz0S{_yVY9MdG^} zw$AG2Yj5c1JWVOEwTUSex@PsY?Q{?xDev2X&niar0aB02UqDkYab<*rZ=-%Eq{bb6 z8R9*)TBgj0a5F0uCXX{q&p@L$@yK3OZxNZrwurkENdo%%q~LbyI9lww5VhRM&Jj26 zLzUg*^}t7o52dW|=?!$pUvI6aR&fZt+4*L?So&>SL6S$~Ow|0lQ9<3qoJ~~*IhZVk zMHzuQ3|EIC&SL5dj$AQW2|%g*GgcP>JiYyO@J~6l1+|UL9~O@kU`hqqpm(gI??n;6 zoPb5})tE8UAnaayr1qJ(S$Dii>(Ly8>>H(6U*oS2A3mI?q}Y9{^~`_4uTDt#YXvm9 zbKYD)lGCE7IRv#yyf>IqA}dV44BPnQ!06{4DDkd)=$wKV<}WXX7#3=YhPDknbgEN@ z4YD`X@|EjoBdWr%4w}a+`)2Fj-q2E^S^CKhHXR?5k`l`WSWR|j?nyWb_nw$D0Sd$H zkkOaLi@>!}OMSUE?jiqRuTO%m@=;z*ldZWf78{><`)0oB%?=CSrW?TnZ_+j$6A>G? z_w$`Eh{ilHZzs4uTfktVIca;s(1t_npmty>dbRHVV!;}=eoxIc<@c_Etj`S{J&A5Z z*CbGJ5W_@+TceZ3R$A>rd4nEEemBtqMvBPJm?&=ahG0=eI&BBf244t|RU|NSWo0xm z@(mF@(&O6))SLv2$`dO;F_o6Q)qFBU}@S$+=y`NS>O;uGXVC}Mrz$YB4s`>(%R`QKqH z4j1n`VC0wpN7j79LEiIU{v@7IW9+iZy-S5tHgD7XA#=zG2;lcoUt=$!2P_w;?W(Ik zjBvEb?c4kTg7Vaq93hN%xCCqs~FkzI@Z%(~@H_=Lz5+DDH=U4iH~O;^S#zU2#(EG!NIAXlJ4e z)L+e1Q#P?{E$^znVCN#)10kTo^h`wOuZ+ju97z!n<>{j0E3-^eN+<5z1aXc6#q)RK zAR{`zM}C@iB#gnpeCd9R2=)WK8?~HpWh)Iyr;ba228-8~pMZhY#pX4O=@Xb*e#5d! z9K5Mq1NEvz_Z+=KE2fvAXAW-$uC01hN$xe!7(wp?`H0Hobuhhz^gsIRB#X~#lk{X6 zTSffI1nsWl0`DEW=&0L8G0N8%@)C?#IO2Qi?!PakjA(!4>3YU=w6d0EM zuDk7Zx@PGk_fp}R0gXsbmGev{Td^KutHl@sc`8(B8GOq(gLYb!U7rH|-m&1}VZcKj zupcoR4W0yn(@G`TLfK=NFK1r6$d5pMp~DPyh9|3Zs_a-4CHFqHdymIRJx>Kr#2x85I_7-15$xe#3^ zWDb)o2Eui_v7nv0L@-~d0AMkBrpjTQXaoNair+6gpb2vKpv9h}|1taxWD6YJY7n(a zC?_00=w^ z=Z~%%)Jla*2SJm6{lc6uGLEs8k%rlR|#yP4u`(JNd*0_?U#s%&W+AYvDL`TdG~+M~nm$l|Pu^u!Igz>I4HM)_y^s$rbHl=?=XG zEW}#wQsk7>HrgU?&ULp(nP64?Bq~bBzxk#O-1f-0C3%GF1#M$wJJIM*bWaUX7XU)lEGL)90n4D8 zpve$-s?c~+VWDU6bP1#!K>PSBbrvAwywEN^`JK4ATi-l|=uFeux-3;2L>PmMr1sNuw^hu+N^CJo5DBaa{@$H)&O{< zeWy;`9kbNOjX%r}O?EC>|IGfOR|?*{ivCvIc>?R`+GbY`HlXb-zK_PS;sbsCT*?6* z-gea&Fr}*M&upe`1J&Gb=(7mt_=6QsG9lmS^~LbXjs9F>irZ&5S5l$8hBJB%K%<1W z|Nd(=oGU@2?TyS&XX3O~Hm7hf8e;%s;nZ^pI8@OIL4Bd(pqXgJ#8tUqB$<2G{UfFp zq8AR8Cy4jlM)lTR$|^>r&!uGu_EtrIvH=iJxd}@3A^&s2ox7s5#Cw+{8L2fu7moHl z3mO!6E+o!`#EBcXqtd~qCdeS%QUYE(9<{7h#CZf?(3FF*OmtVq>Idk5fSDwDhcUP( zWWLyKxkw}@TxU`YO5TW$pw6NB33tvI8B(y{KtS#ZC$p3u)EC694P9*AtW|n6h%V%b zrmQ$F@ps3Wk?d#GG)y@7vaXPsq0}opO)9C)WAE&1RVY@?&$AcWo_TL;^@3s^)03n0 zujo+Tok4mf8t~2tI{XCm%YDNVS1_ZaHZhfrPXD!O6Tm5X>(3^s2)tC7u_9xIxI61$ z^A2Ld9AHX>7J*{=b9>T|N}X2_xTu08(*bH7>|5sxQ61i$(TE+u*CKS7aWVt827Y_> zQW?DyAJBgANyZ;Ki|y_C;{eFzXt(h=)M6G|&<>G87jRUcY@K0K6t%VnRR}OWW6e=T?u2Tet)m@u)B!FrQR# zT#E7fG1KOYZH<3U7$6$k2xg%^mI75x4hDxF0@^*Adh^0Kn#C(x39SB#0Qof@IL?DT zW)Z+$W4hZ_z<5XfN(3DicWIq8BPlvYQ$B{E!q6nOR!^TIg5VHfO{i$=Ne}Hb(SVrR zPE5IP0l2A*kbc^!aiLG6Ame7eeOpp5XGNecJydob@rLaV@g7m zQQWu=++>=$!}dq6tFhLVLQu#4sp)wrD8rF^rPIVCTJ-&*r^ifTFYCF*FtN2Sex448 zXOxh83|yXl!z)H1mTX^K;zt{>cZUK3Jo#fef< zHJ1Ju>zFvB$rB0!#%->v>jUyD=LIs^0wBzB-oH6X`OrNXA02s;-KuNfxZRF#B|0}F zP|BEiY8m*eSIf!~(%MZAc;gXWLv7GVxak~5On`^arup%l|>+2+VLGi4YAkR9;*>I!u0`3x+4fOU}HvG;ddh8 zK{i1BFgeW(YBv-i9V#^&yy5wuot&g6;5mHM^EN_hAbB7nUBJq9HqXMAppk1WI`%$k zrctW=iZlKaU|QJ9HQO@VE;(fVj$irg=ao_WaDn4k#~*WjWVW0fbtXW2pt|H6Y-udn2!?qS!(r0~bzg%hE;ey>|ZI?UhNN=+~OdU8ZWS2)P^=3QeEE5Ax%N#E%2 zj$|5ilf&UYd3zQ_$f0c2Eq(3p?0Qj^m#4uzn%8!nWS`^F;QCwa|6Q4Un$g4k2`cZ+ zW&Q*{K)x;xa{*XMZ>1aidEfCr{mTF#8(&_~tA}wb`ltCD*6R1|Z$4HH>vG@F?%(`U z9|}SIn*PMTz}K&b61PH;5S9DOp%KF5EY zBf`0GjcMEcF*`2L+&)CG;O6@PlzXLNb)5subrKpWGfWoEs4GT12C`PAtCq9>IrQ8^BqT0+5dY{zIz!fZ&3A- zPs8B)W9>38J&Z&7-d=c)`*`p9@80O)z7HQaEoPruc&XYXRi@^ue06-(zGDruSbBs+7&*SBY}0X&c8B^T_0L~-gR~z1t_zj zhHXEt`Mgg#k4JPR5#2_fH$w#UE0a;7>+OD)u=qXYk)b zsj09xeAlkt42}!HzXFbyKK!EgY0bogifZRho1NM_>b|pJtb>@X2amhcodnD>!sRgk z?Dr1`ZGOhelU;uL3OoNZ4t$1(!S&;#SHyC7KkoQ1wd^?j^7#5K_Whq;aj&q?c{+Tw zoc%n@ZSDoo4@hHe(bLN-N}b<(`*G5M?#W=9auZm^@U;W#+W+kbRfL(1*c*dBIm?d6 z13AZnJmLD;?{)9xu>NAc`{>`Pfa?5Dt$r8>L=&n}b%X;X^~;sJc7?&d zxbdM(I@KFNUiod^Vh8nYi-$h@UN-4BWe*zsGz^&xHiBoyP|2O+?mwLkg*t#p6^nnC&vwL)eH#Zqy&|@Ll{p0h+mcBBO|M@?s z{>#ewV&3Uhtel&E{BbKgE~`#`62p$x{)+nT3hVQr*t7-$G(xYcTX#X8s2+W{*V?jOl5N<9Ge zfwlgVE$r(VW=nwHf4%Uh?-G}{3T61G_{}G*{CQ} z?~01p^A@g{Yt3oZnP;sKVfH)Z~SF3en$2&h8j#rCTg4mgM6d!rcU zN3cK44Gj&f{{Qg$!)+g^(x#T4J-dw6JHDk~m$CDH>%+gS+)qE6^gnqw`Tq#}{DCn2 zmK*5%bGYj%`HBsokNO$gL{<+haQ0awf%|_uQgF-;&ZECiJ$jx7a^^)Oeb3J4PaV(l z*md81YjBwap7X@Oq(By$<8`;+z#{FIwT{ zaL{ivOEZ1kZ+ktvo|Q_&x`QBJZd?Mz+FO6ezFr*$|CggVx7jPU6c~jp=CNR(=```1 z*b>B^{!4FQobYRF)-b?#flDL-4aea8|L*6Xe_90lfBEv|OWAom?e-#@o!{Q;555X> zX%Xt(Ce^d@UHNSM@9gJ`?@UUQ!*xotJlhk1G^KwGxw7jeWy0=kma3t>PF)`k#cJh0 zo`1})_tEg@KeKXqxs~>?=e|WfpgaWUc3w@D3(E#`eB?nPYX>yHI`fv@2il0VUF`kM zWXd25+rQ_Uu-6mDGxxovyBGA@fMMIfdDyp1!^~N*4)8s$d)?Uax;aAUpARg>8+-*u zR^B=92D@21&3@zKjxv84^4j*I4&seSQQ_*?Rv52lfurN|#8%<{BS(%z$sP)qhAdsk z+BH9Ya`k`uul~ma|7G>xs(IfnWaoR?cjdpc`#$ZTNsGB~-=t6Epa)?6rx(GwzaP&G z{zR^aYx|J`&|jta^MGxVTQe0puUzuSv0I&stJwXU(|y;bXYC|q0z5C+@jjcMvExxCTb}(mFc}|ypVbd~0I4sn zX4v(wi&rua;q%t@t!OK}mipaUBlm{yT(^>vHR15w@~VpL1Mr-G-Mw*_m4AysQ_tFOXQNuq{ukCyN&gWm zE01xS{cJ$OBg~35DO{Iiydbo|n+x_{;fhR0Ieb27eQg81fdAh=i7#2ZafD_x?0gJ5 zi6%!yNr)py0n7~k04qN$_s7nE!g&Y8tJkZ)@`U*}HcQX5a;KGl_dmJAce#932J%nZ zE&qev|F-mQH+KHhn}b0w?8hh6_Y|?~Bp~jWcGli^`S0(6Q(-m_g@?iQv)?Yjy4a7ui70eq{g3p!ZdciTGNCFfb0f^(8Fe1aKlo{Hl~$-J!S(9N zDp>c(oGg76yALYYt_3>>?0!u^fCT0x9-3xw;eAaPWn$&7fAKTWFCusg=UHtvte5S! zraJb0#AmpfJ-_W3m5zP=;S@5DeQk+w_1oy}j#o8UgFWH=msC{P)81au_{szd1%+Bl+=x|58f+`gX}mc zlzCke(1R~tp8T7Yx7|oKKLUBW-o{wj*A2Oo=fLOq%ih7R1E8OuE8N#W12dn@C~@^x-Tw2 za5OF{rZk2zF#I4JTMVMGfeB$EFJ2P`gjf?LG>JAg-C$Vv+_4W@07e=dS4h}U6*N@F!L_!pw8^07p;=eE83K0CCeZrPW{IkxD ze=&ydmFHF4VONhQ)|RFj<)5~7#Fvy6@;c*E4L$eL3u6vL9t{uk_#qrN+KJ63z&q=MjYS&-Mk--z<3g|RSWa%iBZW@29VE=R{ zVAPjrUm^E=SH+ON8x0i#_UQfQG9+5GF~!mmz{q9|L#>OT)jUKv)+wB~Gd2!|-Pw_k zJ?KKAu4Mz^2|`%WD+AEs~ObNvBw>FwHSU+SX6m*MKJ5Df$UUDv9#Xw zUmXMeqBb^<=987qe0(O%$x)Sp-cl-ZE59cGytt#PC73t&8S2%j zjLf?tZ?=xynQInwO9Q_nTHc8!y1R9~aNFkvkIv;UMtIPqFK3@aJ$olTDiX)XF%CKL zz4>gjjm)a4CvkpP~*#c z4Sn?7$;;j;Bi6w%djTnt5!~?Fzy{nK&L-`EdECR5)y&V*eNQTv6DX_*wCFP;asJ=W z!w6?iL@hsj@F)`N?%2q-691!>`X-vkZ<^MI9e_E@kogA5;%CCC^@HBHq z`hfUw(4eT4<2by2S`8TD?ryrT5R5);wUs*~kR5&MW4Ss3`_w;fiIH)Tn+mN~hWj0@ zb7)|?5Ps3xG$E7J^DCxaTQYJUW z`Z_I}D!U+y*iro=wls-f2)_`tvq|81+7@k0DCF4d$yOAK@rubuE+@#$sN*=&R;D#= yONG|u3R^;pjG~m3qT}FxAfSV`B=Kc#T|W;*#ZSl=D3>K(B`&Fct^1wZ{`?QoKJuFY literal 0 HcmV?d00001 diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf index aa4753e..d15ad11 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initServer.sqf @@ -141,4 +141,11 @@ if (isDedicated) then { params ["_unit", "_fence"]; // 12 s timeout because 11 s is default wirecutting duration [{!alive _this}, {deleteVehicle _this}, _fence, 12] call CBA_fnc_waitUntilAndExecute; +}] call CBA_fnc_addEventHandler; + +[QGVAR(showOpforTasks), { + // Check if SUV task can be shown + if (!isNil "suv") then { + [QGVAR(suvSpawned)] call CBA_fnc_localEvent; + }; }] call CBA_fnc_addEventHandler; \ No newline at end of file diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm index 0992d6f..c928bf2 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm @@ -1,298 +1,50 @@ -version=53; +version=54; class EditorData { moveGridStep=1; angleGridStep=0.2617994; scaleGridStep=1; autoGroupingDist=10; - toggles=517; + toggles=513; + mods[]= + { + "3denEnhanced" + }; class ItemIDProvider { - nextID=612; + nextID=1384; }; class MarkerIDProvider { - nextID=13; + nextID=14; }; class LayerIndexProvider { - nextID=136; + nextID=155; }; class Camera { - pos[]={6431.666,23.505564,1400.5266}; - dir[]={0.83183765,-0.38058293,0.40415061}; - up[]={0.34233421,0.92473799,0.16632362}; - aside[]={0.43703148,1.4243415e-007,-0.89951962}; + pos[]={6142.2715,35.831573,1267.3267}; + dir[]={0.55423933,-0.56836218,-0.60830897}; + up[]={0.38280094,0.82274359,-0.4201448}; + aside[]={-0.73925579,-8.6263753e-008,-0.67355406}; }; }; binarizationWanted=0; +sourceName="PvP_Patrol"; addons[]= -{ - "A3_Characters_F", - "CUP_Weapons_M16", - "CUP_Weapons_Ammunition", - "ace_flashlights", - "A3_Weapons_F", - "CUP_Creatures_Military_USArmy", - "ace_medical_treatment", - "acre_sys_prc343", - "ace_hearing", - "ace_grenades", - "CUP_Weapons_West_Attachments", - "A3_Ui_F", - "CUP_AirVehicles_CH47", - "CUP_AirVehicles_UH60", - "CUP_AirVehicles_AH64", - "CUP_AirVehicles_AH6", - "CUP_AirVehicles_C130J", - "CUP_AirVehicles_DC3", - "CUP_AirVehicles_MQ9", - "CUP_AirVehicles_A10", - "CUP_AirVehicles_AV8B", - "CUP_WheeledVehicles_MTVR", - "A3_Structures_F_Walls", - "CUP_Wheeled_SUV", - "CUP_Weapons_AmmoBoxes", - "A3_Structures_F_Civ_Lamps", - "vurtual_m939", - "A3_Structures_F_Heli_Furniture", - "A3_Props_F_Argo_Items_Electronics", - "A3_Structures_F_Enoch_Military_Barracks", - "mts_nature", - "A3_Structures_F_Enoch_Industrial_Agriculture", - "A3_Rocks_F_Enoch", - "A3_Structures_F_Enoch_Ruins", - "A3_Structures_F_Enoch_Walls_Stone", - "A3_Structures_F_Enoch_Civilian_Sheds", - "A3_Structures_F_Enoch_Industrial_Farms", - "A3_Rocks_F_Exp_Cliff", - "A3_Props_F_Exp_Naval_Boats", - "A3_Structures_F_Enoch_Wrecks", - "A3_Props_F_Exp_Industrial_HeavyEquipment" -}; +{}; class AddonsMetaData +{}; +dlcs[]= { - class List - { - items=36; - class Item0 - { - className="A3_Characters_F"; - name="Arma 3 Alpha - Characters and Clothing"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item1 - { - className="CUP_Weapons_M16"; - name="CUP_Weapons_M16"; - }; - class Item2 - { - className="CUP_Weapons_Ammunition"; - name="CUP_Weapons_Ammunition"; - }; - class Item3 - { - className="ace_flashlights"; - name="ACE3 - Flashlights"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item4 - { - className="A3_Weapons_F"; - name="Arma 3 Alpha - Weapons and Accessories"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item5 - { - className="CUP_Creatures_Military_USArmy"; - name="CUP_Creatures_Military_USArmy"; - }; - class Item6 - { - className="ace_medical_treatment"; - name="ACE3 - Medical Treatment"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item7 - { - className="acre_sys_prc343"; - name="ACRE2 - AN/PRC-343"; - author="ACRE2Team"; - url="https://github.com/IDI-Systems/acre2"; - }; - class Item8 - { - className="ace_hearing"; - name="ACE3 - Hearing"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item9 - { - className="ace_grenades"; - name="ACE3 - Grenades"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item10 - { - className="CUP_Weapons_West_Attachments"; - name="CUP_Weapons_West_Attachments"; - }; - class Item11 - { - className="A3_Ui_F"; - name="Arma 3 - User Interface"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item12 - { - className="CUP_AirVehicles_CH47"; - name="CUP_AirVehicles_CH47"; - }; - class Item13 - { - className="CUP_AirVehicles_UH60"; - name="CUP_AirVehicles_UH60"; - }; - class Item14 - { - className="CUP_AirVehicles_AH64"; - name="CUP_AirVehicles_AH64"; - }; - class Item15 - { - className="CUP_AirVehicles_AH6"; - name="CUP_AirVehicles_AH6"; - }; - class Item16 - { - className="CUP_AirVehicles_C130J"; - name="CUP_AirVehicles_C130J"; - }; - class Item17 - { - className="CUP_AirVehicles_DC3"; - name="CUP_AirVehicles_DC3"; - }; - class Item18 - { - className="CUP_AirVehicles_MQ9"; - name="CUP_AirVehicles_MQ9"; - }; - class Item19 - { - className="CUP_AirVehicles_A10"; - name="CUP_AirVehicles_A10"; - }; - class Item20 - { - className="CUP_AirVehicles_AV8B"; - name="CUP_AirVehicles_AV8B"; - }; - class Item21 - { - className="CUP_WheeledVehicles_MTVR"; - name="CUP_WheeledVehicles_MTVR"; - }; - class Item22 - { - className="A3_Structures_F"; - name="Arma 3 - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item23 - { - className="CUP_Wheeled_SUV"; - name="CUP_Wheeled_SUV"; - }; - class Item24 - { - className="CUP_Weapons_AmmoBoxes"; - name="CUP_Weapons_AmmoBoxes"; - }; - class Item25 - { - className="vurtual_m939"; - name="vurtual_m939"; - }; - class Item26 - { - className="A3_Structures_F_Heli"; - name="Arma 3 Helicopters - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item27 - { - className="A3_Props_F_Argo"; - name="Arma 3 Malden - Decorative and Mission Objects"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item28 - { - className="A3_Structures_F_Enoch_Military"; - name="Arma 3 Contact Platform - Military Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item29 - { - className="mts_nature"; - name="mts - Nature"; - }; - class Item30 - { - className="A3_Structures_F_Enoch_Industrial"; - name="Arma 3 Contact Platform - Industrial Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item31 - { - className="A3_Rocks_F_Enoch"; - name="Arma 3 Contact Platform - Rocks and Stones"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item32 - { - className="A3_Structures_F_Enoch"; - name="Arma 3 Contact Platform - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item33 - { - className="A3_Structures_F_Enoch_Civilian"; - name="Arma 3 Contact Platform - Civilian Buildings"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item34 - { - className="A3_Rocks_F_Exp"; - name="Arma 3 Apex - Rocks and Stones"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item35 - { - className="A3_Props_F_Exp"; - name="Arma 3 Apex - Decorative and Mission Objects"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - }; + "CUP_Weapons", + "CUP_Units", + "CUP_Vehicles", + "Heli", + "Argo", + "Enoch", + "Expansion" }; randomSeed=8265701; class ScenarioData @@ -3595,14 +3347,14 @@ class Mission year=2020; month=4; day=3; - hour=4; - minute=20; + hour=14; + minute=19; startFogDecay=0.014; forecastFogDecay=0.014; }; class Entities { - items=3; + items=4; class Item0 { dataType="Group"; @@ -4092,7 +3844,7 @@ class Mission class Attribute0 { property="ace_isEngineer"; - expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; class Value { class data @@ -4590,7 +4342,7 @@ class Mission class Attribute0 { property="ace_isEngineer"; - expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; class Value { class data @@ -5087,7 +4839,7 @@ class Mission class Attribute0 { property="ace_isEngineer"; - expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; class Value { class data @@ -5585,7 +5337,7 @@ class Mission class Attribute0 { property="ace_isEngineer"; - expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; class Value { class data @@ -6082,7 +5834,7 @@ class Mission class Attribute0 { property="ace_isEngineer"; - expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; class Value { class data @@ -6579,7 +6331,7 @@ class Mission class Attribute0 { property="ace_isEngineer"; - expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; class Value { class data @@ -7080,7 +6832,7 @@ class Mission class Attribute0 { property="ace_isEngineer"; - expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; class Value { class data @@ -7580,7 +7332,7 @@ class Mission class Attribute0 { property="ace_isEngineer"; - expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; class Value { class data @@ -8080,7 +7832,7 @@ class Mission class Attribute0 { property="ace_isEngineer"; - expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; class Value { class data @@ -8580,7 +8332,7 @@ class Mission class Attribute0 { property="ace_isEngineer"; - expression="if !(_value == ([0,1] select (_this getUnitTrait 'engineer'))|| {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; class Value { class data @@ -9084,7 +8836,7 @@ class Mission class Attribute0 { property="VehicleCustomization"; - expression="if (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; class Value { class data @@ -9436,7 +9188,7 @@ class Mission }; id=273; type="CUP_B_AH64_DL_USA"; - atlOffset=-5.7697296e-005; + atlOffset=-5.7220459e-005; class CustomAttributes { class Attribute0 @@ -9481,7 +9233,7 @@ class Mission }; id=272; type="CUP_B_AH64_DL_USA"; - atlOffset=-2.8610229e-006; + atlOffset=-2.3841858e-006; class CustomAttributes { class Attribute0 @@ -9529,7 +9281,7 @@ class Mission class Attribute0 { property="VehicleCustomization"; - expression="if (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; class Value { class data @@ -9946,13 +9698,13 @@ class Mission }; id=327; type="CUP_B_UH60M_US"; - atlOffset=1.9550323e-005; + atlOffset=1.9073486e-005; class CustomAttributes { class Attribute0 { property="VehicleCustomization"; - expression="if (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; class Value { class data @@ -10382,7 +10134,7 @@ class Mission }; id=274; type="CUP_B_C47_USA"; - atlOffset=-9.8228455e-005; + atlOffset=-9.7751617e-005; }; class Item5 { @@ -10400,7 +10152,7 @@ class Mission }; id=276; type="CUP_B_C47_USA"; - atlOffset=-1.4305115e-006; + atlOffset=-9.5367432e-007; }; class Item6 { @@ -10418,7 +10170,7 @@ class Mission }; id=277; type="CUP_B_C47_USA"; - atlOffset=0.00020980835; + atlOffset=0.00020933151; }; class Item7 { @@ -11249,7 +11001,6 @@ class Mission }; id=321; type="CUP_B_AV8B_DYN_USMC"; - atlOffset=-4.7683716e-007; }; class Item20 { @@ -11771,7 +11522,7 @@ class Mission dataType="Object"; class PositionInfo { - position[]={6556.5151,7.0536385,956.88104}; + position[]={6556.5151,7.0536389,956.88104}; angles[]={0,0.37597883,0}; }; side="Empty"; @@ -11933,7 +11684,7 @@ class Mission name="Guard towers"; class Entities { - items=8; + items=9; class Item0 { dataType="Object"; @@ -12073,3547 +11824,17674 @@ class Mission type="Land_GuardBox_01_brown_F"; atlOffset=0.33028555; }; - }; - id=605; - atlOffset=0.13655233; - }; - class Item5 - { - dataType="Layer"; - name="BOLCOWE PROPY"; - class Entities - { - items=194; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={6519.4399,8.4481602,1555.8439}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=403; - type="PiceaAbies_1f"; - atlOffset=4.7683716e-007; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={6497.8711,9.9932804,1596.483}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=404; - type="PiceaAbies_1f"; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={6504.1724,6.9987621,1587.2815}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=405; - type="PiceaAbies_1s"; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={6514.3345,6.6343765,1565.9502}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=406; - type="PiceaAbies_1s"; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={6506.7188,6.7272763,1576.3136}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=407; - type="PiceaAbies_1sb"; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={6507.27,6.65312,1567.4497}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=408; - type="PiceaAbies_1sb"; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={6510.0547,12.468521,1556.5861}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=409; - type="PiceaAbies_2s"; - atlOffset=4.7683716e-007; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={6518.3037,6.8137641,1607.3638}; - angles[]={0,2.3981299,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - }; - id=410; - type="Land_HayBale_01_stack_F"; - }; class Item8 { dataType="Object"; class PositionInfo { - position[]={6507.4653,8.7929363,1581.4377}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=411; - type="PiceaAbies_1f"; - atlOffset=-4.7683716e-007; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={6509.1978,6.7693224,1588.4344}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=412; - type="PiceaAbies_1sb"; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={6507.0972,7.7898664,1595.2401}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=413; - type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; - }; - class Item11 - { - dataType="Object"; - class PositionInfo - { - position[]={6109.1558,6.4184752,1291.4891}; + position[]={6933.0801,3.6968064,1428.7195}; + angles[]={0,3.9875765,-0}; }; side="Empty"; - flags=4; + flags=1; class Attributes { - presence=0.75; - disableSimulation=1; }; - id=414; - type="Betula_pendula_2w"; + id=1321; + type="Land_GuardBox_01_brown_F"; + atlOffset=0.65607238; }; - class Item12 + }; + id=605; + atlOffset=0.35558176; + }; + class Item5 + { + dataType="Layer"; + name="Props"; + class Entities + { + items=3; + class Item0 { - dataType="Object"; - class PositionInfo + dataType="Layer"; + name="Vegetation"; + class Entities { - position[]={6098.6055,11.770251,1298.5437}; - angles[]={0,5.413043,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=415; - type="Betula_pendula_3f"; - atlOffset=2.3841858e-007; - }; - class Item13 - { - dataType="Object"; - class PositionInfo - { - position[]={6097.6084,5.301692,1276.7463}; - angles[]={0,0,0.0049914722}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=416; - type="Betula_pendula_stump"; - atlOffset=-2.3841858e-007; - }; - class Item14 - { - dataType="Object"; - class PositionInfo - { - position[]={6115.1812,3.8399694,1290.8489}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=417; - type="Land_Bare_boulder_01_F"; - }; - class Item15 - { - dataType="Object"; - class PositionInfo - { - position[]={6111.896,3.8813348,1251.7269}; - angles[]={0.0049914722,0.89790404,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=418; - type="Land_RM_boulder1"; - }; - class Item16 - { - dataType="Object"; - class PositionInfo - { - position[]={6095.3521,3.8758595,1310.4999}; - angles[]={6.278194,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=419; - type="Land_RM_boulder4"; - atlOffset=1.1920929e-006; - }; - class Item17 - { - dataType="Object"; - class PositionInfo - { - position[]={6124.7959,5.0432024,1281.1376}; - angles[]={0,0,0.0049914722}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=420; - type="Corylus_heterophylla_1"; - atlOffset=1.8119812e-005; - }; - class Item18 - { - dataType="Object"; - class PositionInfo - { - position[]={6065.9058,6.5263786,1347.2285}; - angles[]={6.278194,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=421; - type="Corylus_heterophylla_2"; - atlOffset=4.7683716e-007; - }; - class Item19 - { - dataType="Object"; - class PositionInfo - { - position[]={6103.9067,12.300075,1280.0872}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=422; - type="FagusSylvatica_2d"; - }; - class Item20 - { - dataType="Object"; - class PositionInfo - { - position[]={6093.1108,15.002101,1278.6449}; - angles[]={0,4.825634,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=423; - type="FagusSylvatica_2fb"; - atlOffset=-2.3841858e-007; - }; - class Item21 - { - dataType="Object"; - class PositionInfo - { - position[]={6080.8755,7.4005394,1302.3672}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=426; - type="PiceaAbies_1f"; - }; - class Item22 - { - dataType="Object"; - class PositionInfo - { - position[]={6069.9272,7.4505396,1317.8994}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=427; - type="PiceaAbies_1f"; - atlOffset=2.3841858e-007; - }; - class Item23 - { - dataType="Object"; - class PositionInfo - { - position[]={6054.0254,7.5934682,1340.5857}; - angles[]={6.278194,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=428; - type="PiceaAbies_1f"; - }; - class Item24 - { - dataType="Object"; - class PositionInfo - { - position[]={6072.9297,7.6009493,1347.0117}; - angles[]={6.278194,0,6.278194}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=429; - type="PiceaAbies_1f"; - }; - class Item25 - { - dataType="Object"; - class PositionInfo - { - position[]={6094.1919,5.4339285,1288.95}; - angles[]={6.278194,0,0.0049914722}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=430; - type="PiceaAbies_1s"; - atlOffset=2.3841858e-007; - }; - class Item26 - { - dataType="Object"; - class PositionInfo - { - position[]={6072.8442,5.5432954,1327.0111}; - angles[]={6.278194,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=431; - type="PiceaAbies_1s"; - atlOffset=2.0742416e-005; - }; - class Item27 - { - dataType="Object"; - class PositionInfo - { - position[]={6055.1353,5.7193165,1351.1097}; - angles[]={6.2731905,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=432; - type="PiceaAbies_1s"; - }; - class Item28 - { - dataType="Object"; - class PositionInfo - { - position[]={6094.0522,5.4519649,1300.7491}; - angles[]={6.278194,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=433; - type="PiceaAbies_1s"; - }; - class Item29 - { - dataType="Object"; - class PositionInfo - { - position[]={6091.7246,5.3722153,1307.4587}; - angles[]={6.278194,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=434; - type="PiceaAbies_1sb"; - }; - class Item30 - { - dataType="Object"; - class PositionInfo - { - position[]={6106.6563,5.3549213,1298.0886}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=435; - type="PiceaAbies_1sb"; - atlOffset=-2.3841858e-007; - }; - class Item31 - { - dataType="Object"; - class PositionInfo - { - position[]={6076.603,5.5333319,1342.285}; - angles[]={6.278194,0,6.278194}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=436; - type="PiceaAbies_1sb"; - }; - class Item32 - { - dataType="Object"; - class PositionInfo - { - position[]={6079.8027,11.007421,1334.8005}; - angles[]={6.278194,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=437; - type="piceaabies_2d"; - atlOffset=8.7499619e-005; - }; - class Item33 - { - dataType="Object"; - class PositionInfo - { - position[]={6066.0415,11.464144,1339.5465}; - angles[]={6.278194,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=438; - type="PiceaAbies_2s"; - atlOffset=4.7683716e-007; - }; - class Item34 - { - dataType="Object"; - class PositionInfo - { - position[]={6081.6826,11.367998,1326.0676}; - angles[]={0,0,6.278194}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=439; - type="PiceaAbies_2s"; - atlOffset=4.7683716e-007; - }; - class Item35 - { - dataType="Object"; - class PositionInfo - { - position[]={6107.5859,11.31303,1309.3239}; - angles[]={6.278194,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=440; - type="PiceaAbies_2s"; - atlOffset=4.7683716e-007; - }; - class Item36 - { - dataType="Object"; - class PositionInfo - { - position[]={6090.4692,11.274064,1289.2677}; - angles[]={0,0,6.278194}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=441; - type="PiceaAbies_2s"; - atlOffset=-2.3841858e-007; - }; - class Item37 - { - dataType="Object"; - class PositionInfo - { - position[]={6089.2041,16.039104,1299.8258}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=442; - type="PiceaAbies_3f"; - atlOffset=-7.1525574e-007; - }; - class Item38 - { - dataType="Object"; - class PositionInfo - { - position[]={6089.0869,14.611135,1315.9424}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=443; - type="PiceaAbies_3s"; - atlOffset=-7.1525574e-007; - }; - class Item39 - { - dataType="Object"; - class PositionInfo - { - position[]={6115.5459,4.484674,1256.7693}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=444; - type="PiceaAbies_b_1f"; - }; - class Item40 - { - dataType="Object"; - class PositionInfo - { - position[]={6124.9785,4.5045109,1270.6188}; - angles[]={0.0049914722,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=445; - type="PiceaAbies_b_1fb"; - }; - class Item41 - { - dataType="Object"; - class PositionInfo - { - position[]={6114.4067,4.4876051,1268.0366}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=446; - type="PiceaAbies_b_1fb"; - atlOffset=2.3841858e-007; - }; - class Item42 - { - dataType="Object"; - class PositionInfo - { - position[]={6112.4116,5.2369361,1279.3427}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=447; - type="prunusSpinosa_1s"; - }; - class Item43 - { - dataType="Object"; - class PositionInfo - { - position[]={6121.353,5.2469363,1278.0988}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=448; - type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; - }; - class Item44 - { - dataType="Object"; - class PositionInfo - { - position[]={6057.0659,5.6457825,1367.4176}; - angles[]={6.2731848,0,6.278194}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=449; - type="prunusSpinosa_1s"; - }; - class Item45 - { - dataType="Object"; - class PositionInfo - { - position[]={6118.9121,6.448596,1285.9404}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=450; - type="prunusSpinosa_2s"; - }; - class Item46 - { - dataType="Object"; - class PositionInfo - { - position[]={6108.3623,6.4562941,1262.4603}; - angles[]={0.0049914722,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=451; - type="prunusSpinosa_2s"; - atlOffset=-2.3841858e-007; - }; - class Item47 - { - dataType="Object"; - class PositionInfo - { - position[]={6060.2627,6.7497253,1356.2258}; - angles[]={6.278194,2.1468344,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=452; - type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; - }; - class Item48 - { - dataType="Object"; - class PositionInfo - { - position[]={6052.8687,6.8651114,1368.1716}; - angles[]={6.278194,0,6.278194}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=453; - type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; - }; - class Item49 - { - dataType="Object"; - class PositionInfo - { - position[]={6074.3418,6.5877657,1335.834}; - angles[]={6.278194,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=454; - type="prunusSpinosa_2s"; - atlOffset=-2.3841858e-007; - }; - class Item50 - { - dataType="Object"; - class PositionInfo - { - position[]={6042.5186,6.5597105,1359.5186}; - angles[]={0,5.8304586,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=455; - type="Land_HouseRuin_Small_01_F"; - }; - class Item51 - { - dataType="Object"; - class PositionInfo - { - position[]={6056.1523,4.2854586,1362.4353}; - angles[]={0,0.90088904,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=456; - type="Land_StoneWall_02_s_10m_F"; - }; - class Item52 - { - dataType="Object"; - class PositionInfo - { - position[]={6047.6206,4.4124227,1374.1317}; - angles[]={0,0.90088904,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=457; - type="Land_StoneWall_02_s_10m_F"; - }; - class Item53 - { - dataType="Object"; - class PositionInfo - { - position[]={6325.2822,7.1949029,1392.5963}; - angles[]={0,2.3554602,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=458; - type="Land_Shed_09_F"; - }; - class Item54 - { - dataType="Object"; - class PositionInfo - { - position[]={6551.4365,6.2600737,1629.8334}; - angles[]={0,5.777997,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=459; - type="Land_StrawStack_01_F"; - }; - class Item55 - { - dataType="Object"; - class PositionInfo - { - position[]={5974.626,5.704874,1276.6643}; - angles[]={0,4.2046776,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=460; - type="Land_HayBale_01_stack_F"; - }; - class Item56 - { - dataType="Object"; - class PositionInfo - { - position[]={6571.8657,6.0666966,1627.6151}; - angles[]={0,4.4388165,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=461; - type="Land_HayBale_01_stack_F"; - }; - class Item57 - { - dataType="Object"; - class PositionInfo - { - position[]={6516.3022,4.8773141,1543.6429}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=464; - type="Land_RM_boulder4"; - }; - class Item58 - { - dataType="Object"; - class PositionInfo - { - position[]={6497.7661,9.3227882,1545.874}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=465; - type="PiceaAbies_1f"; - atlOffset=4.7683716e-007; - }; - class Item59 - { - dataType="Object"; - class PositionInfo - { - position[]={6492.8979,9.6517372,1555.0399}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=466; - type="PiceaAbies_1f"; - }; - class Item60 - { - dataType="Object"; - class PositionInfo - { - position[]={6493.144,7.8698483,1560.4166}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=467; - type="PiceaAbies_1s"; - }; - class Item61 - { - dataType="Object"; - class PositionInfo - { - position[]={6509.3872,6.7798829,1541.7839}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=468; - type="PiceaAbies_1sb"; - atlOffset=4.7683716e-007; - }; - class Item62 - { - dataType="Object"; - class PositionInfo - { - position[]={6504.1523,12.581536,1561.4822}; - angles[]={6.278194,3.4584663,6.268187}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=469; - type="PiceaAbies_2s"; - }; - class Item63 - { - dataType="Object"; - class PositionInfo - { - position[]={6525.2485,12.207683,1543.649}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=470; - type="PiceaAbies_2s"; - }; - class Item64 - { - dataType="Object"; - class PositionInfo - { - position[]={6506.7495,15.783298,1550.2676}; - angles[]={0.019999012,2.328511,6.2531939}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=471; - type="PiceaAbies_3s"; - atlOffset=-9.5367432e-007; - }; - class Item65 - { - dataType="Object"; - class PositionInfo - { - position[]={6489.9556,5.785172,1535.3801}; - angles[]={0,5.5058184,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=472; - type="Land_RM_boulder4"; - }; - class Item66 - { - dataType="Object"; - class PositionInfo - { - position[]={6597.5444,4.5039725,1491.244}; - angles[]={0.0049914722,2.3506148,6.268187}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=473; - type="Land_RM_boulder4"; - }; - class Item67 - { - dataType="Object"; - class PositionInfo - { - position[]={6123.4175,6.4273233,1235.5604}; - angles[]={0,0,0.0049914722}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=474; - type="Corylus_heterophylla_2"; - }; - class Item68 - { - dataType="Object"; - class PositionInfo - { - position[]={6127.439,7.6793828,1206.2313}; - angles[]={0.0049914722,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=475; - type="PiceaAbies_1f"; - }; - class Item69 - { - dataType="Object"; - class PositionInfo - { - position[]={6111.5371,7.5236368,1228.9176}; - angles[]={0.0049914722,0,0.0049914722}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=476; - type="PiceaAbies_1f"; - }; - class Item70 - { - dataType="Object"; - class PositionInfo - { - position[]={6130.4414,7.5338211,1235.3436}; - angles[]={0.0049914722,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=477; - type="PiceaAbies_1f"; - atlOffset=-2.3841858e-007; - }; - class Item71 - { - dataType="Object"; - class PositionInfo - { - position[]={6130.356,5.6933041,1215.343}; - angles[]={0.0049914722,0,0.0049914722}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=478; - type="PiceaAbies_1s"; - atlOffset=2.0503998e-005; - }; - class Item72 - { - dataType="Object"; - class PositionInfo - { - position[]={6134.1147,5.531837,1230.6169}; - angles[]={0.0049914722,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=479; - type="PiceaAbies_1sb"; - }; - class Item73 - { - dataType="Object"; - class PositionInfo - { - position[]={6137.3145,11.097755,1223.1324}; - angles[]={0.0049914722,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=480; - type="piceaabies_2d"; - atlOffset=8.72612e-005; - }; - class Item74 - { - dataType="Object"; - class PositionInfo - { - position[]={6123.5532,11.447019,1227.8784}; - angles[]={0.0049914722,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=481; - type="PiceaAbies_2s"; - }; - class Item75 - { - dataType="Object"; - class PositionInfo - { - position[]={6131.8535,6.6569376,1224.1659}; - angles[]={0.0099949092,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=482; - type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; - }; - class Item76 - { - dataType="Object"; - class PositionInfo - { - position[]={5674.8091,4.2653198,1168.8442}; - angles[]={0.0050033992,0.20036471,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=483; - type="Land_RM_boulder4"; - atlOffset=4.7683716e-007; - }; - class Item77 - { - dataType="Object"; - class PositionInfo - { - position[]={5696.4941,4.8532419,1125.4052}; - angles[]={0,1.6913697,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=484; - type="Land_RM_boulder4"; - }; - class Item78 - { - dataType="Object"; - class PositionInfo - { - position[]={5698.9858,6.2966528,1125.2963}; - angles[]={0,0.83436823,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=485; - type="prunusSpinosa_1s"; - }; - class Item79 - { - dataType="Object"; - class PositionInfo - { - position[]={5663.7681,8.0826073,1169.3019}; - angles[]={0.014998405,1.159031,0.0049914722}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=486; - type="Betula_pendula_2s"; - }; - class Item80 - { - dataType="Object"; - class PositionInfo - { - position[]={5678.7661,8.4098263,1157.7584}; - angles[]={0.0050033992,5.243114,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=487; - type="Betula_pendula_2s"; - atlOffset=9.5367432e-007; - }; - class Item81 - { - dataType="Object"; - class PositionInfo - { - position[]={5717.5894,9.2603188,1156.9528}; - angles[]={0.0050033992,5.243114,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=488; - type="Betula_pendula_2s"; - atlOffset=4.7683716e-007; - }; - class Item82 - { - dataType="Object"; - class PositionInfo - { - position[]={5699.2739,8.6452942,1195.348}; - angles[]={0.010000871,5.243114,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=489; - type="Betula_pendula_2s"; - atlOffset=9.5367432e-007; - }; - class Item83 - { - dataType="Object"; - class PositionInfo - { - position[]={5687.7202,8.2751198,1209.2581}; - angles[]={0.010000871,5.243114,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=490; - type="Betula_pendula_2s"; - atlOffset=9.5367432e-007; - }; - class Item84 - { - dataType="Object"; - class PositionInfo - { - position[]={5693.6152,8.7855997,1140.7064}; - angles[]={0,2.6500359,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=491; - type="Betula_pendula_2s"; - }; - class Item85 - { - dataType="Object"; - class PositionInfo - { - position[]={5690.5483,8.7042618,1110.3044}; - angles[]={0,0.45093346,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=492; - type="Betula_pendula_2s"; - }; - class Item86 - { - dataType="Object"; - class PositionInfo - { - position[]={5723.0786,9.3536892,1113.7644}; - angles[]={6.278182,5.2807817,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=493; - type="Betula_pendula_2s"; - atlOffset=-4.7683716e-007; - }; - class Item87 - { - dataType="Object"; - class PositionInfo - { - position[]={5713.562,9.208703,1126.8336}; - angles[]={6.278182,5.2807817,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=494; - type="Betula_pendula_2s"; - }; - class Item88 - { - dataType="Object"; - class PositionInfo - { - position[]={5699.6069,8.8955326,1114.0197}; - angles[]={6.278182,5.2807817,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=495; - type="Betula_pendula_2s"; - atlOffset=4.7683716e-007; - }; - class Item89 - { - dataType="Object"; - class PositionInfo - { - position[]={5689.291,8.6891155,1114.8049}; - angles[]={0,5.2807817,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=496; - type="Betula_pendula_2s"; - }; - class Item90 - { - dataType="Object"; - class PositionInfo - { - position[]={5711.9844,9.1522942,1115.8623}; - angles[]={6.278182,5.2807817,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=497; - type="Betula_pendula_2s"; - }; - class Item91 - { - dataType="Object"; - class PositionInfo - { - position[]={5691.0317,8.7303181,1118.246}; - angles[]={6.278182,2.6500359,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=498; - type="Betula_pendula_2s"; - }; - class Item92 - { - dataType="Object"; - class PositionInfo - { - position[]={5667.4595,6.7472525,1163.1635}; - angles[]={0.0049914722,5.243114,0.010000871}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=499; - type="Betula_pendula_2w"; - }; - class Item93 - { - dataType="Object"; - class PositionInfo - { - position[]={5702.314,7.4524255,1170.4658}; - angles[]={0.0050033992,1.9906152,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=500; - type="Betula_pendula_2w"; - }; - class Item94 - { - dataType="Object"; - class PositionInfo - { - position[]={5685.0093,7.133707,1154.6302}; - angles[]={0,1.9906152,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=501; - type="Betula_pendula_2w"; - }; - class Item95 - { - dataType="Object"; - class PositionInfo - { - position[]={5691.4717,7.1239352,1184.2665}; - angles[]={0.0050033992,5.6162271,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=502; - type="Betula_pendula_2w"; - }; - class Item96 - { - dataType="Object"; - class PositionInfo - { - position[]={5683.292,6.8702431,1194.1064}; - angles[]={0.0050033992,0.40582043,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=503; - type="Betula_pendula_2w"; - }; - class Item97 - { - dataType="Object"; - class PositionInfo - { - position[]={5694.8516,7.0554175,1203.0089}; - angles[]={0.010000871,6.2639766,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=504; - type="Betula_pendula_2w"; - }; - class Item98 - { - dataType="Object"; - class PositionInfo - { - position[]={5679.6465,6.7359767,1200.7322}; - angles[]={0.0050033992,6.2639766,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=505; - type="Betula_pendula_2w"; - }; - class Item99 - { - dataType="Object"; - class PositionInfo - { - position[]={5707.6104,7.6606822,1140.4374}; - angles[]={0,0.45093346,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=506; - type="Betula_pendula_2w"; - }; - class Item100 - { - dataType="Object"; - class PositionInfo - { - position[]={5719.3281,7.8502364,1112.3679}; - angles[]={6.278194,2.4055202,0.014998405}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=507; - type="Betula_pendula_2w"; - }; - class Item101 - { - dataType="Object"; - class PositionInfo - { - position[]={5709.6489,7.6612725,1111.9637}; - angles[]={6.278182,0.44348812,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=508; - type="Betula_pendula_2w"; - }; - class Item102 - { - dataType="Object"; - class PositionInfo - { - position[]={5722.4448,7.9321713,1116.96}; - angles[]={6.278182,5.0357013,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=509; - type="Betula_pendula_2w"; - }; - class Item103 - { - dataType="Object"; - class PositionInfo - { - position[]={5704.042,7.549315,1111.0825}; - angles[]={0,2.3751225,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=510; - type="Betula_pendula_2w"; - }; - class Item104 - { - dataType="Object"; - class PositionInfo - { - position[]={5701.0508,7.5194907,1120.7791}; - angles[]={0,5.0906072,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=511; - type="Betula_pendula_2w"; - }; - class Item105 - { - dataType="Object"; - class PositionInfo - { - position[]={5678.1631,6.2957659,1171.5443}; - angles[]={0.010000871,5.243114,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=512; - type="Betula_pendula_1s"; - atlOffset=9.5367432e-007; - }; - class Item106 - { - dataType="Object"; - class PositionInfo - { - position[]={5681.7261,6.3626595,1173.9618}; - angles[]={0.0050033992,5.9259396,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=513; - type="Betula_pendula_1s"; - }; - class Item107 - { - dataType="Object"; - class PositionInfo - { - position[]={5681.2349,6.1044512,1208.8737}; - angles[]={0.0050033992,2.4913504,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=514; - type="Betula_pendula_1s"; - atlOffset=1.4305115e-006; - }; - class Item108 - { - dataType="Object"; - class PositionInfo - { - position[]={5696.998,6.8379087,1126.5359}; - angles[]={0,0.45093346,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=515; - type="Betula_pendula_1s"; - atlOffset=1.4305115e-006; - }; - class Item109 - { - dataType="Object"; - class PositionInfo - { - position[]={5707.0669,7.0492849,1126.6937}; - angles[]={0,2.5290184,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=516; - type="Betula_pendula_1s"; - atlOffset=4.7683716e-007; - }; - class Item110 - { - dataType="Object"; - class PositionInfo - { - position[]={5682.3955,10.946621,1166.303}; - angles[]={0.0050033992,5.243114,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=517; - type="Betula_pendula_3s"; - atlOffset=4.7683716e-007; - }; - class Item111 - { - dataType="Object"; - class PositionInfo - { - position[]={5695.1206,11.26824,1158.7991}; - angles[]={0,4.5591898,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=518; - type="Betula_pendula_3s"; - atlOffset=-4.7683716e-007; - }; - class Item112 - { - dataType="Object"; - class PositionInfo - { - position[]={5709.3916,11.557269,1164.1576}; - angles[]={0.0050033992,0.33325216,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=519; - type="Betula_pendula_3s"; - }; - class Item113 - { - dataType="Object"; - class PositionInfo - { - position[]={5702.3696,11.277231,1186.4469}; - angles[]={0.0050033992,2.6623406,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=520; - type="Betula_pendula_3s"; - }; - class Item114 - { - dataType="Object"; - class PositionInfo - { - position[]={5677.1187,10.695169,1187.7429}; - angles[]={0.010000871,0.23225401,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=521; - type="Betula_pendula_3s"; - atlOffset=4.7683716e-007; - }; - class Item115 - { - dataType="Object"; - class PositionInfo - { - position[]={5686.625,10.834202,1198.3296}; - angles[]={0.0050033992,0.29058021,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=522; - type="Betula_pendula_3s"; - atlOffset=-4.7683716e-007; - }; - class Item116 - { - dataType="Object"; - class PositionInfo - { - position[]={5716.3555,11.724247,1113.3824}; - angles[]={6.278182,2.8163829,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=523; - type="Betula_pendula_3s"; - atlOffset=4.7683716e-007; - }; - class Item117 - { - dataType="Object"; - class PositionInfo - { - position[]={5686.0908,11.122042,1114.7244}; - angles[]={0,2.7000086,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=524; - type="Betula_pendula_3s"; - }; - class Item118 - { - dataType="Object"; - class PositionInfo - { - position[]={5694.8838,11.287901,1111.4761}; - angles[]={0,0.26992178,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=525; - type="Betula_pendula_3s"; - }; - class Item119 - { - dataType="Object"; - class PositionInfo - { - position[]={5723.8682,11.907589,1125.5812}; - angles[]={0,0.32824802,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=526; - type="Betula_pendula_3s"; - atlOffset=4.7683716e-007; - }; - class Item120 - { - dataType="Object"; - class PositionInfo - { - position[]={5688.6753,4.8228807,1172.3713}; - angles[]={0.0050033992,2.8786836,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=527; - type="Betula_pendula_stem"; - }; - class Item121 - { - dataType="Object"; - class PositionInfo - { - position[]={5703.7603,5.2359729,1155.4175}; - angles[]={0.0050033992,1.1843532,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=528; - type="Betula_pendula_stem"; - }; - class Item122 - { - dataType="Object"; - class PositionInfo - { - position[]={5686.229,4.5461555,1159.9078}; - angles[]={0.0050033992,2.2374964,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=529; - type="Land_RM_boulder1"; - atlOffset=4.7683716e-007; - }; - class Item123 - { - dataType="Object"; - class PositionInfo - { - position[]={5679.0547,4.6324048,1160.1776}; - angles[]={0.0050033992,4.1329355,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=530; - type="Fallen_Branch3"; - atlOffset=9.5367432e-007; - }; - class Item124 - { - dataType="Object"; - class PositionInfo - { - position[]={5685.9126,4.8540106,1122.7994}; - angles[]={6.278182,5.6239405,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=531; - type="Fallen_Branch3"; - }; - class Item125 - { - dataType="Object"; - class PositionInfo - { - position[]={5670.77,5.5724959,1169.9681}; - angles[]={0.0050033992,5.6265488,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=532; - type="prunusSpinosa_1s"; - }; - class Item126 - { - dataType="Object"; - class PositionInfo - { - position[]={5693.0767,6.0701876,1168.733}; - angles[]={0.0050033992,5.1727309,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=533; - type="prunusSpinosa_1s"; - }; - class Item127 - { - dataType="Object"; - class PositionInfo - { - position[]={5672.8438,5.6818337,1157.5518}; - angles[]={0.0049914722,5.243114,0.014998405}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=534; - type="prunusSpinosa_1s"; - atlOffset=4.7683716e-007; - }; - class Item128 - { - dataType="Object"; - class PositionInfo - { - position[]={5675.186,5.7242312,1157.2854}; - angles[]={0.0050033992,2.6980438,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=535; - type="prunusSpinosa_1s"; - atlOffset=1.4305115e-006; - }; - class Item129 - { - dataType="Object"; - class PositionInfo - { - position[]={5690.0977,5.9430833,1179.2588}; - angles[]={0.0050033992,5.243114,0.024993783}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=536; - type="prunusSpinosa_1s"; - }; - class Item130 - { - dataType="Object"; - class PositionInfo - { - position[]={5695.3428,6.1118255,1170.3932}; - angles[]={0.0050033992,3.802088,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=537; - type="prunusSpinosa_1s"; - }; - class Item131 - { - dataType="Object"; - class PositionInfo - { - position[]={5689.187,6.0906763,1127.7985}; - angles[]={0,0.83436823,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=538; - type="prunusSpinosa_1s"; - }; - class Item132 - { - dataType="Object"; - class PositionInfo - { - position[]={5689.5933,6.0988011,1123.3427}; - angles[]={0,0.45093346,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=539; - type="prunusSpinosa_1s"; - }; - class Item133 - { - dataType="Object"; - class PositionInfo - { - position[]={5689.7456,6.1018481,1120.8923}; - angles[]={0,4.1890488,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=540; - type="prunusSpinosa_1s"; - }; - class Item134 - { - dataType="Object"; - class PositionInfo - { - position[]={5726.0034,6.8406315,1122.7255}; - angles[]={6.278182,0.45093346,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=541; - type="prunusSpinosa_1s"; - }; - class Item135 - { - dataType="Object"; - class PositionInfo - { - position[]={5725.9243,6.82727,1120.3694}; - angles[]={6.278182,4.1890488,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=542; - type="prunusSpinosa_1s"; - atlOffset=4.7683716e-007; - }; - class Item136 - { - dataType="Object"; - class PositionInfo - { - position[]={5694.8076,6.1830883,1111.3533}; - angles[]={0,0.83436823,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=543; - type="prunusSpinosa_1s"; - }; - class Item137 - { - dataType="Object"; - class PositionInfo - { - position[]={6492.813,9.8073626,1542.4175}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=544; - type="Betula_pendula_2s"; - }; - class Item138 - { - dataType="Object"; - class PositionInfo - { - position[]={6602.1621,8.3249617,1497.5031}; - angles[]={0.02999169,3.3092811,6.2631865}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=545; - type="Betula_pendula_2s"; - }; - class Item139 - { - dataType="Object"; - class PositionInfo - { - position[]={6586.1016,8.6122799,1494.0032}; - angles[]={0,1.1101785,6.2731905}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=546; - type="Betula_pendula_2s"; - atlOffset=4.7683716e-007; - }; - class Item140 - { - dataType="Object"; - class PositionInfo - { - position[]={6485.0308,8.5700645,1542.318}; - angles[]={6.278194,4.8603363,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=547; - type="Betula_pendula_2w"; - atlOffset=-4.7683716e-007; - }; - class Item141 - { - dataType="Object"; - class PositionInfo - { - position[]={6493.0034,8.2040148,1530.0295}; - angles[]={0,3.0306869,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=548; - type="Betula_pendula_2w"; - }; - class Item142 - { - dataType="Object"; - class PositionInfo - { - position[]={6594.5547,6.9276648,1500.6042}; - angles[]={0.039979152,1.1101785,6.2531939}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=549; - type="Betula_pendula_2w"; - }; - class Item143 - { - dataType="Object"; - class PositionInfo - { - position[]={6586.7876,8.6249447,1474.4502}; - angles[]={0.12435512,4.1408653,6.2232571}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=550; - type="Betula_pendula_2w"; - }; - class Item144 - { - dataType="Object"; - class PositionInfo - { - position[]={6586.374,7.1647348,1486.2677}; - angles[]={0,4.1408653,6.2731905}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=551; - type="Betula_pendula_2w"; - }; - class Item145 - { - dataType="Object"; - class PositionInfo - { - position[]={6491.374,7.7627335,1538.1761}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=552; - type="Betula_pendula_1s"; - atlOffset=0.00050592422; - }; - class Item146 - { - dataType="Object"; - class PositionInfo - { - position[]={6597.9673,6.4782734,1486.9591}; - angles[]={0,1.1101785,6.2731905}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=553; - type="Betula_pendula_1s"; - }; - class Item147 - { - dataType="Object"; - class PositionInfo - { - position[]={6598.0391,6.4777508,1482.6539}; - angles[]={0,1.793004,6.278194}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=554; - type="Betula_pendula_1s"; - }; - class Item148 - { - dataType="Object"; - class PositionInfo - { - position[]={6484.4351,12.427729,1535.2501}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=555; - type="Betula_pendula_3s"; - atlOffset=-4.7683716e-007; - }; - class Item149 - { - dataType="Object"; - class PositionInfo - { - position[]={6499.6396,11.98844,1532.6136}; - angles[]={0,3.724463,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=556; - type="Betula_pendula_3s"; - atlOffset=4.7683716e-007; - }; - class Item150 - { - dataType="Object"; - class PositionInfo - { - position[]={6595.8882,10.99931,1494.2593}; - angles[]={0.0099949092,1.1101785,6.268187}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=557; - type="Betula_pendula_3s"; - }; - class Item151 - { - dataType="Object"; - class PositionInfo - { - position[]={6591.6665,11.25432,1479.0721}; - angles[]={0.10461687,4.8346415,6.2631893}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=558; - type="Betula_pendula_3s"; - }; - class Item152 - { - dataType="Object"; - class PositionInfo - { - position[]={6495.5249,5.9080896,1534.6451}; - angles[]={0,2.2669613,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=559; - type="Betula_pendula_stem"; - }; - class Item153 - { - dataType="Object"; - class PositionInfo - { - position[]={6593.8823,4.8847022,1479.9501}; - angles[]={0.089757703,5.0289335,6.2631893}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=560; - type="Betula_pendula_stem"; - }; - class Item154 - { - dataType="Object"; - class PositionInfo - { - position[]={6583.8135,4.6018348,1486.5812}; - angles[]={0,4.3877463,6.2731905}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - }; - id=561; - type="Land_RM_boulder1"; - }; - class Item155 - { - dataType="Object"; - class PositionInfo - { - position[]={6493.4321,5.9536762,1549.0967}; - angles[]={6.228241,0.06374044,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - }; - id=562; - type="Land_RM_boulder4"; - }; - class Item156 - { - dataType="Object"; - class PositionInfo - { - position[]={6497.373,5.8154988,1539.856}; - angles[]={6.2332273,0,6.2731905}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=563; - type="Land_Cliff_stoneCluster_F"; - }; - class Item157 - { - dataType="Object"; - class PositionInfo - { - position[]={6587.9678,4.8225203,1492.437}; - angles[]={0,0,6.2731905}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=564; - type="Fallen_Branch3"; - }; - class Item158 - { - dataType="Object"; - class PositionInfo - { - position[]={6493.645,7.1177659,1535.364}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=565; - type="prunusSpinosa_1s"; - }; - class Item159 - { - dataType="Object"; - class PositionInfo - { - position[]={6491.0679,7.357718,1548.6993}; - angles[]={6.278182,1.6900297,6.2432079}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=566; - type="prunusSpinosa_1s"; - }; - class Item160 - { - dataType="Object"; - class PositionInfo - { - position[]={6599.7866,5.8412194,1494.5945}; - angles[]={0.014998405,1.4936135,6.268187}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=567; - type="prunusSpinosa_1s"; - }; - class Item161 - { - dataType="Object"; - class PositionInfo - { - position[]={6593.0659,5.9370503,1487.0887}; - angles[]={6.278194,1.0397955,6.278194}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=568; - type="prunusSpinosa_1s"; - }; - class Item162 - { - dataType="Object"; - class PositionInfo - { - position[]={6589.1714,5.9262185,1499.0717}; - angles[]={0.019996032,1.1101785,6.2581916}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=569; - type="prunusSpinosa_1s"; - }; - class Item163 - { - dataType="Object"; - class PositionInfo - { - position[]={6587.666,5.9773273,1497.2577}; - angles[]={0.0050033992,4.8482938,6.2631893}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=570; - type="prunusSpinosa_1s"; - }; - class Item164 - { - dataType="Object"; - class PositionInfo - { - position[]={6597.6064,5.921351,1480.5035}; - angles[]={0.014998405,1.1101785,6.278194}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=571; - type="prunusSpinosa_1s"; - }; - class Item165 - { - dataType="Object"; - class PositionInfo - { - position[]={6253.3809,5.7706604,1341.0455}; - angles[]={0,1.1101785,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=572; - type="Betula_pendula_2s"; - atlOffset=1.1920929e-007; - }; - class Item166 - { - dataType="Object"; - class PositionInfo - { - position[]={6251.2861,4.0670247,1328.1105}; - angles[]={0,4.1408653,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=573; - type="Betula_pendula_2w"; - atlOffset=-1.1920929e-007; - }; - class Item167 - { - dataType="Object"; - class PositionInfo - { - position[]={6238.9971,6.7703609,1336.3245}; - angles[]={6.278182,2.9194372,6.1934271}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=574; - type="Betula_pendula_2w"; - }; - class Item168 - { - dataType="Object"; - class PositionInfo - { - position[]={6250.4326,3.3536325,1352.4836}; - angles[]={0,1.1101785,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=575; - type="Betula_pendula_1s"; - atlOffset=1.1920929e-007; - }; - class Item169 - { - dataType="Object"; - class PositionInfo - { - position[]={6247.9971,1.8497752,1335.881}; - angles[]={0,4.3877463,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - }; - id=576; - type="Land_RM_boulder1"; - }; - class Item170 - { - dataType="Object"; - class PositionInfo - { - position[]={6260.0195,3.2135437,1326.5044}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=577; - type="Fallen_Branch3"; - }; - class Item171 - { - dataType="Object"; - class PositionInfo - { - position[]={6261.6157,4.7059708,1337.6422}; - angles[]={0,1.1101785,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=578; - type="prunusSpinosa_1s"; - }; - class Item172 - { - dataType="Object"; - class PositionInfo - { - position[]={6243.6821,4.1935544,1323.5297}; - angles[]={0,4.8482938,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=579; - type="prunusSpinosa_1s"; - }; - class Item173 - { - dataType="Object"; - class PositionInfo - { - position[]={6116.8667,5.3266335,1244.0605}; - angles[]={0.0049914722,1.1101785,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=580; - type="prunusSpinosa_1s"; - }; - class Item174 - { - dataType="Object"; - class PositionInfo - { - position[]={5361.8262,2.4073336,1281.6006}; - angles[]={0.0068620592,5.2293663,0.022926334}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - }; - id=581; - type="Land_Boat_05_wreck_F"; - atlOffset=1.1920929e-007; - }; - class Item175 - { - dataType="Object"; - class PositionInfo - { - position[]={6127.1289,5.3190737,1251.5725}; - angles[]={0.0049914722,1.1101785,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=582; - type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; - }; - class Item176 - { - dataType="Object"; - class PositionInfo - { - position[]={6128.1816,3.8273191,1268.5361}; - angles[]={0.0049914722,5.2003188,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=583; - type="Land_TrailerCistern_wreck_F"; - }; - class Item177 - { - dataType="Object"; - class PositionInfo - { - position[]={6104.4731,4.560534,1295.0909}; - angles[]={6.278194,0.29276603,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=584; - type="FallenTrunk_branches"; - atlOffset=2.3841858e-007; - }; - class Item178 - { - dataType="Object"; - class PositionInfo - { - position[]={6118.3413,4.0939045,1266.1377}; - angles[]={0,0.54167867,0.0049914722}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=585; - type="Fallen_Branch3"; - atlOffset=2.3841858e-007; - }; - class Item179 - { - dataType="Object"; - class PositionInfo - { - position[]={6102.0815,4.0721979,1270.9063}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=586; - type="Fallen_Branch3"; - atlOffset=2.3841858e-007; - }; - class Item180 - { - dataType="Object"; - class PositionInfo - { - position[]={5970.083,5.7342677,1276.1747}; - angles[]={0,3.201129,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=587; - type="Land_HayBale_01_stack_F"; - }; - class Item181 - { - dataType="Object"; - class PositionInfo - { - position[]={5921.3945,6.089016,1261.6558}; - angles[]={0,4.3988872,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=588; - type="Land_HayBale_01_stack_F"; - }; - class Item182 - { - dataType="Object"; - class PositionInfo - { - position[]={5968.0415,6.9169331,1443.4972}; - angles[]={0,3.9998949,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=589; - type="Land_HayBale_01_stack_F"; - }; - class Item183 - { - dataType="Object"; - class PositionInfo - { - position[]={5895.6938,5.4396238,1260.8673}; - angles[]={0,6.0700612,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=590; - type="Land_HayBale_01_F"; - }; - class Item184 - { - dataType="Object"; - class PositionInfo - { - position[]={5884.2642,5.7532425,1306.7317}; - angles[]={0,4.9930415,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=591; - type="Land_HayBale_01_F"; - }; - class Item185 - { - dataType="Object"; - class PositionInfo - { - position[]={5928.3135,5.3605499,1330.2917}; - angles[]={0,5.9657397,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=592; - type="Land_HayBale_01_F"; - }; - class Item186 - { - dataType="Object"; - class PositionInfo - { - position[]={5961.022,5.0761995,1330.8386}; - angles[]={0,0.18457329,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=593; - type="Land_HayBale_01_F"; - }; - class Item187 - { - dataType="Object"; - class PositionInfo - { - position[]={5900.2935,5.6659279,1357.0339}; - angles[]={0,6.0322862,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=594; - type="Land_HayBale_01_F"; - atlOffset=-4.7683716e-007; - }; - class Item188 - { - dataType="Object"; - class PositionInfo - { - position[]={5959.3599,5.4075766,1385.2151}; - angles[]={0,0.17967109,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=595; - type="Land_HayBale_01_F"; - atlOffset=-4.7683716e-007; - }; - class Item189 - { - dataType="Object"; - class PositionInfo - { - position[]={5925.0278,5.241713,1272.4016}; - angles[]={0,4.3614526,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=596; - type="Land_HayBale_01_packed_F"; - }; - class Item190 - { - dataType="Object"; - class PositionInfo - { - position[]={5897.7998,7.2505665,1408.8676}; - angles[]={6.2731905,2.0944242,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; - }; - id=597; - type="Land_CombineHarvester_01_wreck_F"; - }; - class Item191 - { - dataType="Object"; - class PositionInfo - { - position[]={5693.4932,6.7678099,1127.111}; - angles[]={0,4.8208265,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes - { - presence=0.75; - disableSimulation=1; + items=889; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6519.4399,8.4481602,1555.8439}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=403; + type="PiceaAbies_1f"; + atlOffset=4.7683716e-007; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6497.8711,9.9932804,1596.483}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=404; + type="PiceaAbies_1f"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6507.4653,8.7929363,1581.4377}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=411; + type="PiceaAbies_1f"; + atlOffset=-4.7683716e-007; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6080.8755,7.4005394,1302.3672}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=426; + type="PiceaAbies_1f"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6069.9272,7.4505396,1317.8994}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=427; + type="PiceaAbies_1f"; + atlOffset=2.3841858e-007; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6054.0254,7.5934682,1340.5857}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=428; + type="PiceaAbies_1f"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6072.9297,7.6009493,1347.0117}; + angles[]={6.278194,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=429; + type="PiceaAbies_1f"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6497.7661,9.3227882,1545.874}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=465; + type="PiceaAbies_1f"; + atlOffset=4.7683716e-007; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6492.8979,9.6517372,1555.0399}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=466; + type="PiceaAbies_1f"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6127.439,7.6793828,1206.2313}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=475; + type="PiceaAbies_1f"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={6111.5371,7.5236368,1228.9176}; + angles[]={0.0049914722,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=476; + type="PiceaAbies_1f"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={6130.4414,7.5338211,1235.3436}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=477; + type="PiceaAbies_1f"; + atlOffset=-2.3841858e-007; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={6504.1724,6.9987621,1587.2815}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=405; + type="PiceaAbies_1s"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={6514.3345,6.6343765,1565.9502}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=406; + type="PiceaAbies_1s"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={6094.1919,5.4339285,1288.95}; + angles[]={6.278194,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=430; + type="PiceaAbies_1s"; + atlOffset=2.3841858e-007; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={6072.8442,5.5432954,1327.0111}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=431; + type="PiceaAbies_1s"; + atlOffset=2.0742416e-005; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={6055.1353,5.7193165,1351.1097}; + angles[]={6.2731905,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=432; + type="PiceaAbies_1s"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={6094.0522,5.4519649,1300.7491}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=433; + type="PiceaAbies_1s"; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={6493.144,7.8698483,1560.4166}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=467; + type="PiceaAbies_1s"; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={6130.356,5.6933041,1215.343}; + angles[]={0.0049914722,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=478; + type="PiceaAbies_1s"; + atlOffset=2.0503998e-005; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={6506.7188,6.7272763,1576.3136}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=407; + type="PiceaAbies_1sb"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={6507.27,6.65312,1567.4497}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=408; + type="PiceaAbies_1sb"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={6509.1978,6.7693224,1588.4344}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=412; + type="PiceaAbies_1sb"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={6091.7246,5.3722153,1307.4587}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=434; + type="PiceaAbies_1sb"; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={6106.6563,5.3549213,1298.0886}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=435; + type="PiceaAbies_1sb"; + atlOffset=-2.3841858e-007; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={6076.603,5.5333319,1342.285}; + angles[]={6.278194,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=436; + type="PiceaAbies_1sb"; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={6509.3872,6.7798829,1541.7839}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=468; + type="PiceaAbies_1sb"; + atlOffset=4.7683716e-007; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={6134.1147,5.531837,1230.6169}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=479; + type="PiceaAbies_1sb"; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={6079.8027,11.007421,1334.8005}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=437; + type="piceaabies_2d"; + atlOffset=8.7499619e-005; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={6137.3145,11.097755,1223.1324}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=480; + type="piceaabies_2d"; + atlOffset=8.72612e-005; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={6510.0547,12.468521,1556.5861}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=409; + type="PiceaAbies_2s"; + atlOffset=4.7683716e-007; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={6066.0415,11.464144,1339.5465}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=438; + type="PiceaAbies_2s"; + atlOffset=4.7683716e-007; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={6081.6826,11.367998,1326.0676}; + angles[]={0,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=439; + type="PiceaAbies_2s"; + atlOffset=4.7683716e-007; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={6107.5859,11.31303,1309.3239}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=440; + type="PiceaAbies_2s"; + atlOffset=4.7683716e-007; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={6090.4692,11.274064,1289.2677}; + angles[]={0,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=441; + type="PiceaAbies_2s"; + atlOffset=-2.3841858e-007; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={6504.1523,12.581536,1561.4822}; + angles[]={6.278194,3.4584663,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=469; + type="PiceaAbies_2s"; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={6525.2485,12.207683,1543.649}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=470; + type="PiceaAbies_2s"; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={6123.5532,11.447019,1227.8784}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=481; + type="PiceaAbies_2s"; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={6089.2041,16.039104,1299.8258}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=442; + type="PiceaAbies_3f"; + atlOffset=-7.1525574e-007; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={6089.0869,14.611135,1315.9424}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=443; + type="PiceaAbies_3s"; + atlOffset=-7.1525574e-007; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={6506.7495,15.783298,1550.2676}; + angles[]={0.019999012,2.328511,6.2531939}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=471; + type="PiceaAbies_3s"; + atlOffset=-9.5367432e-007; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={6115.5459,4.484674,1256.7693}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=444; + type="PiceaAbies_b_1f"; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={6124.9785,4.5045109,1270.6188}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=445; + type="PiceaAbies_b_1fb"; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={6114.4067,4.4876051,1268.0366}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=446; + type="PiceaAbies_b_1fb"; + atlOffset=2.3841858e-007; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={6112.4116,5.2369361,1279.3427}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=447; + type="prunusSpinosa_1s"; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={6121.353,5.2469363,1278.0988}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=448; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={6057.0659,5.6457825,1367.4176}; + angles[]={6.2731848,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=449; + type="prunusSpinosa_1s"; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={5698.9858,6.2966528,1125.2963}; + angles[]={0,0.83436823,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=485; + type="prunusSpinosa_1s"; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={5670.77,5.5724959,1169.9681}; + angles[]={0.0050033992,5.6265488,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=532; + type="prunusSpinosa_1s"; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={5693.0767,6.0701876,1168.733}; + angles[]={0.0050033992,5.1727309,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=533; + type="prunusSpinosa_1s"; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={5672.8438,5.6818337,1157.5518}; + angles[]={0.0049914722,5.243114,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=534; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={5675.186,5.7242312,1157.2854}; + angles[]={0.0050033992,2.6980438,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=535; + type="prunusSpinosa_1s"; + atlOffset=1.4305115e-006; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={5690.0977,5.9430833,1179.2588}; + angles[]={0.0050033992,5.243114,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=536; + type="prunusSpinosa_1s"; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={5695.3428,6.1118255,1170.3932}; + angles[]={0.0050033992,3.802088,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=537; + type="prunusSpinosa_1s"; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={5689.187,6.0906763,1127.7985}; + angles[]={0,0.83436823,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=538; + type="prunusSpinosa_1s"; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={5689.5933,6.0988011,1123.3427}; + angles[]={0,0.45093346,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=539; + type="prunusSpinosa_1s"; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={5689.7456,6.1018481,1120.8923}; + angles[]={0,4.1890488,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=540; + type="prunusSpinosa_1s"; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={5726.0034,6.8406315,1122.7255}; + angles[]={6.278182,0.45093346,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=541; + type="prunusSpinosa_1s"; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={5725.9243,6.82727,1120.3694}; + angles[]={6.278182,4.1890488,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=542; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={5694.8076,6.1830883,1111.3533}; + angles[]={0,3.8776445,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=543; + type="prunusSpinosa_1s"; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={6493.645,7.1177659,1535.364}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=565; + type="prunusSpinosa_1s"; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={6491.0679,7.357718,1548.6993}; + angles[]={6.278182,1.6900297,6.2432079}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=566; + type="prunusSpinosa_1s"; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={6599.7866,5.8412194,1494.5945}; + angles[]={0.014998405,1.4936135,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=567; + type="prunusSpinosa_1s"; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={6593.0659,5.9370503,1487.0887}; + angles[]={6.278194,1.0397955,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=568; + type="prunusSpinosa_1s"; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={6589.1714,5.9262185,1499.0717}; + angles[]={0.019996032,1.1101785,6.2581916}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=569; + type="prunusSpinosa_1s"; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={6587.666,5.9773273,1497.2577}; + angles[]={0.0050033992,4.8482938,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=570; + type="prunusSpinosa_1s"; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={6597.6064,5.921351,1480.5035}; + angles[]={0.014998405,1.1101785,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=571; + type="prunusSpinosa_1s"; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={6261.6157,4.7059708,1337.6422}; + angles[]={0,1.1101785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=578; + type="prunusSpinosa_1s"; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={6243.6821,4.1935544,1323.5297}; + angles[]={0,4.8482938,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=579; + type="prunusSpinosa_1s"; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={6116.8667,5.3266335,1244.0605}; + angles[]={0.0049914722,1.1101785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=580; + type="prunusSpinosa_1s"; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={6127.1289,5.3190737,1251.5725}; + angles[]={0.0049914722,1.1101785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=582; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={6507.0972,7.7898664,1595.2401}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=413; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={6118.9121,6.448596,1285.9404}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=450; + type="prunusSpinosa_2s"; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={6108.3623,6.4562941,1262.4603}; + angles[]={0.0049914722,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=451; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={6060.2627,6.7497253,1356.2258}; + angles[]={6.278194,2.1468344,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=452; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={6052.8687,6.8651114,1368.1716}; + angles[]={6.278194,0,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=453; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={6074.3418,6.5877657,1335.834}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=454; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={6131.8535,6.6569376,1224.1659}; + angles[]={0.0099949092,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=482; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={6104.4731,4.560534,1295.0909}; + angles[]={6.278194,0.29276603,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=584; + type="FallenTrunk_branches"; + atlOffset=2.3841858e-007; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={6102.0815,4.0721979,1270.9063}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=586; + type="Fallen_Branch3"; + atlOffset=2.3841858e-007; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={6118.3413,4.0939045,1266.1377}; + angles[]={0,0.54167867,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=585; + type="Fallen_Branch3"; + atlOffset=2.3841858e-007; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={6260.0195,3.2135437,1326.5044}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=577; + type="Fallen_Branch3"; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={6587.9678,4.8225203,1492.437}; + angles[]={0,0,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=564; + type="Fallen_Branch3"; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={5685.9126,4.8540106,1122.7994}; + angles[]={6.278182,5.6239405,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=531; + type="Fallen_Branch3"; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={5679.0547,4.6324048,1160.1776}; + angles[]={0.0050033992,4.1329355,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=530; + type="Fallen_Branch3"; + atlOffset=9.5367432e-007; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={6093.1108,15.002101,1278.6449}; + angles[]={0,4.825634,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=423; + type="FagusSylvatica_2fb"; + atlOffset=-2.3841858e-007; + }; + class Item86 + { + dataType="Object"; + class PositionInfo + { + position[]={6103.9067,12.300075,1280.0872}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=422; + type="FagusSylvatica_2d"; + }; + class Item87 + { + dataType="Object"; + class PositionInfo + { + position[]={6123.4175,6.4273233,1235.5604}; + angles[]={0,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=474; + type="Corylus_heterophylla_2"; + }; + class Item88 + { + dataType="Object"; + class PositionInfo + { + position[]={6065.9058,6.5263786,1347.2285}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=421; + type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; + }; + class Item89 + { + dataType="Object"; + class PositionInfo + { + position[]={6124.7959,5.0432024,1281.1376}; + angles[]={0,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=420; + type="Corylus_heterophylla_1"; + atlOffset=1.8119812e-005; + }; + class Item90 + { + dataType="Object"; + class PositionInfo + { + position[]={6097.6084,5.301692,1276.7463}; + angles[]={0,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=416; + type="Betula_pendula_stump"; + atlOffset=-2.3841858e-007; + }; + class Item91 + { + dataType="Object"; + class PositionInfo + { + position[]={5682.3955,10.946621,1166.303}; + angles[]={0.0050033992,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=517; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item92 + { + dataType="Object"; + class PositionInfo + { + position[]={5663.7681,8.0826073,1169.3019}; + angles[]={0,2.2720971,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=486; + type="Betula_pendula_2s"; + }; + class Item93 + { + dataType="Object"; + class PositionInfo + { + position[]={5678.7661,8.4098263,1157.7584}; + angles[]={0.0050033992,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=487; + type="Betula_pendula_2s"; + atlOffset=9.5367432e-007; + }; + class Item94 + { + dataType="Object"; + class PositionInfo + { + position[]={5717.5894,9.2603188,1156.9528}; + angles[]={0.0050033992,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=488; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item95 + { + dataType="Object"; + class PositionInfo + { + position[]={5699.2739,8.6452942,1195.348}; + angles[]={0.010000871,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=489; + type="Betula_pendula_2s"; + atlOffset=9.5367432e-007; + }; + class Item96 + { + dataType="Object"; + class PositionInfo + { + position[]={5687.7202,8.2751198,1209.2581}; + angles[]={0.010000871,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=490; + type="Betula_pendula_2s"; + atlOffset=9.5367432e-007; + }; + class Item97 + { + dataType="Object"; + class PositionInfo + { + position[]={5693.6152,8.7855997,1140.7064}; + angles[]={0,2.6500359,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=491; + type="Betula_pendula_2s"; + }; + class Item98 + { + dataType="Object"; + class PositionInfo + { + position[]={5690.5483,8.7042618,1110.3044}; + angles[]={0,1.2272555,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=492; + type="Betula_pendula_2s"; + }; + class Item99 + { + dataType="Object"; + class PositionInfo + { + position[]={5723.0786,9.3536892,1113.7644}; + angles[]={6.278182,5.2807817,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=493; + type="Betula_pendula_2s"; + atlOffset=-4.7683716e-007; + }; + class Item100 + { + dataType="Object"; + class PositionInfo + { + position[]={5713.562,9.208703,1126.8336}; + angles[]={6.278182,5.2807817,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=494; + type="Betula_pendula_2s"; + }; + class Item101 + { + dataType="Object"; + class PositionInfo + { + position[]={5699.6069,8.8955326,1114.0197}; + angles[]={6.278182,5.2807817,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=495; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item102 + { + dataType="Object"; + class PositionInfo + { + position[]={5689.291,8.6891155,1114.8049}; + angles[]={0,5.2807817,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=496; + type="Betula_pendula_2s"; + }; + class Item103 + { + dataType="Object"; + class PositionInfo + { + position[]={5711.9844,9.1522942,1115.8623}; + angles[]={6.278182,5.2807817,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=497; + type="Betula_pendula_2s"; + }; + class Item104 + { + dataType="Object"; + class PositionInfo + { + position[]={5691.0317,8.7303181,1118.246}; + angles[]={6.278182,2.6500359,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=498; + type="Betula_pendula_2s"; + }; + class Item105 + { + dataType="Object"; + class PositionInfo + { + position[]={6492.813,9.8073626,1542.4175}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=544; + type="Betula_pendula_2s"; + }; + class Item106 + { + dataType="Object"; + class PositionInfo + { + position[]={6602.1621,8.3249617,1497.5031}; + angles[]={0.02999169,3.3092811,6.2631865}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=545; + type="Betula_pendula_2s"; + }; + class Item107 + { + dataType="Object"; + class PositionInfo + { + position[]={6586.1016,8.6122799,1494.0032}; + angles[]={0,1.1101785,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=546; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item108 + { + dataType="Object"; + class PositionInfo + { + position[]={6253.3809,5.7706604,1341.0455}; + angles[]={0,1.1101785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=572; + type="Betula_pendula_2s"; + atlOffset=1.1920929e-007; + }; + class Item109 + { + dataType="Object"; + class PositionInfo + { + position[]={6109.1558,6.4184752,1291.4891}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=414; + type="Betula_pendula_2w"; + }; + class Item110 + { + dataType="Object"; + class PositionInfo + { + position[]={5667.4595,6.7472525,1163.1635}; + angles[]={0.0049914722,5.243114,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=499; + type="Betula_pendula_2w"; + }; + class Item111 + { + dataType="Object"; + class PositionInfo + { + position[]={5702.314,7.4524255,1170.4658}; + angles[]={0.0050033992,1.9906152,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=500; + type="Betula_pendula_2w"; + }; + class Item112 + { + dataType="Object"; + class PositionInfo + { + position[]={5685.0093,7.133707,1154.6302}; + angles[]={0,1.9906152,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=501; + type="Betula_pendula_2w"; + }; + class Item113 + { + dataType="Object"; + class PositionInfo + { + position[]={5691.4717,7.1239352,1184.2665}; + angles[]={0.0050033992,5.6162271,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=502; + type="Betula_pendula_2w"; + }; + class Item114 + { + dataType="Object"; + class PositionInfo + { + position[]={5683.292,6.8702431,1194.1064}; + angles[]={0.0050033992,0.40582043,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=503; + type="Betula_pendula_2w"; + }; + class Item115 + { + dataType="Object"; + class PositionInfo + { + position[]={5694.8516,7.0554175,1203.0089}; + angles[]={0.010000871,6.2639766,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=504; + type="Betula_pendula_2w"; + }; + class Item116 + { + dataType="Object"; + class PositionInfo + { + position[]={5679.6465,6.7359767,1200.7322}; + angles[]={0.0050033992,6.2639766,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=505; + type="Betula_pendula_2w"; + }; + class Item117 + { + dataType="Object"; + class PositionInfo + { + position[]={5707.6104,7.6606822,1140.4374}; + angles[]={0,0.45093346,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=506; + type="Betula_pendula_2w"; + }; + class Item118 + { + dataType="Object"; + class PositionInfo + { + position[]={5719.3281,7.8502364,1112.3679}; + angles[]={6.278194,2.4055202,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=507; + type="Betula_pendula_2w"; + }; + class Item119 + { + dataType="Object"; + class PositionInfo + { + position[]={5709.6489,7.6612725,1111.9637}; + angles[]={6.278182,0.44348812,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=508; + type="Betula_pendula_2w"; + }; + class Item120 + { + dataType="Object"; + class PositionInfo + { + position[]={5722.4448,7.9321713,1116.96}; + angles[]={6.278182,5.0357013,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=509; + type="Betula_pendula_2w"; + }; + class Item121 + { + dataType="Object"; + class PositionInfo + { + position[]={5704.042,7.549315,1111.0825}; + angles[]={0,2.3751225,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=510; + type="Betula_pendula_2w"; + }; + class Item122 + { + dataType="Object"; + class PositionInfo + { + position[]={5701.0508,7.5194907,1120.7791}; + angles[]={0,5.0906072,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=511; + type="Betula_pendula_2w"; + }; + class Item123 + { + dataType="Object"; + class PositionInfo + { + position[]={6485.0308,8.5700645,1542.318}; + angles[]={6.278194,4.8603363,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=547; + type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; + }; + class Item124 + { + dataType="Object"; + class PositionInfo + { + position[]={6493.0034,8.2040148,1530.0295}; + angles[]={0,3.0306869,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=548; + type="Betula_pendula_2w"; + }; + class Item125 + { + dataType="Object"; + class PositionInfo + { + position[]={6594.5547,6.9276648,1500.6042}; + angles[]={0.039979152,1.1101785,6.2531939}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=549; + type="Betula_pendula_2w"; + }; + class Item126 + { + dataType="Object"; + class PositionInfo + { + position[]={6586.7876,8.6249447,1474.4502}; + angles[]={0.12435512,4.1408653,6.2232571}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=550; + type="Betula_pendula_2w"; + }; + class Item127 + { + dataType="Object"; + class PositionInfo + { + position[]={6586.374,7.1647348,1486.2677}; + angles[]={0,4.1408653,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=551; + type="Betula_pendula_2w"; + }; + class Item128 + { + dataType="Object"; + class PositionInfo + { + position[]={6251.2861,4.0670247,1328.1105}; + angles[]={0,4.1408653,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=573; + type="Betula_pendula_2w"; + atlOffset=-1.1920929e-007; + }; + class Item129 + { + dataType="Object"; + class PositionInfo + { + position[]={6238.9971,6.7703609,1336.3245}; + angles[]={6.278182,2.9194372,6.1934271}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=574; + type="Betula_pendula_2w"; + }; + class Item130 + { + dataType="Object"; + class PositionInfo + { + position[]={5694.0762,7.3799987,1130.0994}; + angles[]={0,5.0906072,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=602; + type="Betula_pendula_2w"; + }; + class Item131 + { + dataType="Object"; + class PositionInfo + { + position[]={5722.1411,7.9612975,1132.1006}; + angles[]={0,5.0906072,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=603; + type="Betula_pendula_2w"; + }; + class Item132 + { + dataType="Object"; + class PositionInfo + { + position[]={5678.1631,6.2957659,1171.5443}; + angles[]={0.010000871,5.243114,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=512; + type="Betula_pendula_1s"; + atlOffset=9.5367432e-007; + }; + class Item133 + { + dataType="Object"; + class PositionInfo + { + position[]={5681.7261,6.3626595,1173.9618}; + angles[]={0.0050033992,5.9259396,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=513; + type="Betula_pendula_1s"; + }; + class Item134 + { + dataType="Object"; + class PositionInfo + { + position[]={5681.2349,6.1044512,1208.8737}; + angles[]={0.0050033992,2.4913504,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=514; + type="Betula_pendula_1s"; + atlOffset=1.4305115e-006; + }; + class Item135 + { + dataType="Object"; + class PositionInfo + { + position[]={5696.998,6.8379087,1126.5359}; + angles[]={0,0.45093346,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=515; + type="Betula_pendula_1s"; + atlOffset=1.4305115e-006; + }; + class Item136 + { + dataType="Object"; + class PositionInfo + { + position[]={5707.0669,7.0492849,1126.6937}; + angles[]={0,2.5290184,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=516; + type="Betula_pendula_1s"; + atlOffset=4.7683716e-007; + }; + class Item137 + { + dataType="Object"; + class PositionInfo + { + position[]={6491.374,7.7627335,1538.1761}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=552; + type="Betula_pendula_1s"; + atlOffset=0.00050592422; + }; + class Item138 + { + dataType="Object"; + class PositionInfo + { + position[]={6597.9673,6.4782734,1486.9591}; + angles[]={0,1.1101785,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=553; + type="Betula_pendula_1s"; + }; + class Item139 + { + dataType="Object"; + class PositionInfo + { + position[]={6598.0391,6.4777508,1482.6539}; + angles[]={0,1.793004,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=554; + type="Betula_pendula_1s"; + }; + class Item140 + { + dataType="Object"; + class PositionInfo + { + position[]={6250.4326,3.3536325,1352.4836}; + angles[]={0,1.1101785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=575; + type="Betula_pendula_1s"; + atlOffset=1.1920929e-007; + }; + class Item141 + { + dataType="Object"; + class PositionInfo + { + position[]={5693.4932,6.7678099,1127.111}; + angles[]={0,4.8208265,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=601; + type="Betula_pendula_1s"; + }; + class Item142 + { + dataType="Object"; + class PositionInfo + { + position[]={6098.6055,11.770251,1298.5437}; + angles[]={0,5.413043,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=415; + type="Betula_pendula_3f"; + atlOffset=2.3841858e-007; + }; + class Item143 + { + dataType="Object"; + class PositionInfo + { + position[]={5695.1206,11.26824,1158.7991}; + angles[]={0,4.5591898,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=518; + type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; + }; + class Item144 + { + dataType="Object"; + class PositionInfo + { + position[]={5709.3916,11.557269,1164.1576}; + angles[]={0.0050033992,0.33325216,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=519; + type="Betula_pendula_3s"; + }; + class Item145 + { + dataType="Object"; + class PositionInfo + { + position[]={5702.3696,11.277231,1186.4469}; + angles[]={0.0050033992,2.6623406,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=520; + type="Betula_pendula_3s"; + }; + class Item146 + { + dataType="Object"; + class PositionInfo + { + position[]={5677.1187,10.695169,1187.7429}; + angles[]={0.010000871,0.23225401,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=521; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item147 + { + dataType="Object"; + class PositionInfo + { + position[]={5686.625,10.834202,1198.3296}; + angles[]={0.0050033992,0.29058021,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=522; + type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; + }; + class Item148 + { + dataType="Object"; + class PositionInfo + { + position[]={5716.3555,11.724247,1113.3824}; + angles[]={6.278182,2.8163829,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=523; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item149 + { + dataType="Object"; + class PositionInfo + { + position[]={5686.0908,11.122042,1114.7244}; + angles[]={0,2.7000086,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=524; + type="Betula_pendula_3s"; + }; + class Item150 + { + dataType="Object"; + class PositionInfo + { + position[]={5694.8838,11.287901,1111.4761}; + angles[]={0,0.26992178,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=525; + type="Betula_pendula_3s"; + }; + class Item151 + { + dataType="Object"; + class PositionInfo + { + position[]={5723.8682,11.907589,1125.5812}; + angles[]={0,0.32824802,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=526; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item152 + { + dataType="Object"; + class PositionInfo + { + position[]={6484.4351,12.427729,1535.2501}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=555; + type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; + }; + class Item153 + { + dataType="Object"; + class PositionInfo + { + position[]={6499.6396,11.98844,1532.6136}; + angles[]={0,3.724463,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=556; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item154 + { + dataType="Object"; + class PositionInfo + { + position[]={6595.8882,10.99931,1494.2593}; + angles[]={0.0099949092,1.1101785,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=557; + type="Betula_pendula_3s"; + }; + class Item155 + { + dataType="Object"; + class PositionInfo + { + position[]={6591.6665,11.25432,1479.0721}; + angles[]={0.10461687,4.8346415,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=558; + type="Betula_pendula_3s"; + }; + class Item156 + { + dataType="Object"; + class PositionInfo + { + position[]={5688.6753,4.8228807,1172.3713}; + angles[]={0.0050033992,2.8786836,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=527; + type="Betula_pendula_stem"; + }; + class Item157 + { + dataType="Object"; + class PositionInfo + { + position[]={5703.7603,5.2359729,1155.4175}; + angles[]={0.0050033992,1.1843532,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=528; + type="Betula_pendula_stem"; + }; + class Item158 + { + dataType="Object"; + class PositionInfo + { + position[]={6495.5249,5.9080896,1534.6451}; + angles[]={0,2.2669613,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=559; + type="Betula_pendula_stem"; + }; + class Item159 + { + dataType="Object"; + class PositionInfo + { + position[]={6593.8823,4.8847022,1479.9501}; + angles[]={0.089757703,5.0289335,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=560; + type="Betula_pendula_stem"; + }; + class Item160 + { + dataType="Object"; + class PositionInfo + { + position[]={6328.9014,6.558291,1128.5367}; + angles[]={0,0.71551472,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=616; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item161 + { + dataType="Object"; + class PositionInfo + { + position[]={6351.6563,5.3212972,1106.1523}; + angles[]={0,6.1153145,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=617; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item162 + { + dataType="Object"; + class PositionInfo + { + position[]={6385.5547,5.2463112,1140.1576}; + angles[]={0,2.9915068,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=618; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item163 + { + dataType="Object"; + class PositionInfo + { + position[]={6406,4.965322,1166}; + angles[]={0,5.1231923,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=619; + type="prunusSpinosa_1s"; + }; + class Item164 + { + dataType="Object"; + class PositionInfo + { + position[]={6377,5.3693833,1119}; + angles[]={0,5.946651,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=620; + type="prunusSpinosa_1s"; + }; + class Item165 + { + dataType="Object"; + class PositionInfo + { + position[]={6357.9966,5.4005527,1123.1609}; + angles[]={0,0.6507929,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=621; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item166 + { + dataType="Object"; + class PositionInfo + { + position[]={6366,5.8672509,1145}; + angles[]={0,2.3283641,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=622; + type="prunusSpinosa_1s"; + }; + class Item167 + { + dataType="Object"; + class PositionInfo + { + position[]={6421.9712,4.7743115,1159.4143}; + angles[]={0,2.3171484,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=623; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item168 + { + dataType="Object"; + class PositionInfo + { + position[]={6469.7119,3.8227396,1185.9561}; + angles[]={0,0.17114919,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=624; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item169 + { + dataType="Object"; + class PositionInfo + { + position[]={6460,3.9400272,1168}; + angles[]={0,2.2213333,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=625; + type="prunusSpinosa_1s"; + }; + class Item170 + { + dataType="Object"; + class PositionInfo + { + position[]={6423,4.8828239,1141}; + angles[]={0,0.29096314,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=626; + type="prunusSpinosa_1s"; + }; + class Item171 + { + dataType="Object"; + class PositionInfo + { + position[]={6323.1709,4.9536614,1101.9934}; + angles[]={0,0.36117312,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=627; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item172 + { + dataType="Object"; + class PositionInfo + { + position[]={6336.7739,5.0613785,1091.3927}; + angles[]={0,4.2496228,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=628; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item173 + { + dataType="Object"; + class PositionInfo + { + position[]={6266.4282,5.5505366,1086.9629}; + angles[]={0,2.0535452,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=629; + type="prunusSpinosa_1s"; + }; + class Item174 + { + dataType="Object"; + class PositionInfo + { + position[]={6261.3643,4.9052334,1067.1926}; + angles[]={0,4.5838985,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=630; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item175 + { + dataType="Object"; + class PositionInfo + { + position[]={6248.9399,4.7838979,1055.7018}; + angles[]={0,5.351398,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=631; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item176 + { + dataType="Object"; + class PositionInfo + { + position[]={6208.8369,3.9634137,1049.0334}; + angles[]={0,0.040601168,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=632; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item177 + { + dataType="Object"; + class PositionInfo + { + position[]={6197.6567,3.7492242,1027.3823}; + angles[]={0,1.0545597,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=633; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item178 + { + dataType="Object"; + class PositionInfo + { + position[]={6164.1338,3.7381577,1010.6259}; + angles[]={0,2.1176484,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=634; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item179 + { + dataType="Object"; + class PositionInfo + { + position[]={6200.1416,3.757535,1035.9583}; + angles[]={0,1.0269048,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=635; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item180 + { + dataType="Object"; + class PositionInfo + { + position[]={6223.3164,4.2698932,1055.7776}; + angles[]={0,2.7821789,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=636; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item181 + { + dataType="Object"; + class PositionInfo + { + position[]={6208.5762,3.7539053,1015.4864}; + angles[]={0,3.4114938,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=637; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item182 + { + dataType="Object"; + class PositionInfo + { + position[]={6250.6665,4.4959569,1037.8993}; + angles[]={0,3.1588452,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=638; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item183 + { + dataType="Object"; + class PositionInfo + { + position[]={6275.7388,4.9714279,1060.2239}; + angles[]={0,3.5995662,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=639; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item184 + { + dataType="Object"; + class PositionInfo + { + position[]={6246.2642,4.5372677,1044.4718}; + angles[]={0,2.9380376,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=640; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item185 + { + dataType="Object"; + class PositionInfo + { + position[]={6208.5854,3.7658997,1030.1326}; + angles[]={0,0.6556924,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=641; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item186 + { + dataType="Object"; + class PositionInfo + { + position[]={6168.8013,3.7307987,1026.12}; + angles[]={0,1.1852261,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=642; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item187 + { + dataType="Object"; + class PositionInfo + { + position[]={6149.8101,3.7861919,1015.3242}; + angles[]={0,1.3144376,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=643; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item188 + { + dataType="Object"; + class PositionInfo + { + position[]={6140.5137,3.958075,986.55927}; + angles[]={0,0.54257101,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=644; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item189 + { + dataType="Object"; + class PositionInfo + { + position[]={6111.9839,4.6314621,972.1972}; + angles[]={0,2.9833527,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=645; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item190 + { + dataType="Object"; + class PositionInfo + { + position[]={6101.5313,4.5571556,961.60687}; + angles[]={0,2.8525696,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=646; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item191 + { + dataType="Object"; + class PositionInfo + { + position[]={6112.0571,4.6953368,980.62781}; + angles[]={0,3.3424125,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=647; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item192 + { + dataType="Object"; + class PositionInfo + { + position[]={6169.6597,3.7471299,993.32025}; + angles[]={0,4.2915583,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=648; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item193 + { + dataType="Object"; + class PositionInfo + { + position[]={6170.2544,3.7386479,1004.7095}; + angles[]={0,4.1148572,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=649; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item194 + { + dataType="Object"; + class PositionInfo + { + position[]={6111.0498,4.7081318,990.7959}; + angles[]={0,1.6905845,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=650; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item195 + { + dataType="Object"; + class PositionInfo + { + position[]={6089.3779,4.2398376,990.83783}; + angles[]={0,1.6814793,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=651; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item196 + { + dataType="Object"; + class PositionInfo + { + position[]={5889.0879,6.0286355,870.42078}; + angles[]={0,3.7681389,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=652; + type="prunusSpinosa_1s"; + }; + class Item197 + { + dataType="Object"; + class PositionInfo + { + position[]={5915.7974,5.7139335,860.11835}; + angles[]={0,0.043873742,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=653; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item198 + { + dataType="Object"; + class PositionInfo + { + position[]={5928.6953,5.7535958,854.81152}; + angles[]={0,3.5128272,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=654; + type="prunusSpinosa_1s"; + }; + class Item199 + { + dataType="Object"; + class PositionInfo + { + position[]={5932.2915,5.7058091,881.25079}; + angles[]={0,2.4339778,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=655; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item200 + { + dataType="Object"; + class PositionInfo + { + position[]={5948.376,5.6729846,902.59644}; + angles[]={0,0.64128655,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=656; + type="prunusSpinosa_1s"; + }; + class Item201 + { + dataType="Object"; + class PositionInfo + { + position[]={5975.0005,5.3159037,914.54797}; + angles[]={0,4.5362782,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=657; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item202 + { + dataType="Object"; + class PositionInfo + { + position[]={5973.7993,5.5402732,884.60309}; + angles[]={0,1.488655,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=658; + type="prunusSpinosa_1s"; + }; + class Item203 + { + dataType="Object"; + class PositionInfo + { + position[]={6004.8164,5.2599368,903.16388}; + angles[]={0,3.6973379,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=659; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item204 + { + dataType="Object"; + class PositionInfo + { + position[]={6019.8276,7.0873075,920.06958}; + angles[]={0,2.8842039,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=660; + type="prunusSpinosa_1s"; + }; + class Item205 + { + dataType="Object"; + class PositionInfo + { + position[]={6018,5.0978465,952}; + angles[]={0,1.7047716,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=661; + type="prunusSpinosa_1s"; + }; + class Item206 + { + dataType="Object"; + class PositionInfo + { + position[]={6052.0444,4.9947886,958.96429}; + angles[]={0,0.35111436,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=662; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item207 + { + dataType="Object"; + class PositionInfo + { + position[]={6073.6909,5.4491801,944.78546}; + angles[]={0,2.7792399,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=663; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item208 + { + dataType="Object"; + class PositionInfo + { + position[]={6084.0703,6.145637,957.72192}; + angles[]={0,2.0186009,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=664; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item209 + { + dataType="Object"; + class PositionInfo + { + position[]={6064,4.7588248,971}; + angles[]={0,5.2071366,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=665; + type="prunusSpinosa_1s"; + }; + class Item210 + { + dataType="Object"; + class PositionInfo + { + position[]={6035.873,5.3564715,921.96619}; + angles[]={0,3.3114951,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=666; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item211 + { + dataType="Object"; + class PositionInfo + { + position[]={6054.2007,5.1058874,933.6745}; + angles[]={0,6.0878496,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=667; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item212 + { + dataType="Object"; + class PositionInfo + { + position[]={6334.7456,6.3855743,1117.8845}; + angles[]={0,4.5431657,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=668; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item213 + { + dataType="Object"; + class PositionInfo + { + position[]={6358.6304,6.5893049,1114.8728}; + angles[]={6.2806721,4.7390127,0.0031644255}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=669; + type="prunusSpinosa_2s"; + }; + class Item214 + { + dataType="Object"; + class PositionInfo + { + position[]={6357.6479,6.5540304,1106.4127}; + angles[]={0,4.9390326,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=670; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item215 + { + dataType="Object"; + class PositionInfo + { + position[]={6379.3101,6.583581,1116.9834}; + angles[]={0,4.6054025,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=671; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item216 + { + dataType="Object"; + class PositionInfo + { + position[]={6373.8193,6.4984136,1133.012}; + angles[]={0,3.8375454,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=672; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item217 + { + dataType="Object"; + class PositionInfo + { + position[]={6387.314,7.1893425,1158.7373}; + angles[]={0,3.3814831,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=673; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item218 + { + dataType="Object"; + class PositionInfo + { + position[]={6400.165,6.3294053,1147.0776}; + angles[]={0,3.4524276,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=674; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item219 + { + dataType="Object"; + class PositionInfo + { + position[]={6396.229,6.4256773,1129.0748}; + angles[]={0,5.252738,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=675; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item220 + { + dataType="Object"; + class PositionInfo + { + position[]={6430.4937,5.69978,1156.1738}; + angles[]={0,6.0191031,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=676; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item221 + { + dataType="Object"; + class PositionInfo + { + position[]={6428.9609,5.4943094,1176.8656}; + angles[]={6.2588048,4.3708301,6.2732205}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=677; + type="prunusSpinosa_2s"; + }; + class Item222 + { + dataType="Object"; + class PositionInfo + { + position[]={6456.1836,5.1149683,1187.1993}; + angles[]={0,2.5264308,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=678; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item223 + { + dataType="Object"; + class PositionInfo + { + position[]={6444.9165,5.4383173,1151.3896}; + angles[]={0,0.0086393589,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=679; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item224 + { + dataType="Object"; + class PositionInfo + { + position[]={6440.2285,5.2238884,1183.186}; + angles[]={0,5.3822308,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=680; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item225 + { + dataType="Object"; + class PositionInfo + { + position[]={6437.4438,5.4554377,1170.3737}; + angles[]={0,5.347549,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=681; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item226 + { + dataType="Object"; + class PositionInfo + { + position[]={6244.6309,6.0953531,1074.4873}; + angles[]={0,4.4156189,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=682; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item227 + { + dataType="Object"; + class PositionInfo + { + position[]={6267.2266,6.1666975,1048.2577}; + angles[]={0,6.054287,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=683; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item228 + { + dataType="Object"; + class PositionInfo + { + position[]={6270.3086,6.1659703,1069.7919}; + angles[]={-0,3.5887902,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=684; + type="prunusSpinosa_2s"; + }; + class Item229 + { + dataType="Object"; + class PositionInfo + { + position[]={6229.7388,5.4262977,1040.1265}; + angles[]={0,1.8996198,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=685; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item230 + { + dataType="Object"; + class PositionInfo + { + position[]={6216.7051,5.2523937,1044.7881}; + angles[]={0,1.8924105,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=686; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item231 + { + dataType="Object"; + class PositionInfo + { + position[]={6222.6904,5.1995516,1026.0602}; + angles[]={0,3.8085811,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=687; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item232 + { + dataType="Object"; + class PositionInfo + { + position[]={6178.0366,4.9391527,1015.9271}; + angles[]={0,5.4795775,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=688; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item233 + { + dataType="Object"; + class PositionInfo + { + position[]={6196.0083,4.964479,1044.7599}; + angles[]={0,1.0730448,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=689; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item234 + { + dataType="Object"; + class PositionInfo + { + position[]={6192.0576,4.9419079,1006.9501}; + angles[]={0,3.0139532,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=690; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item235 + { + dataType="Object"; + class PositionInfo + { + position[]={6179.4146,4.9407139,1032.6848}; + angles[]={0,5.8276544,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=691; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item236 + { + dataType="Object"; + class PositionInfo + { + position[]={6153.9287,5.0129585,1007.888}; + angles[]={0.0032572437,2.2580619,6.2776074}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=692; + type="prunusSpinosa_2s"; + }; + class Item237 + { + dataType="Object"; + class PositionInfo + { + position[]={6148.0713,5.0831199,989.62683}; + angles[]={0,3.061486,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=693; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item238 + { + dataType="Object"; + class PositionInfo + { + position[]={6126.3613,5.3546314,999.55988}; + angles[]={0,3.821038,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=694; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item239 + { + dataType="Object"; + class PositionInfo + { + position[]={6143.792,5.0722966,1004.7731}; + angles[]={0,5.4639926,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=695; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item240 + { + dataType="Object"; + class PositionInfo + { + position[]={6124.2061,5.7449808,972.85999}; + angles[]={0,5.4250588,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=696; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item241 + { + dataType="Object"; + class PositionInfo + { + position[]={6127.4106,5.5905962,986.99298}; + angles[]={0,5.0022526,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=697; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item242 + { + dataType="Object"; + class PositionInfo + { + position[]={6089.9033,5.7126503,978.27069}; + angles[]={0,4.8604074,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=698; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item243 + { + dataType="Object"; + class PositionInfo + { + position[]={6061.5933,6.1032653,957.198}; + angles[]={0,4.7908964,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=699; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item244 + { + dataType="Object"; + class PositionInfo + { + position[]={6069.291,6.4212799,951.23621}; + angles[]={0,6.1040254,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=700; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item245 + { + dataType="Object"; + class PositionInfo + { + position[]={6068.7964,6.2714806,934.32416}; + angles[]={0,0.50831646,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=701; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item246 + { + dataType="Object"; + class PositionInfo + { + position[]={6059.2256,6.1983166,939.99518}; + angles[]={0,1.7831613,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=702; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item247 + { + dataType="Object"; + class PositionInfo + { + position[]={6047.8555,6.1697741,950.31934}; + angles[]={0,5.4216113,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=703; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item248 + { + dataType="Object"; + class PositionInfo + { + position[]={6053.5488,6.031805,964.81903}; + angles[]={0.047727622,1.0452529,6.1921501}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=704; + type="prunusSpinosa_2s"; + }; + class Item249 + { + dataType="Object"; + class PositionInfo + { + position[]={6024.3423,6.3030148,946.17377}; + angles[]={0.0021001773,0.86566937,6.2783518}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=705; + type="prunusSpinosa_2s"; + }; + class Item250 + { + dataType="Object"; + class PositionInfo + { + position[]={6018.8032,7.4729986,932.0639}; + angles[]={0,1.1271067,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=706; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item251 + { + dataType="Object"; + class PositionInfo + { + position[]={6035.7861,6.5883188,934.55463}; + angles[]={0,5.1009536,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=707; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item252 + { + dataType="Object"; + class PositionInfo + { + position[]={6035.103,6.1796494,949.28387}; + angles[]={0,2.965235,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=708; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item253 + { + dataType="Object"; + class PositionInfo + { + position[]={5994.3745,6.9563684,932.26007}; + angles[]={0,4.5653505,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=709; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item254 + { + dataType="Object"; + class PositionInfo + { + position[]={5983.5791,6.542284,918.85352}; + angles[]={0,3.8292751,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=710; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item255 + { + dataType="Object"; + class PositionInfo + { + position[]={5995.9355,6.7589598,917.9826}; + angles[]={0,2.0059528,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=711; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item256 + { + dataType="Object"; + class PositionInfo + { + position[]={5960.3018,6.7969284,890.40936}; + angles[]={0,1.0190485,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=712; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item257 + { + dataType="Object"; + class PositionInfo + { + position[]={5918.3638,6.9092531,883.03748}; + angles[]={0,3.4063601,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=713; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item258 + { + dataType="Object"; + class PositionInfo + { + position[]={5896.6504,7.0999041,859.54108}; + angles[]={0,1.8254426,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=714; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item259 + { + dataType="Object"; + class PositionInfo + { + position[]={5907.543,7.1453829,834.9184}; + angles[]={0,5.6500902,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=715; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item260 + { + dataType="Object"; + class PositionInfo + { + position[]={5910.2266,6.9121294,863.93604}; + angles[]={0,3.085299,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=716; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item261 + { + dataType="Object"; + class PositionInfo + { + position[]={5941.3633,7.1127129,864.63715}; + angles[]={0,3.6515553,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=717; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item262 + { + dataType="Object"; + class PositionInfo + { + position[]={5958.4209,6.964901,880.22845}; + angles[]={0,0.4976379,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=718; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item263 + { + dataType="Object"; + class PositionInfo + { + position[]={5935.8833,5.7297711,893.74329}; + angles[]={0,3.7669575,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=719; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item264 + { + dataType="Object"; + class PositionInfo + { + position[]={5946.4863,5.7033477,883.04578}; + angles[]={0,1.60974,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=720; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item265 + { + dataType="Object"; + class PositionInfo + { + position[]={5928.6621,5.7083788,868.784}; + angles[]={0,2.5999277,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=721; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item266 + { + dataType="Object"; + class PositionInfo + { + position[]={5905.5371,5.7099504,873.22913}; + angles[]={0,0.71045983,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=722; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item267 + { + dataType="Object"; + class PositionInfo + { + position[]={5906.0444,5.8406496,847.39288}; + angles[]={0,4.2853389,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=723; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item268 + { + dataType="Object"; + class PositionInfo + { + position[]={5969.5859,5.4858961,894.31696}; + angles[]={0,0.25588584,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=724; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item269 + { + dataType="Object"; + class PositionInfo + { + position[]={5979.272,5.3171473,904.13599}; + angles[]={0,2.0603266,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=725; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item270 + { + dataType="Object"; + class PositionInfo + { + position[]={6292.7827,6.1453352,1244.2285}; + angles[]={0,0.069303751,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=726; + type="prunusSpinosa_1s"; + }; + class Item271 + { + dataType="Object"; + class PositionInfo + { + position[]={6451.3823,5.8660898,1345.9802}; + angles[]={0,1.4013584,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=727; + type="prunusSpinosa_1s"; + }; + class Item272 + { + dataType="Object"; + class PositionInfo + { + position[]={6471,5.9945283,1353}; + angles[]={0,2.0354366,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=728; + type="prunusSpinosa_1s"; + }; + class Item273 + { + dataType="Object"; + class PositionInfo + { + position[]={6462,5.9724431,1358}; + angles[]={0,0.16219783,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=729; + type="prunusSpinosa_1s"; + }; + class Item274 + { + dataType="Object"; + class PositionInfo + { + position[]={6495,6.1221752,1355}; + angles[]={0,0.55302107,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=730; + type="prunusSpinosa_1s"; + }; + class Item275 + { + dataType="Object"; + class PositionInfo + { + position[]={6436.8716,5.9869933,1349.0154}; + angles[]={0,3.4497643,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=731; + type="prunusSpinosa_1s"; + }; + class Item276 + { + dataType="Object"; + class PositionInfo + { + position[]={6457.6377,5.7896295,1328.5105}; + angles[]={0,3.0429585,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=732; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item277 + { + dataType="Object"; + class PositionInfo + { + position[]={6414,5.5863638,1319}; + angles[]={0,4.1059532,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=733; + type="prunusSpinosa_1s"; + }; + class Item278 + { + dataType="Object"; + class PositionInfo + { + position[]={6384.3916,5.7186246,1324.5106}; + angles[]={0,4.1263957,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=734; + type="prunusSpinosa_1s"; + }; + class Item279 + { + dataType="Object"; + class PositionInfo + { + position[]={6390.9956,5.2951016,1305.5612}; + angles[]={0,2.6050987,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=735; + type="prunusSpinosa_1s"; + }; + class Item280 + { + dataType="Object"; + class PositionInfo + { + position[]={6367.1636,5.6673384,1276.9506}; + angles[]={0,2.527575,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=736; + type="prunusSpinosa_1s"; + }; + class Item281 + { + dataType="Object"; + class PositionInfo + { + position[]={6332.6553,5.2901192,1272.8627}; + angles[]={0,5.1133666,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=737; + type="prunusSpinosa_1s"; + }; + class Item282 + { + dataType="Object"; + class PositionInfo + { + position[]={6307,5.448595,1266}; + angles[]={0,2.4652169,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=738; + type="prunusSpinosa_1s"; + }; + class Item283 + { + dataType="Object"; + class PositionInfo + { + position[]={6300.8462,5.360189,1276.7834}; + angles[]={0,4.8634338,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=739; + type="prunusSpinosa_1s"; + }; + class Item284 + { + dataType="Object"; + class PositionInfo + { + position[]={6319.7334,5.698576,1261.8708}; + angles[]={0,1.2949783,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=740; + type="prunusSpinosa_1s"; + }; + class Item285 + { + dataType="Object"; + class PositionInfo + { + position[]={6351.8691,5.6087093,1308.376}; + angles[]={0,4.710114,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=741; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item286 + { + dataType="Object"; + class PositionInfo + { + position[]={6342,4.9519835,1284}; + angles[]={0,2.710676,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=742; + type="prunusSpinosa_1s"; + }; + class Item287 + { + dataType="Object"; + class PositionInfo + { + position[]={6292,6.8361597,1262}; + angles[]={0,2.8546066,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=743; + type="prunusSpinosa_2s"; + }; + class Item288 + { + dataType="Object"; + class PositionInfo + { + position[]={6323.2881,6.6331797,1275.4227}; + angles[]={0,1.1622514,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=744; + type="prunusSpinosa_2s"; + }; + class Item289 + { + dataType="Object"; + class PositionInfo + { + position[]={6316.1167,6.6058927,1282.0082}; + angles[]={0,0.54337525,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=745; + type="prunusSpinosa_2s"; + }; + class Item290 + { + dataType="Object"; + class PositionInfo + { + position[]={6345,6.6205359,1297}; + angles[]={0,0.86845237,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=746; + type="prunusSpinosa_2s"; + }; + class Item291 + { + dataType="Object"; + class PositionInfo + { + position[]={6327.0884,6.5805492,1292.3666}; + angles[]={0,0.87023383,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=747; + type="prunusSpinosa_2s"; + }; + class Item292 + { + dataType="Object"; + class PositionInfo + { + position[]={6337.5537,6.5642462,1281.1263}; + angles[]={0,2.9924152,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=748; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item293 + { + dataType="Object"; + class PositionInfo + { + position[]={6335.6841,6.6539021,1268.937}; + angles[]={0,3.3266373,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=749; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item294 + { + dataType="Object"; + class PositionInfo + { + position[]={6360.6514,6.8047218,1278.705}; + angles[]={0,2.068639,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=750; + type="prunusSpinosa_2s"; + }; + class Item295 + { + dataType="Object"; + class PositionInfo + { + position[]={6393,6.8121471,1316}; + angles[]={0,4.7361383,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=751; + type="prunusSpinosa_2s"; + }; + class Item296 + { + dataType="Object"; + class PositionInfo + { + position[]={6350.9014,6.2188463,1295.8246}; + angles[]={0,2.8412836,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=752; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item297 + { + dataType="Object"; + class PositionInfo + { + position[]={6350.3481,6.6120224,1281.0898}; + angles[]={0,3.2465949,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=753; + type="prunusSpinosa_2s"; + }; + class Item298 + { + dataType="Object"; + class PositionInfo + { + position[]={6362.7754,6.5708494,1305.858}; + angles[]={0,2.2810614,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=754; + type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; + }; + class Item299 + { + dataType="Object"; + class PositionInfo + { + position[]={6358.6538,6.638463,1289.1458}; + angles[]={0,4.7048826,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=755; + type="prunusSpinosa_2s"; + }; + class Item300 + { + dataType="Object"; + class PositionInfo + { + position[]={6370.2217,6.4945283,1293.5765}; + angles[]={0,1.2946515,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=756; + type="prunusSpinosa_2s"; + }; + class Item301 + { + dataType="Object"; + class PositionInfo + { + position[]={6429.8184,7.0978603,1333.4912}; + angles[]={0,5.8597536,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=757; + type="prunusSpinosa_2s"; + }; + class Item302 + { + dataType="Object"; + class PositionInfo + { + position[]={6481.1592,7.2628803,1357.3658}; + angles[]={0,0.094533272,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=758; + type="prunusSpinosa_2s"; + }; + class Item303 + { + dataType="Object"; + class PositionInfo + { + position[]={6458.4849,7.0378752,1334.7948}; + angles[]={0,4.0508199,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=759; + type="prunusSpinosa_2s"; + }; + class Item304 + { + dataType="Object"; + class PositionInfo + { + position[]={6475,7.3034029,1374}; + angles[]={0,5.5159521,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=760; + type="prunusSpinosa_2s"; + }; + class Item305 + { + dataType="Object"; + class PositionInfo + { + position[]={6472.2329,7.0658417,1338.62}; + angles[]={0,2.2545502,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=761; + type="prunusSpinosa_2s"; + }; + class Item306 + { + dataType="Object"; + class PositionInfo + { + position[]={6445.1455,7.0792389,1350.6388}; + angles[]={0,1.3218091,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=762; + type="prunusSpinosa_2s"; + }; + class Item307 + { + dataType="Object"; + class PositionInfo + { + position[]={6419.646,7.127284,1331.5652}; + angles[]={0,3.5065076,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=763; + type="prunusSpinosa_2s"; + atlOffset=-4.7683716e-007; + }; + class Item308 + { + dataType="Object"; + class PositionInfo + { + position[]={6453.8716,5.8106437,1328.1234}; + angles[]={0,1.9359709,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=764; + type="prunusSpinosa_1s"; + }; + class Item309 + { + dataType="Object"; + class PositionInfo + { + position[]={6417.9595,6.3170276,1343.7114}; + angles[]={0,1.0673535,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=765; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item310 + { + dataType="Object"; + class PositionInfo + { + position[]={6490.8545,5.8979673,1342.6954}; + angles[]={0,4.8078694,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=766; + type="prunusSpinosa_1s"; + }; + class Item311 + { + dataType="Object"; + class PositionInfo + { + position[]={6467.9346,5.9613628,1348.1006}; + angles[]={0,0.68031156,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=767; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item312 + { + dataType="Object"; + class PositionInfo + { + position[]={6481.7847,6.0828032,1364.8638}; + angles[]={0,2.7632277,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=768; + type="prunusSpinosa_1s"; + }; + class Item313 + { + dataType="Object"; + class PositionInfo + { + position[]={6436.8174,5.8073702,1326.2467}; + angles[]={0,4.4904232,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=769; + type="prunusSpinosa_1s"; + }; + class Item314 + { + dataType="Object"; + class PositionInfo + { + position[]={6449.4731,5.7612886,1320.7645}; + angles[]={0,1.7971575,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=770; + type="prunusSpinosa_1s"; + }; + class Item315 + { + dataType="Object"; + class PositionInfo + { + position[]={6468.1123,6.593214,1364.9708}; + angles[]={0,3.1589017,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=771; + type="Betula_pendula_1s"; + }; + class Item316 + { + dataType="Object"; + class PositionInfo + { + position[]={6478.9668,6.5924139,1348.3157}; + angles[]={0,2.7126756,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=772; + type="Betula_pendula_1s"; + }; + class Item317 + { + dataType="Object"; + class PositionInfo + { + position[]={6439.6426,6.4540558,1336.6119}; + angles[]={0,1.3406154,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=773; + type="Betula_pendula_1s"; + }; + class Item318 + { + dataType="Object"; + class PositionInfo + { + position[]={6459.606,6.4673138,1341.9749}; + angles[]={0,1.5012003,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=774; + type="Betula_pendula_1s"; + }; + class Item319 + { + dataType="Object"; + class PositionInfo + { + position[]={6409.0103,6.7950516,1335.7899}; + angles[]={0,0.90403646,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=775; + type="Betula_pendula_1s"; + }; + class Item320 + { + dataType="Object"; + class PositionInfo + { + position[]={6408,6.9821062,1347}; + angles[]={6.2767353,3.8554256,6.2828403}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=776; + type="Betula_pendula_1s"; + }; + class Item321 + { + dataType="Object"; + class PositionInfo + { + position[]={6382.354,6.0988255,1311.946}; + angles[]={0,2.5764117,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=777; + type="Betula_pendula_1s"; + }; + class Item322 + { + dataType="Object"; + class PositionInfo + { + position[]={6384.4482,5.9320917,1293.8026}; + angles[]={0,2.5596657,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=778; + type="Betula_pendula_1s"; + atlOffset=2.3841858e-007; + }; + class Item323 + { + dataType="Object"; + class PositionInfo + { + position[]={6333.0796,5.8532162,1287.439}; + angles[]={0,3.7760339,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=779; + type="Betula_pendula_1s"; + atlOffset=2.3841858e-007; + }; + class Item324 + { + dataType="Object"; + class PositionInfo + { + position[]={6313.0225,6.1181774,1263.9563}; + angles[]={0,3.2658072,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=780; + type="Betula_pendula_1s"; + }; + class Item325 + { + dataType="Object"; + class PositionInfo + { + position[]={6290,5.8745236,1270}; + angles[]={0,1.9303161,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=781; + type="Betula_pendula_1s"; + }; + class Item326 + { + dataType="Object"; + class PositionInfo + { + position[]={6361,11.293774,1296}; + angles[]={6.2638998,1.578986,0.086463749}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=782; + type="Betula_pendula_3f"; + }; + class Item327 + { + dataType="Object"; + class PositionInfo + { + position[]={6421,12.81754,1345}; + angles[]={6.2670054,3.6133757,6.2669172}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=783; + type="Betula_pendula_3f"; + }; + class Item328 + { + dataType="Object"; + class PositionInfo + { + position[]={6331,11.953732,1296}; + angles[]={6.2668481,2.8754787,6.2646241}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=784; + type="Betula_pendula_3f"; + }; + class Item329 + { + dataType="Object"; + class PositionInfo + { + position[]={6291,11.739738,1276}; + angles[]={0.0045149554,3.040976,0.01401217}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=785; + type="Betula_pendula_3f"; + }; + class Item330 + { + dataType="Object"; + class PositionInfo + { + position[]={6424.1367,12.076568,1317.6687}; + angles[]={0,1.8305125,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=786; + type="Betula_pendula_3f"; + atlOffset=4.7683716e-007; + }; + class Item331 + { + dataType="Object"; + class PositionInfo + { + position[]={6400.0811,12.287423,1323.4408}; + angles[]={0,3.7183049,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=787; + type="Betula_pendula_3f"; + }; + class Item332 + { + dataType="Object"; + class PositionInfo + { + position[]={6488.5469,12.73757,1390.4316}; + angles[]={0,5.9739919,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=788; + type="Betula_pendula_3f"; + }; + class Item333 + { + dataType="Object"; + class PositionInfo + { + position[]={6516.3799,12.757378,1360.4869}; + angles[]={0,5.2161536,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=789; + type="Betula_pendula_3f"; + atlOffset=4.7683716e-007; + }; + class Item334 + { + dataType="Object"; + class PositionInfo + { + position[]={6532.0474,12.641492,1396.9177}; + angles[]={0,4.4862914,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=790; + type="Betula_pendula_3f"; + }; + class Item335 + { + dataType="Object"; + class PositionInfo + { + position[]={6567.5195,12.464622,1370.6704}; + angles[]={0,0.97985214,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=791; + type="Betula_pendula_3f"; + atlOffset=4.7683716e-007; + }; + class Item336 + { + dataType="Object"; + class PositionInfo + { + position[]={6552.2031,12.459382,1358.3993}; + angles[]={0,1.471557,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=792; + type="Betula_pendula_3f"; + }; + class Item337 + { + dataType="Object"; + class PositionInfo + { + position[]={6540.8003,12.706373,1377.9672}; + angles[]={0,4.2478204,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=793; + type="Betula_pendula_3f"; + atlOffset=4.7683716e-007; + }; + class Item338 + { + dataType="Object"; + class PositionInfo + { + position[]={6530,6.2100158,1377}; + angles[]={0,3.6446567,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=794; + type="prunusSpinosa_1s"; + }; + class Item339 + { + dataType="Object"; + class PositionInfo + { + position[]={6545.582,6.1337695,1375.0831}; + angles[]={0,4.7013249,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=795; + type="prunusSpinosa_1s"; + }; + class Item340 + { + dataType="Object"; + class PositionInfo + { + position[]={6539,6.1965337,1383}; + angles[]={0,1.1985838,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=796; + type="prunusSpinosa_1s"; + }; + class Item341 + { + dataType="Object"; + class PositionInfo + { + position[]={6568.6802,5.9360967,1368.2666}; + angles[]={0,0.35869363,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=797; + type="prunusSpinosa_1s"; + }; + class Item342 + { + dataType="Object"; + class PositionInfo + { + position[]={6556.6323,7.2516117,1375.4786}; + angles[]={0,4.2915087,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=798; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item343 + { + dataType="Object"; + class PositionInfo + { + position[]={6556.9072,7.182476,1393.2144}; + angles[]={0,0.95417458,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=799; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item344 + { + dataType="Object"; + class PositionInfo + { + position[]={6541.5298,7.283453,1361.2308}; + angles[]={0,6.2362013,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=800; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item345 + { + dataType="Object"; + class PositionInfo + { + position[]={6525.8706,7.4060488,1383.5991}; + angles[]={0,0.80572128,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=801; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item346 + { + dataType="Object"; + class PositionInfo + { + position[]={6560.3647,5.9302545,1358.2947}; + angles[]={0,5.3617244,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=802; + type="prunusSpinosa_1s"; + }; + class Item347 + { + dataType="Object"; + class PositionInfo + { + position[]={6540.9521,6.1595178,1371.6243}; + angles[]={0,6.1465759,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=803; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item348 + { + dataType="Object"; + class PositionInfo + { + position[]={6559.9277,6.022337,1382.2426}; + angles[]={0,2.3550222,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=804; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item349 + { + dataType="Object"; + class PositionInfo + { + position[]={6547.2197,6.7115688,1387.288}; + angles[]={0,3.2756813,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=805; + type="Betula_pendula_1s"; + atlOffset=9.5367432e-007; + }; + class Item350 + { + dataType="Object"; + class PositionInfo + { + position[]={6551.3149,6.6432791,1367.8342}; + angles[]={0,5.2821903,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=806; + type="Betula_pendula_1s"; + atlOffset=4.7683716e-007; + }; + class Item351 + { + dataType="Object"; + class PositionInfo + { + position[]={6530.9717,6.7854109,1368.9259}; + angles[]={0,4.0190001,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=807; + type="Betula_pendula_1s"; + }; + class Item352 + { + dataType="Object"; + class PositionInfo + { + position[]={6552.7539,8.0926018,1398.527}; + angles[]={0,1.2876582,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=808; + type="PiceaAbies_1f"; + }; + class Item353 + { + dataType="Object"; + class PositionInfo + { + position[]={6539,8.2053699,1399}; + angles[]={0,4.0758715,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=809; + type="PiceaAbies_1f"; + }; + class Item354 + { + dataType="Object"; + class PositionInfo + { + position[]={6527.1489,6.2819052,1402.5519}; + angles[]={0,2.937448,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=810; + type="PiceaAbies_1s"; + atlOffset=2.0980835e-005; + }; + class Item355 + { + dataType="Object"; + class PositionInfo + { + position[]={6553.1396,5.9743185,1410.5052}; + angles[]={0,5.7386813,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=811; + type="PiceaAbies_1sb"; + }; + class Item356 + { + dataType="Object"; + class PositionInfo + { + position[]={6523.3647,11.648178,1412.2872}; + angles[]={0,3.498244,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=812; + type="piceaabies_2d"; + atlOffset=8.72612e-005; + }; + class Item357 + { + dataType="Object"; + class PositionInfo + { + position[]={6512.8916,12.172829,1402.1775}; + angles[]={0,0.91291612,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=813; + type="PiceaAbies_2s"; + atlOffset=4.7683716e-007; + }; + class Item358 + { + dataType="Object"; + class PositionInfo + { + position[]={6532,12.013914,1410}; + angles[]={0,5.6425576,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=814; + type="PiceaAbies_2s"; + }; + class Item359 + { + dataType="Object"; + class PositionInfo + { + position[]={6558.7979,16.651695,1404.7959}; + angles[]={0,0.41876248,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=815; + type="PiceaAbies_3f"; + }; + class Item360 + { + dataType="Object"; + class PositionInfo + { + position[]={6544.3823,15.220244,1412.004}; + angles[]={0,5.5601153,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=816; + type="PiceaAbies_3s"; + }; + class Item361 + { + dataType="Object"; + class PositionInfo + { + position[]={6519.9658,7.286047,1407.8896}; + angles[]={0,1.0589111,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=817; + type="prunusSpinosa_2s"; + }; + class Item362 + { + dataType="Object"; + class PositionInfo + { + position[]={6300.958,5.4654059,1253.792}; + angles[]={0,2.4669576,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=819; + type="PiceaAbies_b_1fb"; + }; + class Item363 + { + dataType="Object"; + class PositionInfo + { + position[]={6292.1973,5.3192306,1247.3357}; + angles[]={0,5.0300927,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=820; + type="PiceaAbies_b_1fb"; + }; + class Item364 + { + dataType="Object"; + class PositionInfo + { + position[]={6286,5.5489845,1257}; + angles[]={0,1.5841572,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=821; + type="prunusSpinosa_1s"; + }; + class Item365 + { + dataType="Object"; + class PositionInfo + { + position[]={6294.7305,5.8208594,1259.2975}; + angles[]={0,3.2360218,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=822; + type="prunusSpinosa_1s"; + }; + class Item366 + { + dataType="Object"; + class PositionInfo + { + position[]={6289.4561,6.6442318,1265.5931}; + angles[]={0,5.0150723,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=823; + type="prunusSpinosa_2s"; + }; + class Item367 + { + dataType="Object"; + class PositionInfo + { + position[]={6288.7686,7.3511553,1239.861}; + angles[]={0,0.45936236,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=824; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item368 + { + dataType="Object"; + class PositionInfo + { + position[]={6279.7183,4.6200657,1245.2346}; + angles[]={0,2.0026681,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=825; + type="Fallen_Branch3"; + atlOffset=9.5367432e-007; + }; + class Item369 + { + dataType="Object"; + class PositionInfo + { + position[]={6296.5601,5.0707307,1247.0995}; + angles[]={0,0.25052884,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=826; + type="Fallen_Branch3"; + atlOffset=4.7683716e-007; + }; + class Item370 + { + dataType="Object"; + class PositionInfo + { + position[]={6268.4585,15.528563,1248.9192}; + angles[]={0,4.8158398,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=827; + type="FagusSylvatica_2fb"; + }; + class Item371 + { + dataType="Object"; + class PositionInfo + { + position[]={6277.8647,12.472195,1254.4099}; + angles[]={0,2.3488433,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=828; + type="FagusSylvatica_2d"; + }; + class Item372 + { + dataType="Object"; + class PositionInfo + { + position[]={6296.7363,5.4763403,1263.4282}; + angles[]={0,2.2433536,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=829; + type="Corylus_heterophylla_1"; + atlOffset=1.8596649e-005; + }; + class Item373 + { + dataType="Object"; + class PositionInfo + { + position[]={6273.3403,5.7676191,1248.9001}; + angles[]={0,2.8799312,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=830; + type="Betula_pendula_stump"; + atlOffset=4.7683716e-007; + }; + class Item374 + { + dataType="Object"; + class PositionInfo + { + position[]={5765.1489,6.8828125,1069.0602}; + angles[]={0,5.3190441,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=832; + type="prunusSpinosa_1s"; + }; + class Item375 + { + dataType="Object"; + class PositionInfo + { + position[]={5789.9038,7.1598811,1062.5857}; + angles[]={0,4.2564511,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=833; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item376 + { + dataType="Object"; + class PositionInfo + { + position[]={5786.0093,6.7837081,1074.5686}; + angles[]={0,4.1852012,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=834; + type="prunusSpinosa_1s"; + }; + class Item377 + { + dataType="Object"; + class PositionInfo + { + position[]={5784.5039,6.8097811,1072.7546}; + angles[]={0,1.2022984,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=835; + type="prunusSpinosa_1s"; + }; + class Item378 + { + dataType="Object"; + class PositionInfo + { + position[]={5751.3057,6.8879724,1065.6447}; + angles[]={0,3.8505542,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=836; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item379 + { + dataType="Object"; + class PositionInfo + { + position[]={5784.8057,5.9714088,1067.934}; + angles[]={0,3.8803346,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=837; + type="Fallen_Branch3"; + }; + class Item380 + { + dataType="Object"; + class PositionInfo + { + position[]={5768.748,9.3862371,1067.988}; + angles[]={0,5.1842752,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=838; + type="Betula_pendula_2s"; + }; + class Item381 + { + dataType="Object"; + class PositionInfo + { + position[]={5782.9395,9.5797977,1069.5001}; + angles[]={0,1.1150997,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=839; + type="Betula_pendula_2s"; + }; + class Item382 + { + dataType="Object"; + class PositionInfo + { + position[]={5791.3926,7.9699931,1076.1012}; + angles[]={0,2.4454987,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=840; + type="Betula_pendula_2w"; + }; + class Item383 + { + dataType="Object"; + class PositionInfo + { + position[]={5783.6255,8.3879461,1049.9471}; + angles[]={0,4.7594428,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=841; + type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; + }; + class Item384 + { + dataType="Object"; + class PositionInfo + { + position[]={5783.2119,8.3347492,1061.7646}; + angles[]={0,5.003706,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=842; + type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; + }; + class Item385 + { + dataType="Object"; + class PositionInfo + { + position[]={5757.4019,7.6730614,1067.798}; + angles[]={0,4.3865533,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=843; + type="Betula_pendula_1s"; + atlOffset=4.7683716e-007; + }; + class Item386 + { + dataType="Object"; + class PositionInfo + { + position[]={5753.4565,7.5874968,1066.0734}; + angles[]={0,2.8576825,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=844; + type="Betula_pendula_1s"; + }; + class Item387 + { + dataType="Object"; + class PositionInfo + { + position[]={5792.7261,12.019426,1069.7562}; + angles[]={0,1.1643542,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=845; + type="Betula_pendula_3s"; + atlOffset=-9.5367432e-007; + }; + class Item388 + { + dataType="Object"; + class PositionInfo + { + position[]={5788.5044,12.086994,1054.5691}; + angles[]={0,5.4317894,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=846; + type="Betula_pendula_3s"; + }; + class Item389 + { + dataType="Object"; + class PositionInfo + { + position[]={5790.7202,5.814569,1055.447}; + angles[]={0,3.4630225,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=847; + type="Betula_pendula_stem"; + atlOffset=4.7683716e-007; + }; + class Item390 + { + dataType="Object"; + class PositionInfo + { + position[]={5802.0664,6.7481008,1074.1165}; + angles[]={0,3.6614945,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=850; + type="prunusSpinosa_1s"; + }; + class Item391 + { + dataType="Object"; + class PositionInfo + { + position[]={5812.1089,6.7410192,1074.9255}; + angles[]={0,3.9824467,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=851; + type="prunusSpinosa_1s"; + }; + class Item392 + { + dataType="Object"; + class PositionInfo + { + position[]={5771.457,6.9739213,1063.2234}; + angles[]={0,5.4390416,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=852; + type="prunusSpinosa_1s"; + }; + class Item393 + { + dataType="Object"; + class PositionInfo + { + position[]={5769.7158,7.2510967,1061.6343}; + angles[]={0,4.6108408,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=853; + type="prunusSpinosa_1s"; + }; + class Item394 + { + dataType="Object"; + class PositionInfo + { + position[]={5824.7173,6.6907644,1071.483}; + angles[]={0,1.4752595,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=854; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item395 + { + dataType="Object"; + class PositionInfo + { + position[]={5812.1187,5.5075665,1067.5369}; + angles[]={0,3.2389112,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=855; + type="Fallen_Branch3"; + }; + class Item396 + { + dataType="Object"; + class PositionInfo + { + position[]={5812.3979,9.4138117,1084.0516}; + angles[]={0,3.5735099,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=856; + type="Betula_pendula_2s"; + }; + class Item397 + { + dataType="Object"; + class PositionInfo + { + position[]={5767.7183,10.189882,1058.6266}; + angles[]={0,1.9421796,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=857; + type="Betula_pendula_2s"; + }; + class Item398 + { + dataType="Object"; + class PositionInfo + { + position[]={5777,8.0260286,1064}; + angles[]={0,0.17355818,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=858; + type="Betula_pendula_2w"; + }; + class Item399 + { + dataType="Object"; + class PositionInfo + { + position[]={5818,7.9084749,1075}; + angles[]={0,3.4511747,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=859; + type="Betula_pendula_2w"; + }; + class Item400 + { + dataType="Object"; + class PositionInfo + { + position[]={5814.0415,7.8261194,1064.7437}; + angles[]={0,3.5344951,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=860; + type="Betula_pendula_2w"; + }; + class Item401 + { + dataType="Object"; + class PositionInfo + { + position[]={5808.646,7.3619137,1078.3967}; + angles[]={0,2.577702,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=861; + type="Betula_pendula_1s"; + }; + class Item402 + { + dataType="Object"; + class PositionInfo + { + position[]={5823.0859,7.2826929,1072.9492}; + angles[]={0,1.9740324,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=862; + type="Betula_pendula_1s"; + }; + class Item403 + { + dataType="Object"; + class PositionInfo + { + position[]={5806.8467,11.812724,1070.2499}; + angles[]={0,5.9566731,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=863; + type="Betula_pendula_3s"; + }; + class Item404 + { + dataType="Object"; + class PositionInfo + { + position[]={5822.9287,11.756632,1065.6407}; + angles[]={0,1.5225748,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=864; + type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; + }; + class Item405 + { + dataType="Object"; + class PositionInfo + { + position[]={5823.2998,5.5413322,1067.9951}; + angles[]={0,0.64789158,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=865; + type="Betula_pendula_stem"; + atlOffset=4.7683716e-007; + }; + class Item406 + { + dataType="Object"; + class PositionInfo + { + position[]={5528.2119,7.5582242,1065.7717}; + angles[]={0,1.4080739,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=868; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item407 + { + dataType="Object"; + class PositionInfo + { + position[]={5539.0288,10.270535,1050.7362}; + angles[]={0,3.9910758,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=869; + type="Betula_pendula_2s"; + atlOffset=1.4305115e-006; + }; + class Item408 + { + dataType="Object"; + class PositionInfo + { + position[]={5556.4834,10.055382,1055.4597}; + angles[]={0,6.2204728,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=870; + type="Betula_pendula_2s"; + atlOffset=1.9073486e-006; + }; + class Item409 + { + dataType="Object"; + class PositionInfo + { + position[]={5532.1948,8.8566494,1062.4399}; + angles[]={0,2.0384617,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=871; + type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; + }; + class Item410 + { + dataType="Object"; + class PositionInfo + { + position[]={5544.5454,7.902905,1065.7872}; + angles[]={0,0.043203905,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=872; + type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; + }; + class Item411 + { + dataType="Object"; + class PositionInfo + { + position[]={5547.835,8.6652317,1051.5726}; + angles[]={0,2.8869762,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=873; + type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; + }; + class Item412 + { + dataType="Object"; + class PositionInfo + { + position[]={5552.0869,7.9380579,1066.3475}; + angles[]={0,0.88762563,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=874; + type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; + }; + class Item413 + { + dataType="Object"; + class PositionInfo + { + position[]={5558.8306,7.7462425,1061.5176}; + angles[]={0,3.8649263,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=875; + type="Betula_pendula_1s"; + atlOffset=1.9073486e-006; + }; + class Item414 + { + dataType="Object"; + class PositionInfo + { + position[]={5529.6465,13.031799,1051.6221}; + angles[]={0,0.13469498,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=876; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item415 + { + dataType="Object"; + class PositionInfo + { + position[]={5541.3247,11.431698,1074.0476}; + angles[]={0,5.506444,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=877; + type="Betula_pendula_3s"; + atlOffset=9.5367432e-007; + }; + class Item416 + { + dataType="Object"; + class PositionInfo + { + position[]={5547,12.105226,1061}; + angles[]={0,5.2371345,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=878; + type="Betula_pendula_3s"; + }; + class Item417 + { + dataType="Object"; + class PositionInfo + { + position[]={5512.8535,8.1875334,1033.9122}; + angles[]={0,5.4489989,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=879; + type="prunusSpinosa_1s"; + }; + class Item418 + { + dataType="Object"; + class PositionInfo + { + position[]={5520,10.645493,1051}; + angles[]={0,1.357424,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=880; + type="Betula_pendula_2s"; + }; + class Item419 + { + dataType="Object"; + class PositionInfo + { + position[]={5506.8369,9.9155521,1063.3979}; + angles[]={0,0.41019821,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=881; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item420 + { + dataType="Object"; + class PositionInfo + { + position[]={5513.6069,9.2338142,1039.05}; + angles[]={0,2.0646935,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=882; + type="Betula_pendula_2w"; + }; + class Item421 + { + dataType="Object"; + class PositionInfo + { + position[]={5504.2886,9.0958557,1047.8196}; + angles[]={0,5.0473804,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=883; + type="Betula_pendula_2w"; + }; + class Item422 + { + dataType="Object"; + class PositionInfo + { + position[]={5514.6768,8.7426949,1058.0647}; + angles[]={0,2.7778049,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=884; + type="Betula_pendula_2w"; + }; + class Item423 + { + dataType="Object"; + class PositionInfo + { + position[]={5499.8628,8.5601368,1053.9514}; + angles[]={0,5.9741263,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=885; + type="Betula_pendula_2w"; + }; + class Item424 + { + dataType="Object"; + class PositionInfo + { + position[]={5500.4468,7.8712206,1062.2258}; + angles[]={0,5.6787105,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=886; + type="Betula_pendula_1s"; + atlOffset=4.7683716e-007; + }; + class Item425 + { + dataType="Object"; + class PositionInfo + { + position[]={5524.1577,13.366324,1042.5426}; + angles[]={0,2.5569305,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=887; + type="Betula_pendula_3s"; + }; + class Item426 + { + dataType="Object"; + class PositionInfo + { + position[]={5498.937,13.027637,1040.751}; + angles[]={0,2.8008661,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=888; + type="Betula_pendula_3s"; + }; + class Item427 + { + dataType="Object"; + class PositionInfo + { + position[]={5507.082,12.819169,1052.4175}; + angles[]={0,0.61080307,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=889; + type="Betula_pendula_3s"; + }; + class Item428 + { + dataType="Object"; + class PositionInfo + { + position[]={5478,7.4469361,969}; + angles[]={0,5.6852751,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=890; + type="prunusSpinosa_1s"; + }; + class Item429 + { + dataType="Object"; + class PositionInfo + { + position[]={5486,10.053295,976}; + angles[]={0,0.14590454,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=891; + type="Betula_pendula_2s"; + }; + class Item430 + { + dataType="Object"; + class PositionInfo + { + position[]={5479,10.053295,987}; + angles[]={0,5.5355043,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=892; + type="Betula_pendula_2s"; + }; + class Item431 + { + dataType="Object"; + class PositionInfo + { + position[]={5478,8.6284752,962}; + angles[]={0,5.93502,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=893; + type="Betula_pendula_2w"; + }; + class Item432 + { + dataType="Object"; + class PositionInfo + { + position[]={5474.667,8.6284752,974.77686}; + angles[]={0,0.3453427,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=894; + type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; + }; + class Item433 + { + dataType="Object"; + class PositionInfo + { + position[]={5488,8.6284752,987}; + angles[]={0,2.185689,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=895; + type="Betula_pendula_2w"; + }; + class Item434 + { + dataType="Object"; + class PositionInfo + { + position[]={5471.0215,8.6284752,981.40259}; + angles[]={0,1.1802381,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=896; + type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; + }; + class Item435 + { + dataType="Object"; + class PositionInfo + { + position[]={5468,8.0289497,975}; + angles[]={0,2.2345457,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=897; + type="Betula_pendula_1s"; + }; + class Item436 + { + dataType="Object"; + class PositionInfo + { + position[]={5491,12.550225,969}; + angles[]={0,3.8542356,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=898; + type="Betula_pendula_3s"; + }; + class Item437 + { + dataType="Object"; + class PositionInfo + { + position[]={5468.4937,12.550226,968.41333}; + angles[]={0,0.14952901,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=899; + type="Betula_pendula_3s"; + atlOffset=9.5367432e-007; + }; + class Item438 + { + dataType="Object"; + class PositionInfo + { + position[]={5478,12.550225,979}; + angles[]={0,4.2707191,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=900; + type="Betula_pendula_3s"; + }; + class Item439 + { + dataType="Object"; + class PositionInfo + { + position[]={7258.6929,7.4469361,1274.8184}; + angles[]={0,1.2833062,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=901; + type="prunusSpinosa_1s"; + }; + class Item440 + { + dataType="Object"; + class PositionInfo + { + position[]={7241.7056,7.351491,1287.7715}; + angles[]={0,4.6119032,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=902; + type="prunusSpinosa_1s"; + }; + class Item441 + { + dataType="Object"; + class PositionInfo + { + position[]={7231.4644,7.4469361,1286.7135}; + angles[]={0,5.1525245,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=903; + type="prunusSpinosa_1s"; + }; + class Item442 + { + dataType="Object"; + class PositionInfo + { + position[]={7224.1362,7.4469337,1302.9203}; + angles[]={0,2.776711,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=904; + type="prunusSpinosa_1s"; + }; + class Item443 + { + dataType="Object"; + class PositionInfo + { + position[]={7265.5112,7.4469361,1261.6548}; + angles[]={0,2.6622927,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=905; + type="prunusSpinosa_1s"; + }; + class Item444 + { + dataType="Object"; + class PositionInfo + { + position[]={7266.1909,7.4469361,1277.4061}; + angles[]={0,0.53441423,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=906; + type="prunusSpinosa_1s"; + }; + class Item445 + { + dataType="Object"; + class PositionInfo + { + position[]={7282,8.6485958,1266}; + angles[]={0,5.7465563,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=907; + type="prunusSpinosa_2s"; + }; + class Item446 + { + dataType="Object"; + class PositionInfo + { + position[]={7247.5308,7.8258276,1297.1704}; + angles[]={0,2.7674706,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=908; + type="prunusSpinosa_2s"; + }; + class Item447 + { + dataType="Object"; + class PositionInfo + { + position[]={7241.8779,8.6485958,1265.6801}; + angles[]={0,0.27923638,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=909; + type="prunusSpinosa_2s"; + }; + class Item448 + { + dataType="Object"; + class PositionInfo + { + position[]={7222.0518,8.6307344,1275.413}; + angles[]={0,5.355618,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=910; + type="prunusSpinosa_2s"; + }; + class Item449 + { + dataType="Object"; + class PositionInfo + { + position[]={7250.9546,8.6485958,1276.6919}; + angles[]={0,0.0022597169,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=911; + type="prunusSpinosa_2s"; + }; + class Item450 + { + dataType="Object"; + class PositionInfo + { + position[]={7259.0244,8.6485958,1267.0409}; + angles[]={0,5.4373178,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=912; + type="prunusSpinosa_2s"; + }; + class Item451 + { + dataType="Object"; + class PositionInfo + { + position[]={7289.9214,8.6485958,1259.334}; + angles[]={0,5.3458209,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=913; + type="prunusSpinosa_2s"; + }; + class Item452 + { + dataType="Object"; + class PositionInfo + { + position[]={7265,7.4469361,1281}; + angles[]={0,5.602582,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=914; + type="prunusSpinosa_1s"; + }; + class Item453 + { + dataType="Object"; + class PositionInfo + { + position[]={7281.5742,7.4469371,1250.3506}; + angles[]={0,3.7986217,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=915; + type="prunusSpinosa_1s"; + atlOffset=9.5367432e-007; + }; + class Item454 + { + dataType="Object"; + class PositionInfo + { + position[]={7236.292,6.9178772,1307.4841}; + angles[]={0,4.7813873,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=916; + type="prunusSpinosa_1s"; + }; + class Item455 + { + dataType="Object"; + class PositionInfo + { + position[]={7242,7.4469361,1282}; + angles[]={0,6.1692376,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=917; + type="prunusSpinosa_1s"; + }; + class Item456 + { + dataType="Object"; + class PositionInfo + { + position[]={7243.748,6.5106792,1303.6742}; + angles[]={0,0.68277991,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=918; + type="prunusSpinosa_1s"; + }; + class Item457 + { + dataType="Object"; + class PositionInfo + { + position[]={7283.1909,7.4469361,1276.0026}; + angles[]={0,4.4370947,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=919; + type="prunusSpinosa_1s"; + }; + class Item458 + { + dataType="Object"; + class PositionInfo + { + position[]={7256.8647,7.2645502,1283.7061}; + angles[]={0,5.2618818,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=920; + type="prunusSpinosa_1s"; + }; + class Item459 + { + dataType="Object"; + class PositionInfo + { + position[]={7232.4805,8.0278397,1295.9287}; + angles[]={0,3.5710394,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=921; + type="Betula_pendula_1s"; + atlOffset=4.7683716e-007; + }; + class Item460 + { + dataType="Object"; + class PositionInfo + { + position[]={7250.9189,7.0897274,1288.4965}; + angles[]={0,1.3432057,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=922; + type="Betula_pendula_1s"; + }; + class Item461 + { + dataType="Object"; + class PositionInfo + { + position[]={7273.3726,8.0279465,1271.6412}; + angles[]={0,0.42308655,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=923; + type="Betula_pendula_1s"; + atlOffset=4.7683716e-007; + }; + class Item462 + { + dataType="Object"; + class PositionInfo + { + position[]={7238.6831,8.0279465,1272.2074}; + angles[]={0,2.565052,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=924; + type="Betula_pendula_1s"; + }; + class Item463 + { + dataType="Object"; + class PositionInfo + { + position[]={7278.6538,13.970251,1251.8926}; + angles[]={0,2.9495528,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=925; + type="Betula_pendula_3f"; + }; + class Item464 + { + dataType="Object"; + class PositionInfo + { + position[]={7297.8525,14.143146,1271.5967}; + angles[]={0,2.1009054,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=926; + type="Betula_pendula_3f"; + }; + class Item465 + { + dataType="Object"; + class PositionInfo + { + position[]={7214.4253,5.3798056,1239.75}; + angles[]={0,0.14903964,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=927; + type="prunusSpinosa_1s"; + }; + class Item466 + { + dataType="Object"; + class PositionInfo + { + position[]={7200.2368,4.2087498,1237.5665}; + angles[]={0,2.2413657,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=928; + type="prunusSpinosa_1s"; + }; + class Item467 + { + dataType="Object"; + class PositionInfo + { + position[]={7201.5415,6.4698062,1227.354}; + angles[]={0,1.2740241,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=929; + type="prunusSpinosa_1s"; + }; + class Item468 + { + dataType="Object"; + class PositionInfo + { + position[]={7182.2773,4.5507326,1234.9781}; + angles[]={0,4.4175925,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=930; + type="prunusSpinosa_1s"; + }; + class Item469 + { + dataType="Object"; + class PositionInfo + { + position[]={7226.7168,7.4438677,1231.4618}; + angles[]={0,3.6300869,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=931; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item470 + { + dataType="Object"; + class PositionInfo + { + position[]={7216,5.6593509,1251}; + angles[]={0,0.63428807,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=932; + type="prunusSpinosa_1s"; + }; + class Item471 + { + dataType="Object"; + class PositionInfo + { + position[]={7239.1079,6.9513559,1243.175}; + angles[]={0,4.1570587,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=933; + type="prunusSpinosa_2s"; + }; + class Item472 + { + dataType="Object"; + class PositionInfo + { + position[]={7196.5381,5.5379581,1249.8634}; + angles[]={0,0.88660532,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=934; + type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; + }; + class Item473 + { + dataType="Object"; + class PositionInfo + { + position[]={7221.0161,7.8030453,1254.8798}; + angles[]={0,0.86806214,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=935; + type="prunusSpinosa_2s"; + }; + class Item474 + { + dataType="Object"; + class PositionInfo + { + position[]={7181.978,6.7604504,1222.7185}; + angles[]={0,0.15796696,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=936; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item475 + { + dataType="Object"; + class PositionInfo + { + position[]={7190.4966,6.5044909,1261.7938}; + angles[]={0,4.4793644,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=937; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item476 + { + dataType="Object"; + class PositionInfo + { + position[]={7218.4419,7.7886438,1233.0818}; + angles[]={0,3.4880669,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=938; + type="prunusSpinosa_2s"; + }; + class Item477 + { + dataType="Object"; + class PositionInfo + { + position[]={7249.2549,8.3043232,1241.1187}; + angles[]={0,4.7116694,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=939; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item478 + { + dataType="Object"; + class PositionInfo + { + position[]={7213.0469,5.2989869,1253.3683}; + angles[]={0,2.1787925,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=940; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item479 + { + dataType="Object"; + class PositionInfo + { + position[]={7246.2319,6.9346623,1229.2344}; + angles[]={0,1.6956679,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=941; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item480 + { + dataType="Object"; + class PositionInfo + { + position[]={7178.1343,4.7750001,1247.2836}; + angles[]={0,1.0477639,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=942; + type="prunusSpinosa_1s"; + }; + class Item481 + { + dataType="Object"; + class PositionInfo + { + position[]={7206,4.2980814,1238}; + angles[]={0,0.99213594,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=943; + type="prunusSpinosa_1s"; + }; + class Item482 + { + dataType="Object"; + class PositionInfo + { + position[]={7196.665,4.3389549,1242.3402}; + angles[]={0,5.5788255,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=944; + type="prunusSpinosa_1s"; + }; + class Item483 + { + dataType="Object"; + class PositionInfo + { + position[]={7235.3613,6.7108941,1252.5256}; + angles[]={0,5.8621817,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=945; + type="prunusSpinosa_1s"; + }; + class Item484 + { + dataType="Object"; + class PositionInfo + { + position[]={7204.748,3.9045777,1251.2167}; + angles[]={0,4.3538198,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=946; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item485 + { + dataType="Object"; + class PositionInfo + { + position[]={7192.3047,6.0758181,1228.1477}; + angles[]={0,3.4481628,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=947; + type="Betula_pendula_1s"; + }; + class Item486 + { + dataType="Object"; + class PositionInfo + { + position[]={7191,5.1976581,1250}; + angles[]={0,4.5215535,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=948; + type="Betula_pendula_1s"; + }; + class Item487 + { + dataType="Object"; + class PositionInfo + { + position[]={7228.833,7.6146898,1243.9937}; + angles[]={0,4.9835196,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=949; + type="Betula_pendula_1s"; + atlOffset=4.7683716e-007; + }; + class Item488 + { + dataType="Object"; + class PositionInfo + { + position[]={7226.8555,8.0250835,1259.2053}; + angles[]={0,1.2348377,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=950; + type="Betula_pendula_1s"; + atlOffset=-4.7683716e-007; + }; + class Item489 + { + dataType="Object"; + class PositionInfo + { + position[]={7242.9302,13.470251,1229.189}; + angles[]={0,1.971712,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=951; + type="Betula_pendula_3f"; + }; + class Item490 + { + dataType="Object"; + class PositionInfo + { + position[]={7250.3423,13.748095,1255.6823}; + angles[]={0,0.9315924,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=952; + type="Betula_pendula_3f"; + atlOffset=4.7683716e-007; + }; + class Item491 + { + dataType="Object"; + class PositionInfo + { + position[]={5974.5859,6.7332621,1255.5193}; + angles[]={0,4.8261681,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=979; + type="prunusSpinosa_2s"; + atlOffset=-4.7683716e-007; + }; + class Item492 + { + dataType="Object"; + class PositionInfo + { + position[]={5983,6.5452356,1262}; + angles[]={0,3.1280954,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=980; + type="Corylus_heterophylla_2"; + }; + class Item493 + { + dataType="Object"; + class PositionInfo + { + position[]={5959,6.7985954,1245}; + angles[]={0,4.205472,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=981; + type="prunusSpinosa_2s"; + }; + class Item494 + { + dataType="Object"; + class PositionInfo + { + position[]={5968,6.6102362,1250}; + angles[]={0,5.6481524,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=982; + type="Corylus_heterophylla_2"; + }; + class Item495 + { + dataType="Object"; + class PositionInfo + { + position[]={5949,6.8485956,1237}; + angles[]={0,3.1907282,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=983; + type="prunusSpinosa_2s"; + }; + class Item496 + { + dataType="Object"; + class PositionInfo + { + position[]={5941,6.8785954,1232}; + angles[]={0,4.3687468,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=984; + type="prunusSpinosa_2s"; + }; + class Item497 + { + dataType="Object"; + class PositionInfo + { + position[]={5930.542,6.9397583,1227.3164}; + angles[]={0,3.3290524,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=985; + type="prunusSpinosa_2s"; + }; + class Item498 + { + dataType="Object"; + class PositionInfo + { + position[]={5916.4116,7.0333004,1223.3525}; + angles[]={0,4.3587823,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=986; + type="prunusSpinosa_2s"; + }; + class Item499 + { + dataType="Object"; + class PositionInfo + { + position[]={5899.6426,7.2002525,1227.6163}; + angles[]={0,2.3155026,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=987; + type="prunusSpinosa_2s"; + }; + class Item500 + { + dataType="Object"; + class PositionInfo + { + position[]={5889.0928,7.3382006,1234.1066}; + angles[]={0,3.6455865,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=988; + type="prunusSpinosa_2s"; + }; + class Item501 + { + dataType="Object"; + class PositionInfo + { + position[]={5876.1865,7.5071726,1242.0442}; + angles[]={0,4.079556,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=989; + type="prunusSpinosa_2s"; + }; + class Item502 + { + dataType="Object"; + class PositionInfo + { + position[]={5868.3262,7.6493263,1254.4723}; + angles[]={0,1.7349083,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=990; + type="prunusSpinosa_2s"; + }; + class Item503 + { + dataType="Object"; + class PositionInfo + { + position[]={5954.3584,6.6666517,1237.9474}; + angles[]={0,5.5387774,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=991; + type="Corylus_heterophylla_2"; + }; + class Item504 + { + dataType="Object"; + class PositionInfo + { + position[]={5945.4517,6.699523,1231.3091}; + angles[]={0,4.5381317,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=992; + type="Corylus_heterophylla_2"; + }; + class Item505 + { + dataType="Object"; + class PositionInfo + { + position[]={5937,6.7352352,1226}; + angles[]={0,1.0306553,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=993; + type="Corylus_heterophylla_2"; + }; + class Item506 + { + dataType="Object"; + class PositionInfo + { + position[]={5924,6.8302355,1224}; + angles[]={0,4.21105,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=994; + type="Corylus_heterophylla_2"; + }; + class Item507 + { + dataType="Object"; + class PositionInfo + { + position[]={5905.6938,6.9823122,1223.803}; + angles[]={0,2.6662045,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=995; + type="Corylus_heterophylla_2"; + }; + class Item508 + { + dataType="Object"; + class PositionInfo + { + position[]={5890.5586,7.1544361,1229.9573}; + angles[]={0,0.85170996,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=996; + type="Corylus_heterophylla_2"; + }; + class Item509 + { + dataType="Object"; + class PositionInfo + { + position[]={5877.958,7.3130388,1236.4766}; + angles[]={0,1.3528318,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=997; + type="Corylus_heterophylla_2"; + }; + class Item510 + { + dataType="Object"; + class PositionInfo + { + position[]={5866.3237,7.4786587,1246.332}; + angles[]={0,1.0456957,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=998; + type="Corylus_heterophylla_2"; + }; + class Item511 + { + dataType="Object"; + class PositionInfo + { + position[]={5591.2915,9.0595436,1138.1042}; + angles[]={0,4.3411822,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=999; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item512 + { + dataType="Object"; + class PositionInfo + { + position[]={5643.1533,6.3815908,1148.2053}; + angles[]={0,5.5381031,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1000; + type="prunusSpinosa_1s"; + }; + class Item513 + { + dataType="Object"; + class PositionInfo + { + position[]={5633.9155,7.312757,1127.864}; + angles[]={0,3.0612595,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1001; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item514 + { + dataType="Object"; + class PositionInfo + { + position[]={5630.8301,7.538167,1150.774}; + angles[]={0,6.0509562,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1002; + type="prunusSpinosa_1s"; + }; + class Item515 + { + dataType="Object"; + class PositionInfo + { + position[]={5629.7324,7.6781569,1148.6877}; + angles[]={0,4.5565467,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1003; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-006; + }; + class Item516 + { + dataType="Object"; + class PositionInfo + { + position[]={5644.8052,6.4404778,1126.8243}; + angles[]={0,0.97986639,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1004; + type="prunusSpinosa_1s"; + }; + class Item517 + { + dataType="Object"; + class PositionInfo + { + position[]={5634.6411,7.2271485,1125.1501}; + angles[]={0,2.817853,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1005; + type="prunusSpinosa_1s"; + }; + class Item518 + { + dataType="Object"; + class PositionInfo + { + position[]={5597.1758,9.579277,1146.3292}; + angles[]={0,4.6629286,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1006; + type="prunusSpinosa_1s"; + }; + class Item519 + { + dataType="Object"; + class PositionInfo + { + position[]={5592.8755,9.6139946,1147.566}; + angles[]={0,5.3340049,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1007; + type="prunusSpinosa_1s"; + atlOffset=9.5367432e-007; + }; + class Item520 + { + dataType="Object"; + class PositionInfo + { + position[]={5590.5366,9.6279221,1148.3124}; + angles[]={0,2.7414589,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1008; + type="prunusSpinosa_1s"; + }; + class Item521 + { + dataType="Object"; + class PositionInfo + { + position[]={5579.1006,6.945128,1113.8566}; + angles[]={0,4.2558098,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1009; + type="prunusSpinosa_1s"; + }; + class Item522 + { + dataType="Object"; + class PositionInfo + { + position[]={5576.9336,6.9566045,1114.7845}; + angles[]={0,1.770336,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1010; + type="prunusSpinosa_1s"; + atlOffset=9.5367432e-007; + }; + class Item523 + { + dataType="Object"; + class PositionInfo + { + position[]={5579.8115,9.3610811,1147.053}; + angles[]={0,2.7700467,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1011; + type="prunusSpinosa_1s"; + }; + class Item524 + { + dataType="Object"; + class PositionInfo + { + position[]={5593.7036,8.6344118,1151.1932}; + angles[]={0,0.99086404,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1012; + type="Fallen_Branch3"; + }; + class Item525 + { + dataType="Object"; + class PositionInfo + { + position[]={5627,6.8221979,1146}; + angles[]={0,0.31957486,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1013; + type="Fallen_Branch3"; + }; + class Item526 + { + dataType="Object"; + class PositionInfo + { + position[]={5633,12.520226,1142}; + angles[]={0,2.4605789,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1014; + type="Betula_pendula_3s"; + }; + class Item527 + { + dataType="Object"; + class PositionInfo + { + position[]={5645.0708,8.7242432,1154.9725}; + angles[]={0,3.2873852,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1015; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item528 + { + dataType="Object"; + class PositionInfo + { + position[]={5616,11.563295,1147}; + angles[]={0,1.5803343,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1016; + type="Betula_pendula_2s"; + }; + class Item529 + { + dataType="Object"; + class PositionInfo + { + position[]={5614.0498,10.215132,1109.2897}; + angles[]={0,0.12139717,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1017; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item530 + { + dataType="Object"; + class PositionInfo + { + position[]={5656.4731,8.6981153,1112.4395}; + angles[]={0,0.85658866,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1018; + type="Betula_pendula_2s"; + atlOffset=9.5367432e-007; + }; + class Item531 + { + dataType="Object"; + class PositionInfo + { + position[]={5673.6255,8.4279079,1118.1643}; + angles[]={0,4.4456592,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1019; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item532 + { + dataType="Object"; + class PositionInfo + { + position[]={5607.6001,11.682201,1137.5227}; + angles[]={0,0.01275693,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1020; + type="Betula_pendula_2s"; + }; + class Item533 + { + dataType="Object"; + class PositionInfo + { + position[]={5578,12.138295,1151}; + angles[]={6.2382159,0.053944282,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1021; + type="Betula_pendula_2s"; + }; + class Item534 + { + dataType="Object"; + class PositionInfo + { + position[]={5568,9.6032953,1117}; + angles[]={6.2132993,3.6628716,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1022; + type="Betula_pendula_2s"; + }; + class Item535 + { + dataType="Object"; + class PositionInfo + { + position[]={5587.4395,10.52365,1123.9623}; + angles[]={0,5.265635,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1023; + type="Betula_pendula_2s"; + atlOffset=9.5367432e-007; + }; + class Item536 + { + dataType="Object"; + class PositionInfo + { + position[]={5580.5566,11.659307,1141.6135}; + angles[]={0,2.7425635,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1024; + type="Betula_pendula_2s"; + }; + class Item537 + { + dataType="Object"; + class PositionInfo + { + position[]={5585.0283,12.281011,1150.943}; + angles[]={0,4.3610287,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1025; + type="Betula_pendula_2s"; + }; + class Item538 + { + dataType="Object"; + class PositionInfo + { + position[]={5583,10.793295,1129}; + angles[]={0,4.7263379,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1026; + type="Betula_pendula_2s"; + }; + class Item539 + { + dataType="Object"; + class PositionInfo + { + position[]={5587,12.108295,1147}; + angles[]={6.2332273,2.518002,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1027; + type="Betula_pendula_2s"; + }; + class Item540 + { + dataType="Object"; + class PositionInfo + { + position[]={5638.0117,7.9122114,1153.7576}; + angles[]={0,2.980958,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1028; + type="Betula_pendula_2w"; + atlOffset=9.5367432e-007; + }; + class Item541 + { + dataType="Object"; + class PositionInfo + { + position[]={5632.1812,8.5170097,1118.627}; + angles[]={0,6.0331459,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1029; + type="Betula_pendula_2w"; + }; + class Item542 + { + dataType="Object"; + class PositionInfo + { + position[]={5623.6968,9.4867258,1140.4954}; + angles[]={0,5.3154974,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1030; + type="Betula_pendula_2w"; + }; + class Item543 + { + dataType="Object"; + class PositionInfo + { + position[]={5648.9741,7.3876143,1123.7284}; + angles[]={0,3.6702368,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1031; + type="Betula_pendula_2w"; + }; + class Item544 + { + dataType="Object"; + class PositionInfo + { + position[]={5657,6.9684753,1129}; + angles[]={0,2.9900961,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1032; + type="Betula_pendula_2w"; + }; + class Item545 + { + dataType="Object"; + class PositionInfo + { + position[]={5665.2158,7.0306458,1113.7836}; + angles[]={0,5.9550028,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1033; + type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; + }; + class Item546 + { + dataType="Object"; + class PositionInfo + { + position[]={5668.6064,6.897572,1128.7797}; + angles[]={0,4.8698015,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1034; + type="Betula_pendula_2w"; + }; + class Item547 + { + dataType="Object"; + class PositionInfo + { + position[]={5602.2754,9.5301285,1124.5773}; + angles[]={0,0.56094509,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1035; + type="Betula_pendula_2w"; + }; + class Item548 + { + dataType="Object"; + class PositionInfo + { + position[]={5571.8677,8.7337723,1123.8328}; + angles[]={0,5.6350026,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1036; + type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; + }; + class Item549 + { + dataType="Object"; + class PositionInfo + { + position[]={5564,9.1584759,1130}; + angles[]={0,2.0659637,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1037; + type="Betula_pendula_2w"; + }; + class Item550 + { + dataType="Object"; + class PositionInfo + { + position[]={5575.0176,8.4284859,1119.2633}; + angles[]={0,5.076118,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1038; + type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; + }; + class Item551 + { + dataType="Object"; + class PositionInfo + { + position[]={5576.2114,9.9308567,1138.545}; + angles[]={0,0.69456285,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1039; + type="Betula_pendula_2w"; + }; + class Item552 + { + dataType="Object"; + class PositionInfo + { + position[]={5586.3325,10.113255,1137.8174}; + angles[]={0,5.1169462,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1040; + type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; + }; + class Item553 + { + dataType="Object"; + class PositionInfo + { + position[]={5597.5474,10.487835,1140.9386}; + angles[]={0,3.7544794,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1041; + type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; + }; + class Item554 + { + dataType="Object"; + class PositionInfo + { + position[]={5589.2383,8.4358311,1114.0574}; + angles[]={0,4.784431,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1042; + type="Betula_pendula_2w"; + }; + class Item555 + { + dataType="Object"; + class PositionInfo + { + position[]={5641.9419,7.1720209,1140.7438}; + angles[]={0,3.8939764,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1043; + type="Betula_pendula_1s"; + atlOffset=1.4305115e-006; + }; + class Item556 + { + dataType="Object"; + class PositionInfo + { + position[]={5645,6.9879465,1132}; + angles[]={0,0.88924992,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1044; + type="Betula_pendula_1s"; + }; + class Item557 + { + dataType="Object"; + class PositionInfo + { + position[]={5675.6182,6.4022207,1124.3478}; + angles[]={0,4.6820064,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1045; + type="Betula_pendula_1s"; + atlOffset=1.9073486e-006; + }; + class Item558 + { + dataType="Object"; + class PositionInfo + { + position[]={5593.167,10.546446,1139.5073}; + angles[]={0,1.9444535,0}; + }; + side="Empty"; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1046; + type="Betula_pendula_1s"; + atlOffset=0.70171452; + }; + class Item559 + { + dataType="Object"; + class PositionInfo + { + position[]={5589.6641,9.0328398,1130.0663}; + angles[]={0,0.3255024,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1047; + type="Betula_pendula_1s"; + }; + class Item560 + { + dataType="Object"; + class PositionInfo + { + position[]={5594.9736,9.9587755,1142.5653}; + angles[]={0,4.7799187,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1048; + type="Betula_pendula_1s"; + atlOffset=4.7683716e-007; + }; + class Item561 + { + dataType="Object"; + class PositionInfo + { + position[]={5620,13.480225,1130}; + angles[]={0,4.6291938,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1049; + type="Betula_pendula_3s"; + }; + class Item562 + { + dataType="Object"; + class PositionInfo + { + position[]={5623.7363,12.748986,1114.3177}; + angles[]={0,0.70811611,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1050; + type="Betula_pendula_3s"; + }; + class Item563 + { + dataType="Object"; + class PositionInfo + { + position[]={5647.0552,11.601839,1112.7814}; + angles[]={0,0.57506782,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1051; + type="Betula_pendula_3s"; + }; + class Item564 + { + dataType="Object"; + class PositionInfo + { + position[]={5656,10.870226,1142}; + angles[]={0,6.2456908,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1052; + type="Betula_pendula_3s"; + }; + class Item565 + { + dataType="Object"; + class PositionInfo + { + position[]={5663.8374,10.829568,1123.147}; + angles[]={0,3.3009043,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1053; + type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; + }; + class Item566 + { + dataType="Object"; + class PositionInfo + { + position[]={5573.8906,12.867413,1126.2354}; + angles[]={0,4.1577349,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1054; + type="Betula_pendula_3s"; + }; + class Item567 + { + dataType="Object"; + class PositionInfo + { + position[]={5586.1133,14.939882,1153.9546}; + angles[]={0,2.7597842,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1055; + type="Betula_pendula_3s"; + atlOffset=9.5367432e-007; + }; + class Item568 + { + dataType="Object"; + class PositionInfo + { + position[]={5570,13.980225,1142}; + angles[]={6.218277,5.0069475,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1056; + type="Betula_pendula_3s"; + }; + class Item569 + { + dataType="Object"; + class PositionInfo + { + position[]={5582.5361,12.203099,1114.8113}; + angles[]={0,4.3782206,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1057; + type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; + }; + class Item570 + { + dataType="Object"; + class PositionInfo + { + position[]={5638.9019,5.7644324,1130.647}; + angles[]={0,5.5492792,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1058; + type="Betula_pendula_stem"; + }; + class Item571 + { + dataType="Object"; + class PositionInfo + { + position[]={5617.6323,7.0419436,1122.7346}; + angles[]={0,2.9460659,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1059; + type="Betula_pendula_stem"; + atlOffset=4.7683716e-007; + }; + class Item572 + { + dataType="Object"; + class PositionInfo + { + position[]={6343.0176,5.6009784,963.96991}; + angles[]={0,5.0188422,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1063; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item573 + { + dataType="Object"; + class PositionInfo + { + position[]={6337.9536,5.8199382,944.19965}; + angles[]={0,1.5271524,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1064; + type="prunusSpinosa_1s"; + }; + class Item574 + { + dataType="Object"; + class PositionInfo + { + position[]={6325.5293,6.0221863,932.7088}; + angles[]={0,3.5665994,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1065; + type="prunusSpinosa_1s"; + atlOffset=9.5367432e-007; + }; + class Item575 + { + dataType="Object"; + class PositionInfo + { + position[]={6285.4263,6.43151,926.04047}; + angles[]={0,0.34396961,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1066; + type="prunusSpinosa_1s"; + }; + class Item576 + { + dataType="Object"; + class PositionInfo + { + position[]={6274.2461,6.7670579,904.38934}; + angles[]={0,0.77296025,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1067; + type="prunusSpinosa_1s"; + }; + class Item577 + { + dataType="Object"; + class PositionInfo + { + position[]={6240.7231,6.2921906,887.63293}; + angles[]={0,0.26446861,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1068; + type="prunusSpinosa_1s"; + }; + class Item578 + { + dataType="Object"; + class PositionInfo + { + position[]={6276.731,6.7234268,912.96527}; + angles[]={0,4.0553613,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1069; + type="prunusSpinosa_1s"; + }; + class Item579 + { + dataType="Object"; + class PositionInfo + { + position[]={6299.9058,6.3182106,932.78461}; + angles[]={0,5.0040283,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1070; + type="prunusSpinosa_1s"; + }; + class Item580 + { + dataType="Object"; + class PositionInfo + { + position[]={6285.1655,6.7329564,892.49341}; + angles[]={0,1.1736078,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1071; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item581 + { + dataType="Object"; + class PositionInfo + { + position[]={6327.2559,6.0426841,914.90631}; + angles[]={0,3.9899645,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1072; + type="prunusSpinosa_1s"; + }; + class Item582 + { + dataType="Object"; + class PositionInfo + { + position[]={6352.3281,5.7365475,937.2309}; + angles[]={0,5.9326019,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1073; + type="prunusSpinosa_1s"; + }; + class Item583 + { + dataType="Object"; + class PositionInfo + { + position[]={6322.8535,6.1571789,921.47882}; + angles[]={0,3.0666232,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1074; + type="prunusSpinosa_1s"; + }; + class Item584 + { + dataType="Object"; + class PositionInfo + { + position[]={6285.1748,6.6686563,907.13959}; + angles[]={0,2.508692,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1075; + type="prunusSpinosa_1s"; + }; + class Item585 + { + dataType="Object"; + class PositionInfo + { + position[]={6245.3906,6.2972245,903.12701}; + angles[]={0,2.4183073,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1076; + type="prunusSpinosa_1s"; + }; + class Item586 + { + dataType="Object"; + class PositionInfo + { + position[]={6226.3994,6.5311418,892.33118}; + angles[]={0,4.720077,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1077; + type="prunusSpinosa_1s"; + }; + class Item587 + { + dataType="Object"; + class PositionInfo + { + position[]={6217.103,6.8173637,863.56628}; + angles[]={0,5.4515738,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1078; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item588 + { + dataType="Object"; + class PositionInfo + { + position[]={6188.5732,6.6583591,849.20422}; + angles[]={0,3.1921701,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1079; + type="prunusSpinosa_1s"; + }; + class Item589 + { + dataType="Object"; + class PositionInfo + { + position[]={6178.1206,6.6540956,838.61389}; + angles[]={0,0.84725332,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1080; + type="prunusSpinosa_1s"; + }; + class Item590 + { + dataType="Object"; + class PositionInfo + { + position[]={6188.6465,6.6579041,857.63483}; + angles[]={0,5.227365,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1081; + type="prunusSpinosa_1s"; + }; + class Item591 + { + dataType="Object"; + class PositionInfo + { + position[]={6246.249,6.5537953,870.32727}; + angles[]={0,3.4626799,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1082; + type="prunusSpinosa_1s"; + }; + class Item592 + { + dataType="Object"; + class PositionInfo + { + position[]={6246.8438,6.7602429,881.71649}; + angles[]={0,0.87939698,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1083; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item593 + { + dataType="Object"; + class PositionInfo + { + position[]={6187.6392,6.6561666,867.80292}; + angles[]={0,4.5747008,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1084; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item594 + { + dataType="Object"; + class PositionInfo + { + position[]={6165.9673,7.2397819,867.84485}; + angles[]={0,0.54185164,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1085; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item595 + { + dataType="Object"; + class PositionInfo + { + position[]={5965.6772,5.3221817,747.4278}; + angles[]={0,1.2170639,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1086; + type="prunusSpinosa_1s"; + atlOffset=-2.3841858e-007; + }; + class Item596 + { + dataType="Object"; + class PositionInfo + { + position[]={5992.3867,5.2522254,737.12537}; + angles[]={0,1.4289802,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1087; + type="prunusSpinosa_1s"; + }; + class Item597 + { + dataType="Object"; + class PositionInfo + { + position[]={6005.2847,5.2277384,731.81854}; + angles[]={0,0.58342874,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1088; + type="prunusSpinosa_1s"; + }; + class Item598 + { + dataType="Object"; + class PositionInfo + { + position[]={6008.8809,5.151638,758.25781}; + angles[]={0,3.5944731,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1089; + type="prunusSpinosa_1s"; + }; + class Item599 + { + dataType="Object"; + class PositionInfo + { + position[]={6024.9653,5.0101404,779.60345}; + angles[]={0,4.2681651,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1090; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item600 + { + dataType="Object"; + class PositionInfo + { + position[]={6051.5898,4.9868875,791.55499}; + angles[]={0,5.7810054,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1091; + type="prunusSpinosa_1s"; + }; + class Item601 + { + dataType="Object"; + class PositionInfo + { + position[]={6050.3887,5.0693903,761.61011}; + angles[]={0,2.0755451,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1092; + type="prunusSpinosa_1s"; + }; + class Item602 + { + dataType="Object"; + class PositionInfo + { + position[]={6081.4058,4.8511343,780.1709}; + angles[]={0,2.5849597,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1093; + type="prunusSpinosa_1s"; + }; + class Item603 + { + dataType="Object"; + class PositionInfo + { + position[]={6096.417,4.7835488,797.0766}; + angles[]={0,0.37161997,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1094; + type="prunusSpinosa_1s"; + }; + class Item604 + { + dataType="Object"; + class PositionInfo + { + position[]={6094.5894,5.714798,829.00702}; + angles[]={0,4.7660875,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1095; + type="prunusSpinosa_1s"; + }; + class Item605 + { + dataType="Object"; + class PositionInfo + { + position[]={6128.6338,4.7125669,835.97131}; + angles[]={0,3.3146715,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1096; + type="prunusSpinosa_1s"; + }; + class Item606 + { + dataType="Object"; + class PositionInfo + { + position[]={6150.2803,6.2177157,821.79248}; + angles[]={0,4.7270131,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1097; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item607 + { + dataType="Object"; + class PositionInfo + { + position[]={6160.6597,6.7552996,834.72894}; + angles[]={0,4.0076261,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1098; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item608 + { + dataType="Object"; + class PositionInfo + { + position[]={6140.5894,6.8783827,848.00702}; + angles[]={0,3.7123516,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1099; + type="prunusSpinosa_1s"; + }; + class Item609 + { + dataType="Object"; + class PositionInfo + { + position[]={6112.4624,5.0115752,798.97321}; + angles[]={0,2.6888328,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1100; + type="prunusSpinosa_1s"; + }; + class Item610 + { + dataType="Object"; + class PositionInfo + { + position[]={6130.79,5.3898916,810.68152}; + angles[]={0,5.5907388,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1101; + type="prunusSpinosa_1s"; + }; + class Item611 + { + dataType="Object"; + class PositionInfo + { + position[]={6321.2202,7.2687349,951.49432}; + angles[]={0,3.7867529,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1102; + type="prunusSpinosa_2s"; + }; + class Item612 + { + dataType="Object"; + class PositionInfo + { + position[]={6343.8159,7.0166616,925.26471}; + angles[]={0,4.6978598,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1103; + type="prunusSpinosa_2s"; + }; + class Item613 + { + dataType="Object"; + class PositionInfo + { + position[]={6346.8242,6.9440289,947.55341}; + angles[]={0,1.5555649,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1104; + type="prunusSpinosa_2s"; + }; + class Item614 + { + dataType="Object"; + class PositionInfo + { + position[]={6306.3281,7.5855913,917.13348}; + angles[]={0,2.7389355,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1105; + type="prunusSpinosa_2s"; + }; + class Item615 + { + dataType="Object"; + class PositionInfo + { + position[]={6293.2944,7.6219406,921.7951}; + angles[]={0,2.8690867,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1106; + type="prunusSpinosa_2s"; + }; + class Item616 + { + dataType="Object"; + class PositionInfo + { + position[]={6299.2798,7.6670332,903.0672}; + angles[]={0,4.0869107,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1107; + type="prunusSpinosa_2s"; + atlOffset=9.5367432e-007; + }; + class Item617 + { + dataType="Object"; + class PositionInfo + { + position[]={6254.626,7.731225,892.93408}; + angles[]={0,2.965591,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1108; + type="prunusSpinosa_2s"; + }; + class Item618 + { + dataType="Object"; + class PositionInfo + { + position[]={6272.5977,7.8872328,921.76691}; + angles[]={0,2.8961163,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1109; + type="prunusSpinosa_2s"; + }; + class Item619 + { + dataType="Object"; + class PositionInfo + { + position[]={6268.647,8.2750063,883.95715}; + angles[]={0,1.6013625,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1110; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item620 + { + dataType="Object"; + class PositionInfo + { + position[]={6256.0039,8.063179,909.69183}; + angles[]={0,0.95595616,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1111; + type="prunusSpinosa_2s"; + }; + class Item621 + { + dataType="Object"; + class PositionInfo + { + position[]={6225.9131,7.6996193,888.11743}; + angles[]={0,5.3039021,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1112; + type="prunusSpinosa_2s"; + atlOffset=-4.7683716e-007; + }; + class Item622 + { + dataType="Object"; + class PositionInfo + { + position[]={6224.6606,8.6485958,866.63385}; + angles[]={0,3.1528916,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1113; + type="prunusSpinosa_2s"; + }; + class Item623 + { + dataType="Object"; + class PositionInfo + { + position[]={6202.9507,7.4515657,876.56689}; + angles[]={0,1.7701484,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1114; + type="prunusSpinosa_2s"; + }; + class Item624 + { + dataType="Object"; + class PositionInfo + { + position[]={6220.3813,8.267292,881.78009}; + angles[]={0,3.3693936,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1115; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item625 + { + dataType="Object"; + class PositionInfo + { + position[]={6200.7954,7.8600349,849.867}; + angles[]={0,1.760424,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1116; + type="prunusSpinosa_2s"; + }; + class Item626 + { + dataType="Object"; + class PositionInfo + { + position[]={6204,7.8802319,864}; + angles[]={0,0.14346533,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1117; + type="prunusSpinosa_2s"; + }; + class Item627 + { + dataType="Object"; + class PositionInfo + { + position[]={6166.4927,7.8128815,855.27771}; + angles[]={0,2.7584105,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1118; + type="prunusSpinosa_2s"; + }; + class Item628 + { + dataType="Object"; + class PositionInfo + { + position[]={6138.1826,6.8884268,834.20502}; + angles[]={0,4.5292163,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1119; + type="prunusSpinosa_2s"; + }; + class Item629 + { + dataType="Object"; + class PositionInfo + { + position[]={6145.8804,7.0917482,828.24323}; + angles[]={0,0.35383406,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1120; + type="prunusSpinosa_2s"; + }; + class Item630 + { + dataType="Object"; + class PositionInfo + { + position[]={6145.3857,6.7866974,811.33118}; + angles[]={0,3.7647908,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1121; + type="prunusSpinosa_2s"; + }; + class Item631 + { + dataType="Object"; + class PositionInfo + { + position[]={6135.8149,6.5393953,817.0022}; + angles[]={0,5.0698299,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1122; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item632 + { + dataType="Object"; + class PositionInfo + { + position[]={6124.4448,6.2980523,827.32635}; + angles[]={0,4.464735,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1123; + type="prunusSpinosa_2s"; + }; + class Item633 + { + dataType="Object"; + class PositionInfo + { + position[]={6125.2866,5.817627,839.62939}; + angles[]={0,2.8323359,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1124; + type="prunusSpinosa_2s"; + atlOffset=-4.7683716e-007; + }; + class Item634 + { + dataType="Object"; + class PositionInfo + { + position[]={6101.2256,6.089035,827.80426}; + angles[]={0,5.2223411,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1125; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item635 + { + dataType="Object"; + class PositionInfo + { + position[]={6095.3926,5.9636116,809.07092}; + angles[]={0,0.89347231,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1126; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item636 + { + dataType="Object"; + class PositionInfo + { + position[]={6112.3755,6.1859899,811.56165}; + angles[]={0,0.42162424,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1127; + type="prunusSpinosa_2s"; + }; + class Item637 + { + dataType="Object"; + class PositionInfo + { + position[]={6111.6924,6.123105,826.29089}; + angles[]={0,3.6797667,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1128; + type="prunusSpinosa_2s"; + }; + class Item638 + { + dataType="Object"; + class PositionInfo + { + position[]={6070.9639,5.7263079,809.26709}; + angles[]={0,6.0973291,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1129; + type="prunusSpinosa_2s"; + }; + class Item639 + { + dataType="Object"; + class PositionInfo + { + position[]={6060.1685,6.0473614,795.86053}; + angles[]={0,0.25877452,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1130; + type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; + }; + class Item640 + { + dataType="Object"; + class PositionInfo + { + position[]={6072.5249,6.0518484,794.98962}; + angles[]={0,3.5338678,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1131; + type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; + }; + class Item641 + { + dataType="Object"; + class PositionInfo + { + position[]={6036.8911,6.2763534,767.41638}; + angles[]={0,0.76698381,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1132; + type="prunusSpinosa_2s"; + }; + class Item642 + { + dataType="Object"; + class PositionInfo + { + position[]={6000,6.3600235,764}; + angles[]={0.023292618,2.9674544,6.2760177}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1133; + type="prunusSpinosa_2s"; + }; + class Item643 + { + dataType="Object"; + class PositionInfo + { + position[]={5973.2397,6.5048904,736.5481}; + angles[]={0,2.7981603,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1134; + type="prunusSpinosa_2s"; + }; + class Item644 + { + dataType="Object"; + class PositionInfo + { + position[]={5993,6.4621782,723}; + angles[]={6.2795153,4.5709229,6.2658701}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1135; + type="prunusSpinosa_2s"; + }; + class Item645 + { + dataType="Object"; + class PositionInfo + { + position[]={5986.8159,6.4779391,740.94305}; + angles[]={0,5.4324689,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1136; + type="prunusSpinosa_2s"; + }; + class Item646 + { + dataType="Object"; + class PositionInfo + { + position[]={6017.9526,6.2929134,741.64417}; + angles[]={0,1.3239906,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1137; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item647 + { + dataType="Object"; + class PositionInfo + { + position[]={6035.0103,6.3132634,757.23547}; + angles[]={0,6.2598839,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1138; + type="prunusSpinosa_2s"; + }; + class Item648 + { + dataType="Object"; + class PositionInfo + { + position[]={6012.4727,4.9167981,770.75031}; + angles[]={0,2.8494611,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1139; + type="prunusSpinosa_1s"; + }; + class Item649 + { + dataType="Object"; + class PositionInfo + { + position[]={6023.0757,5.1192174,760.0528}; + angles[]={0,1.4741554,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1140; + type="prunusSpinosa_1s"; + }; + class Item650 + { + dataType="Object"; + class PositionInfo + { + position[]={6005.2515,5.187088,745.79102}; + angles[]={0,3.8744149,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1141; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item651 + { + dataType="Object"; + class PositionInfo + { + position[]={5982.1265,5.2803707,750.23615}; + angles[]={0,4.2721171,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1142; + type="prunusSpinosa_1s"; + }; + class Item652 + { + dataType="Object"; + class PositionInfo + { + position[]={5982.6338,5.300591,724.3999}; + angles[]={0,1.8261902,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1143; + type="prunusSpinosa_1s"; + }; + class Item653 + { + dataType="Object"; + class PositionInfo + { + position[]={6046.1753,5.0440254,771.32397}; + angles[]={0,0.1670752,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1144; + type="prunusSpinosa_1s"; + }; + class Item654 + { + dataType="Object"; + class PositionInfo + { + position[]={6055.8613,4.9595895,781.14301}; + angles[]={0,3.2958176,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1145; + type="prunusSpinosa_1s"; + }; + class Item655 + { + dataType="Object"; + class PositionInfo + { + position[]={5969.9194,5.3012524,721.50433}; + angles[]={0,2.9340565,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1146; + type="prunusSpinosa_1s"; + atlOffset=-2.3841858e-007; + }; + class Item656 + { + dataType="Object"; + class PositionInfo + { + position[]={5976.5464,5.30088,740.80682}; + angles[]={0,0.40544894,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1147; + type="prunusSpinosa_1s"; + }; + class Item657 + { + dataType="Object"; + class PositionInfo + { + position[]={5989.8491,5.2544675,751.26837}; + angles[]={0,0.60552526,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1148; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item658 + { + dataType="Object"; + class PositionInfo + { + position[]={6030.3569,5.1277328,754.71167}; + angles[]={0,5.3086309,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1149; + type="prunusSpinosa_1s"; + }; + class Item659 + { + dataType="Object"; + class PositionInfo + { + position[]={6043.231,5.0475874,775.40045}; + angles[]={0,5.4562068,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1150; + type="prunusSpinosa_1s"; + }; + class Item660 + { + dataType="Object"; + class PositionInfo + { + position[]={6077.9854,4.8522916,789.42523}; + angles[]={0,3.8312027,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1151; + type="prunusSpinosa_1s"; + }; + class Item661 + { + dataType="Object"; + class PositionInfo + { + position[]={6040.0688,5.0712237,767.05048}; + angles[]={0,1.2019334,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1152; + type="prunusSpinosa_1s"; + }; + class Item662 + { + dataType="Object"; + class PositionInfo + { + position[]={6015.3848,5.1395907,749.14581}; + angles[]={0,3.8252869,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1153; + type="prunusSpinosa_1s"; + }; + class Item663 + { + dataType="Object"; + class PositionInfo + { + position[]={6033.2964,5.2656674,788.13068}; + angles[]={0,3.0045838,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1154; + type="prunusSpinosa_1s"; + }; + class Item664 + { + dataType="Object"; + class PositionInfo + { + position[]={5989.5503,5.2220526,769.15192}; + angles[]={0,5.5178757,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1155; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item665 + { + dataType="Object"; + class PositionInfo + { + position[]={5962.7749,5.3167911,748.90167}; + angles[]={0,5.1695428,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1156; + type="prunusSpinosa_1s"; + }; + class Item666 + { + dataType="Object"; + class PositionInfo + { + position[]={5993.4136,5.2310338,762.24872}; + angles[]={0,5.2546091,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1157; + type="prunusSpinosa_1s"; + }; + class Item667 + { + dataType="Object"; + class PositionInfo + { + position[]={6032.1172,5.0613365,773.53204}; + angles[]={0,2.6409173,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1158; + type="prunusSpinosa_1s"; + }; + class Item668 + { + dataType="Object"; + class PositionInfo + { + position[]={6072.0947,4.8829546,774.35358}; + angles[]={0,0.076238669,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1159; + type="prunusSpinosa_1s"; + }; + class Item669 + { + dataType="Object"; + class PositionInfo + { + position[]={6091.8877,4.8088741,783.59772}; + angles[]={0,3.6679645,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1160; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item670 + { + dataType="Object"; + class PositionInfo + { + position[]={6103.4526,4.7657471,811.52802}; + angles[]={0,5.4330797,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1161; + type="prunusSpinosa_1s"; + }; + class Item671 + { + dataType="Object"; + class PositionInfo + { + position[]={6133.0386,5.1521668,823.565}; + angles[]={0,1.5540419,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1162; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item672 + { + dataType="Object"; + class PositionInfo + { + position[]={6144.3037,6.6259346,833.28644}; + angles[]={0,2.1640496,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1163; + type="prunusSpinosa_1s"; + }; + class Item673 + { + dataType="Object"; + class PositionInfo + { + position[]={6132.292,5.3763652,815.16718}; + angles[]={0,6.1682463,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1164; + type="prunusSpinosa_1s"; + }; + class Item674 + { + dataType="Object"; + class PositionInfo + { + position[]={6073.8594,4.7466388,807.11707}; + angles[]={0,0.5792194,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1165; + type="prunusSpinosa_1s"; + }; + class Item675 + { + dataType="Object"; + class PositionInfo + { + position[]={6072.3569,4.8494005,795.81171}; + angles[]={0,2.0985298,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1166; + type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; + }; + class Item676 + { + dataType="Object"; + class PositionInfo + { + position[]={6132.4839,5.3903494,804.95111}; + angles[]={0,4.3996215,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1167; + type="prunusSpinosa_1s"; + }; + class Item677 + { + dataType="Object"; + class PositionInfo + { + position[]={6154.083,5.8889031,803.17798}; + angles[]={0,3.1963291,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1168; + type="prunusSpinosa_1s"; + }; + class Item678 + { + dataType="Object"; + class PositionInfo + { + position[]={6363.3525,6.0099611,907.20947}; + angles[]={0,4.2867041,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1169; + type="prunusSpinosa_1s"; + }; + class Item679 + { + dataType="Object"; + class PositionInfo + { + position[]={6337.5518,5.8925591,919.61273}; + angles[]={0,6.0979676,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1170; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item680 + { + dataType="Object"; + class PositionInfo + { + position[]={6325.1187,6.0895143,925.93298}; + angles[]={0,0.5902741,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1171; + type="prunusSpinosa_1s"; + }; + class Item681 + { + dataType="Object"; + class PositionInfo + { + position[]={6319.4219,6.2085195,899.86554}; + angles[]={0,3.1543918,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1172; + type="prunusSpinosa_1s"; + }; + class Item682 + { + dataType="Object"; + class PositionInfo + { + position[]={6301.6836,6.5160704,879.87305}; + angles[]={0,3.3818419,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1173; + type="prunusSpinosa_1s"; + }; + class Item683 + { + dataType="Object"; + class PositionInfo + { + position[]={6274.1895,7.0282497,870.08667}; + angles[]={0,2.5209904,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1174; + type="prunusSpinosa_1s"; + }; + class Item684 + { + dataType="Object"; + class PositionInfo + { + position[]={6277.7793,6.7504606,899.8399}; + angles[]={0,2.982481,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1175; + type="prunusSpinosa_1s"; + }; + class Item685 + { + dataType="Object"; + class PositionInfo + { + position[]={6245.3784,6.6487989,883.81635}; + angles[]={0,0.9083249,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1176; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item686 + { + dataType="Object"; + class PositionInfo + { + position[]={6229.0645,7.1356959,868.16388}; + angles[]={0,4.0502548,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1177; + type="prunusSpinosa_1s"; + }; + class Item687 + { + dataType="Object"; + class PositionInfo + { + position[]={6228.3354,6.9350724,836.18951}; + angles[]={0,1.7147136,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1178; + type="prunusSpinosa_1s"; + }; + class Item688 + { + dataType="Object"; + class PositionInfo + { + position[]={6193.8433,6.6618705,831.96716}; + angles[]={0,3.7952662,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1179; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item689 + { + dataType="Object"; + class PositionInfo + { + position[]={6173.3989,6.6529794,847.83002}; + angles[]={0,1.7296629,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1180; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item690 + { + dataType="Object"; + class PositionInfo + { + position[]={6162.019,6.7266169,835.76404}; + angles[]={0,6.1571655,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1181; + type="prunusSpinosa_1s"; + }; + class Item691 + { + dataType="Object"; + class PositionInfo + { + position[]={6180.9648,6.6071706,820.92505}; + angles[]={0,1.482654,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1182; + type="prunusSpinosa_1s"; + }; + class Item692 + { + dataType="Object"; + class PositionInfo + { + position[]={6212.9189,6.6067371,867.55511}; + angles[]={0,0.012148449,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1183; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item693 + { + dataType="Object"; + class PositionInfo + { + position[]={6193.7144,6.6583562,857.34839}; + angles[]={0,6.1876655,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1184; + type="prunusSpinosa_1s"; + }; + class Item694 + { + dataType="Object"; + class PositionInfo + { + position[]={5992.6436,6.4756699,732.19867}; + angles[]={0,0.4528206,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1185; + type="prunusSpinosa_2s"; + }; + class Item695 + { + dataType="Object"; + class PositionInfo + { + position[]={5972.2158,6.587553,760.1496}; + angles[]={0,6.035275,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1186; + type="prunusSpinosa_2s"; + }; + class Item696 + { + dataType="Object"; + class PositionInfo + { + position[]={5967.4365,6.5253181,738.17242}; + angles[]={0,2.3961091,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1187; + type="prunusSpinosa_2s"; + }; + class Item697 + { + dataType="Object"; + class PositionInfo + { + position[]={6010.2334,6.305088,765.26001}; + angles[]={0,1.0548141,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1188; + type="prunusSpinosa_2s"; + }; + class Item698 + { + dataType="Object"; + class PositionInfo + { + position[]={6021,6.3342867,756}; + angles[]={0.0018593199,0.043106407,6.2820406}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1189; + type="prunusSpinosa_2s"; + }; + class Item699 + { + dataType="Object"; + class PositionInfo + { + position[]={6018.3828,6.0477176,778.71826}; + angles[]={0,2.9674685,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1190; + type="prunusSpinosa_2s"; + }; + class Item700 + { + dataType="Object"; + class PositionInfo + { + position[]={6063.7031,6.0967159,785.25171}; + angles[]={0,0.58283937,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1191; + type="prunusSpinosa_2s"; + }; + class Item701 + { + dataType="Object"; + class PositionInfo + { + position[]={6043.4858,6.2984195,757.94672}; + angles[]={0,0.83419454,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1192; + type="prunusSpinosa_2s"; + }; + class Item702 + { + dataType="Object"; + class PositionInfo + { + position[]={6050.4443,6.2443614,795.32007}; + angles[]={0,4.7260895,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1193; + type="prunusSpinosa_2s"; + }; + class Item703 + { + dataType="Object"; + class PositionInfo + { + position[]={6060.9912,6.1863575,768.65759}; + angles[]={0,5.1818657,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1194; + type="prunusSpinosa_2s"; + }; + class Item704 + { + dataType="Object"; + class PositionInfo + { + position[]={6093,6.1606073,769}; + angles[]={0,4.4373112,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1195; + type="prunusSpinosa_2s"; + }; + class Item705 + { + dataType="Object"; + class PositionInfo + { + position[]={6095.6738,5.9634781,809.07404}; + angles[]={0,6.1509972,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1196; + type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; + }; + class Item706 + { + dataType="Object"; + class PositionInfo + { + position[]={6116.521,6.4987383,797.43835}; + angles[]={0,0.32481274,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1197; + type="prunusSpinosa_2s"; + }; + class Item707 + { + dataType="Object"; + class PositionInfo + { + position[]={6114,6.644557,779}; + angles[]={0,0.48881125,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1198; + type="prunusSpinosa_2s"; + }; + class Item708 + { + dataType="Object"; + class PositionInfo + { + position[]={6120.8022,6.3496323,823.88074}; + angles[]={0,4.5105162,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1199; + type="prunusSpinosa_2s"; + }; + class Item709 + { + dataType="Object"; + class PositionInfo + { + position[]={6116.479,6.4710617,810.04889}; + angles[]={0,4.1918173,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1200; + type="prunusSpinosa_2s"; + }; + class Item710 + { + dataType="Object"; + class PositionInfo + { + position[]={6154.5635,7.7511511,815.74695}; + angles[]={0,2.3746345,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1201; + type="prunusSpinosa_2s"; + }; + class Item711 + { + dataType="Object"; + class PositionInfo + { + position[]={6184.4663,7.8595877,834.49066}; + angles[]={0,1.5247757,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1202; + type="prunusSpinosa_2s"; + }; + class Item712 + { + dataType="Object"; + class PositionInfo + { + position[]={6177.2695,7.8561888,841.04834}; + angles[]={0,3.7729068,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1203; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item713 + { + dataType="Object"; + class PositionInfo + { + position[]={6179.1133,7.8570204,857.86682}; + angles[]={0,0.43266109,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1204; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item714 + { + dataType="Object"; + class PositionInfo + { + position[]={6188.2007,7.8599882,851.44934}; + angles[]={0,1.1240921,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1205; + type="prunusSpinosa_2s"; + }; + class Item715 + { + dataType="Object"; + class PositionInfo + { + position[]={6198.7095,7.860034,840.24988}; + angles[]={0,2.5626268,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1206; + type="prunusSpinosa_2s"; + }; + class Item716 + { + dataType="Object"; + class PositionInfo + { + position[]={6196.8877,7.987999,828.05341}; + angles[]={0,1.274084,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1207; + type="prunusSpinosa_2s"; + }; + class Item717 + { + dataType="Object"; + class PositionInfo + { + position[]={6221.8164,7.9973087,837.91858}; + angles[]={0,0.83223826,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1208; + type="prunusSpinosa_2s"; + atlOffset=-4.7683716e-007; + }; + class Item718 + { + dataType="Object"; + class PositionInfo + { + position[]={6229.1274,8.6318512,856.12604}; + angles[]={0,1.2682898,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1209; + type="prunusSpinosa_2s"; + }; + class Item719 + { + dataType="Object"; + class PositionInfo + { + position[]={6212,7.890811,855}; + angles[]={0,2.5544007,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1210; + type="prunusSpinosa_2s"; + }; + class Item720 + { + dataType="Object"; + class PositionInfo + { + position[]={6211.5039,7.9032326,840.26324}; + angles[]={0,6.1134744,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1211; + type="prunusSpinosa_2s"; + }; + class Item721 + { + dataType="Object"; + class PositionInfo + { + position[]={6253.4624,7.7187319,853.97894}; + angles[]={0,3.516896,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1212; + type="prunusSpinosa_2s"; + }; + class Item722 + { + dataType="Object"; + class PositionInfo + { + position[]={6265.2944,8.3298645,866.48022}; + angles[]={0,0.16410427,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1213; + type="prunusSpinosa_2s"; + }; + class Item723 + { + dataType="Object"; + class PositionInfo + { + position[]={6253.0469,7.6135778,868.33551}; + angles[]={0,5.2501864,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1214; + type="prunusSpinosa_2s"; + }; + class Item724 + { + dataType="Object"; + class PositionInfo + { + position[]={6290.7695,7.8099737,892.97388}; + angles[]={0,5.2382407,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1215; + type="prunusSpinosa_2s"; + }; + class Item725 + { + dataType="Object"; + class PositionInfo + { + position[]={6333.1626,7.2877731,896.97192}; + angles[]={0,4.5875039,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1216; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item726 + { + dataType="Object"; + class PositionInfo + { + position[]={6356.6836,6.9817228,918.65857}; + angles[]={0,0.7087186,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1217; + type="prunusSpinosa_2s"; + }; + class Item727 + { + dataType="Object"; + class PositionInfo + { + position[]={6347.793,6.9475393,944.07269}; + angles[]={0,3.3513365,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1218; + type="prunusSpinosa_2s"; + }; + class Item728 + { + dataType="Object"; + class PositionInfo + { + position[]={6342.7998,6.9915714,915.36224}; + angles[]={0,0.54030627,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1219; + type="prunusSpinosa_2s"; + atlOffset=-4.7683716e-007; + }; + class Item729 + { + dataType="Object"; + class PositionInfo + { + position[]={6311.7065,7.5200396,917.15082}; + angles[]={0,5.1412506,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1220; + type="prunusSpinosa_2s"; + }; + class Item730 + { + dataType="Object"; + class PositionInfo + { + position[]={6293.458,7.7688446,902.97198}; + angles[]={0,5.8472052,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1221; + type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; + }; + class Item731 + { + dataType="Object"; + class PositionInfo + { + position[]={6314.8438,6.4712949,887.69989}; + angles[]={0,2.2649262,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1222; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item732 + { + dataType="Object"; + class PositionInfo + { + position[]={6305.1289,6.4150395,899.21027}; + angles[]={0,1.9588082,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1223; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item733 + { + dataType="Object"; + class PositionInfo + { + position[]={6324.0356,6.0991936,912.0025}; + angles[]={0,4.3894401,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1224; + type="prunusSpinosa_1s"; + }; + class Item734 + { + dataType="Object"; + class PositionInfo + { + position[]={6346.7319,5.8043089,905.72418}; + angles[]={0,5.508378,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1225; + type="prunusSpinosa_1s"; + atlOffset=-4.7683716e-007; + }; + class Item735 + { + dataType="Object"; + class PositionInfo + { + position[]={6348.29,5.7457361,931.51837}; + angles[]={0,3.9378972,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1226; + type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; + }; + class Item736 + { + dataType="Object"; + class PositionInfo + { + position[]={6281.2031,6.7623324,889.8205}; + angles[]={0,4.6659708,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1227; + type="prunusSpinosa_1s"; + }; + class Item737 + { + dataType="Object"; + class PositionInfo + { + position[]={6270.7637,7.0122313,880.80664}; + angles[]={0,4.5930719,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1228; + type="prunusSpinosa_1s"; + }; + class Item738 + { + dataType="Object"; + class PositionInfo + { + position[]={6144,6.5536137,799}; + angles[]={0,1.3256602,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1229; + type="Corylus_heterophylla_2"; + }; + class Item739 + { + dataType="Object"; + class PositionInfo + { + position[]={6124.6426,6.4394126,790.82751}; + angles[]={0,0.054621566,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1230; + type="Corylus_heterophylla_2"; + }; + class Item740 + { + dataType="Object"; + class PositionInfo + { + position[]={6125.1743,6.4442396,809.80029}; + angles[]={0,0.40552247,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1231; + type="Corylus_heterophylla_2"; + }; + class Item741 + { + dataType="Object"; + class PositionInfo + { + position[]={6098.1201,5.8313236,801.15839}; + angles[]={0,0.13093074,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1232; + type="Corylus_heterophylla_2"; + }; + class Item742 + { + dataType="Object"; + class PositionInfo + { + position[]={6106.6953,5.8755531,790.17511}; + angles[]={0,4.5439663,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1233; + type="Corylus_heterophylla_2"; + }; + class Item743 + { + dataType="Object"; + class PositionInfo + { + position[]={6086.687,5.8765974,791.99762}; + angles[]={0,1.8904655,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1234; + type="Corylus_heterophylla_2"; + }; + class Item744 + { + dataType="Object"; + class PositionInfo + { + position[]={6084.0356,6.0185566,766.30743}; + angles[]={0,0.79616684,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1235; + type="Corylus_heterophylla_2"; + }; + class Item745 + { + dataType="Object"; + class PositionInfo + { + position[]={6063.2686,6.1504993,757.63641}; + angles[]={0,2.0200572,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1236; + type="Corylus_heterophylla_2"; + }; + class Item746 + { + dataType="Object"; + class PositionInfo + { + position[]={6049.0996,6.1972041,749.08032}; + angles[]={0,4.7630715,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1237; + type="Corylus_heterophylla_2"; + }; + class Item747 + { + dataType="Object"; + class PositionInfo + { + position[]={6034.5728,6.3338394,738.54559}; + angles[]={0,3.3313782,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1238; + type="Corylus_heterophylla_2"; + }; + class Item748 + { + dataType="Object"; + class PositionInfo + { + position[]={6048.1416,6.0756464,776.31256}; + angles[]={0,4.91361,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1239; + type="Corylus_heterophylla_2"; + }; + class Item749 + { + dataType="Object"; + class PositionInfo + { + position[]={5998.0664,6.2640176,754.61523}; + angles[]={0,4.2188034,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1240; + type="Corylus_heterophylla_2"; + }; + class Item750 + { + dataType="Object"; + class PositionInfo + { + position[]={5972.3428,6.3602085,729.33203}; + angles[]={0,5.3843088,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1241; + type="Corylus_heterophylla_2"; + }; + class Item751 + { + dataType="Object"; + class PositionInfo + { + position[]={6043.1953,6.1532373,786.35779}; + angles[]={0,0.36330187,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1242; + type="Corylus_heterophylla_2"; + }; + class Item752 + { + dataType="Object"; + class PositionInfo + { + position[]={6088.5806,5.7843142,815.505}; + angles[]={0,3.9385252,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1243; + type="Corylus_heterophylla_2"; + }; + class Item753 + { + dataType="Object"; + class PositionInfo + { + position[]={6164.7075,7.7204142,846.63153}; + angles[]={0,1.5547045,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1244; + type="Corylus_heterophylla_2"; + }; + class Item754 + { + dataType="Object"; + class PositionInfo + { + position[]={6171.7886,7.7737627,822.30206}; + angles[]={0,2.2038643,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1245; + type="Corylus_heterophylla_2"; + }; + class Item755 + { + dataType="Object"; + class PositionInfo + { + position[]={6180.5181,7.8474369,811.79681}; + angles[]={0,5.3086514,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1246; + type="Corylus_heterophylla_2"; + }; + class Item756 + { + dataType="Object"; + class PositionInfo + { + position[]={6156.3315,7.97048,851.84894}; + angles[]={0,3.288712,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1247; + type="Corylus_heterophylla_2"; + }; + class Item757 + { + dataType="Object"; + class PositionInfo + { + position[]={6196.3936,7.6737509,872.14801}; + angles[]={0,4.1139994,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1248; + type="Corylus_heterophylla_2"; + }; + class Item758 + { + dataType="Object"; + class PositionInfo + { + position[]={6213,7.8151751,834}; + angles[]={0,2.9332027,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1249; + type="Corylus_heterophylla_2"; + }; + class Item759 + { + dataType="Object"; + class PositionInfo + { + position[]={6194,7.8095655,820}; + angles[]={0,6.1575899,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1250; + type="Corylus_heterophylla_2"; + }; + class Item760 + { + dataType="Object"; + class PositionInfo + { + position[]={6235.4468,7.2022219,891.02039}; + angles[]={0,3.2530744,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1251; + type="Corylus_heterophylla_2"; + }; + class Item761 + { + dataType="Object"; + class PositionInfo + { + position[]={6259.3022,8.1268892,882.2691}; + angles[]={0,1.8712637,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1252; + type="Corylus_heterophylla_2"; + }; + class Item762 + { + dataType="Object"; + class PositionInfo + { + position[]={6266.8574,7.9128962,906.13513}; + angles[]={0,0.35783213,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1253; + type="Corylus_heterophylla_2"; + }; + class Item763 + { + dataType="Object"; + class PositionInfo + { + position[]={6291.8438,7.6323891,880.82941}; + angles[]={0,2.2550819,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1254; + type="Corylus_heterophylla_2"; + }; + class Item764 + { + dataType="Object"; + class PositionInfo + { + position[]={6282.8218,7.7892809,879.31854}; + angles[]={0,1.7333157,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1255; + type="Corylus_heterophylla_2"; + }; + class Item765 + { + dataType="Object"; + class PositionInfo + { + position[]={6312.7744,7.2812271,930.49579}; + angles[]={0,0.87178099,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1256; + type="Corylus_heterophylla_2"; + }; + class Item766 + { + dataType="Object"; + class PositionInfo + { + position[]={6327.936,6.9653845,944.66644}; + angles[]={0,3.1607285,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1257; + type="Corylus_heterophylla_2"; + }; + class Item767 + { + dataType="Object"; + class PositionInfo + { + position[]={6334.2705,6.9213772,906.83209}; + angles[]={0,2.9687974,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1258; + type="Corylus_heterophylla_2"; + }; + class Item768 + { + dataType="Object"; + class PositionInfo + { + position[]={6363.1821,6.852006,913.25476}; + angles[]={0,5.5327821,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1259; + type="Corylus_heterophylla_2"; + }; + class Item769 + { + dataType="Object"; + class PositionInfo + { + position[]={6048.5571,7.4469361,583.81409}; + angles[]={0,5.0516033,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1260; + type="prunusSpinosa_1s"; + }; + class Item770 + { + dataType="Object"; + class PositionInfo + { + position[]={6039.002,7.4469361,587.00812}; + angles[]={0,1.3754584,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1261; + type="prunusSpinosa_1s"; + }; + class Item771 + { + dataType="Object"; + class PositionInfo + { + position[]={6048.4585,7.4469361,595.33447}; + angles[]={0,3.9571402,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1262; + type="prunusSpinosa_1s"; + }; + class Item772 + { + dataType="Object"; + class PositionInfo + { + position[]={6046.1963,7.4469361,595.99725}; + angles[]={0,6.0033717,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1263; + type="prunusSpinosa_1s"; + }; + class Item773 + { + dataType="Object"; + class PositionInfo + { + position[]={6034.7563,7.4469361,580.22882}; + angles[]={0,4.1577663,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1264; + type="prunusSpinosa_1s"; + }; + class Item774 + { + dataType="Object"; + class PositionInfo + { + position[]={6041.8906,6.282198,593.8089}; + angles[]={0,5.5288811,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1265; + type="Fallen_Branch3"; + }; + class Item775 + { + dataType="Object"; + class PositionInfo + { + position[]={6052.1694,10.053295,582.7865}; + angles[]={0,2.3528481,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1266; + type="Betula_pendula_2s"; + }; + class Item776 + { + dataType="Object"; + class PositionInfo + { + position[]={6042.5889,10.053295,596.14307}; + angles[]={0,2.3168008,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1267; + type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; + }; + class Item777 + { + dataType="Object"; + class PositionInfo + { + position[]={6052,8.6284752,591}; + angles[]={0,5.3326807,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1268; + type="Betula_pendula_2w"; + }; + class Item778 + { + dataType="Object"; + class PositionInfo + { + position[]={6024.9097,8.6284752,587.76093}; + angles[]={0,1.2718185,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1269; + type="Betula_pendula_2w"; + }; + class Item779 + { + dataType="Object"; + class PositionInfo + { + position[]={6035.5952,8.6284752,592.82599}; + angles[]={0,0.14321131,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1270; + type="Betula_pendula_2w"; + }; + class Item780 + { + dataType="Object"; + class PositionInfo + { + position[]={6040.8262,8.0279465,582.45709}; + angles[]={0,4.9849558,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1271; + type="Betula_pendula_1s"; + }; + class Item781 + { + dataType="Object"; + class PositionInfo + { + position[]={6036.9023,8.0279465,580.6842}; + angles[]={0,2.6247132,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1272; + type="Betula_pendula_1s"; + }; + class Item782 + { + dataType="Object"; + class PositionInfo + { + position[]={6046.7036,12.550225,587.26013}; + angles[]={0,5.8218479,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1273; + type="Betula_pendula_3s"; + }; + class Item783 + { + dataType="Object"; + class PositionInfo + { + position[]={6031.0874,12.550225,585.11444}; + angles[]={0,5.5773048,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1274; + type="Betula_pendula_3s"; + }; + class Item784 + { + dataType="Object"; + class PositionInfo + { + position[]={6032.772,6.3178554,583.42828}; + angles[]={0,4.735076,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1275; + type="Betula_pendula_stem"; + }; + class Item785 + { + dataType="Object"; + class PositionInfo + { + position[]={5993.4438,7.4469361,578.86456}; + angles[]={0,1.1249278,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1278; + type="prunusSpinosa_1s"; + }; + class Item786 + { + dataType="Object"; + class PositionInfo + { + position[]={5983.7939,7.4421773,581.88898}; + angles[]={0,0.71668118,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1279; + type="prunusSpinosa_1s"; + }; + class Item787 + { + dataType="Object"; + class PositionInfo + { + position[]={5983.96,7.4469361,577.41766}; + angles[]={0,3.062259,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1280; + type="prunusSpinosa_1s"; + }; + class Item788 + { + dataType="Object"; + class PositionInfo + { + position[]={5983.981,7.4469361,574.96252}; + angles[]={0,2.0506608,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1281; + type="prunusSpinosa_1s"; + }; + class Item789 + { + dataType="Object"; + class PositionInfo + { + position[]={6023,7.4469361,580}; + angles[]={0,4.0870147,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1282; + type="prunusSpinosa_1s"; + }; + class Item790 + { + dataType="Object"; + class PositionInfo + { + position[]={6020.0791,7.4469361,572.49762}; + angles[]={0,4.8278136,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1283; + type="prunusSpinosa_1s"; + }; + class Item791 + { + dataType="Object"; + class PositionInfo + { + position[]={5988.5229,7.7163119,565.16541}; + angles[]={0,6.2259555,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1284; + type="prunusSpinosa_1s"; + }; + class Item792 + { + dataType="Object"; + class PositionInfo + { + position[]={5980.2559,6.282198,577.07288}; + angles[]={0,1.4428219,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1285; + type="Fallen_Branch3"; + }; + class Item793 + { + dataType="Object"; + class PositionInfo + { + position[]={6017,8.8300791,613}; + angles[]={0,6.2199588,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1286; + type="Betula_pendula_2s"; + }; + class Item794 + { + dataType="Object"; + class PositionInfo + { + position[]={5983,10.111978,564}; + angles[]={-0,3.3886042,0.058614347}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1287; + type="Betula_pendula_2s"; + }; + class Item795 + { + dataType="Object"; + class PositionInfo + { + position[]={6023,10.053295,568}; + angles[]={-0,5.1350517,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1288; + type="Betula_pendula_2s"; + }; + class Item796 + { + dataType="Object"; + class PositionInfo + { + position[]={6008.082,10.053295,579.61621}; + angles[]={0,4.5803471,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1289; + type="Betula_pendula_2s"; + }; + class Item797 + { + dataType="Object"; + class PositionInfo + { + position[]={5993.459,10.054926,567.5705}; + angles[]={0,0.81108201,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1290; + type="Betula_pendula_2s"; + atlOffset=-4.7683716e-007; + }; + class Item798 + { + dataType="Object"; + class PositionInfo + { + position[]={5983.1997,10.056586,568.90857}; + angles[]={0,2.2319999,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1291; + type="Betula_pendula_2s"; + }; + class Item799 + { + dataType="Object"; + class PositionInfo + { + position[]={6004.6807,10.053295,573.82654}; + angles[]={0,2.2507203,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1292; + type="Betula_pendula_2s"; + }; + class Item800 + { + dataType="Object"; + class PositionInfo + { + position[]={5985.123,10.053295,572.25073}; + angles[]={0,6.0091295,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1293; + type="Betula_pendula_2s"; + }; + class Item801 + { + dataType="Object"; + class PositionInfo + { + position[]={6001,7.3221331,605}; + angles[]={0,5.1954899,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1294; + type="Betula_pendula_2w"; + }; + class Item802 + { + dataType="Object"; + class PositionInfo + { + position[]={6012,8.6284752,574}; + angles[]={-0,2.0526392,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1295; + type="Betula_pendula_2w"; + }; + class Item803 + { + dataType="Object"; + class PositionInfo + { + position[]={6009.6577,8.6195602,555.46277}; + angles[]={0,1.8372812,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1296; + type="Betula_pendula_2w"; + }; + class Item804 + { + dataType="Object"; + class PositionInfo + { + position[]={6017,8.6284237,563}; + angles[]={-0,4.6163707,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1297; + type="Betula_pendula_2w"; + }; + class Item805 + { + dataType="Object"; + class PositionInfo + { + position[]={6000,8.6284714,567}; + angles[]={-0,5.4154177,-0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1298; + type="Betula_pendula_2w"; + }; + class Item806 + { + dataType="Object"; + class PositionInfo + { + position[]={5995.2632,8.6284752,574.24243}; + angles[]={0,4.8089218,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1299; + type="Betula_pendula_2w"; + }; + class Item807 + { + dataType="Object"; + class PositionInfo + { + position[]={6008,7.304687,610}; + angles[]={0.036007516,2.8928502,0.089697838}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1300; + type="Betula_pendula_2w"; + }; + class Item808 + { + dataType="Object"; + class PositionInfo + { + position[]={6016.9312,8.6284752,584.41486}; + angles[]={0,3.1542804,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1301; + type="Betula_pendula_2w"; + }; + class Item809 + { + dataType="Object"; + class PositionInfo + { + position[]={5991.5259,8.0279465,580.20837}; + angles[]={-0,0.51468801,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1302; + type="Betula_pendula_1s"; + }; + class Item810 + { + dataType="Object"; + class PositionInfo + { + position[]={6001.5884,8.0279465,579.82574}; + angles[]={0,4.1594028,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1303; + type="Betula_pendula_1s"; + }; + class Item811 + { + dataType="Object"; + class PositionInfo + { + position[]={5988.0566,8.0279465,580.97113}; + angles[]={0,4.8304367,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1304; + type="Betula_pendula_1s"; + }; + class Item812 + { + dataType="Object"; + class PositionInfo + { + position[]={6010.1489,12.550219,566.03442}; + angles[]={0,2.6955042,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1305; + type="Betula_pendula_3s"; + }; + class Item813 + { + dataType="Object"; + class PositionInfo + { + position[]={5980,12.550225,569}; + angles[]={0,3.3294814,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1306; + type="Betula_pendula_3s"; + }; + class Item814 + { + dataType="Object"; + class PositionInfo + { + position[]={5997,12.773662,555}; + angles[]={0.017937517,2.9340711,6.175611}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1307; + type="Betula_pendula_3s"; + }; + class Item815 + { + dataType="Object"; + class PositionInfo + { + position[]={6018.3062,12.550225,577.81207}; + angles[]={0,0.58040059,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1308; + type="Betula_pendula_3s"; + }; + class Item816 + { + dataType="Object"; + class PositionInfo + { + position[]={5609,9.4519367,1151}; + angles[]={0,6.2459521,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1310; + type="prunusSpinosa_1s"; + }; + class Item817 + { + dataType="Object"; + class PositionInfo + { + position[]={5632,9.6782951,1175}; + angles[]={0,1.3417245,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1311; + type="Betula_pendula_2s"; + }; + class Item818 + { + dataType="Object"; + class PositionInfo + { + position[]={5634,9.548295,1165}; + angles[]={0,2.7008495,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1312; + type="Betula_pendula_2s"; + }; + class Item819 + { + dataType="Object"; + class PositionInfo + { + position[]={5610.374,10.634317,1156.0077}; + angles[]={0,3.8910711,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1313; + type="Betula_pendula_2w"; + }; + class Item820 + { + dataType="Object"; + class PositionInfo + { + position[]={5591,11.538475,1167}; + angles[]={0,0.49357179,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1314; + type="Betula_pendula_2w"; + }; + class Item821 + { + dataType="Object"; + class PositionInfo + { + position[]={5621,9.743475,1171}; + angles[]={0,3.1048076,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1315; + type="Betula_pendula_2w"; + }; + class Item822 + { + dataType="Object"; + class PositionInfo + { + position[]={5581,11.308475,1164}; + angles[]={0,0.83910161,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1316; + type="Betula_pendula_2w"; + }; + class Item823 + { + dataType="Object"; + class PositionInfo + { + position[]={5614,10.107946,1178}; + angles[]={0,4.8436632,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1317; + type="Betula_pendula_1s"; + }; + class Item824 + { + dataType="Object"; + class PositionInfo + { + position[]={5621.272,13.597609,1158.1881}; + angles[]={0,4.2354746,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1318; + type="Betula_pendula_3s"; + }; + class Item825 + { + dataType="Object"; + class PositionInfo + { + position[]={5596.021,15.194435,1159.4841}; + angles[]={0,1.8511622,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1319; + type="Betula_pendula_3s"; + atlOffset=9.5367432e-007; + }; + class Item826 + { + dataType="Object"; + class PositionInfo + { + position[]={5603,15.300225,1170}; + angles[]={0,1.4620683,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1320; + type="Betula_pendula_3s"; + }; + class Item827 + { + dataType="Object"; + class PositionInfo + { + position[]={5967.4326,6.4456029,918.43866}; + angles[]={0.015878694,4.4322267,6.2703686}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1322; + type="Corylus_heterophylla_2"; + }; + class Item828 + { + dataType="Object"; + class PositionInfo + { + position[]={5986.4922,6.4008288,927.28333}; + angles[]={0.01414764,3.1612368,0.030724151}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1323; + type="Corylus_heterophylla_2"; + }; + class Item829 + { + dataType="Object"; + class PositionInfo + { + position[]={5986.6245,6.3895359,908.30359}; + angles[]={6.2787237,3.5121248,0.0076272152}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1324; + type="Corylus_heterophylla_2"; + }; + class Item830 + { + dataType="Object"; + class PositionInfo + { + position[]={6013.3599,7.6523561,917.88666}; + angles[]={6.255475,3.2375324,0.059448849}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1325; + type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; + }; + class Item831 + { + dataType="Object"; + class PositionInfo + { + position[]={6004.4058,7.4066763,928.56323}; + angles[]={6.1678019,1.3673834,0.12394936}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1326; + type="Corylus_heterophylla_2"; + }; + class Item832 + { + dataType="Object"; + class PositionInfo + { + position[]={6024.4653,7.1379118,927.44177}; + angles[]={0.47296885,4.9970665,5.8297157}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1327; + type="Corylus_heterophylla_2"; + }; + class Item833 + { + dataType="Object"; + class PositionInfo + { + position[]={6026.2163,6.1006522,953.20898}; + angles[]={0.015285769,3.9027705,6.2816033}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1328; + type="Corylus_heterophylla_2"; + }; + class Item834 + { + dataType="Object"; + class PositionInfo + { + position[]={6043.7773,6.1411123,960.90216}; + angles[]={6.26228,5.12677,6.2681551}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1329; + type="Corylus_heterophylla_2"; + }; + class Item835 + { + dataType="Object"; + class PositionInfo + { + position[]={6060.5283,5.5136957,971.64777}; + angles[]={6.2731013,1.5856645,0.054238848}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1330; + type="Corylus_heterophylla_2"; + }; + class Item836 + { + dataType="Object"; + class PositionInfo + { + position[]={6081.6704,5.7806544,984.03662}; + angles[]={0.076573826,0.15479438,6.1974959}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1331; + type="Corylus_heterophylla_2"; + }; + class Item837 + { + dataType="Object"; + class PositionInfo + { + position[]={6062.4385,6.0414648,944.4657}; + angles[]={0.0027404726,1.736481,0.012501417}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1332; + type="Corylus_heterophylla_2"; + }; + class Item838 + { + dataType="Object"; + class PositionInfo + { + position[]={6111.7241,5.6638985,967.90161}; + angles[]={0.0030493166,1.0422192,0.029710108}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1333; + type="Corylus_heterophylla_2"; + }; + class Item839 + { + dataType="Object"; + class PositionInfo + { + position[]={6136.5474,5.0588388,994.06921}; + angles[]={0.0044884747,2.2077243,6.2689161}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1334; + type="Corylus_heterophylla_2"; + }; + class Item840 + { + dataType="Object"; + class PositionInfo + { + position[]={6070.7671,6.332674,940.01434}; + angles[]={6.2809477,3.4686561,0.06042302}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1335; + type="Corylus_heterophylla_2"; + }; + class Item841 + { + dataType="Object"; + class PositionInfo + { + position[]={6023.3955,7.8629341,903.88257}; + angles[]={0.071588889,0.76194203,6.2375855}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1336; + type="Corylus_heterophylla_2"; + }; + class Item842 + { + dataType="Object"; + class PositionInfo + { + position[]={5948.4043,7.1318178,870.11188}; + angles[]={6.2822089,4.661304,0.0084149111}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1337; + type="Corylus_heterophylla_2"; + }; + class Item843 + { + dataType="Object"; + class PositionInfo + { + position[]={5940.4761,6.771471,894.17871}; + angles[]={6.2810569,5.3104692,6.2747989}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1338; + type="Corylus_heterophylla_2"; + }; + class Item844 + { + dataType="Object"; + class PositionInfo + { + position[]={5931.3848,6.774765,904.37213}; + angles[]={0.023366716,2.1332438,0.0079935296}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1339; + type="Corylus_heterophylla_2"; + }; + class Item845 + { + dataType="Object"; + class PositionInfo + { + position[]={5956.9575,6.8967047,865.19067}; + angles[]={0.16314836,0.1121306,0.0061570019}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1340; + type="Corylus_heterophylla_2"; + }; + class Item846 + { + dataType="Object"; + class PositionInfo + { + position[]={5917.6304,6.8562498,843.5025}; + angles[]={0.011466878,0.93635273,6.2783151}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1341; + type="Corylus_heterophylla_2"; + }; + class Item847 + { + dataType="Object"; + class PositionInfo + { + position[]={5899.6992,6.7446089,881.0462}; + angles[]={0.012343071,6.0398221,0.0014235723}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1342; + type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; + }; + class Item848 + { + dataType="Object"; + class PositionInfo + { + position[]={5918.1978,6.7203922,895.70233}; + angles[]={0.013336525,2.9815114,0.0048460579}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1343; + type="Corylus_heterophylla_2"; + }; + class Item849 + { + dataType="Object"; + class PositionInfo + { + position[]={5849.6543,6.3257885,807.41162}; + angles[]={-0,0.076451913,-0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1344; + type="Corylus_heterophylla_2"; + }; + class Item850 + { + dataType="Object"; + class PositionInfo + { + position[]={5825.5073,6.3479872,815.323}; + angles[]={0,4.9778404,0.00048828125}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1345; + type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; + }; + class Item851 + { + dataType="Object"; + class PositionInfo + { + position[]={5818.7915,6.2911348,791.20728}; + angles[]={6.2812018,3.4644215,0.0033474891}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1346; + type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; + }; + class Item852 + { + dataType="Object"; + class PositionInfo + { + position[]={5792.9351,6.1366501,815.62335}; + angles[]={0.015105328,5.3619738,0.016231399}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1347; + type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; + }; + class Item853 + { + dataType="Object"; + class PositionInfo + { + position[]={5804.5981,6.2828426,806.33533}; + angles[]={0,4.8400302,0.0025371844}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1348; + type="Corylus_heterophylla_2"; + }; + class Item854 + { + dataType="Object"; + class PositionInfo + { + position[]={5803.3618,6.200449,781.11896}; + angles[]={6.2754498,3.9783816,-0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1349; + type="Corylus_heterophylla_2"; + }; + class Item855 + { + dataType="Object"; + class PositionInfo + { + position[]={5788.7051,6.3550162,766.42657}; + angles[]={0.053047139,6.2674251,0.10342516}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1350; + type="Corylus_heterophylla_2"; + }; + class Item856 + { + dataType="Object"; + class PositionInfo + { + position[]={5781.0508,6.1468353,804.01617}; + angles[]={0.0084502539,6.0758185,0.0057774298}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1351; + type="Corylus_heterophylla_2"; + }; + class Item857 + { + dataType="Object"; + class PositionInfo + { + position[]={5752.3818,6.1994791,796.586}; + angles[]={6.1749172,2.3599906,6.2800975}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1352; + type="Corylus_heterophylla_2"; + }; + class Item858 + { + dataType="Object"; + class PositionInfo + { + position[]={6289.0244,7.1586466,1062.7278}; + angles[]={0.029989703,1.3256602,0.0099949092}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1353; + type="Corylus_heterophylla_2"; + }; + class Item859 + { + dataType="Object"; + class PositionInfo + { + position[]={6269.667,6.018693,1054.5554}; + angles[]={0.00069053395,0.054621566,0.00034526698}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1354; + type="Corylus_heterophylla_2"; + }; + class Item860 + { + dataType="Object"; + class PositionInfo + { + position[]={6270.1987,6.0180216,1073.5281}; + angles[]={-0,0.40552247,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1355; + type="Corylus_heterophylla_2"; + }; + class Item861 + { + dataType="Object"; + class PositionInfo + { + position[]={6243.1445,5.8302317,1064.8862}; + angles[]={6.2807684,0.13093074,0.0086867688}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1356; + type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; + }; + class Item862 + { + dataType="Object"; + class PositionInfo + { + position[]={6251.7197,5.8372822,1053.9028}; + angles[]={0,4.5439663,-0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1357; + type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; + }; + class Item863 + { + dataType="Object"; + class PositionInfo + { + position[]={6231.7114,5.4717765,1055.7253}; + angles[]={6.2822089,1.8904655,0.010681028}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1358; + type="Corylus_heterophylla_2"; + }; + class Item864 + { + dataType="Object"; + class PositionInfo + { + position[]={6229.0601,5.1923161,1030.0354}; + angles[]={6.2742553,0.79616684,0.017353104}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1359; + type="Corylus_heterophylla_2"; + }; + class Item865 + { + dataType="Object"; + class PositionInfo + { + position[]={6208.293,4.8114195,1021.3643}; + angles[]={-0,2.0200572,0.003554743}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1360; + type="Corylus_heterophylla_2"; + }; + class Item866 + { + dataType="Object"; + class PositionInfo + { + position[]={6194.124,4.7975559,1012.8082}; + angles[]={-0,4.7630715,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1361; + type="Corylus_heterophylla_2"; + }; + class Item867 + { + dataType="Object"; + class PositionInfo + { + position[]={6179.5972,4.787539,1002.2735}; + angles[]={6.2826972,3.3313782,6.2824135}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1362; + type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; + }; + class Item868 + { + dataType="Object"; + class PositionInfo + { + position[]={6192.4189,4.8081913,1042.2333}; + angles[]={0.010060295,4.91361,0.0026067093}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1363; + type="Corylus_heterophylla_2"; + }; + class Item869 + { + dataType="Object"; + class PositionInfo + { + position[]={6143.0908,4.6063976,1018.3431}; + angles[]={0.10494228,4.2188034,0.045054205}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1364; + type="Corylus_heterophylla_2"; + }; + class Item870 + { + dataType="Object"; + class PositionInfo + { + position[]={6115.3003,5.4874382,999.63422}; + angles[]={0.03610507,5.3843088,6.2704854}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1365; + type="Corylus_heterophylla_2"; + }; + class Item871 + { + dataType="Object"; + class PositionInfo + { + position[]={6188.2197,4.6814022,1050.0857}; + angles[]={5.9442921,0.36330187,6.2108598}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1366; + type="Corylus_heterophylla_2"; + }; + class Item872 + { + dataType="Object"; + class PositionInfo + { + position[]={6225.5801,4.9485059,1070.9646}; + angles[]={6.2102633,3.9385252,6.1934462}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1367; + type="Corylus_heterophylla_2"; + }; + class Item873 + { + dataType="Object"; + class PositionInfo + { + position[]={6309.7319,5.8232412,1110.3594}; + angles[]={0.0010918301,1.5547045,0.010625076}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1368; + type="Corylus_heterophylla_2"; + }; + class Item874 + { + dataType="Object"; + class PositionInfo + { + position[]={6316.813,5.6318479,1086.0298}; + angles[]={6.1701813,2.2038643,0.11625177}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1369; + type="Corylus_heterophylla_2"; + }; + class Item875 + { + dataType="Object"; + class PositionInfo + { + position[]={6325.5425,5.5891495,1075.5247}; + angles[]={6.2754264,5.3086514,0.0037346357}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1370; + type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; + }; + class Item876 + { + dataType="Object"; + class PositionInfo + { + position[]={6334.3481,6.2484951,1106.4141}; + angles[]={6.2816415,3.288712,0.013487629}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1371; + type="Corylus_heterophylla_2"; + }; + class Item877 + { + dataType="Object"; + class PositionInfo + { + position[]={6352.2651,6.4612703,1128.365}; + angles[]={6.2636356,4.1139994,0.0014648439}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1372; + type="Corylus_heterophylla_2"; + }; + class Item878 + { + dataType="Object"; + class PositionInfo + { + position[]={6358.0244,6.3688536,1097.7278}; + angles[]={6.2806015,2.9332027,0.01337669}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1373; + type="Corylus_heterophylla_2"; + }; + class Item879 + { + dataType="Object"; + class PositionInfo + { + position[]={6339.0244,5.9185424,1083.7278}; + angles[]={6.2344208,6.1575899,6.280467}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1374; + type="Corylus_heterophylla_2"; + }; + class Item880 + { + dataType="Object"; + class PositionInfo + { + position[]={6380.4712,6.8553295,1154.7483}; + angles[]={5.9653602,3.2530744,6.1862698}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1375; + type="Corylus_heterophylla_2"; + }; + class Item881 + { + dataType="Object"; + class PositionInfo + { + position[]={6404.3267,6.1369553,1145.9968}; + angles[]={0.0067305053,1.8712637,6.2669506}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1376; + type="Corylus_heterophylla_2"; + }; + class Item882 + { + dataType="Object"; + class PositionInfo + { + position[]={6411.8818,5.8605385,1169.863}; + angles[]={6.2361665,0.35783213,6.1502833}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1377; + type="Corylus_heterophylla_2"; + }; + class Item883 + { + dataType="Object"; + class PositionInfo + { + position[]={6436.8682,5.3942499,1144.5571}; + angles[]={0.0066949879,2.2550819,6.2727413}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1378; + type="Corylus_heterophylla_2"; + }; + class Item884 + { + dataType="Object"; + class PositionInfo + { + position[]={6427.8462,5.7616034,1143.0464}; + angles[]={6.2800021,1.7333157,6.2365346}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1379; + type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; + }; + class Item885 + { + dataType="Object"; + class PositionInfo + { + position[]={6457.7988,4.9445262,1194.2236}; + angles[]={6.1632075,0.87178099,6.1811242}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1380; + type="Corylus_heterophylla_2"; + }; + class Item886 + { + dataType="Object"; + class PositionInfo + { + position[]={6473.4912,4.8161912,1201.7363}; + angles[]={0.014624134,3.1607285,-0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1381; + type="Corylus_heterophylla_2"; + }; + class Item887 + { + dataType="Object"; + class PositionInfo + { + position[]={6479.2949,4.7656488,1170.5598}; + angles[]={6.2659597,2.9687974,6.2695045}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1382; + type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; + }; + class Item888 + { + dataType="Object"; + class PositionInfo + { + position[]={6499.7778,4.9239998,1185.343}; + angles[]={6.2769709,5.5327821,0.0089902412}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1383; + type="Corylus_heterophylla_2"; + }; }; - id=601; - type="Betula_pendula_1s"; + id=613; + atlOffset=0.070801973; }; - class Item192 + class Item1 { - dataType="Object"; - class PositionInfo - { - position[]={5694.0762,7.3799987,1130.0994}; - angles[]={0,5.0906072,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes + dataType="Layer"; + name="Rocks"; + class Entities { - presence=0.75; - disableSimulation=1; + items=24; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6115.1812,3.8399694,1290.8489}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=417; + type="Land_Bare_boulder_01_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6111.896,3.8813348,1251.7269}; + angles[]={0.0049914722,0.89790404,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=418; + type="Land_RM_boulder1"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={5686.229,4.5461555,1159.9078}; + angles[]={0.0050033992,2.2374964,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=529; + type="Land_RM_boulder1"; + atlOffset=4.7683716e-007; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6583.8135,4.6018348,1486.5812}; + angles[]={0,4.3877463,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=561; + type="Land_RM_boulder1"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6247.9971,1.8497752,1335.881}; + angles[]={0,4.3877463,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=576; + type="Land_RM_boulder1"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6095.3521,3.8758595,1310.4999}; + angles[]={6.278194,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=419; + type="Land_RM_boulder4"; + atlOffset=1.1920929e-006; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6516.3022,4.8773141,1543.6429}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=464; + type="Land_RM_boulder4"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6489.9556,5.785172,1535.3801}; + angles[]={0,5.5058184,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=472; + type="Land_RM_boulder4"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6597.5444,4.5039725,1491.244}; + angles[]={0.0049914722,2.3506148,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=473; + type="Land_RM_boulder4"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={5674.8091,4.2653198,1168.8442}; + angles[]={0.0050033992,0.20036471,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=483; + type="Land_RM_boulder4"; + atlOffset=4.7683716e-007; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={5696.4941,4.8532419,1125.4052}; + angles[]={0,1.6913697,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=484; + type="Land_RM_boulder4"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={6493.4321,5.9536762,1549.0967}; + angles[]={6.228241,0.06374044,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=562; + type="Land_RM_boulder4"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={6552.0752,4.472477,1415.1177}; + angles[]={0,2.300735,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=818; + type="Land_RM_boulder4"; + atlOffset=1.4305115e-006; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={6284.1221,3.8948722,1268.6849}; + angles[]={0,2.5226846,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=831; + type="Land_Bare_boulder_01_F"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={5780.6514,5.6812449,1062.0781}; + angles[]={0,5.9169803,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=848; + type="Land_RM_boulder1"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={5761.1934,5.5616894,1069.8389}; + angles[]={0,2.9997864,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=849; + type="Land_RM_boulder4"; + atlOffset=-4.7683716e-007; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={5812.4692,5.2193003,1062.6985}; + angles[]={0,0.40135661,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=866; + type="Land_RM_boulder1"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={5806,5.3633595,1075}; + angles[]={0,4.2939863,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=867; + type="Land_RM_boulder4"; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={5628.1729,6.4916396,1137.4453}; + angles[]={0,6.0636168,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1060; + type="Land_RM_boulder1"; + atlOffset=4.7683716e-007; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={5640.6416,5.2628884,1144.8485}; + angles[]={0,4.2213354,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1061; + type="Land_RM_boulder4"; + atlOffset=9.5367432e-007; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={5592.2959,7.8290806,1140.387}; + angles[]={0,1.4363487,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1062; + type="Land_RM_boulder4"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={6034.8677,6.0399694,595.30096}; + angles[]={0,2.0341022,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1276; + type="Land_RM_boulder1"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={6044.5923,6.053359,584.54419}; + angles[]={0,2.2914467,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1277; + type="Land_RM_boulder4"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={5990.9619,6.053359,579.10663}; + angles[]={0,3.2516744,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=1309; + type="Land_RM_boulder4"; + }; }; - id=602; - type="Betula_pendula_2w"; + id=614; + atlOffset=1.2672505; }; - class Item193 + class Item2 { - dataType="Object"; - class PositionInfo - { - position[]={5722.1411,7.9612975,1132.1006}; - angles[]={0,5.0906072,0.019999012}; - }; - side="Empty"; - flags=4; - class Attributes + dataType="Layer"; + name="Other"; + class Entities { - presence=0.75; - disableSimulation=1; + items=48; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5895.6938,5.4396238,1260.8673}; + angles[]={0,6.0700612,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=590; + type="Land_HayBale_01_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5884.2642,5.7532425,1306.7317}; + angles[]={0,4.9930415,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=591; + type="Land_HayBale_01_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={5928.3135,5.3605499,1330.2917}; + angles[]={0,5.9657397,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=592; + type="Land_HayBale_01_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={5961.022,5.0761995,1330.8386}; + angles[]={0,0.18457329,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=593; + type="Land_HayBale_01_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={5900.2935,5.6659279,1357.0339}; + angles[]={0,6.0322862,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=594; + type="Land_HayBale_01_F"; + atlOffset=-4.7683716e-007; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={5959.3599,5.4075766,1385.2151}; + angles[]={0,0.17967109,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=595; + type="Land_HayBale_01_F"; + atlOffset=-4.7683716e-007; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={5925.0278,5.241713,1272.4016}; + angles[]={0,4.3614526,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=596; + type="Land_HayBale_01_packed_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6518.3037,6.8137641,1607.3638}; + angles[]={0,2.3981299,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=410; + type="Land_HayBale_01_stack_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={5974.626,5.704874,1276.6643}; + angles[]={0,4.2046776,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=460; + type="Land_HayBale_01_stack_F"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6571.8657,6.0666966,1627.6151}; + angles[]={0,4.4388165,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=461; + type="Land_HayBale_01_stack_F"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={5970.083,5.7342677,1276.1747}; + angles[]={0,3.201129,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=587; + type="Land_HayBale_01_stack_F"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={5921.3945,6.089016,1261.6558}; + angles[]={0,4.3988872,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=588; + type="Land_HayBale_01_stack_F"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={5968.0415,6.9169331,1443.4972}; + angles[]={0,3.9998949,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=589; + type="Land_HayBale_01_stack_F"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={6325.2822,7.1949029,1392.5963}; + angles[]={0,2.3554602,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=458; + type="Land_Shed_09_F"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={6497.373,5.8154988,1539.856}; + angles[]={6.2332273,0,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=563; + type="Land_Cliff_stoneCluster_F"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={6042.5186,6.5597105,1359.5186}; + angles[]={0,5.8304586,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=455; + type="Land_HouseRuin_Small_01_F"; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={6056.1523,4.2854586,1362.4353}; + angles[]={0,0.90088904,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=456; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={6047.6206,4.4124227,1374.1317}; + angles[]={0,0.90088904,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=457; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={5897.7998,7.2505665,1408.8676}; + angles[]={6.2731905,2.0944242,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=597; + type="Land_CombineHarvester_01_wreck_F"; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={6551.4365,6.2600737,1629.8334}; + angles[]={0,5.777997,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=459; + type="Land_StrawStack_01_F"; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={6128.1816,3.8273191,1268.5361}; + angles[]={0.0049914722,5.2003188,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=583; + type="Land_TrailerCistern_wreck_F"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={5361.8262,2.4073336,1281.6006}; + angles[]={0.0068620592,5.2293663,0.022926334}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=581; + type="Land_Boat_05_wreck_F"; + atlOffset=1.1920929e-007; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={5995,4.1961055,1302}; + angles[]={0,4.7262783,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=953; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={5994.2246,4.1676993,1287.5433}; + angles[]={0,4.7262783,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=954; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={5986,4.1711054,1268}; + angles[]={0,5.6171918,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=955; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={5974.2705,4.227324,1259.5142}; + angles[]={0,5.6171918,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=956; + type="Land_StoneWall_02_s_10m_F"; + atlOffset=4.7683716e-007; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={5962,4.2711053,1250}; + angles[]={0,5.6901665,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=957; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={5949.6826,4.3346519,1242.3918}; + angles[]={0,5.6901665,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=958; + type="Land_StoneWall_02_s_10m_F"; + atlOffset=4.7683716e-007; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={5937.3511,4.4023399,1235.5978}; + angles[]={0,5.8464813,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=959; + type="Land_StoneWall_02_s_10m_F"; + atlOffset=4.7683716e-007; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={5924,4.4811053,1230}; + angles[]={0,5.8464813,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=960; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={5908,4.6211052,1230}; + angles[]={0,0.30742425,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=961; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={5894.3857,4.7718735,1234.9252}; + angles[]={0,0.30742425,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=962; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={5869.0591,5.2258291,1271.0629}; + angles[]={0,1.6130536,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=963; + type="Land_StoneWall_02_s_10m_F"; + atlOffset=4.7683716e-007; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={5870.2441,5.2861223,1285.4916}; + angles[]={0,1.6130536,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=964; + type="Land_StoneWall_02_s_10m_F"; + atlOffset=4.7683716e-007; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={5871,5.3461056,1301}; + angles[]={0,1.6860281,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=965; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={5873.2344,5.3487625,1315.3042}; + angles[]={0,1.4950747,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=966; + type="Land_StoneWall_02_s_10m_F"; + atlOffset=9.5367432e-007; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={5874.2539,5.3285661,1330.542}; + angles[]={0,1.5826628,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=967; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={5875,5.3061056,1345}; + angles[]={0,1.5826628,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=968; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={5875.2847,5.294682,1360.5243}; + angles[]={0,1.6556374,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=969; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={5877.083,5.2956905,1374.8898}; + angles[]={0,1.6026555,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=970; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={5882,4.9411054,1242}; + angles[]={0,0.69655162,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=971; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={5872,5.1061053,1255}; + angles[]={0,1.1405138,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=972; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={5995.7461,4.2546654,1318.458}; + angles[]={0,1.6860281,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=973; + type="Land_StoneWall_02_s_10m_F"; + atlOffset=4.7683716e-007; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={5997.9805,4.3150144,1332.7622}; + angles[]={0,1.4950747,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=974; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={5999,4.3861055,1348}; + angles[]={0,1.5826628,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=975; + type="Land_StoneWall_02_s_10m_F"; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={5999.7461,4.4846644,1362.458}; + angles[]={0,1.5826628,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=976; + type="Land_StoneWall_02_s_10m_F"; + atlOffset=-4.7683716e-007; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={6000.0308,4.6007748,1377.9823}; + angles[]={0,1.6556374,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=977; + type="Land_StoneWall_02_s_10m_F"; + atlOffset=4.7683716e-007; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={6001.8291,4.7245836,1392.3478}; + angles[]={0,1.6026555,-0}; + }; + side="Empty"; + flags=5; + class Attributes + { + presence=0.75; + disableSimulation=1; + }; + id=978; + type="Land_StoneWall_02_s_10m_F"; + atlOffset=4.7683716e-007; + }; }; - id=603; - type="Betula_pendula_2w"; + id=615; + atlOffset=0.026616573; }; }; id=401; - atlOffset=-0.45109081; + atlOffset=0.040733337; }; }; id=257; - atlOffset=0.65051222; + atlOffset=0.76994085; + }; + class Item3 + { + dataType="Marker"; + position[]={5489,6,986}; + name="sys_marker_radar_station_bravo"; + type="Empty"; + id=612; }; }; }; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml index eaf9629..600e952 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/stringtable.xml @@ -4,7 +4,7 @@ OFP Patrol PvP - + Norwegian island Haloy, cold war. There will be a shift change on the local USAF airfield. Saboteurs prepare for infiltration. @@ -20,7 +20,7 @@ Na lokalnym lotnisku USAF zaraz odbędzie się zmiana warty. Sabotażyści przyg Download the data from laptop Pobierz dane z laptopa - + There is a laptop on the first floor of the building. Download the data from it. Na piętrze budynku znajduje się laptop, pobierzcie z niego dane. @@ -29,16 +29,16 @@ Na lokalnym lotnisku USAF zaraz odbędzie się zmiana warty. Sabotażyści przyg Steal the SUV Ukradnij SUVa - + There is a cargo plane near the transport hangar that can accomotade the SUV. Escape the airport. W pobliżu hangarów transportowych znajduje się samolot zdolny przetransportować samochód. Ucieknijcie z lotniska. - + Destroy the plane Zniszcz samolot - + There are A-10s near Radar Station Bravo, hidden under hangar tents. Destroy at least 2 of them. W pobliżu Radar Station Bravo pod namiotami stoją A-10. Zniszczcie przynajmniej 2. From 8cf4b3e97cec0eb02a8bc77707cfd558cc7fc7cc Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Sun, 6 Feb 2022 18:39:45 +0100 Subject: [PATCH 06/10] Add cameras & exclude zeus/commander from teams randomization --- .../AF_functions.hpp | 1 + .../functions/fn_initCamera.sqf | 36 + .../functions/fn_randomizeTeams.sqf | 15 +- .../mission.sqm | 2009 +++++++++++++++-- 4 files changed, 1912 insertions(+), 149 deletions(-) create mode 100644 PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/AF_functions.hpp b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/AF_functions.hpp index 5c1a677..36dd2f4 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/AF_functions.hpp +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/AF_functions.hpp @@ -32,6 +32,7 @@ class ADDON { class changeSide {}; class createStartPositionMarker {}; class deleteStartPositionsMarkers {}; + class initCamera {}; class initializeBluforSpawn {}; class initializeRedforSpawn {}; class deleteAtRandom {}; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf new file mode 100644 index 0000000..9a4acd4 --- /dev/null +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf @@ -0,0 +1,36 @@ +#include "script_component.hpp" +/* + * Author: 3Mydlo3 + * Function initializes AR-2 Darter as a static camera. + * + * Arguments: + * 0: Darter + * + * Return Value: + * None + * + * Example: + * [this] call afsg_patrol_fnc_initCamera; + * + * Public: No + */ + +params ["_drone", ["_cameraName", ""]]; + +if (!isServer) exitWith {}; + +private _cone = createVehicle ["RoadCone_F", position _drone, [], 0, "CAN_COLLIDE"]; +_cone setDir getDir _drone; +_cone hideObjectGlobal true; +_cone enableSimulationGlobal false; +_drone attachTo [_cone]; + +// Set name +if (_cameraName isEqualTo "") then { + private _nearestMarkers = allMapMarkers apply {[_drone distance getMarkerPos _x, _x]}; + _nearestMarkers sort true; + private _nearestMarker = _nearestMarkers select 0 select 1; + _cameraName = markerText _nearestMarker; +}; + +_drone setGroupIdGlobal [_cameraName]; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizeTeams.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizeTeams.sqf index df12fc2..621dbfa 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizeTeams.sqf +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_randomizeTeams.sqf @@ -22,11 +22,22 @@ private _opforUnits = []; private _excludedUIDs = profileNamespace getVariable [QGVAR(beenOpfor), []]; TRACE_1("Excluded UIDs: %1", str _excludedUIDs); + +private _ineligiblePlayersUIDs = []; +if (!isNil "zeus") then { + _ineligiblePlayersUIDs pushBackUnique getPlayerUID zeus; + TRACE_1("Excluding zeus %1 UID: %2 too.",name zeus,getPlayerUID zeus); +}; +if (!isNil "westCommander") then { + _ineligiblePlayersUIDs pushBackUnique getPlayerUID westCommander; + TRACE_1("Excluding westCommander %1 UID: %2 too.",name westCommander, getPlayerUID westCommander) +}; + private _allPlayers = GVAR(playersConnected) apply {_x select 1}; TRACE_2("AllPlayers: %1 | %2", str allPlayers, str _allPlayers); private _allPlayersUIDs = _allPlayers apply {getPlayerUID _x}; TRACE_1("AllPlayersUIDs: %1", _allPlayersUIDs); -private _eligiblePlayersUIDs = _allPlayersUIDs - _excludedUIDs; +private _eligiblePlayersUIDs = _allPlayersUIDs - _excludedUIDs - _ineligiblePlayersUIDs; TRACE_1("EligiblePlayersUIDs: %1", _eligiblePlayersUIDs); private _eligiblePlayers = _allPlayers apply { if (getPlayerUID _x in _eligiblePlayersUIDs) then { @@ -41,7 +52,7 @@ TRACE_1("EligiblePlayers: %1", _eligiblePlayers); // Clear cache if not enough players if (count _eligiblePlayers < _desiredNumber) then { _excludedUIDs = []; - _eligiblePlayers = _allPlayers; + _eligiblePlayers = _allPlayers select {!(getPlayerUID _x in _ineligiblePlayersUIDs)}; }; private _selectedPlayers = []; diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm index c928bf2..7922100 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm @@ -5,29 +5,29 @@ class EditorData angleGridStep=0.2617994; scaleGridStep=1; autoGroupingDist=10; - toggles=513; + toggles=1; mods[]= { "3denEnhanced" }; class ItemIDProvider { - nextID=1384; + nextID=1490; }; class MarkerIDProvider { - nextID=14; + nextID=15; }; class LayerIndexProvider { - nextID=155; + nextID=156; }; class Camera { - pos[]={6142.2715,35.831573,1267.3267}; - dir[]={0.55423933,-0.56836218,-0.60830897}; - up[]={0.38280094,0.82274359,-0.4201448}; - aside[]={-0.73925579,-8.6263753e-008,-0.67355406}; + pos[]={6843.4604,20.41264,1143.7828}; + dir[]={-0.75134104,-0.52240723,-0.40322968}; + up[]={-0.4603115,0.85269183,-0.24704006}; + aside[]={-0.4728879,1.3777753e-007,0.88113469}; }; }; binarizationWanted=0; @@ -53,7 +53,7 @@ class ScenarioData }; class CustomAttributes { - class Category0 + class Category1 { name="Scenario"; class Attribute0 @@ -3354,7 +3354,7 @@ class Mission }; class Entities { - items=4; + items=23; class Item0 { dataType="Group"; @@ -8402,7 +8402,7 @@ class Mission side="West"; class Entities { - items=1; + items=2; class Item0 { dataType="Object"; @@ -8417,6 +8417,7 @@ class Mission { rank="COLONEL"; init="call{this removeAllEventHandlers ""HandleDamage""; " \n "this addEventHandler [""HandleDamage"", {0}];}"; + name="zeus"; description="Zeus@Zeus"; isPlayer=1; isPlayable=1; @@ -8511,6 +8512,7 @@ class Mission map="ItemMap"; compass="ItemCompass"; watch="ItemWatch"; + gps="B_UavTerminal"; headgear="CUP_H_US_patrol_cap_WDL"; }; }; @@ -8578,6 +8580,182 @@ class Mission nAttributes=3; }; }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6826.1631,5.6746244,1136.8986}; + angles[]={0,5.7709312,0}; + }; + side="West"; + flags=5; + class Attributes + { + rank="CAPTAIN"; + name="westCommander"; + description="Commander"; + isPlayable=1; + stance="Up"; + class Inventory + { + class primaryWeapon + { + name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; + class primaryMuzzleMag + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + ammoLeft=30; + }; + }; + class handgun + { + name="ACE_Flashlight_Maglite_ML300L"; + }; + class uniform + { + typeName="CUP_U_B_BDUv2_M81_US"; + isBackpack=0; + class ItemCargo + { + items=6; + class Item0 + { + name="ACE_fieldDressing"; + count=20; + }; + class Item1 + { + name="ACE_epinephrine"; + count=3; + }; + class Item2 + { + name="ACE_morphine"; + count=3; + }; + class Item3 + { + name="ACE_tourniquet"; + count=2; + }; + class Item4 + { + name="ACRE_PRC343"; + count=1; + }; + class Item5 + { + name="ACE_EarPlugs"; + count=1; + }; + }; + }; + class vest + { + typeName="CUP_V_B_ALICE"; + isBackpack=0; + class MagazineCargo + { + items=4; + class Item0 + { + name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; + count=6; + ammoLeft=30; + }; + class Item1 + { + name="ACE_HandFlare_White"; + count=4; + ammoLeft=1; + }; + class Item2 + { + name="ACE_HandFlare_Red"; + count=1; + ammoLeft=1; + }; + class Item3 + { + name="ACE_HandFlare_Green"; + count=1; + ammoLeft=1; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="B_UavTerminal"; + headgear="CUP_H_US_patrol_cap_WDL"; + }; + }; + id=1489; + type="B_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + class type + { + type[]= + { + "SCALAR" + }; + }; + value=1.01; + }; + }; + }; + class Attribute2 + { + property="afm_curator_isZeus"; + expression="if (_value) then {[{[_this] call afm_curator_fnc_assignZeus}, _this] call CBA_fnc_execNextFrame}"; + class Value + { + class data + { + class type + { + type[]= + { + "BOOL" + }; + }; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; }; class Attributes { @@ -8591,7 +8769,7 @@ class Mission name="Mission"; class Entities { - items=6; + items=7; class Item0 { dataType="Layer"; @@ -8605,7 +8783,7 @@ class Mission name="Airfield"; class Entities { - items=5; + items=6; class Item0 { dataType="Marker"; @@ -8656,9 +8834,19 @@ class Mission id=248; atlOffset=6.0081482e-005; }; + class Item5 + { + dataType="Marker"; + position[]={6015.1079,18.961,660.38702}; + name="marker_atc"; + text="ATC"; + type="hd_dot"; + id=1487; + atlOffset=8.757843; + }; }; id=351; - atlOffset=0.49772167; + atlOffset=6.2756996; }; class Item1 { @@ -8761,7 +8949,7 @@ class Mission }; }; id=256; - atlOffset=2.4139948; + atlOffset=6.0914383; }; class Item1 { @@ -10046,7 +10234,7 @@ class Mission name="Cargo planes"; class Entities { - items=10; + items=12; class Item0 { dataType="Object"; @@ -10247,9 +10435,90 @@ class Mission nAttributes=1; }; }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={6005.4941,7.0490503,676.41846}; + angles[]={6.2814221,4.9443436,6.2761345}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + }; + id=1399; + type="CUP_B_CESSNA_T41_UNARMED_AIRFORCE_USA"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""FirstAidKit""],[2]],[[""SmokeShellRed"",""SmokeShellGreen""],[2,2]],[[""ToolKit""],[1]],[[""B_Parachute""],[4]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={5550.3286,8.2262115,1033.7213}; + angles[]={0.00059341197,1.9102802,0.0043982295}; + }; + side="Empty"; + flags=4; + class Attributes + { + presence=0.75; + }; + id=1400; + type="CUP_B_CESSNA_T41_UNARMED_AIRFORCE_USA"; + atlOffset=-7.9154968e-005; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""FirstAidKit""],[2]],[[""SmokeShellRed"",""SmokeShellGreen""],[2,2]],[[""ToolKit""],[1]],[[""B_Parachute""],[4]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; }; id=254; - atlOffset=-0.31611347; + atlOffset=0.22830153; }; class Item2 { @@ -10313,8 +10582,8 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7217.3745,6.8841505,1145.3992}; - angles[]={6.278194,1.1203206,0}; + position[]={7072.9741,6.4976492,1219.9417}; + angles[]={0,4.6186709,-0}; }; side="Empty"; flags=4; @@ -10324,6 +10593,7 @@ class Mission }; id=304; type="CUP_B_A10_DYN_USA"; + atlOffset=0.0001001358; class CustomAttributes { class Attribute0 @@ -10353,8 +10623,8 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7149.9233,5.8999524,1111.476}; - angles[]={6.2820935,1.0791035,0.00069053395}; + position[]={7098.0894,6.6763601,1157.0634}; + angles[]={0.0022902426,4.3291197,6.2802558}; }; side="Empty"; flags=4; @@ -10364,6 +10634,7 @@ class Mission }; id=305; type="CUP_B_A10_DYN_USA"; + atlOffset=6.4373016e-005; class CustomAttributes { class Attribute0 @@ -10474,8 +10745,8 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7317.9912,7.1691589,1276.8553}; - angles[]={6.2807684,0.84604263,6.2828403}; + position[]={7317.2261,7.1720834,1278.2318}; + angles[]={0.00084572798,0.84604263,6.2828403}; }; side="Empty"; flags=4; @@ -10485,6 +10756,7 @@ class Mission }; id=308; type="CUP_B_A10_DYN_USA"; + atlOffset=6.8187714e-005; class CustomAttributes { class Attribute0 @@ -10514,8 +10786,8 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7230.7637,5.9754095,1327.5029}; - angles[]={6.2746091,4.5228786,6.2715225}; + position[]={6993.3833,7.481287,1235.5912}; + angles[]={0.00034526698,0.81365955,6.2822719}; }; side="Empty"; flags=4; @@ -10525,7 +10797,7 @@ class Mission }; id=310; type="CUP_B_A10_DYN_USA"; - atlOffset=-1.8596649e-005; + atlOffset=0.00010681152; class CustomAttributes { class Attribute0 @@ -10758,8 +11030,8 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7072.7432,7.9169126,1218.7874}; - angles[]={0,4.6413531,0}; + position[]={7219.4868,8.2905769,1143.1521}; + angles[]={6.2731905,0.61929369,0}; }; side="Empty"; flags=4; @@ -10769,6 +11041,7 @@ class Mission }; id=313; type="CUP_B_AV8B_DYN_USMC"; + atlOffset=0.0025296211; class CustomAttributes { class Attribute0 @@ -10798,8 +11071,8 @@ class Mission dataType="Object"; class PositionInfo { - position[]={6992.1475,8.9036617,1232.9027}; - angles[]={0.0029700999,0.84352708,6.2822089}; + position[]={7235.4517,7.4917369,1325.3011}; + angles[]={6.2587295,4.7934055,0.11652637}; }; side="Empty"; flags=4; @@ -10809,7 +11082,7 @@ class Mission }; id=314; type="CUP_B_AV8B_DYN_USMC"; - atlOffset=1.4305115e-006; + atlOffset=-0.010225296; class CustomAttributes { class Attribute0 @@ -10839,8 +11112,8 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7096.5635,8.1014824,1155.9976}; - angles[]={0.0021001773,4.2533636,6.2809477}; + position[]={7153.0996,7.320755,1111.8605}; + angles[]={-0,1.0997391,0}; }; side="Empty"; flags=4; @@ -10850,7 +11123,7 @@ class Mission }; id=312; type="CUP_B_AV8B_DYN_USMC"; - atlOffset=0.00013971329; + atlOffset=0.00066757202; class CustomAttributes { class Attribute0 @@ -10880,8 +11153,8 @@ class Mission dataType="Object"; class PositionInfo { - position[]={7087.2075,6.0545568,1083.8329}; - angles[]={6.2533851,4.5974269,0.021932367}; + position[]={7086.5288,5.9486194,1080.2264}; + angles[]={6.2619014,4.5974269,6.281425}; }; side="Empty"; flags=4; @@ -10891,7 +11164,7 @@ class Mission }; id=311; type="CUP_B_AV8B_DYN_USMC"; - atlOffset=-0.031326532; + atlOffset=-0.017575979; class CustomAttributes { class Attribute0 @@ -11140,7 +11413,7 @@ class Mission }; }; id=317; - atlOffset=1.3414927; + atlOffset=1.3411918; }; class Item4 { @@ -11441,7 +11714,7 @@ class Mission }; }; id=287; - atlOffset=0.78411865; + atlOffset=0.2144866; }; class Item2 { @@ -14807,7 +15080,7 @@ class Mission }; id=617; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item162 { @@ -14863,6 +15136,7 @@ class Mission }; id=620; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item165 { @@ -14881,7 +15155,7 @@ class Mission }; id=621; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item166 { @@ -14918,7 +15192,7 @@ class Mission }; id=623; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item168 { @@ -14992,7 +15266,7 @@ class Mission }; id=627; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item172 { @@ -15048,7 +15322,7 @@ class Mission }; id=630; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item175 { @@ -15067,7 +15341,7 @@ class Mission }; id=631; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item176 { @@ -15086,7 +15360,7 @@ class Mission }; id=632; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item177 { @@ -15124,7 +15398,7 @@ class Mission }; id=634; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item179 { @@ -15143,7 +15417,7 @@ class Mission }; id=635; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item180 { @@ -15181,7 +15455,7 @@ class Mission }; id=637; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item182 { @@ -15219,7 +15493,7 @@ class Mission }; id=639; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item184 { @@ -15314,7 +15588,7 @@ class Mission }; id=644; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item189 { @@ -15333,7 +15607,7 @@ class Mission }; id=645; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item190 { @@ -15352,7 +15626,7 @@ class Mission }; id=646; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item191 { @@ -15371,7 +15645,7 @@ class Mission }; id=647; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item192 { @@ -15409,7 +15683,7 @@ class Mission }; id=649; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item194 { @@ -15447,7 +15721,7 @@ class Mission }; id=651; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item196 { @@ -15558,7 +15832,7 @@ class Mission }; id=657; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item202 { @@ -15595,7 +15869,7 @@ class Mission }; id=659; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item204 { @@ -15632,6 +15906,7 @@ class Mission }; id=661; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item206 { @@ -15650,7 +15925,7 @@ class Mission }; id=662; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item207 { @@ -15707,6 +15982,7 @@ class Mission }; id=665; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item210 { @@ -15725,7 +16001,7 @@ class Mission }; id=666; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item211 { @@ -15744,7 +16020,7 @@ class Mission }; id=667; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item212 { @@ -15782,6 +16058,7 @@ class Mission }; id=669; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item214 { @@ -15819,7 +16096,7 @@ class Mission }; id=671; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item216 { @@ -15857,7 +16134,7 @@ class Mission }; id=673; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item218 { @@ -15895,7 +16172,7 @@ class Mission }; id=675; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=7.1525574e-007; }; class Item220 { @@ -15951,7 +16228,7 @@ class Mission }; id=678; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item223 { @@ -15989,7 +16266,7 @@ class Mission }; id=680; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=7.1525574e-007; }; class Item225 { @@ -16008,7 +16285,7 @@ class Mission }; id=681; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item226 { @@ -16027,7 +16304,7 @@ class Mission }; id=682; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=7.1525574e-007; }; class Item227 { @@ -16046,7 +16323,7 @@ class Mission }; id=683; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item228 { @@ -16102,7 +16379,7 @@ class Mission }; id=686; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=7.1525574e-007; }; class Item231 { @@ -16121,7 +16398,7 @@ class Mission }; id=687; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=7.1525574e-007; }; class Item232 { @@ -16140,7 +16417,7 @@ class Mission }; id=688; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item233 { @@ -16197,7 +16474,7 @@ class Mission }; id=691; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item236 { @@ -16216,6 +16493,7 @@ class Mission }; id=692; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item237 { @@ -16253,7 +16531,7 @@ class Mission }; id=694; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=7.1525574e-007; }; class Item239 { @@ -16291,7 +16569,7 @@ class Mission }; id=696; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=7.1525574e-007; }; class Item241 { @@ -16329,7 +16607,7 @@ class Mission }; id=698; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item243 { @@ -16367,7 +16645,7 @@ class Mission }; id=700; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item245 { @@ -16386,7 +16664,7 @@ class Mission }; id=701; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=7.1525574e-007; }; class Item246 { @@ -16405,7 +16683,7 @@ class Mission }; id=702; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item247 { @@ -16443,6 +16721,7 @@ class Mission }; id=704; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item249 { @@ -16461,6 +16740,7 @@ class Mission }; id=705; type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; }; class Item250 { @@ -16498,7 +16778,7 @@ class Mission }; id=707; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item252 { @@ -16517,7 +16797,7 @@ class Mission }; id=708; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item253 { @@ -16536,7 +16816,7 @@ class Mission }; id=709; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item254 { @@ -16555,7 +16835,7 @@ class Mission }; id=710; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item255 { @@ -16574,7 +16854,7 @@ class Mission }; id=711; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item256 { @@ -16612,7 +16892,7 @@ class Mission }; id=713; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item258 { @@ -16631,7 +16911,7 @@ class Mission }; id=714; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item259 { @@ -16669,7 +16949,7 @@ class Mission }; id=716; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item261 { @@ -16688,7 +16968,7 @@ class Mission }; id=717; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item262 { @@ -16707,7 +16987,7 @@ class Mission }; id=718; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item263 { @@ -16840,7 +17120,7 @@ class Mission }; id=725; type="prunusSpinosa_1s"; - atlOffset=4.7683716e-007; + atlOffset=7.1525574e-007; }; class Item270 { @@ -17022,6 +17302,7 @@ class Mission }; id=735; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item280 { @@ -17058,6 +17339,7 @@ class Mission }; id=737; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item282 { @@ -17094,6 +17376,7 @@ class Mission }; id=739; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item284 { @@ -17167,6 +17450,7 @@ class Mission }; id=743; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item288 { @@ -17185,6 +17469,7 @@ class Mission }; id=744; type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; }; class Item289 { @@ -17221,6 +17506,7 @@ class Mission }; id=746; type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; }; class Item291 { @@ -17257,7 +17543,7 @@ class Mission }; id=748; type="prunusSpinosa_2s"; - atlOffset=-2.3841858e-007; + atlOffset=-4.7683716e-007; }; class Item293 { @@ -17295,6 +17581,7 @@ class Mission }; id=750; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item295 { @@ -17331,7 +17618,7 @@ class Mission }; id=752; type="prunusSpinosa_2s"; - atlOffset=-2.3841858e-007; + atlOffset=-4.7683716e-007; }; class Item297 { @@ -17350,6 +17637,7 @@ class Mission }; id=753; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item298 { @@ -17368,7 +17656,7 @@ class Mission }; id=754; type="prunusSpinosa_2s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item299 { @@ -17387,6 +17675,7 @@ class Mission }; id=755; type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; }; class Item300 { @@ -17441,6 +17730,7 @@ class Mission }; id=758; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item303 { @@ -17513,6 +17803,7 @@ class Mission }; id=762; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item307 { @@ -17678,6 +17969,7 @@ class Mission }; id=771; type="Betula_pendula_1s"; + atlOffset=-4.7683716e-007; }; class Item316 { @@ -17714,6 +18006,7 @@ class Mission }; id=773; type="Betula_pendula_1s"; + atlOffset=-4.7683716e-007; }; class Item318 { @@ -17750,6 +18043,7 @@ class Mission }; id=775; type="Betula_pendula_1s"; + atlOffset=-4.7683716e-007; }; class Item320 { @@ -17768,6 +18062,7 @@ class Mission }; id=776; type="Betula_pendula_1s"; + atlOffset=-4.7683716e-007; }; class Item321 { @@ -17804,7 +18099,6 @@ class Mission }; id=778; type="Betula_pendula_1s"; - atlOffset=2.3841858e-007; }; class Item323 { @@ -17823,7 +18117,6 @@ class Mission }; id=779; type="Betula_pendula_1s"; - atlOffset=2.3841858e-007; }; class Item324 { @@ -17878,6 +18171,7 @@ class Mission }; id=782; type="Betula_pendula_3f"; + atlOffset=2.3841858e-007; }; class Item327 { @@ -18170,7 +18464,7 @@ class Mission }; id=798; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item343 { @@ -18321,7 +18615,6 @@ class Mission }; id=806; type="Betula_pendula_1s"; - atlOffset=4.7683716e-007; }; class Item351 { @@ -18340,6 +18633,7 @@ class Mission }; id=807; type="Betula_pendula_1s"; + atlOffset=-4.7683716e-007; }; class Item352 { @@ -18376,6 +18670,7 @@ class Mission }; id=809; type="PiceaAbies_1f"; + atlOffset=4.7683716e-007; }; class Item354 { @@ -18431,7 +18726,7 @@ class Mission }; id=812; type="piceaabies_2d"; - atlOffset=8.72612e-005; + atlOffset=8.6784363e-005; }; class Item357 { @@ -18450,7 +18745,6 @@ class Mission }; id=813; type="PiceaAbies_2s"; - atlOffset=4.7683716e-007; }; class Item358 { @@ -18487,6 +18781,7 @@ class Mission }; id=815; type="PiceaAbies_3f"; + atlOffset=4.7683716e-007; }; class Item360 { @@ -18613,6 +18908,7 @@ class Mission }; id=823; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item367 { @@ -18688,6 +18984,7 @@ class Mission }; id=827; type="FagusSylvatica_2fb"; + atlOffset=-4.7683716e-007; }; class Item371 { @@ -18706,6 +19003,7 @@ class Mission }; id=828; type="FagusSylvatica_2d"; + atlOffset=-4.7683716e-007; }; class Item372 { @@ -18890,6 +19188,7 @@ class Mission }; id=839; type="Betula_pendula_2s"; + atlOffset=-4.7683716e-007; }; class Item382 { @@ -18964,7 +19263,6 @@ class Mission }; id=843; type="Betula_pendula_1s"; - atlOffset=4.7683716e-007; }; class Item386 { @@ -19020,6 +19318,7 @@ class Mission }; id=846; type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; }; class Item389 { @@ -19310,7 +19609,7 @@ class Mission }; id=864; type="Betula_pendula_3s"; - atlOffset=-4.7683716e-007; + atlOffset=-9.5367432e-007; }; class Item405 { @@ -19405,7 +19704,6 @@ class Mission }; id=871; type="Betula_pendula_2w"; - atlOffset=4.7683716e-007; }; class Item410 { @@ -19500,7 +19798,6 @@ class Mission }; id=876; type="Betula_pendula_3s"; - atlOffset=4.7683716e-007; }; class Item415 { @@ -19519,7 +19816,7 @@ class Mission }; id=877; type="Betula_pendula_3s"; - atlOffset=9.5367432e-007; + atlOffset=4.7683716e-007; }; class Item416 { @@ -19556,6 +19853,7 @@ class Mission }; id=879; type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; }; class Item418 { @@ -19574,6 +19872,7 @@ class Mission }; id=880; type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; }; class Item419 { @@ -19611,6 +19910,7 @@ class Mission }; id=882; type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; }; class Item421 { @@ -19647,6 +19947,7 @@ class Mission }; id=884; type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; }; class Item423 { @@ -19665,6 +19966,7 @@ class Mission }; id=885; type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; }; class Item424 { @@ -19720,6 +20022,7 @@ class Mission }; id=888; type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; }; class Item427 { @@ -19828,7 +20131,6 @@ class Mission }; id=894; type="Betula_pendula_2w"; - atlOffset=4.7683716e-007; }; class Item433 { @@ -19865,7 +20167,6 @@ class Mission }; id=896; type="Betula_pendula_2w"; - atlOffset=4.7683716e-007; }; class Item435 { @@ -20318,7 +20619,6 @@ class Mission }; id=921; type="Betula_pendula_1s"; - atlOffset=4.7683716e-007; }; class Item460 { @@ -20355,7 +20655,6 @@ class Mission }; id=923; type="Betula_pendula_1s"; - atlOffset=4.7683716e-007; }; class Item462 { @@ -20428,6 +20727,7 @@ class Mission }; id=927; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item466 { @@ -20537,6 +20837,7 @@ class Mission }; id=933; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item472 { @@ -20555,7 +20856,6 @@ class Mission }; id=934; type="prunusSpinosa_2s"; - atlOffset=2.3841858e-007; }; class Item473 { @@ -20592,7 +20892,7 @@ class Mission }; id=936; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item475 { @@ -20611,7 +20911,6 @@ class Mission }; id=937; type="prunusSpinosa_2s"; - atlOffset=-2.3841858e-007; }; class Item476 { @@ -20630,6 +20929,7 @@ class Mission }; id=938; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item477 { @@ -20648,7 +20948,7 @@ class Mission }; id=939; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item478 { @@ -20667,7 +20967,7 @@ class Mission }; id=940; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item479 { @@ -20705,6 +21005,7 @@ class Mission }; id=942; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item481 { @@ -20741,6 +21042,7 @@ class Mission }; id=944; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item483 { @@ -20851,7 +21153,7 @@ class Mission }; id=950; type="Betula_pendula_1s"; - atlOffset=-4.7683716e-007; + atlOffset=-9.5367432e-007; }; class Item489 { @@ -20888,7 +21190,6 @@ class Mission }; id=952; type="Betula_pendula_3f"; - atlOffset=4.7683716e-007; }; class Item491 { @@ -20962,6 +21263,7 @@ class Mission }; id=982; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item495 { @@ -21052,6 +21354,7 @@ class Mission }; id=987; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item500 { @@ -21142,6 +21445,7 @@ class Mission }; id=992; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item505 { @@ -21196,6 +21500,7 @@ class Mission }; id=995; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item508 { @@ -21214,6 +21519,7 @@ class Mission }; id=996; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item509 { @@ -21232,6 +21538,7 @@ class Mission }; id=997; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item510 { @@ -21268,7 +21575,7 @@ class Mission }; id=999; type="prunusSpinosa_1s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item512 { @@ -21489,6 +21796,7 @@ class Mission }; id=1011; type="prunusSpinosa_1s"; + atlOffset=4.7683716e-007; }; class Item524 { @@ -21543,6 +21851,7 @@ class Mission }; id=1014; type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; }; class Item527 { @@ -21561,7 +21870,7 @@ class Mission }; id=1015; type="Betula_pendula_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item528 { @@ -21598,7 +21907,7 @@ class Mission }; id=1017; type="Betula_pendula_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item530 { @@ -21636,7 +21945,7 @@ class Mission }; id=1019; type="Betula_pendula_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item532 { @@ -21728,6 +22037,7 @@ class Mission }; id=1024; type="Betula_pendula_2s"; + atlOffset=4.7683716e-007; }; class Item537 { @@ -21819,6 +22129,7 @@ class Mission }; id=1029; type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; }; class Item542 { @@ -21965,6 +22276,7 @@ class Mission }; id=1037; type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; }; class Item550 { @@ -21983,7 +22295,7 @@ class Mission }; id=1038; type="Betula_pendula_2w"; - atlOffset=-4.7683716e-007; + atlOffset=-9.5367432e-007; }; class Item551 { @@ -22002,6 +22314,7 @@ class Mission }; id=1039; type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; }; class Item552 { @@ -22020,7 +22333,7 @@ class Mission }; id=1040; type="Betula_pendula_2w"; - atlOffset=-4.7683716e-007; + atlOffset=-9.5367432e-007; }; class Item553 { @@ -22039,7 +22352,6 @@ class Mission }; id=1041; type="Betula_pendula_2w"; - atlOffset=-4.7683716e-007; }; class Item554 { @@ -22187,6 +22499,7 @@ class Mission }; id=1049; type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; }; class Item562 { @@ -22241,6 +22554,7 @@ class Mission }; id=1052; type="Betula_pendula_3s"; + atlOffset=4.7683716e-007; }; class Item565 { @@ -22315,6 +22629,7 @@ class Mission }; id=1056; type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; }; class Item569 { @@ -22810,7 +23125,6 @@ class Mission }; id=1086; type="prunusSpinosa_1s"; - atlOffset=-2.3841858e-007; }; class Item596 { @@ -22829,6 +23143,7 @@ class Mission }; id=1087; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item597 { @@ -22920,6 +23235,7 @@ class Mission }; id=1092; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item602 { @@ -22992,6 +23308,7 @@ class Mission }; id=1096; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item606 { @@ -23066,6 +23383,7 @@ class Mission }; id=1100; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item610 { @@ -23084,6 +23402,7 @@ class Mission }; id=1101; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item611 { @@ -23211,6 +23530,7 @@ class Mission }; id=1108; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item618 { @@ -23229,6 +23549,7 @@ class Mission }; id=1109; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item619 { @@ -23247,7 +23568,7 @@ class Mission }; id=1110; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item620 { @@ -23339,7 +23660,7 @@ class Mission }; id=1115; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item625 { @@ -23412,6 +23733,7 @@ class Mission }; id=1119; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item629 { @@ -23466,7 +23788,6 @@ class Mission }; id=1122; type="prunusSpinosa_2s"; - atlOffset=-2.3841858e-007; }; class Item632 { @@ -23503,7 +23824,7 @@ class Mission }; id=1124; type="prunusSpinosa_2s"; - atlOffset=-4.7683716e-007; + atlOffset=-2.3841858e-007; }; class Item634 { @@ -23522,7 +23843,7 @@ class Mission }; id=1125; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item635 { @@ -23541,7 +23862,7 @@ class Mission }; id=1126; type="prunusSpinosa_2s"; - atlOffset=-2.3841858e-007; + atlOffset=-4.7683716e-007; }; class Item636 { @@ -23614,7 +23935,7 @@ class Mission }; id=1130; type="prunusSpinosa_2s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item640 { @@ -23633,7 +23954,6 @@ class Mission }; id=1131; type="prunusSpinosa_2s"; - atlOffset=2.3841858e-007; }; class Item641 { @@ -23688,6 +24008,7 @@ class Mission }; id=1134; type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; }; class Item644 { @@ -23706,6 +24027,7 @@ class Mission }; id=1135; type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; }; class Item645 { @@ -23742,7 +24064,7 @@ class Mission }; id=1137; type="prunusSpinosa_2s"; - atlOffset=-2.3841858e-007; + atlOffset=-4.7683716e-007; }; class Item647 { @@ -23779,6 +24101,7 @@ class Mission }; id=1139; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item649 { @@ -23797,6 +24120,7 @@ class Mission }; id=1140; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item650 { @@ -23834,6 +24158,7 @@ class Mission }; id=1142; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item652 { @@ -23870,6 +24195,7 @@ class Mission }; id=1144; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item654 { @@ -23906,7 +24232,6 @@ class Mission }; id=1146; type="prunusSpinosa_1s"; - atlOffset=-2.3841858e-007; }; class Item656 { @@ -23998,6 +24323,7 @@ class Mission }; id=1151; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item661 { @@ -24016,6 +24342,7 @@ class Mission }; id=1152; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item662 { @@ -24034,6 +24361,7 @@ class Mission }; id=1153; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item663 { @@ -24052,6 +24380,7 @@ class Mission }; id=1154; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item664 { @@ -24070,7 +24399,7 @@ class Mission }; id=1155; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item665 { @@ -24089,6 +24418,7 @@ class Mission }; id=1156; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item666 { @@ -24107,6 +24437,7 @@ class Mission }; id=1157; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item667 { @@ -24161,7 +24492,7 @@ class Mission }; id=1160; type="prunusSpinosa_1s"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item670 { @@ -24235,6 +24566,7 @@ class Mission }; id=1164; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item674 { @@ -24253,6 +24585,7 @@ class Mission }; id=1165; type="prunusSpinosa_1s"; + atlOffset=2.3841858e-007; }; class Item675 { @@ -24655,6 +24988,7 @@ class Mission }; id=1187; type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; }; class Item697 { @@ -24691,6 +25025,7 @@ class Mission }; id=1189; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item699 { @@ -24727,6 +25062,7 @@ class Mission }; id=1191; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item701 { @@ -24781,6 +25117,7 @@ class Mission }; id=1194; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item704 { @@ -24799,6 +25136,7 @@ class Mission }; id=1195; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item705 { @@ -24817,7 +25155,7 @@ class Mission }; id=1196; type="prunusSpinosa_2s"; - atlOffset=-2.3841858e-007; + atlOffset=-4.7683716e-007; }; class Item706 { @@ -24836,6 +25174,7 @@ class Mission }; id=1197; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item707 { @@ -24854,6 +25193,7 @@ class Mission }; id=1198; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item708 { @@ -24872,6 +25212,7 @@ class Mission }; id=1199; type="prunusSpinosa_2s"; + atlOffset=2.3841858e-007; }; class Item709 { @@ -24890,6 +25231,7 @@ class Mission }; id=1200; type="prunusSpinosa_2s"; + atlOffset=-2.3841858e-007; }; class Item710 { @@ -24908,6 +25250,7 @@ class Mission }; id=1201; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item711 { @@ -25018,6 +25361,7 @@ class Mission }; id=1207; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item717 { @@ -25055,6 +25399,7 @@ class Mission }; id=1209; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item719 { @@ -25181,7 +25526,7 @@ class Mission }; id=1216; type="prunusSpinosa_2s"; - atlOffset=4.7683716e-007; + atlOffset=9.5367432e-007; }; class Item726 { @@ -25218,6 +25563,7 @@ class Mission }; id=1218; type="prunusSpinosa_2s"; + atlOffset=4.7683716e-007; }; class Item728 { @@ -25236,7 +25582,6 @@ class Mission }; id=1219; type="prunusSpinosa_2s"; - atlOffset=-4.7683716e-007; }; class Item729 { @@ -25458,6 +25803,7 @@ class Mission }; id=1231; type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; }; class Item741 { @@ -25476,6 +25822,7 @@ class Mission }; id=1232; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item742 { @@ -25494,6 +25841,7 @@ class Mission }; id=1233; type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; }; class Item743 { @@ -25530,6 +25878,7 @@ class Mission }; id=1235; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item745 { @@ -25548,6 +25897,7 @@ class Mission }; id=1236; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item746 { @@ -25584,6 +25934,7 @@ class Mission }; id=1238; type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; }; class Item748 { @@ -25602,6 +25953,7 @@ class Mission }; id=1239; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item749 { @@ -25674,6 +26026,7 @@ class Mission }; id=1243; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item753 { @@ -25710,6 +26063,7 @@ class Mission }; id=1245; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item755 { @@ -25728,6 +26082,7 @@ class Mission }; id=1246; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item756 { @@ -25746,6 +26101,7 @@ class Mission }; id=1247; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item757 { @@ -25818,6 +26174,7 @@ class Mission }; id=1251; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item761 { @@ -25836,6 +26193,7 @@ class Mission }; id=1252; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item762 { @@ -25854,6 +26212,7 @@ class Mission }; id=1253; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item763 { @@ -25872,6 +26231,7 @@ class Mission }; id=1254; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item764 { @@ -25908,6 +26268,7 @@ class Mission }; id=1256; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item766 { @@ -25962,6 +26323,7 @@ class Mission }; id=1259; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item769 { @@ -26106,7 +26468,6 @@ class Mission }; id=1267; type="Betula_pendula_2s"; - atlOffset=4.7683716e-007; }; class Item777 { @@ -26485,7 +26846,6 @@ class Mission }; id=1290; type="Betula_pendula_2s"; - atlOffset=-4.7683716e-007; }; class Item798 { @@ -26594,6 +26954,7 @@ class Mission }; id=1296; type="Betula_pendula_2w"; + atlOffset=-4.7683716e-007; }; class Item804 { @@ -26630,6 +26991,7 @@ class Mission }; id=1298; type="Betula_pendula_2w"; + atlOffset=4.7683716e-007; }; class Item806 { @@ -26756,6 +27118,7 @@ class Mission }; id=1305; type="Betula_pendula_3s"; + atlOffset=-4.7683716e-007; }; class Item813 { @@ -27063,6 +27426,7 @@ class Mission }; id=1324; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item830 { @@ -27100,6 +27464,7 @@ class Mission }; id=1326; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item832 { @@ -27118,6 +27483,7 @@ class Mission }; id=1327; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item833 { @@ -27154,6 +27520,7 @@ class Mission }; id=1329; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item835 { @@ -27172,6 +27539,7 @@ class Mission }; id=1330; type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; }; class Item836 { @@ -27208,6 +27576,7 @@ class Mission }; id=1332; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item838 { @@ -27226,6 +27595,7 @@ class Mission }; id=1333; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item839 { @@ -27262,6 +27632,7 @@ class Mission }; id=1335; type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; }; class Item841 { @@ -27298,6 +27669,7 @@ class Mission }; id=1337; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item843 { @@ -27316,6 +27688,7 @@ class Mission }; id=1338; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item844 { @@ -27334,6 +27707,7 @@ class Mission }; id=1339; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item845 { @@ -27407,6 +27781,7 @@ class Mission }; id=1343; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item849 { @@ -27462,7 +27837,7 @@ class Mission }; id=1346; type="Corylus_heterophylla_2"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item852 { @@ -27481,7 +27856,7 @@ class Mission }; id=1347; type="Corylus_heterophylla_2"; - atlOffset=4.7683716e-007; + atlOffset=2.3841858e-007; }; class Item853 { @@ -27518,6 +27893,7 @@ class Mission }; id=1349; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item855 { @@ -27554,6 +27930,7 @@ class Mission }; id=1351; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item857 { @@ -27572,6 +27949,7 @@ class Mission }; id=1352; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item858 { @@ -27608,6 +27986,7 @@ class Mission }; id=1354; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item860 { @@ -27626,6 +28005,7 @@ class Mission }; id=1355; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item861 { @@ -27644,7 +28024,6 @@ class Mission }; id=1356; type="Corylus_heterophylla_2"; - atlOffset=-2.3841858e-007; }; class Item862 { @@ -27700,6 +28079,7 @@ class Mission }; id=1359; type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; }; class Item865 { @@ -27718,6 +28098,7 @@ class Mission }; id=1360; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item866 { @@ -27736,6 +28117,7 @@ class Mission }; id=1361; type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; }; class Item867 { @@ -27791,6 +28173,7 @@ class Mission }; id=1364; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item870 { @@ -27809,6 +28192,7 @@ class Mission }; id=1365; type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; }; class Item871 { @@ -27863,6 +28247,7 @@ class Mission }; id=1368; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item874 { @@ -27899,7 +28284,6 @@ class Mission }; id=1370; type="Corylus_heterophylla_2"; - atlOffset=2.3841858e-007; }; class Item876 { @@ -27918,6 +28302,7 @@ class Mission }; id=1371; type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; }; class Item877 { @@ -27990,6 +28375,7 @@ class Mission }; id=1375; type="Corylus_heterophylla_2"; + atlOffset=4.7683716e-007; }; class Item881 { @@ -28008,6 +28394,7 @@ class Mission }; id=1376; type="Corylus_heterophylla_2"; + atlOffset=2.3841858e-007; }; class Item882 { @@ -28026,6 +28413,7 @@ class Mission }; id=1377; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item883 { @@ -28044,6 +28432,7 @@ class Mission }; id=1378; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; class Item884 { @@ -28062,7 +28451,7 @@ class Mission }; id=1379; type="Corylus_heterophylla_2"; - atlOffset=-2.3841858e-007; + atlOffset=-4.7683716e-007; }; class Item885 { @@ -28117,7 +28506,7 @@ class Mission }; id=1382; type="Corylus_heterophylla_2"; - atlOffset=2.3841858e-007; + atlOffset=4.7683716e-007; }; class Item888 { @@ -28136,6 +28525,7 @@ class Mission }; id=1383; type="Corylus_heterophylla_2"; + atlOffset=-2.3841858e-007; }; }; id=613; @@ -29481,17 +29871,1342 @@ class Mission id=401; atlOffset=0.040733337; }; + class Item6 + { + dataType="Layer"; + name="Cameras"; + class Entities + { + items=10; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6448.4731,7.7173643,1414.5425}; + angles[]={0,5.8764191,0}; + }; + side="West"; + flags=2; + class Attributes + { + init="this call afsg_patrol_fnc_initCamera;"; + reportRemoteTargets=1; + reportOwnPosition=1; + }; + id=1443; + type="B_UAV_01_F"; + atlOffset=2.6306915; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6540.292,12.396599,992.90125}; + angles[]={0,2.5434959,0}; + }; + side="West"; + flags=2; + class Attributes + { + init="this call afsg_patrol_fnc_initCamera;"; + reportRemoteTargets=1; + reportOwnPosition=1; + }; + id=1449; + type="B_UAV_01_F"; + atlOffset=2.701705; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6872.9385,10.984735,1102.5308}; + angles[]={0,1.4244637,-0}; + }; + side="West"; + flags=2; + class Attributes + { + init="this call afsg_patrol_fnc_initCamera;"; + reportRemoteTargets=1; + reportOwnPosition=1; + }; + id=1453; + type="B_UAV_01_F"; + atlOffset=4.8978415; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6060.1611,9.5624046,597.50793}; + angles[]={0,4.3743,0}; + }; + side="West"; + flags=2; + class Attributes + { + init="this call afsg_patrol_fnc_initCamera;"; + reportRemoteTargets=1; + reportOwnPosition=1; + }; + id=1457; + type="B_UAV_01_F"; + atlOffset=3.3343954; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6089.0791,12.698256,602.45782}; + angles[]={0,1.0130911,0}; + }; + side="West"; + flags=2; + class Attributes + { + init="this call afsg_patrol_fnc_initCamera;"; + reportRemoteTargets=1; + reportOwnPosition=1; + }; + id=1461; + type="B_UAV_01_F"; + atlOffset=2.6959152; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={5825.9722,12.18759,538.12018}; + angles[]={0,4.581399,0}; + }; + side="West"; + flags=2; + class Attributes + { + init="this call afsg_patrol_fnc_initCamera;"; + reportRemoteTargets=1; + reportOwnPosition=1; + }; + id=1466; + type="B_UAV_01_F"; + atlOffset=6.1658216; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={5537.356,9.5674677,960.2984}; + angles[]={0,1.5599229,0}; + }; + side="West"; + flags=2; + class Attributes + { + init="[this, ""Radar Station Bravo Barracks East""] call afsg_patrol_fnc_initCamera;"; + reportRemoteTargets=1; + reportOwnPosition=1; + }; + id=1470; + type="B_UAV_01_F"; + atlOffset=3.4169998; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={5536.5859,9.5684681,960.62341}; + angles[]={0,5.5721207,0}; + }; + side="West"; + flags=2; + class Attributes + { + init="[this, ""Radar Station Bravo Barracks North""] call afsg_patrol_fnc_initCamera;"; + reportRemoteTargets=1; + reportOwnPosition=1; + }; + id=1474; + type="B_UAV_01_F"; + atlOffset=3.4180002; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6189.5,7.2425132,1254.9915}; + angles[]={0,0.077265725,0}; + }; + side="West"; + flags=2; + class Attributes + { + init="this call afsg_patrol_fnc_initCamera;"; + reportRemoteTargets=1; + reportOwnPosition=1; + }; + id=1478; + type="B_UAV_01_F"; + atlOffset=2.6433263; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6574.084,8.8149891,1430.3906}; + angles[]={0,4.6744628,0}; + }; + side="West"; + flags=2; + class Attributes + { + init="[this, ""East entrance back""] call afsg_patrol_fnc_initCamera;"; + reportRemoteTargets=1; + reportOwnPosition=1; + }; + id=1482; + type="B_UAV_01_F"; + atlOffset=4.2610002; + }; + }; + id=1462; + atlOffset=4.0613627; + }; }; id=257; - atlOffset=0.76994085; + atlOffset=2.48456; }; class Item3 { dataType="Marker"; position[]={5489,6,986}; name="sys_marker_radar_station_bravo"; + text="Radar Station Bravo"; type="Empty"; id=612; }; + class Item4 + { + dataType="Group"; + side="West"; + class Entities + { + items=4; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5057.5698,419.65341,3829.8237}; + angles[]={0,1.1577847,0}; + }; + side="West"; + flags=6; + class Attributes + { + }; + id=1386; + type="CUP_B_US_Pilot"; + }; + class Item1 + { + dataType="Waypoint"; + loiterAltitude=-3.4028235e+038; + position[]={3791.0491,0.00035858154,6743.8232}; + class Effects + { + }; + timeoutMin=200; + timeoutMid=500; + timeoutMax=700; + showWP="NEVER"; + id=1387; + type="Move"; + atlOffset=20.32; + }; + class Item2 + { + dataType="Waypoint"; + loiterAltitude=-3.4028235e+038; + position[]={6089.2808,5.6906543,882.83301}; + type="Land"; + script="A3\functions_f\waypoints\fn_wpLand.sqf"; + class Effects + { + }; + showWP="NEVER"; + id=1389; + atlOffset=4.7683716e-007; + }; + class Item3 + { + dataType="Waypoint"; + loiterAltitude=-3.4028235e+038; + position[]={2790.321,0.00010299683,6798.126}; + expActiv="private _vehicle = vehicle this;" \n "" \n "{" \n " deleteVehicle _x;" \n "} forEach crew _vehicle;" \n "" \n "deleteVehicle _vehicle;"; + class Effects + { + }; + showWP="NEVER"; + id=1390; + type="Move"; + atlOffset=37.964001; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=1; + }; + class Links + { + items=1; + class Item0 + { + linkID=0; + item0=1386; + item1=1385; + class CustomData + { + role=1; + }; + }; + }; + }; + id=1384; + atlOffset=98.292473; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={1137.4703,87.89325,6263.7197}; + angles[]={0,1.1577847,0}; + }; + side="West"; + flags=2; + class Attributes + { + }; + id=1385; + type="CUP_B_A10_DYN_USA"; + atlOffset=98.292473; + }; + class Item6 + { + dataType="Group"; + side="West"; + class Entities + { + items=4; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6818.5923,5.9514832,1192.6575}; + angles[]={6.2781935,2.6135082,0}; + }; + side="West"; + flags=6; + class Attributes + { + }; + id=1403; + type="CUP_B_US_Pilot"; + atlOffset=-5.2452087e-006; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6818.5503,8.7868347,1192.1194}; + angles[]={6.2781935,2.6135082,0}; + }; + side="West"; + class Attributes + { + }; + id=1404; + type="CUP_B_US_Pilot"; + atlOffset=2.8560128; + }; + class Item2 + { + dataType="Waypoint"; + loiterAltitude=-3.4028235e+038; + position[]={6707.603,5.092875,1304.486}; + expActiv="vehicle this setFuel 1;"; + class Effects + { + }; + timeoutMin=180; + timeoutMid=240; + timeoutMax=300; + showWP="NEVER"; + id=1406; + type="Move"; + atlOffset=4.7683716e-007; + }; + class Item3 + { + dataType="Waypoint"; + loiterAltitude=-3.4028235e+038; + position[]={3240.261,10.344162,6061.1558}; + expActiv="private _vehicle = vehicle this;" \n "" \n "{" \n " deleteVehicle _x;" \n "} forEach crew _vehicle;" \n "" \n "deleteVehicle _vehicle;"; + class Effects + { + }; + showWP="NEVER"; + id=1405; + type="Move"; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1403; + item1=1402; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1404; + item1=1402; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1401; + atlOffset=-0.015999794; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6704.8271,7.9694443,1310.3364}; + angles[]={6.2781935,2.6135082,0}; + }; + side="West"; + flags=6; + class Attributes + { + fuel=0; + }; + id=1402; + type="CUP_B_C47_USA"; + atlOffset=-0.015999794; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + class type + { + type[]= + { + "STRING" + }; + }; + value="[[[[""CUP_arifle_M4A1"",""FirstAidKit"",""Medikit""],[1,10,1]],[[""CUP_30Rnd_556x45_Stanag"",""SmokeShell"",""SmokeShellOrange"",""Chemlight_red""],[10,2,2,2]],[[""ToolKit""],[1]],[[""B_Parachute""],[16]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6813.3472,8.2597466,1112.7786}; + angles[]={6.2805109,5.7671084,0.0042985426}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1437; + type="CUP_B_nM1025_SOV_M2_USMC_WDL"; + atlOffset=-0.0039153099; + }; + class Item9 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6577.1665,10.48274,1429.3472}; + angles[]={0,5.8764191,0}; + }; + side="West"; + flags=2; + class Attributes + { + }; + id=1444; + type="B_UAV_AI"; + atlOffset=1.7937574; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6577.1743,10.63283,1429.3541}; + angles[]={0,5.8764191,0}; + }; + side="West"; + flags=4; + class Attributes + { + }; + id=1445; + type="B_UAV_AI"; + atlOffset=0.1501255; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1444; + item1=1443; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1445; + item1=1443; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1442; + atlOffset=2.6306915; + }; + class Item10 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6668.8267,8.915844,1003.4089}; + angles[]={0,2.5434959,0}; + }; + side="West"; + flags=2; + class Attributes + { + }; + id=1447; + type="B_UAV_AI"; + atlOffset=3.2750058; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6668.8345,9.0659332,1003.4159}; + angles[]={0,2.5434959,0}; + }; + side="West"; + class Attributes + { + }; + id=1448; + type="B_UAV_AI"; + atlOffset=3.4251418; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1447; + item1=1449; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1448; + item1=1449; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1446; + atlOffset=2.701705; + }; + class Item11 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={7002.1284,8.8593903,1117.0461}; + angles[]={0,1.4244637,-0}; + }; + side="West"; + flags=2; + class Attributes + { + }; + id=1451; + type="B_UAV_AI"; + atlOffset=2.8579521; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={7002.1362,9.0094795,1117.0531}; + angles[]={0,1.4244637,-0}; + }; + side="West"; + class Attributes + { + }; + id=1452; + type="B_UAV_AI"; + atlOffset=3.0080414; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1451; + item1=1453; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1452; + item1=1453; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1450; + atlOffset=4.8978415; + }; + class Item12 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6190.2803,8.9852428,612.70807}; + angles[]={0,4.3743,0}; + }; + side="West"; + flags=2; + class Attributes + { + }; + id=1455; + type="B_UAV_AI"; + atlOffset=7.1958914; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6190.2881,9.1353321,612.71503}; + angles[]={0,4.3743,0}; + }; + side="West"; + class Attributes + { + }; + id=1456; + type="B_UAV_AI"; + atlOffset=7.3456907; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1455; + item1=1457; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1456; + item1=1457; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1454; + atlOffset=3.3343954; + }; + class Item13 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6216.8652,8.8929396,617.35181}; + angles[]={0,1.0130911,0}; + }; + side="West"; + flags=2; + class Attributes + { + }; + id=1459; + type="B_UAV_AI"; + atlOffset=9.1944923; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6216.873,9.0430288,617.35876}; + angles[]={0,1.0130911,0}; + }; + side="West"; + class Attributes + { + }; + id=1460; + type="B_UAV_AI"; + atlOffset=9.3437347; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1459; + item1=1461; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1460; + item1=1461; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1458; + atlOffset=2.6959152; + }; + class Item14 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5957.0684,5.4492674,552.25311}; + angles[]={0,4.581399,0}; + }; + side="West"; + flags=6; + class Attributes + { + }; + id=1464; + type="B_UAV_AI"; + atlOffset=-0.55217075; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5957.0762,5.5993567,552.26007}; + angles[]={0,4.581399,0}; + }; + side="West"; + flags=4; + class Attributes + { + }; + id=1465; + type="B_UAV_AI"; + atlOffset=-0.40208149; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1464; + item1=1466; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1465; + item1=1466; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1463; + atlOffset=6.1658216; + }; + class Item15 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5668.0786,5.5733051,974.57086}; + angles[]={0,1.5599229,0}; + }; + side="West"; + flags=6; + class Attributes + { + }; + id=1468; + type="B_UAV_AI"; + atlOffset=-0.42813349; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5668.0864,5.7233944,974.57782}; + angles[]={0,1.5599229,0}; + }; + side="West"; + flags=4; + class Attributes + { + }; + id=1469; + type="B_UAV_AI"; + atlOffset=-0.27804422; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1468; + item1=1470; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1469; + item1=1470; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1467; + atlOffset=3.4169998; + }; + class Item16 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5667.8271,5.5733051,974.49847}; + angles[]={0,5.5721207,0}; + }; + side="West"; + flags=6; + class Attributes + { + }; + id=1472; + type="B_UAV_AI"; + atlOffset=-0.42813349; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5667.835,5.7233944,974.50543}; + angles[]={0,5.5721207,0}; + }; + side="West"; + flags=4; + class Attributes + { + }; + id=1473; + type="B_UAV_AI"; + atlOffset=-0.27804422; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1472; + item1=1474; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1473; + item1=1474; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1471; + atlOffset=3.4180002; + }; + class Item17 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6319.8569,3.6112199,1267.6172}; + angles[]={0,0.077265725,0}; + }; + side="West"; + flags=6; + class Attributes + { + }; + id=1476; + type="B_UAV_AI"; + atlOffset=-0.40728617; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6319.8647,3.7613091,1267.624}; + angles[]={0,0.077265725,0}; + }; + side="West"; + flags=4; + class Attributes + { + }; + id=1477; + type="B_UAV_AI"; + atlOffset=-0.25709724; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1476; + item1=1478; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1477; + item1=1478; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1475; + atlOffset=2.6433263; + }; + class Item18 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6704.2031,3.9768953,1445.5054}; + angles[]={0,4.6744628,0}; + }; + side="West"; + flags=6; + class Attributes + { + }; + id=1480; + type="B_UAV_AI"; + atlOffset=-0.74726629; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6704.2109,4.1269846,1445.5122}; + angles[]={0,4.6744628,0}; + }; + side="West"; + flags=4; + class Attributes + { + }; + id=1481; + type="B_UAV_AI"; + atlOffset=-0.59714317; + }; + }; + class Attributes + { + }; + class CrewLinks + { + class LinkIDProvider + { + nextID=2; + }; + class Links + { + items=2; + class Item0 + { + linkID=0; + item0=1480; + item1=1482; + class CustomData + { + role=1; + }; + }; + class Item1 + { + linkID=1; + item0=1481; + item1=1482; + class CustomData + { + role=2; + turretPath[]={0}; + }; + }; + }; + }; + id=1479; + atlOffset=4.2610002; + }; + class Item19 + { + dataType="Marker"; + position[]={6054.3828,6.0869999,595.57397}; + name="marker_14"; + text="ATC back west"; + type="Empty"; + id=1483; + atlOffset=-0.00028371811; + }; + class Item20 + { + dataType="Marker"; + position[]={6098.814,5.8779998,600.93201}; + name="marker_15"; + text="ATC back east"; + type="Empty"; + id=1484; + atlOffset=-0.00040340424; + }; + class Item21 + { + dataType="Marker"; + position[]={6898.4531,6,1110.637}; + name="marker_16"; + text="North Terminal"; + type="Empty"; + id=1485; + }; + class Item22 + { + dataType="Marker"; + position[]={6541.439,6,974.888}; + name="marker_17"; + text="Infantry Barracks"; + type="Empty"; + id=1486; + }; }; }; From a63e60971715a08a4573b3d3e250348db162015f Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Sun, 6 Feb 2022 19:32:38 +0100 Subject: [PATCH 07/10] Change time to 4:20, remove Earplugs and add 80% presence for cameras --- .../mission.sqm | 336 +++++------------- 1 file changed, 93 insertions(+), 243 deletions(-) diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm index 7922100..8e4c974 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/mission.sqm @@ -53,7 +53,7 @@ class ScenarioData }; class CustomAttributes { - class Category1 + class Category0 { name="Scenario"; class Attribute0 @@ -3347,8 +3347,8 @@ class Mission year=2020; month=4; day=3; - hour=14; - minute=19; + hour=4; + minute=20; startFogDecay=0.014; forecastFogDecay=0.014; }; @@ -3380,6 +3380,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -3396,7 +3397,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -3422,11 +3423,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -3489,6 +3485,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -3505,7 +3502,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -3531,11 +3528,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -3640,6 +3632,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -3656,7 +3649,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -3682,11 +3675,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -3749,6 +3737,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -3765,7 +3754,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -3791,11 +3780,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -3919,6 +3903,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -3935,7 +3920,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -3961,11 +3946,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -4028,6 +4008,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -4044,7 +4025,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -4070,11 +4051,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -4138,6 +4114,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -4154,7 +4131,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -4180,11 +4157,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -4247,6 +4219,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -4263,7 +4236,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -4289,11 +4262,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -4417,6 +4385,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -4433,7 +4402,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -4459,11 +4428,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -4526,6 +4490,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -4542,7 +4507,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -4568,11 +4533,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -4635,6 +4595,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -4651,7 +4612,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -4677,11 +4638,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -4744,6 +4700,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -4760,7 +4717,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -4786,11 +4743,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -4914,6 +4866,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -4930,7 +4883,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -4956,11 +4909,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -5023,6 +4971,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -5039,7 +4988,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -5065,11 +5014,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -5132,6 +5076,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -5148,7 +5093,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -5174,11 +5119,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -5241,6 +5181,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -5257,7 +5198,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -5283,11 +5224,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -5412,6 +5348,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -5428,7 +5365,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -5454,11 +5391,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -5521,6 +5453,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -5537,7 +5470,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -5563,11 +5496,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -5630,6 +5558,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -5646,7 +5575,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -5672,11 +5601,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -5739,6 +5663,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -5755,7 +5680,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -5781,11 +5706,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -5909,6 +5829,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -5925,7 +5846,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -5951,11 +5872,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -6018,6 +5934,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -6034,7 +5951,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -6060,11 +5977,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -6127,6 +6039,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -6143,7 +6056,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -6169,11 +6082,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -6236,6 +6144,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -6252,7 +6161,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -6278,11 +6187,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -6406,6 +6310,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -6422,7 +6327,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -6448,11 +6353,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -6516,6 +6416,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -6532,7 +6433,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -6558,11 +6459,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -6626,6 +6522,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -6642,7 +6539,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -6668,11 +6565,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -6736,6 +6628,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -6752,7 +6645,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -6778,11 +6671,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -6907,6 +6795,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -6923,7 +6812,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -6949,11 +6838,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -7017,6 +6901,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -7033,7 +6918,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -7059,11 +6944,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -7127,6 +7007,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -7143,7 +7024,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -7169,11 +7050,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -7236,6 +7112,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -7252,7 +7129,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -7278,11 +7155,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -7407,6 +7279,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -7423,7 +7296,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -7449,11 +7322,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -7517,6 +7385,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -7533,7 +7402,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -7559,11 +7428,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -7626,6 +7490,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -7642,7 +7507,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -7668,11 +7533,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -7736,6 +7596,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -7752,7 +7613,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -7778,11 +7639,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -7907,6 +7763,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -7923,7 +7780,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -7949,11 +7806,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -8017,6 +7869,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -8033,7 +7886,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -8059,11 +7912,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -8127,6 +7975,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -8143,7 +7992,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -8169,11 +8018,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -8236,6 +8080,7 @@ class Mission class primaryWeapon { name="CUP_arifle_M16A2"; + flashlight="CUP_acc_Flashlight"; class primaryMuzzleMag { name="CUP_30Rnd_556x45_Stanag_Tracer_Red"; @@ -8252,7 +8097,7 @@ class Mission isBackpack=0; class ItemCargo { - items=6; + items=5; class Item0 { name="ACE_fieldDressing"; @@ -8278,11 +8123,6 @@ class Mission name="ACRE_PRC343"; count=1; }; - class Item5 - { - name="ACE_EarPlugs"; - count=1; - }; }; }; class vest @@ -29891,6 +29731,7 @@ class Mission class Attributes { init="this call afsg_patrol_fnc_initCamera;"; + presence=0.80000001; reportRemoteTargets=1; reportOwnPosition=1; }; @@ -29911,6 +29752,7 @@ class Mission class Attributes { init="this call afsg_patrol_fnc_initCamera;"; + presence=0.80000001; reportRemoteTargets=1; reportOwnPosition=1; }; @@ -29931,6 +29773,7 @@ class Mission class Attributes { init="this call afsg_patrol_fnc_initCamera;"; + presence=0.80000001; reportRemoteTargets=1; reportOwnPosition=1; }; @@ -29951,6 +29794,7 @@ class Mission class Attributes { init="this call afsg_patrol_fnc_initCamera;"; + presence=0.80000001; reportRemoteTargets=1; reportOwnPosition=1; }; @@ -29971,6 +29815,7 @@ class Mission class Attributes { init="this call afsg_patrol_fnc_initCamera;"; + presence=0.80000001; reportRemoteTargets=1; reportOwnPosition=1; }; @@ -29991,6 +29836,7 @@ class Mission class Attributes { init="this call afsg_patrol_fnc_initCamera;"; + presence=0.80000001; reportRemoteTargets=1; reportOwnPosition=1; }; @@ -30011,6 +29857,7 @@ class Mission class Attributes { init="[this, ""Radar Station Bravo Barracks East""] call afsg_patrol_fnc_initCamera;"; + presence=0.80000001; reportRemoteTargets=1; reportOwnPosition=1; }; @@ -30031,6 +29878,7 @@ class Mission class Attributes { init="[this, ""Radar Station Bravo Barracks North""] call afsg_patrol_fnc_initCamera;"; + presence=0.80000001; reportRemoteTargets=1; reportOwnPosition=1; }; @@ -30051,6 +29899,7 @@ class Mission class Attributes { init="this call afsg_patrol_fnc_initCamera;"; + presence=0.80000001; reportRemoteTargets=1; reportOwnPosition=1; }; @@ -30071,6 +29920,7 @@ class Mission class Attributes { init="[this, ""East entrance back""] call afsg_patrol_fnc_initCamera;"; + presence=0.80000001; reportRemoteTargets=1; reportOwnPosition=1; }; From 9c31ff85546d36b0b8871f9a292eab850ed1b4fd Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Mon, 7 Feb 2022 21:37:00 +0100 Subject: [PATCH 08/10] Disable TI for cams --- .../functions/fn_initCamera.sqf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf index 9a4acd4..41510f1 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf @@ -25,6 +25,8 @@ _cone hideObjectGlobal true; _cone enableSimulationGlobal false; _drone attachTo [_cone]; +_drone disableTIEquipment true; + // Set name if (_cameraName isEqualTo "") then { private _nearestMarkers = allMapMarkers apply {[_drone distance getMarkerPos _x, _x]}; From d7b66f8b45c0e5313d5452d645931e61047c95a9 Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Mon, 7 Feb 2022 21:37:11 +0100 Subject: [PATCH 09/10] Create markers for cameras --- .../functions/fn_initCamera.sqf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf index 41510f1..e5fe8c5 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/functions/fn_initCamera.sqf @@ -35,4 +35,9 @@ if (_cameraName isEqualTo "") then { _cameraName = markerText _nearestMarker; }; +private _markerName = format ["marker_camera_%1", _cameraName]; +private _marker = createMarkerLocal [_markerName, getPos _drone]; +_marker setMarkerTypeLocal "Warning"; +_marker setMarkerColor "ColorEAST"; + _drone setGroupIdGlobal [_cameraName]; From 6d778ff9c33b3efea15cacd5f7ab6f2c3a0f3053 Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Mon, 7 Feb 2022 21:42:26 +0100 Subject: [PATCH 10/10] Remove earplugs autoadd --- .../initPlayerLocal.sqf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initPlayerLocal.sqf b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initPlayerLocal.sqf index a0e38a0..78bdb66 100644 --- a/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initPlayerLocal.sqf +++ b/PvP/a&d_40_patrol-airfield.vkn_halsoy_terrain/initPlayerLocal.sqf @@ -19,7 +19,8 @@ GVAR(playerInitialized) = false; if (GVAR(playerInitialized)) exitWith {}; GVAR(playerInitialized) = true; - player addItem "ACE_EarPlugs"; + // Add buttplugs only when ACE Hearing is enabled + // player addItem "ACE_EarPlugs"; {player removeItem _x} forEach ([] call acre_api_fnc_getCurrentRadioList); if (_side isEqualTo WEST) then { // Do stuff for WEST if any