mission = 
{
	["groundControl"] = 
	{
		["passwords"] = 
		{
			["artillery_commander"] = {},
			["instructor"] = {},
			["observer"] = {},
			["forward_observer"] = {},
		}, -- end of ["passwords"]
		["roles"] = 
		{
			["artillery_commander"] = 
			{
				["neutrals"] = 0,
				["blue"] = 0,
				["red"] = 0,
			}, -- end of ["artillery_commander"]
			["instructor"] = 
			{
				["neutrals"] = 0,
				["blue"] = 0,
				["red"] = 0,
			}, -- end of ["instructor"]
			["observer"] = 
			{
				["neutrals"] = 0,
				["blue"] = 0,
				["red"] = 0,
			}, -- end of ["observer"]
			["forward_observer"] = 
			{
				["neutrals"] = 0,
				["blue"] = 0,
				["red"] = 0,
			}, -- end of ["forward_observer"]
		}, -- end of ["roles"]
		["isPilotControlVehicles"] = false,
	}, -- end of ["groundControl"]
	["requiredModules"] = {},
	["date"] = 
	{
		["Day"] = 19,
		["Year"] = 2020,
		["Month"] = 7,
	}, -- end of ["date"]
	["trig"] = 
	{
		["actions"] = 
		{
			[1] = "a_set_ATC_silent_mode({airdromeId=4}, true);a_set_ATC_silent_mode({airdromeId=2}, true);a_set_ATC_silent_mode({airdromeId=1}, true);a_set_ATC_silent_mode({airdromeId=18}, true);",
			[2] = "a_ai_task(71, 1); mission.trig.events[\"dead\"][2]=nil;",
			[3] = "a_do_script(\"----------------------------------------------------------------\\\
-- 設定：判定したい滑走路ゾーン\\\
----------------------------------------------------------------\\\
local LAND_ZONES = {\\\
    { name = \\\"LAND_03L\\\", displayName = \\\"着陸滑走路 03L\\\" },\\\
    { name = \\\"LAND_03R\\\", displayName = \\\"着陸滑走路 03R\\\" },\\\
    { name = \\\"LAND_21L\\\", displayName = \\\"着陸滑走路 21L\\\" },\\\
    { name = \\\"LAND_21R\\\", displayName = \\\"着陸滑走路 21R\\\" },\\\
}\\\
\\\
----------------------------------------------------------------\\\
-- ユーティリティ\\\
----------------------------------------------------------------\\\
local function getZoneByName(name)\\\
    return trigger.misc.getZone(name)\\\
end\\\
\\\
local function distance2D(p1, p2)\\\
    local dx = p2.x - p1.x\\\
    local dz = p2.z - p1.z\\\
    return math.sqrt(dx * dx + dz * dz)\\\
end\\\
\\\
-- from から見た to の真方位（度）\\\
local function bearingTrueDeg(from, to)\\\
    local dx = to.x - from.x\\\
    local dz = to.z - from.z\\\
    -- DCS座標系：x=東, z=北\\\
    local brg = math.deg(math.atan2(dx, dz))\\\
    if brg < 0 then brg = brg + 360 end\\\
    return brg\\\
end\\\
\\\
local function isPointInPolygon(pt, poly)\\\
    local inside = false\\\
    local j = #poly\\\
    for i = 1, #poly do\\\
        local xi = poly[i].x\\\
        local zi = poly[i].y   -- verticies は x,y で y が「北」(z)方向\\\
        local xj = poly[j].x\\\
        local zj = poly[j].y\\\
\\\
        local intersect =\\\
            ((zi > pt.z) ~= (zj > pt.z)) and\\\
            (pt.x < (xj - xi) * (pt.z - zi) / ((zj - zi) + 1e-6) + xi)\\\
\\\
        if intersect then\\\
            inside = not inside\\\
        end\\\
        j = i\\\
    end\\\
    return inside\\\
end\\\
\\\
local function isPointInZone2D(pt, zone)\\\
    if zone.radius then\\\
        local ctr = { x = zone.point.x, z = zone.point.z }\\\
        return distance2D(ctr, pt) <= zone.radius\\\
    elseif zone.verticies then\\\
        return isPointInPolygon(pt, zone.verticies)\\\
    end\\\
    return false\\\
end\\\
\\\
local function findLandingZone(pos2)\\\
    for _, zinfo in ipairs(LAND_ZONES) do\\\
        local z = getZoneByName(zinfo.name)\\\
        if z and isPointInZone2D(pos2, z) then\\\
            return z, zinfo.displayName\\\
        end\\\
    end\\\
    return nil, nil\\\
end\\\
\\\
----------------------------------------------------------------\\\
-- 着陸イベントハンドラ（ランディングレートなし）\\\
----------------------------------------------------------------\\\
LandingTouchSimpleHandler = {}\\\
\\\
function LandingTouchSimpleHandler:onEvent(event)\\\
    if event.id ~= world.event.S_EVENT_RUNWAY_TOUCH then\\\
        return\\\
    end\\\
\\\
    local unit = event.initiator\\\
    if not unit or not Unit.isExist(unit) then\\\
        return\\\
    end\\\
\\\
    -- プレイヤー機のみ対象（AIも含めたいならこの4行消す）\\\
    local playerName = unit:getPlayerName()\\\
    if not playerName then\\\
        return\\\
    end\\\
\\\
    -- 着陸位置\\\
    local pos3 = unit:getPoint()\\\
    local pos2 = { x = pos3.x, z = pos3.z }\\\
\\\
    -- どの滑走路ゾーンか\\\
    local zoneMatched, zoneDispName = findLandingZone(pos2)\\\
    if not zoneMatched then\\\
        return\\\
    end\\\
\\\
    -- ゾーン中心からのズレ\\\
    local ref     = { x = zoneMatched.point.x, z = zoneMatched.point.z }\\\
    local dist    = distance2D(ref, pos2)\\\
    local brgTrue = bearingTrueDeg(ref, pos2)\\\
\\\
    local dist_m   = math.floor(dist + 0.5)\\\
    local brg_deg  = math.floor(brgTrue + 0.5)\\\
\\\
    -- 機種名\\\
    local acType = unit:getTypeName()\\\
    local desc   = unit:getDesc()\\\
    if desc and desc.displayName then\\\
        acType = desc.displayName\\\
    end\\\
\\\
    local txt = string.format(\\\
        \\\"着陸情報: %s\\\\n\\\" ..\\\
        \\\"機種: %s\\\\n\\\" ..\\\
        \\\"トリガーゾーン: %s\\\\n\\\" ..\\\
        \\\"着陸ズレ: %d m / 方位 %03d°（真）\\\",\\\
        playerName,\\\
        acType,\\\
        zoneDispName,\\\
        dist_m, brg_deg\\\
    )\\\
\\\
    trigger.action.outTextForCoalition(unit:getCoalition(), txt, 10)\\\
end\\\
\\\
world.addEventHandler(LandingTouchSimpleHandler)\\\
\"); mission.trig.func[3]=nil;",
			[4] = "a_do_script(\"----------------------------------------------------------------\\\
-- Nevada DEAD精度ログスクリプト（砲弾以外の武器 + 磁方位BRA + 機体別F10）\\\
-- ・砲弾以外の武器：着弾地点から最寄りSAMへのズレ＋BRA(磁方位)\\\
-- ・SAM位置はミッション開始時点で固定（撃破されても座標は残す）\\\
-- ・あまりにも遠い命中は「目標N/A」にする\\\
----------------------------------------------------------------\\\
\\\
-----------------------------\\\
-- 設定：対象SAMユニット名\\\
--  ※ミッションエディタでユニット名を一致させること\\\
-----------------------------\\\
local DEAD_TARGET_UNIT_NAMES = {\\\
    \\\"SA2_SITE_1\\\",  -- SA-2 サイト\\\
    \\\"SA22_1\\\",      -- SA-22 #1\\\
    \\\"SA22_2\\\",      -- SA-22 #2\\\
}\\\
\\\
-- SAMと紐づける最大距離 (m)\\\
-- これより離れていたら「目標N/A」として扱う\\\
local DEAD_MAX_ASSIGN_DIST = 1500  -- 1.5 km\\\
\\\
-------------------------------------------------\\\
-- ネバダ用 磁偏角（deg）\\\
--  東偏を +、西偏を - として指定する\\\
-------------------------------------------------\\\
local MAGVAR_DEG = 12.0\\\
\\\
-------------------------------------------------\\\
-- 砲弾以外の武器かどうか判定\\\
-------------------------------------------------\\\
local function isTrackedWeapon(weapon)\\\
    if not weapon or not weapon.getDesc then\\\
        return false\\\
    end\\\
\\\
    local desc = weapon:getDesc()\\\
    if not desc or desc.category == nil then\\\
        return false\\\
    end\\\
\\\
    -- desc.category:\\\
    -- 0 = shell（砲弾）\\\
    -- 1 = missile\\\
    -- 2 = rocket\\\
    -- 3 = bomb\\\
    --\\\
    -- 砲弾だけ除外。それ以外はすべて記録。\\\
    if desc.category == 0 then\\\
        return false\\\
    end\\\
\\\
    return true\\\
end\\\
\\\
-------------------------------------------------\\\
-- ユーティリティ\\\
-------------------------------------------------\\\
local function get2DDistance(p1, p2)\\\
    if not p1 or not p2 then return nil end\\\
    local dx = p1.x - p2.x\\\
    local dz = p1.z - p2.z\\\
    return math.sqrt(dx * dx + dz * dz)\\\
end\\\
\\\
-- 真方位（北=0°, 時計回り）\\\
local function getTrueBearingDeg(fromPoint, toPoint)\\\
    if not fromPoint or not toPoint then return nil end\\\
    local dx = toPoint.x - fromPoint.x  -- 東\\\
    local dz = toPoint.z - fromPoint.z  -- 北\\\
    local brg = math.deg(math.atan2(dx, dz))\\\
    if brg < 0 then\\\
        brg = brg + 360\\\
    end\\\
    return brg\\\
end\\\
\\\
-- 磁方位（東偏 + / 西偏 -）\\\
local function getMagneticBearingDeg(fromPoint, toPoint)\\\
    local trueBrg = getTrueBearingDeg(fromPoint, toPoint)\\\
    if not trueBrg then return nil end\\\
    -- true = mag + variation（東偏）\\\
    -- → mag = true - variation\\\
    local magBrg = trueBrg - MAGVAR_DEG\\\
    magBrg = magBrg % 360\\\
    if magBrg < 0 then\\\
        magBrg = magBrg + 360\\\
    end\\\
    return magBrg\\\
end\\\
\\\
----------------------------------------------------------------\\\
-- SAM座標テーブル（ミッション開始時に固定）\\\
----------------------------------------------------------------\\\
local DEAD_TARGETS = {}  -- { { name=..., point=... }, ... }\\\
\\\
local function initDeadTargets()\\\
    DEAD_TARGETS = {}\\\
    for _, unitName in ipairs(DEAD_TARGET_UNIT_NAMES) do\\\
        local u = Unit.getByName(unitName)\\\
        if u then\\\
            local p = u:getPoint()\\\
            table.insert(DEAD_TARGETS, {\\\
                name  = unitName,\\\
                point = { x = p.x, y = p.y, z = p.z }  -- 座標コピー\\\
            })\\\
        else\\\
            env.info(\\\"DEAD: Unit not found for target '\\\" .. unitName .. \\\"'\\\")\\\
        end\\\
    end\\\
end\\\
\\\
-- 指定SAM群の中から最寄りターゲットを探す（撃破後も座標は残る）\\\
local function findNearestTarget(point)\\\
    if not point or #DEAD_TARGETS == 0 then return nil, nil end\\\
\\\
    local nearestName  = nil\\\
    local nearestPoint = nil\\\
    local nearestDist  = nil\\\
\\\
    for _, t in ipairs(DEAD_TARGETS) do\\\
        local tp = t.point\\\
        local d  = get2DDistance(point, tp)\\\
        if d and (not nearestDist or d < nearestDist) then\\\
            nearestDist  = d\\\
            nearestName  = t.name\\\
            nearestPoint = tp\\\
        end\\\
    end\\\
\\\
    -- あまりにも遠い場合は「目標無し」にする\\\
    if nearestDist and nearestDist <= DEAD_MAX_ASSIGN_DIST then\\\
        return nearestPoint, nearestName\\\
    else\\\
        return nil, nil\\\
    end\\\
end\\\
\\\
----------------------------------------------------------------\\\
-- DEAD精度モジュール本体\\\
----------------------------------------------------------------\\\
WeaponAccuracy = {\\\
    shots      = {},  -- [weaponId] = shotData（飛行中の武器）\\\
    results    = {},  -- 記録済みの結果\\\
    groupMenus = {}   -- F10メニューを作ったグループID\\\
}\\\
\\\
-- 武器追跡：消えた瞬間を着弾扱い\\\
function WeaponAccuracy.startTrack(weaponId, weapon)\\\
    local function trackFunc(arg, time)\\\
        local shot = WeaponAccuracy.shots[weaponId]\\\
        if not shot then\\\
            return\\\
        end\\\
\\\
        -- 武器が消えた＝着弾とみなす\\\
        if not weapon or not weapon:isExist() then\\\
            if arg.lastPos then\\\
                shot.impactPoint = arg.lastPos\\\
\\\
                -- ★ 着弾地点から最寄りSAMを決定（撃破済みでもOK）\\\
                local tPoint, tName = findNearestTarget(shot.impactPoint)\\\
                shot.targetPoint = tPoint\\\
                shot.targetName  = tName\\\
\\\
                if shot.targetPoint then\\\
                    local miss = get2DDistance(shot.impactPoint, shot.targetPoint)\\\
                    shot.miss = miss\\\
                    -- BRA（磁方位：目標 → 着弾点）\\\
                    shot.bearingMag = getMagneticBearingDeg(shot.targetPoint, shot.impactPoint)\\\
                end\\\
\\\
                table.insert(WeaponAccuracy.results, {\\\
                    shooter        = shot.shooter,\\\
                    shooterUnit    = shot.shooterUnit,\\\
                    shooterGroup   = shot.shooterGroup,\\\
                    shooterGroupId = shot.shooterGroupId,\\\
                    shooterSide    = shot.shooterSide,\\\
                    weaponName     = shot.weaponName,\\\
                    targetName     = shot.targetName or \\\"N/A\\\",\\\
                    miss           = shot.miss,\\\
                    bearingMag     = shot.bearingMag,\\\
                    impactPoint    = shot.impactPoint,\\\
                    targetPoint    = shot.targetPoint,\\\
                })\\\
            end\\\
\\\
            return\\\
        end\\\
\\\
        -- まだ飛行中 → 位置更新して0.1秒後に再チェック\\\
        arg.lastPos = weapon:getPoint()\\\
        return time + 0.1\\\
    end\\\
\\\
    local p = weapon:getPoint()\\\
    timer.scheduleFunction(trackFunc, { lastPos = p }, timer.getTime() + 0.1)\\\
end\\\
\\\
-- 結果フォーマット（グループ絞り込み可）\\\
function WeaponAccuracy.formatResultLines(filterGroupId)\\\
    local lines = {}\\\
    local idx = 1\\\
\\\
    for _, r in ipairs(WeaponAccuracy.results) do\\\
        if (not filterGroupId) or (r.shooterGroupId == filterGroupId) then\\\
            local missStrM = r.miss and string.format(\\\"%.1f m\\\", r.miss) or \\\"N/A\\\"\\\
            local bearingStr = r.bearingMag and string.format(\\\"%03.0f°\\\", r.bearingMag) or \\\"N/A\\\"\\\
            local rangeStrNm = \\\"N/A\\\"\\\
            if r.miss then\\\
                local nm = r.miss / 1852\\\
                rangeStrNm = string.format(\\\"%.2f nm\\\", nm)\\\
            end\\\
\\\
            local line = string.format(\\\
                \\\"%02d) 射手: %s / 兵器: %s / 目標: %s\\\\n    ズレ: %s / BRA(磁方位・目標→着弾): %s/%s\\\",\\\
                idx,\\\
                r.shooter or \\\"Unknown\\\",\\\
                r.weaponName or \\\"Unknown\\\",\\\
                r.targetName or \\\"N/A\\\",\\\
                missStrM,\\\
                bearingStr,\\\
                rangeStrNm\\\
            )\\\
\\\
            table.insert(lines, line)\\\
            idx = idx + 1\\\
        end\\\
    end\\\
\\\
    return lines\\\
end\\\
\\\
function WeaponAccuracy.showAccuracyForGroup(groupId)\\\
    local lines = WeaponAccuracy.formatResultLines(groupId)\\\
    if #lines == 0 then\\\
        trigger.action.outTextForGroup(groupId, \\\"まだ自機のDEAD精度データはありません。\\\", 15)\\\
        return\\\
    end\\\
    local txt = \\\"=== DEAD 精度ログ（自機のみ） ===\\\\n\\\" .. table.concat(lines, \\\"\\\\n\\\")\\\
    trigger.action.outTextForGroup(groupId, txt, 25)\\\
end\\\
\\\
function WeaponAccuracy.showAccuracyForCoalition(coa)\\\
    local lines = WeaponAccuracy.formatResultLines(nil)\\\
    if #lines == 0 then\\\
        trigger.action.outTextForCoalition(coa, \\\"まだDEAD精度データはありません。\\\", 15)\\\
        return\\\
    end\\\
    local txt = \\\"=== DEAD 精度ログ（味方全員） ===\\\\n\\\" .. table.concat(lines, \\\"\\\\n\\\")\\\
    trigger.action.outTextForCoalition(coa, txt, 25)\\\
end\\\
\\\
function WeaponAccuracy.clearAccuracyData(coa)\\\
    WeaponAccuracy.results = {}\\\
    WeaponAccuracy.shots   = {}\\\
    trigger.action.outTextForCoalition(coa, \\\"DEAD精度ログをクリアしました。\\\", 10)\\\
end\\\
\\\
----------------------------------------------------------------\\\
-- イベントハンドラ\\\
----------------------------------------------------------------\\\
WeaponAccuracyHandler = {}\\\
\\\
function WeaponAccuracyHandler:onEvent(event)\\\
    -------------------------------------------------------------\\\
    -- 武器発射：砲弾以外を全部トラッキング開始\\\
    -------------------------------------------------------------\\\
    if event.id == world.event.S_EVENT_SHOT and event.weapon then\\\
        local weapon = event.weapon\\\
        if not isTrackedWeapon(weapon) then\\\
            return\\\
        end\\\
\\\
        local shooter        = event.initiator\\\
        local shooterName    = \\\"Unknown\\\"\\\
        local shooterUnit    = nil\\\
        local shooterGroup   = nil\\\
        local shooterGroupId = nil\\\
        local shooterSide    = nil\\\
\\\
        if shooter and shooter:isExist() then\\\
            shooterUnit = shooter:getName()\\\
            local group = shooter:getGroup()\\\
            if group then\\\
                shooterGroup   = group:getName()\\\
                shooterGroupId = group:getID()\\\
                shooterSide    = group:getCoalition()\\\
            end\\\
\\\
            local pn = shooter:getPlayerName()\\\
            if pn then\\\
                shooterName = pn\\\
            elseif shooterUnit then\\\
                shooterName = shooterUnit\\\
            end\\\
        end\\\
\\\
        local weaponName = weapon:getTypeName() or \\\"UnknownWeapon\\\"\\\
        local weaponId = weapon:getName()\\\
        if not weaponId or weaponId == \\\"\\\" then\\\
            weaponId = tostring(weapon)\\\
        end\\\
\\\
        WeaponAccuracy.shots[weaponId] = {\\\
            shooter        = shooterName,\\\
            shooterUnit    = shooterUnit,\\\
            shooterGroup   = shooterGroup,\\\
            shooterGroupId = shooterGroupId,\\\
            shooterSide    = shooterSide,\\\
            weaponName     = weaponName,\\\
            targetName     = nil,\\\
            targetPoint    = nil,\\\
            impactPoint    = nil,\\\
            miss           = nil,\\\
            bearingMag     = nil,\\\
        }\\\
\\\
        WeaponAccuracy.startTrack(weaponId, weapon)\\\
\\\
        -- グループ専用メニュー作成（初回のみ）\\\
        if shooterGroupId and not WeaponAccuracy.groupMenus[shooterGroupId] then\\\
            local root = missionCommands.addSubMenuForGroup(\\\
                shooterGroupId,\\\
                \\\"DEAD精度ツール\\\"\\\
            )\\\
\\\
            -- DEAD：自機のみ\\\
            missionCommands.addCommandForGroup(\\\
                shooterGroupId,\\\
                \\\"自機のDEAD結果表示\\\",\\\
                root,\\\
                function()\\\
                    WeaponAccuracy.showAccuracyForGroup(shooterGroupId)\\\
                end\\\
            )\\\
\\\
            -- DEAD：味方全体\\\
            if shooterSide then\\\
                missionCommands.addCommandForGroup(\\\
                    shooterGroupId,\\\
                    \\\"全体DEAD結果表示（味方）\\\",\\\
                    root,\\\
                    function()\\\
                        WeaponAccuracy.showAccuracyForCoalition(shooterSide)\\\
                    end\\\
                )\\\
            end\\\
\\\
            -- DEADログクリア\\\
            if shooterSide then\\\
                missionCommands.addCommandForGroup(\\\
                    shooterGroupId,\\\
                    \\\"DEADログをクリア\\\",\\\
                    root,\\\
                    function()\\\
                        WeaponAccuracy.clearAccuracyData(shooterSide)\\\
                    end\\\
                )\\\
            end\\\
\\\
            WeaponAccuracy.groupMenus[shooterGroupId] = true\\\
        end\\\
    end\\\
end\\\
\\\
world.addEventHandler(WeaponAccuracyHandler)\\\
\\\
-- ★ SAM座標初期化（ミッション開始時点）\\\
initDeadTargets()\\\
\\\
----------------------------------------------------------------\\\
-- ここまで\\\
----------------------------------------------------------------\\\
\"); mission.trig.func[4]=nil;",
		}, -- end of ["actions"]
		["events"] = 
		{
			["dead"] = 
			{
				[2] = "if mission.trig.conditions[2]() then mission.trig.actions[2]() end",
			}, -- end of ["dead"]
		}, -- end of ["events"]
		["custom"] = {},
		["func"] = 
		{
			[3] = "if mission.trig.conditions[3]() then mission.trig.actions[3]() end",
			[4] = "if mission.trig.conditions[4]() then mission.trig.actions[4]() end",
		}, -- end of ["func"]
		["flag"] = 
		{
			[1] = true,
			[2] = true,
			[3] = true,
			[4] = true,
		}, -- end of ["flag"]
		["conditions"] = 
		{
			[1] = "return(true)",
			[2] = "return(true)",
			[3] = "return(true)",
			[4] = "return(true)",
		}, -- end of ["conditions"]
		["customStartup"] = {},
		["funcStartup"] = 
		{
			[1] = "if mission.trig.conditions[1]() then mission.trig.actions[1]() end",
		}, -- end of ["funcStartup"]
	}, -- end of ["trig"]
	["maxDictId"] = 15,
	["result"] = 
	{
		["offline"] = 
		{
			["conditions"] = {},
			["actions"] = {},
			["func"] = {},
		}, -- end of ["offline"]
		["total"] = 0,
		["blue"] = 
		{
			["conditions"] = {},
			["actions"] = {},
			["func"] = {},
		}, -- end of ["blue"]
		["red"] = 
		{
			["conditions"] = {},
			["actions"] = {},
			["func"] = {},
		}, -- end of ["red"]
	}, -- end of ["result"]
	["pictureFileNameN"] = {},
	["drawings"] = 
	{
		["options"] = 
		{
			["hiddenOnF10Map"] = 
			{
				["Observer"] = 
				{
					["Neutral"] = false,
					["Blue"] = false,
					["Red"] = false,
				}, -- end of ["Observer"]
				["Instructor"] = 
				{
					["Neutral"] = false,
					["Blue"] = false,
					["Red"] = false,
				}, -- end of ["Instructor"]
				["ForwardObserver"] = 
				{
					["Neutral"] = false,
					["Blue"] = false,
					["Red"] = false,
				}, -- end of ["ForwardObserver"]
				["ArtilleryCommander"] = 
				{
					["Neutral"] = false,
					["Blue"] = false,
					["Red"] = false,
				}, -- end of ["ArtilleryCommander"]
				["Spectrator"] = 
				{
					["Neutral"] = false,
					["Blue"] = false,
					["Red"] = false,
				}, -- end of ["Spectrator"]
				["Pilot"] = 
				{
					["Neutral"] = false,
					["Blue"] = false,
					["Red"] = false,
				}, -- end of ["Pilot"]
			}, -- end of ["hiddenOnF10Map"]
		}, -- end of ["options"]
		["layers"] = 
		{
			[2] = 
			{
				["visible"] = true,
				["name"] = "Blue",
				["objects"] = {},
			}, -- end of [2]
			[3] = 
			{
				["visible"] = true,
				["name"] = "Neutral",
				["objects"] = {},
			}, -- end of [3]
			[1] = 
			{
				["visible"] = true,
				["name"] = "Red",
				["objects"] = {},
			}, -- end of [1]
			[4] = 
			{
				["visible"] = true,
				["name"] = "Common",
				["objects"] = 
				{
					[1] = 
					{
						["visible"] = true,
						["primitiveType"] = "Polygon",
						["mapY"] = -16546.514651908,
						["layerName"] = "Common",
						["style"] = "dash",
						["angle"] = 0,
						["thickness"] = 16,
						["polygonMode"] = "oval",
						["name"] = "LSV 6nm",
						["mapX"] = -397136.35680557,
						["colorString"] = "0x80ffffff",
						["r1"] = 11100,
						["r2"] = 11100,
						["fillColorString"] = "0xff000000",
					}, -- end of [1]
					[2] = 
					{
						["visible"] = true,
						["primitiveType"] = "Polygon",
						["mapY"] = -16552.24558305,
						["layerName"] = "Common",
						["style"] = "dash",
						["angle"] = 0,
						["thickness"] = 16,
						["polygonMode"] = "oval",
						["name"] = "LSV 4nm",
						["mapX"] = -397126.39187808,
						["colorString"] = "0x00ffffff",
						["r1"] = 7400,
						["r2"] = 7400,
						["fillColorString"] = "0xff000000",
					}, -- end of [2]
					[4] = 
					{
						["visible"] = true,
						["primitiveType"] = "Polygon",
						["mapY"] = -16547.936916092,
						["layerName"] = "Common",
						["style"] = "dash",
						["angle"] = 0,
						["thickness"] = 16,
						["polygonMode"] = "oval",
						["name"] = "LSV 12nm",
						["mapX"] = -397135.21912986,
						["colorString"] = "0x80ffffff",
						["r1"] = 22200,
						["r2"] = 22200,
						["fillColorString"] = "0xff000000",
					}, -- end of [4]
					[3] = 
					{
						["visible"] = true,
						["mapY"] = -33716.163359526,
						["primitiveType"] = "Line",
						["closed"] = false,
						["thickness"] = 4,
						["colorString"] = "0x80ffffff",
						["style"] = "solid",
						["lineMode"] = "segment",
						["mapX"] = -392716.29586284,
						["points"] = 
						{
							[1] = 
							{
								["y"] = -6953.4783996932,
								["x"] = -1494.8298975179,
							}, -- end of [1]
							[2] = 
							{
								["y"] = 17170.758727746,
								["x"] = -4419.8475514331,
							}, -- end of [2]
						}, -- end of ["points"]
						["name"] = "LSV 277",
						["layerName"] = "Common",
					}, -- end of [3]
				}, -- end of ["objects"]
			}, -- end of [4]
			[5] = 
			{
				["visible"] = true,
				["name"] = "Author",
				["objects"] = {},
			}, -- end of [5]
		}, -- end of ["layers"]
	}, -- end of ["drawings"]
	["descriptionNeutralsTask"] = "DictKey_descriptionNeutralsTask_4",
	["pictureFileNameServer"] = {},
	["weather"] = 
	{
		["wind"] = 
		{
			["at8000"] = 
			{
				["speed"] = 17.5236,
				["dir"] = 335,
			}, -- end of ["at8000"]
			["atGround"] = 
			{
				["speed"] = 1.0308,
				["dir"] = 204,
			}, -- end of ["atGround"]
			["at2000"] = 
			{
				["speed"] = 8.2464,
				["dir"] = 312,
			}, -- end of ["at2000"]
		}, -- end of ["wind"]
		["enable_fog"] = false,
		["season"] = 
		{
			["temperature"] = 38,
		}, -- end of ["season"]
		["qnh"] = 761.238,
		["cyclones"] = {},
		["dust_density"] = 0,
		["enable_dust"] = false,
		["clouds"] = 
		{
			["thickness"] = 200,
			["density"] = 0,
			["preset"] = "Preset8",
			["base"] = 5500,
			["iprecptns"] = 0,
		}, -- end of ["clouds"]
		["atmosphere_type"] = 0,
		["groundTurbulence"] = 2.577,
		["halo"] = 
		{
			["preset"] = "auto",
		}, -- end of ["halo"]
		["type_weather"] = 0,
		["modifiedTime"] = true,
		["name"] = "Winter, clean sky",
		["fog"] = 
		{
			["visibility"] = 0,
			["thickness"] = 0,
		}, -- end of ["fog"]
		["visibility"] = 
		{
			["distance"] = 80000,
		}, -- end of ["visibility"]
	}, -- end of ["weather"]
	["theatre"] = "Nevada",
	["triggers"] = 
	{
		["zones"] = 
		{
			[1] = 
			{
				["radius"] = 30.48,
				["zoneId"] = 47,
				["color"] = 
				{
					[1] = 0,
					[2] = 0,
					[3] = 1,
					[4] = 0.14901960784314,
				}, -- end of ["color"]
				["properties"] = {},
				["hidden"] = false,
				["y"] = -18236.576439345,
				["x"] = -398912.90824569,
				["name"] = "LAND_03L",
				["type"] = 2,
				["heading"] = 0,
				["verticies"] = 
				{
					[1] = 
					{
						["y"] = -18646.525041,
						["x"] = -399322.00141057,
					}, -- end of [1]
					[2] = 
					{
						["y"] = -18577.057131831,
						["x"] = -399387.14236177,
					}, -- end of [2]
					[3] = 
					{
						["y"] = -17826.470210516,
						["x"] = -398500.83884589,
					}, -- end of [3]
					[4] = 
					{
						["y"] = -17896.253374032,
						["x"] = -398441.65036455,
					}, -- end of [4]
				}, -- end of ["verticies"]
			}, -- end of [1]
			[2] = 
			{
				["radius"] = 30.48,
				["zoneId"] = 93,
				["color"] = 
				{
					[1] = 0,
					[2] = 0,
					[3] = 1,
					[4] = 0.14901960784314,
				}, -- end of ["color"]
				["properties"] = {},
				["hidden"] = false,
				["y"] = -16677.322736178,
				["x"] = -397063.38848189,
				["name"] = "LAND_21R",
				["type"] = 2,
				["heading"] = 0,
				["verticies"] = 
				{
					[1] = 
					{
						["y"] = -17087.271337833,
						["x"] = -397472.48164676,
					}, -- end of [1]
					[2] = 
					{
						["y"] = -17017.803428664,
						["x"] = -397537.62259797,
					}, -- end of [2]
					[3] = 
					{
						["y"] = -16267.21650735,
						["x"] = -396651.31908208,
					}, -- end of [3]
					[4] = 
					{
						["y"] = -16336.999670866,
						["x"] = -396592.13060074,
					}, -- end of [4]
				}, -- end of ["verticies"]
			}, -- end of [2]
			[3] = 
			{
				["radius"] = 30.48,
				["zoneId"] = 139,
				["color"] = 
				{
					[1] = 1,
					[2] = 1,
					[3] = 1,
					[4] = 0.15,
				}, -- end of ["color"]
				["properties"] = {},
				["hidden"] = false,
				["y"] = -18236.695034891,
				["x"] = -398912.7412769,
				["name"] = "NELLIS_03L_THR",
				["heading"] = 0,
				["type"] = 0,
			}, -- end of [3]
			[4] = 
			{
				["radius"] = 30.48,
				["zoneId"] = 185,
				["color"] = 
				{
					[1] = 0,
					[2] = 0,
					[3] = 1,
					[4] = 0.14901960784314,
				}, -- end of ["color"]
				["properties"] = {},
				["hidden"] = false,
				["y"] = -16458.049896255,
				["x"] = -397274.62652063,
				["name"] = "LAND_21L",
				["type"] = 2,
				["heading"] = 0,
				["verticies"] = 
				{
					[1] = 
					{
						["y"] = -16867.99849791,
						["x"] = -397683.7196855,
					}, -- end of [1]
					[2] = 
					{
						["y"] = -16798.530588741,
						["x"] = -397748.86063671,
					}, -- end of [2]
					[3] = 
					{
						["y"] = -16047.943667427,
						["x"] = -396862.55712082,
					}, -- end of [3]
					[4] = 
					{
						["y"] = -16117.726830943,
						["x"] = -396803.36863948,
					}, -- end of [4]
				}, -- end of ["verticies"]
			}, -- end of [4]
			[5] = 
			{
				["radius"] = 30.48,
				["zoneId"] = 186,
				["color"] = 
				{
					[1] = 0,
					[2] = 0,
					[3] = 1,
					[4] = 0.14901960784314,
				}, -- end of ["color"]
				["properties"] = {},
				["hidden"] = false,
				["y"] = -18006.889807116,
				["x"] = -399113.6736824,
				["name"] = "LAND_03R",
				["type"] = 2,
				["heading"] = 0,
				["verticies"] = 
				{
					[1] = 
					{
						["y"] = -18416.838408771,
						["x"] = -399522.76684728,
					}, -- end of [1]
					[2] = 
					{
						["y"] = -18347.370499602,
						["x"] = -399587.90779848,
					}, -- end of [2]
					[3] = 
					{
						["y"] = -17596.783578287,
						["x"] = -398701.6042826,
					}, -- end of [3]
					[4] = 
					{
						["y"] = -17666.566741803,
						["x"] = -398642.41580126,
					}, -- end of [4]
				}, -- end of ["verticies"]
			}, -- end of [5]
		}, -- end of ["zones"]
	}, -- end of ["triggers"]
	["map"] = 
	{
		["centerY"] = -163158.41659862,
		["zoom"] = 34954.943054614,
		["centerX"] = -268972.50525935,
	}, -- end of ["map"]
	["coalitions"] = 
	{
		["neutrals"] = 
		{
			[1] = 18,
			[2] = 91,
			[3] = 70,
			[4] = 83,
			[5] = 65,
			[6] = 24,
			[7] = 86,
			[8] = 64,
			[9] = 63,
			[10] = 27,
			[11] = 76,
			[12] = 84,
			[13] = 90,
			[14] = 29,
			[15] = 62,
			[16] = 78,
			[17] = 87,
			[18] = 61,
			[19] = 33,
			[20] = 60,
			[21] = 17,
			[22] = 34,
			[23] = 35,
			[24] = 69,
			[25] = 59,
			[26] = 37,
			[27] = 71,
			[28] = 79,
			[29] = 58,
			[30] = 57,
			[31] = 56,
			[32] = 55,
			[33] = 92,
			[34] = 88,
			[35] = 38,
			[36] = 73,
			[37] = 39,
			[38] = 89,
			[39] = 54,
			[40] = 77,
			[41] = 72,
			[42] = 0,
			[43] = 42,
			[44] = 43,
			[45] = 85,
			[46] = 75,
			[47] = 45,
			[48] = 19,
			[49] = 53,
			[50] = 22,
			[51] = 47,
			[52] = 52,
			[53] = 66,
			[54] = 51,
			[55] = 74,
			[56] = 82,
			[57] = 68,
			[58] = 50,
			[59] = 49,
			[60] = 48,
			[61] = 67,
		}, -- end of ["neutrals"]
		["blue"] = 
		{
			[1] = 21,
			[2] = 23,
			[3] = 11,
			[4] = 25,
			[5] = 8,
			[6] = 80,
			[7] = 28,
			[8] = 26,
			[9] = 13,
			[10] = 30,
			[11] = 5,
			[12] = 16,
			[13] = 6,
			[14] = 31,
			[15] = 32,
			[16] = 15,
			[17] = 20,
			[18] = 36,
			[19] = 12,
			[20] = 40,
			[21] = 41,
			[22] = 44,
			[23] = 9,
			[24] = 46,
			[25] = 10,
			[26] = 3,
			[27] = 4,
			[28] = 1,
			[29] = 2,
		}, -- end of ["blue"]
		["red"] = 
		{
			[1] = 81,
			[2] = 7,
		}, -- end of ["red"]
	}, -- end of ["coalitions"]
	["descriptionText"] = "DictKey_descriptionText_1",
	["pictureFileNameR"] = {},
	["descriptionBlueTask"] = "DictKey_descriptionBlueTask_3",
	["goals"] = {},
	["descriptionRedTask"] = "DictKey_descriptionRedTask_2",
	["pictureFileNameB"] = {},
	["coalition"] = 
	{
		["neutrals"] = 
		{
			["bullseye"] = 
			{
				["y"] = 0,
				["x"] = 0,
			}, -- end of ["bullseye"]
			["nav_points"] = {},
			["name"] = "neutrals",
			["country"] = {},
		}, -- end of ["neutrals"]
		["blue"] = 
		{
			["bullseye"] = 
			{
				["y"] = -70055.103130489,
				["x"] = -276808.67800515,
			}, -- end of ["bullseye"]
			["nav_points"] = {},
			["name"] = "blue",
			["country"] = 
			{
				[1] = 
				{
					["helicopter"] = 
					{
						["group"] = 
						{
							[1] = 
							{
								["dynSpawnTemplate"] = false,
								["modulation"] = 0,
								["tasks"] = {},
								["radioSet"] = false,
								["task"] = "Transport",
								["uncontrolled"] = false,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 639,
											["action"] = "From Parking Area",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 41.666666666667,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "TakeOffParking",
											["ETA"] = 0,
											["ETA_locked"] = true,
											["y"] = -28874.76953125,
											["x"] = -414753.46875,
											["speed_locked"] = true,
											["formation_template"] = "",
											["airdromeId"] = 3,
										}, -- end of [1]
										[2] = 
										{
											["alt"] = 1280.16,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 55.5,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["number"] = 1,
															["auto"] = false,
															["id"] = "ControlledTask",
															["enabled"] = true,
															["params"] = 
															{
																["task"] = 
																{
																	["id"] = "Orbit",
																	["params"] = 
																	{
																		["altitude"] = 1280.16,
																		["pattern"] = "Circle",
																		["speed"] = 27.777777777778,
																	}, -- end of ["params"]
																}, -- end of ["task"]
																["stopCondition"] = 
																{
																	["userFlag"] = "0",
																}, -- end of ["stopCondition"]
															}, -- end of ["params"]
														}, -- end of [1]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 213.25989722909,
											["ETA_locked"] = false,
											["y"] = -20148.52321505,
											["x"] = -406757.11150593,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [2]
										[3] = 
										{
											["alt"] = 1280.16,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 55.5,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 350.58118021803,
											["ETA_locked"] = false,
											["y"] = -13135.102157819,
											["x"] = -403774.39220573,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [3]
										[4] = 
										{
											["alt"] = 1280.16,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 55.5,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 607.96024456898,
											["ETA_locked"] = false,
											["y"] = -6378.5325441747,
											["x"] = -396669.12250504,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [4]
										[5] = 
										{
											["alt"] = 1280.16,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 55.5,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 798.29260476434,
											["ETA_locked"] = false,
											["y"] = -7145.815662177,
											["x"] = -386133.57943321,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [5]
										[6] = 
										{
											["alt"] = 914.4,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 55.5,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 1284.6893241538,
											["ETA_locked"] = false,
											["y"] = -37464.744144677,
											["x"] = -394584.40548283,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [6]
										[7] = 
										{
											["alt"] = 679,
											["action"] = "Landing",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 41.666666666667,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Land",
											["ETA"] = 306.82604438167,
											["ETA_locked"] = false,
											["y"] = -31726.952148,
											["x"] = -400891.484375,
											["speed_locked"] = true,
											["formation_template"] = "",
											["airdromeId"] = 15,
										}, -- end of [7]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 29,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["alt"] = 639,
										["hardpoint_racks"] = false,
										["alt_type"] = "BARO",
										["parking_landing_id"] = "H01",
										["livery_id"] = "[Civilian] VIP",
										["skill"] = "High",
										["parking"] = 7,
										["ropeLength"] = 15,
										["speed"] = 41.666666666667,
										["AddPropAircraft"] = 
										{
											["GunnersAISkill"] = 90,
											["ExhaustScreen"] = false,
										}, -- end of ["AddPropAircraft"]
										["type"] = "UH-1H",
										["parking_landing"] = 50,
										["unitId"] = 53,
										["psi"] = -0.82901733473721,
										["onboard_num"] = "017",
										["parking_id"] = "H03",
										["x"] = -414753.46875,
										["name"] = "Rotary-1-1",
										["payload"] = 
										{
											["pylons"] = {},
											["fuel"] = "631",
											["flare"] = 60,
											["chaff"] = 0,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -28874.76953125,
										["heading"] = 0.82901733473721,
										["callsign"] = 
										{
											[1] = 8,
											[2] = 1,
											["name"] = "Pontiac11",
											[3] = 1,
										}, -- end of ["callsign"]
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -28874.76953125,
								["x"] = -414753.46875,
								["name"] = "USA UH-1",
								["communication"] = true,
								["start_time"] = 0,
								["frequency"] = 251,
							}, -- end of [1]
						}, -- end of ["group"]
					}, -- end of ["helicopter"]
					["name"] = "USA",
					["id"] = 2,
					["vehicle"] = 
					{
						["group"] = 
						{
							[1] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = {},
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 562,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -16955.389731614,
											["x"] = -398035.12691103,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 46,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["livery_id"] = "desert",
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "HEMTT TFFT",
										["unitId"] = 71,
										["y"] = -16955.389731614,
										["x"] = -398035.12691103,
										["name"] = "HEMMT",
										["heading"] = 5.4105206811824,
										["playerCanDrive"] = false,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "HEMTT TFFT",
										["unitId"] = 73,
										["y"] = -16965.191672812,
										["x"] = -398047.24593958,
										["name"] = "HEMMT-1",
										["heading"] = 5.4105206811824,
										["playerCanDrive"] = false,
									}, -- end of [2]
								}, -- end of ["units"]
								["y"] = -16955.389731614,
								["x"] = -398035.12691103,
								["name"] = "HEMMT",
								["start_time"] = 0,
							}, -- end of [1]
							[2] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = {},
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 565,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -16552.742282284,
											["x"] = -397145.56351354,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["number"] = 1,
															["auto"] = true,
															["id"] = "WrappedAction",
															["enabled"] = true,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "EPLRS",
																	["params"] = 
																	{
																		["value"] = true,
																		["groupId"] = 4,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [1]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 59,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "Hummer",
										["unitId"] = 89,
										["y"] = -16552.742282284,
										["x"] = -397145.56351354,
										["name"] = "LSV 12X",
										["heading"] = 4.9567350756639,
										["playerCanDrive"] = true,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16552.742282284,
								["x"] = -397145.56351354,
								["name"] = "LSV 12X",
								["start_time"] = 0,
							}, -- end of [2]
							[3] = 
							{
								["visible"] = false,
								["uncontrollable"] = false,
								["route"] = 
								{
									["spans"] = {},
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 567,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -15114.528829769,
											["x"] = -397423.79099384,
											["ETA_locked"] = true,
											["speed"] = 5.5555555555556,
											["action"] = "Off Road",
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 77,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot str",
										["unitId"] = 141,
										["y"] = -15114.528829769,
										["x"] = -397423.79099384,
										["name"] = "USA Patriot-1-1",
										["heading"] = 6.0388392119004,
										["playerCanDrive"] = false,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot EPP",
										["unitId"] = 142,
										["y"] = -15100.79789718,
										["x"] = -397440.56755983,
										["name"] = "USA Patriot-1-2",
										["heading"] = 6.0388392119004,
										["playerCanDrive"] = false,
									}, -- end of [2]
									[3] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot ECS",
										["unitId"] = 143,
										["y"] = -15106.84639445,
										["x"] = -397458.20282496,
										["name"] = "USA Patriot-1-3",
										["heading"] = 6.0388392119004,
										["playerCanDrive"] = false,
									}, -- end of [3]
									[4] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot AMG",
										["unitId"] = 144,
										["y"] = -15121.947088032,
										["x"] = -397480.03536575,
										["name"] = "USA Patriot-1-4",
										["heading"] = 4.4680428851055,
										["playerCanDrive"] = false,
									}, -- end of [4]
									[5] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot cp",
										["unitId"] = 145,
										["y"] = -15090.182851317,
										["x"] = -397454.3196403,
										["name"] = "USA Patriot-1-5",
										["heading"] = 6.0388392119004,
										["playerCanDrive"] = false,
									}, -- end of [5]
									[6] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot ln",
										["unitId"] = 146,
										["y"] = -15259.536965959,
										["x"] = -397319.04433985,
										["name"] = "USA Patriot-1-6",
										["heading"] = 5.6897733615015,
										["playerCanDrive"] = false,
									}, -- end of [6]
									[7] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot ln",
										["unitId"] = 147,
										["y"] = -15335.419943773,
										["x"] = -397238.50268956,
										["name"] = "USA Patriot-1-7",
										["heading"] = 5.6897733615015,
										["playerCanDrive"] = false,
									}, -- end of [7]
									[8] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot ln",
										["unitId"] = 148,
										["y"] = -15303.761111286,
										["x"] = -397159.08141674,
										["name"] = "USA Patriot-1-8",
										["heading"] = 6.0388392119004,
										["playerCanDrive"] = false,
									}, -- end of [8]
									[9] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot ln",
										["unitId"] = 149,
										["y"] = -15185.637140536,
										["x"] = -397262.35088511,
										["name"] = "USA Patriot-1-9",
										["heading"] = 6.0388392119004,
										["playerCanDrive"] = false,
									}, -- end of [9]
									[10] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot ln",
										["unitId"] = 150,
										["y"] = -15175.392421095,
										["x"] = -397142.70187637,
										["name"] = "USA Patriot-1-10",
										["heading"] = 6.0388392119004,
										["playerCanDrive"] = false,
									}, -- end of [10]
									[11] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot ln",
										["unitId"] = 151,
										["y"] = -15092.677920877,
										["x"] = -397313.44358971,
										["name"] = "USA Patriot-1-11",
										["heading"] = 0.10471975511959,
										["playerCanDrive"] = false,
									}, -- end of [11]
									[12] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Patriot ln",
										["unitId"] = 152,
										["y"] = -15059.028560595,
										["x"] = -397216.2473281,
										["name"] = "USA Patriot-1-12",
										["heading"] = 0.10471975511959,
										["playerCanDrive"] = false,
									}, -- end of [12]
									[13] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "M1097 Avenger",
										["unitId"] = 153,
										["y"] = -14940.733089742,
										["x"] = -397413.10782052,
										["name"] = "USA Patriot-1-13",
										["heading"] = 5.6897733615015,
										["playerCanDrive"] = true,
									}, -- end of [13]
									[14] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "M1097 Avenger",
										["unitId"] = 154,
										["y"] = -15385.146551349,
										["x"] = -397443.48672252,
										["name"] = "USA Patriot-1-14",
										["heading"] = 6.0388392119004,
										["playerCanDrive"] = true,
									}, -- end of [14]
									[15] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Hummer",
										["unitId"] = 155,
										["y"] = -15239.777865203,
										["x"] = -397525.23411648,
										["name"] = "USA Patriot-1-15",
										["heading"] = 5.6897733615015,
										["playerCanDrive"] = true,
									}, -- end of [15]
									[16] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Hummer",
										["unitId"] = 156,
										["y"] = -15221.706828581,
										["x"] = -397534.18731519,
										["name"] = "USA Patriot-1-16",
										["heading"] = 5.6897733615015,
										["playerCanDrive"] = true,
									}, -- end of [16]
									[17] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "M978 HEMTT Tanker",
										["unitId"] = 157,
										["y"] = -15202.844945077,
										["x"] = -397543.80496618,
										["name"] = "USA Patriot-1-17",
										["heading"] = 5.6897733615015,
										["playerCanDrive"] = false,
									}, -- end of [17]
									[18] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 158,
										["y"] = -15258.468861956,
										["x"] = -397516.41385013,
										["name"] = "USA Patriot-1-18",
										["heading"] = 5.6897733615015,
										["playerCanDrive"] = true,
									}, -- end of [18]
									[19] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 159,
										["y"] = -15208.937635179,
										["x"] = -397303.14722475,
										["name"] = "USA Patriot-1-19",
										["heading"] = 5.6897733615015,
										["playerCanDrive"] = true,
									}, -- end of [19]
									[20] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 160,
										["y"] = -15083.225485831,
										["x"] = -397443.44072143,
										["name"] = "USA Patriot-1-20",
										["heading"] = 1.3264502315157,
										["playerCanDrive"] = true,
									}, -- end of [20]
								}, -- end of ["units"]
								["y"] = -15114.528829769,
								["x"] = -397423.79099384,
								["name"] = "USA Patriot-1",
								["start_time"] = 0,
							}, -- end of [3]
							[4] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = {},
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 1362,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -89266.782344008,
											["x"] = -287553.28301514,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 1,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "EPLRS",
																	["params"] = 
																	{
																		["value"] = true,
																		["groupId"] = 10,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [1]
														[2] = 
														{
															["enabled"] = true,
															["auto"] = false,
															["id"] = "FAC",
															["number"] = 2,
															["params"] = 
															{
																["number"] = 1,
																["designation"] = "Auto",
																["modulation"] = 0,
																["callname"] = 1,
																["datalink"] = true,
																["frequency"] = 133000000,
															}, -- end of ["params"]
														}, -- end of [2]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 95,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Excellent",
										["coldAtStart"] = false,
										["type"] = "FPS-117 ECS",
										["unitId"] = 234,
										["y"] = -89266.782344008,
										["x"] = -287553.28301514,
										["name"] = "USAF-1",
										["heading"] = 5.0492375260196,
										["playerCanDrive"] = false,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "Excellent",
										["coldAtStart"] = false,
										["type"] = "FPS-117 Dome",
										["unitId"] = 235,
										["y"] = -89266.782344008,
										["x"] = -287593.28301514,
										["name"] = "USAF-EWR",
										["heading"] = 0,
										["playerCanDrive"] = false,
									}, -- end of [2]
								}, -- end of ["units"]
								["y"] = -89266.782344008,
								["x"] = -287553.28301514,
								["name"] = "USAF-EWR",
								["start_time"] = 0,
							}, -- end of [4]
							[5] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = {},
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 561,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -16011.032088328,
											["x"] = -397026.1510598,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 133,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 273,
										["y"] = -16011.032088328,
										["x"] = -397026.1510598,
										["name"] = "Ground-1-1",
										["heading"] = 0.090757121103704,
										["playerCanDrive"] = true,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 274,
										["y"] = -16018.678962896,
										["x"] = -397026.11954495,
										["name"] = "Ground-1-2",
										["heading"] = 0.062831853071793,
										["playerCanDrive"] = true,
									}, -- end of [2]
								}, -- end of ["units"]
								["y"] = -16011.032088328,
								["x"] = -397026.1510598,
								["name"] = "Ground-1",
								["start_time"] = 0,
							}, -- end of [5]
						}, -- end of ["group"]
					}, -- end of ["vehicle"]
					["plane"] = 
					{
						["group"] = 
						{
							[1] = 
							{
								["dynSpawnTemplate"] = false,
								["modulation"] = 0,
								["tasks"] = {},
								["radioSet"] = false,
								["task"] = "CAP",
								["uncontrolled"] = true,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 562,
											["action"] = "From Parking Area",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["enabled"] = true,
															["key"] = "CAP",
															["id"] = "EngageTargets",
															["number"] = 1,
															["auto"] = true,
															["params"] = 
															{
																["targetTypes"] = 
																{
																	[1] = "Air",
																}, -- end of ["targetTypes"]
																["priority"] = 0,
															}, -- end of ["params"]
														}, -- end of [1]
														[2] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 2,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 17,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [2]
														[3] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 3,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = 4,
																		["name"] = 18,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [3]
														[4] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 4,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 19,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [4]
														[5] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 5,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["targetTypes"] = {},
																		["name"] = 21,
																		["value"] = "none;",
																		["noTargetTypes"] = 
																		{
																			[1] = "Fighters",
																			[2] = "Multirole fighters",
																			[3] = "Bombers",
																			[4] = "Helicopters",
																			[5] = "UAVs",
																			[6] = "Infantry",
																			[7] = "Fortifications",
																			[8] = "Tanks",
																			[9] = "IFV",
																			[10] = "APC",
																			[11] = "Artillery",
																			[12] = "Unarmed vehicles",
																			[13] = "AAA",
																			[14] = "SR SAM",
																			[15] = "MR SAM",
																			[16] = "LR SAM",
																			[17] = "Aircraft Carriers",
																			[18] = "Cruisers",
																			[19] = "Destroyers",
																			[20] = "Frigates",
																			[21] = "Corvettes",
																			[22] = "Light armed ships",
																			[23] = "Unarmed ships",
																			[24] = "Submarines",
																			[25] = "Cruise missiles",
																			[26] = "Antiship Missiles",
																			[27] = "AA Missiles",
																			[28] = "AG Missiles",
																			[29] = "SA Missiles",
																		}, -- end of ["noTargetTypes"]
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [5]
														[6] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 6,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "EPLRS",
																	["params"] = 
																	{
																		["value"] = true,
																		["groupId"] = 4,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [6]
														[7] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 7,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 35,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [7]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "TakeOffParking",
											["ETA"] = 0,
											["ETA_locked"] = true,
											["y"] = -17482.537109375,
											["x"] = -399255.125,
											["speed_locked"] = true,
											["formation_template"] = "",
											["airdromeId"] = 4,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 6,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["alt"] = 562,
										["alt_type"] = "BARO",
										["livery_id"] = "18th agrs arctic splinter",
										["skill"] = "High",
										["parking"] = "217",
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["STN_L16"] = "00224",
											["VoiceCallsignNumber"] = "11",
											["VoiceCallsignLabel"] = "CT",
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-16C_50",
										["unitId"] = 20,
										["psi"] = 0,
										["onboard_num"] = "305",
										["parking_id"] = "G17",
										["x"] = -399255.125,
										["name"] = "Aerial-1-3",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "{AIS_ASQ_T50}",
												}, -- end of [2]
												[4] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [4]
												[5] = 
												{
													["CLSID"] = "ALQ_184",
												}, -- end of [5]
												[6] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [6]
												[8] = 
												{
													["CLSID"] = "CATM-9M",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [9]
											}, -- end of ["pylons"]
											["fuel"] = 3249,
											["flare"] = 60,
											["ammo_type"] = 5,
											["chaff"] = 60,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17482.537109375,
										["heading"] = 0,
										["callsign"] = 
										{
											[1] = 4,
											[2] = 1,
											["name"] = "Colt11",
											[3] = 1,
										}, -- end of ["callsign"]
										["datalinks"] = 
										{
											["Link16"] = 
											{
												["settings"] = 
												{
													["flightLead"] = true,
													["transmitPower"] = 3,
													["specialChannel"] = 1,
													["fighterChannel"] = 1,
													["missionChannel"] = 1,
												}, -- end of ["settings"]
												["network"] = 
												{
													["teamMembers"] = 
													{
														[1] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 20,
														}, -- end of [1]
														[2] = 
														{
															["missionUnitId"] = 27,
															["TDOA"] = true,
														}, -- end of [2]
													}, -- end of ["teamMembers"]
													["donors"] = {},
												}, -- end of ["network"]
											}, -- end of ["Link16"]
										}, -- end of ["datalinks"]
									}, -- end of [1]
									[2] = 
									{
										["alt"] = 562,
										["alt_type"] = "BARO",
										["livery_id"] = "18th agrs arctic splinter",
										["skill"] = "High",
										["parking"] = "216",
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["VoiceCallsignLabel"] = "CT",
											["VoiceCallsignNumber"] = "12",
											["STN_L16"] = "00233",
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-16C_50",
										["unitId"] = 27,
										["psi"] = 0,
										["onboard_num"] = "268",
										["parking_id"] = "G18",
										["x"] = -399230.40625,
										["name"] = "USAF AGR F-16C-1",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "{AIS_ASQ_T50}",
												}, -- end of [2]
												[4] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [4]
												[5] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [5]
												[6] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [6]
												[8] = 
												{
													["CLSID"] = "CATM-9M",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [9]
											}, -- end of ["pylons"]
											["fuel"] = 3249,
											["flare"] = 60,
											["ammo_type"] = 5,
											["chaff"] = 60,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17461.654296875,
										["heading"] = 0,
										["callsign"] = 
										{
											[1] = 4,
											[2] = 1,
											["name"] = "Colt12",
											[3] = 2,
										}, -- end of ["callsign"]
										["datalinks"] = 
										{
											["Link16"] = 
											{
												["settings"] = 
												{
													["flightLead"] = false,
													["transmitPower"] = 3,
													["specialChannel"] = 1,
													["fighterChannel"] = 1,
													["missionChannel"] = 1,
												}, -- end of ["settings"]
												["network"] = 
												{
													["teamMembers"] = 
													{
														[1] = 
														{
															["missionUnitId"] = 20,
															["TDOA"] = true,
														}, -- end of [1]
														[2] = 
														{
															["missionUnitId"] = 27,
															["TDOA"] = true,
														}, -- end of [2]
													}, -- end of ["teamMembers"]
													["donors"] = {},
												}, -- end of ["network"]
											}, -- end of ["Link16"]
										}, -- end of ["datalinks"]
									}, -- end of [2]
								}, -- end of ["units"]
								["y"] = -17482.537109375,
								["x"] = -399255.125,
								["name"] = "USAF AGR F-16C",
								["communication"] = true,
								["start_time"] = 0,
								["frequency"] = 305,
							}, -- end of [1]
							[2] = 
							{
								["dynSpawnTemplate"] = false,
								["modulation"] = 0,
								["tasks"] = {},
								["radioSet"] = false,
								["task"] = "Ground Attack",
								["uncontrolled"] = true,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 562,
											["action"] = "From Parking Area",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["vnav"] = 1,
												["addopt"] = {},
												["scale"] = 0,
												["angle"] = 0,
												["vangle"] = 0,
												["steer"] = 2,
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["number"] = 1,
															["auto"] = true,
															["id"] = "WrappedAction",
															["enabled"] = true,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = 1,
																		["name"] = 1,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [1]
														[2] = 
														{
															["number"] = 2,
															["auto"] = true,
															["id"] = "WrappedAction",
															["enabled"] = true,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = 1,
																		["name"] = 3,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [2]
														[3] = 
														{
															["number"] = 3,
															["auto"] = true,
															["id"] = "WrappedAction",
															["enabled"] = true,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["variantIndex"] = 2,
																		["name"] = 5,
																		["formationIndex"] = 2,
																		["value"] = 131074,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [3]
														[4] = 
														{
															["number"] = 4,
															["auto"] = true,
															["id"] = "WrappedAction",
															["enabled"] = true,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 15,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [4]
														[5] = 
														{
															["number"] = 5,
															["auto"] = true,
															["id"] = "WrappedAction",
															["enabled"] = true,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["targetTypes"] = {},
																		["name"] = 21,
																		["value"] = "none;",
																		["noTargetTypes"] = 
																		{
																			[1] = "Fighters",
																			[2] = "Multirole fighters",
																			[3] = "Bombers",
																			[4] = "Helicopters",
																			[5] = "UAVs",
																			[6] = "Infantry",
																			[7] = "Fortifications",
																			[8] = "Tanks",
																			[9] = "IFV",
																			[10] = "APC",
																			[11] = "Artillery",
																			[12] = "Unarmed vehicles",
																			[13] = "AAA",
																			[14] = "SR SAM",
																			[15] = "MR SAM",
																			[16] = "LR SAM",
																			[17] = "Aircraft Carriers",
																			[18] = "Cruisers",
																			[19] = "Destroyers",
																			[20] = "Frigates",
																			[21] = "Corvettes",
																			[22] = "Light armed ships",
																			[23] = "Unarmed ships",
																			[24] = "Submarines",
																			[25] = "Cruise missiles",
																			[26] = "Antiship Missiles",
																			[27] = "AA Missiles",
																			[28] = "AG Missiles",
																			[29] = "SA Missiles",
																		}, -- end of ["noTargetTypes"]
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [5]
														[6] = 
														{
															["number"] = 6,
															["auto"] = true,
															["id"] = "WrappedAction",
															["enabled"] = true,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "EPLRS",
																	["params"] = 
																	{
																		["value"] = true,
																		["groupId"] = 5,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [6]
														[7] = 
														{
															["number"] = 7,
															["auto"] = true,
															["id"] = "WrappedAction",
															["enabled"] = true,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 35,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [7]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "TakeOffParking",
											["ETA"] = 0,
											["ETA_locked"] = true,
											["y"] = -17336.82421875,
											["x"] = -399082.03125,
											["speed_locked"] = true,
											["formation_template"] = "",
											["airdromeId"] = 4,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 7,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["alt"] = 562,
										["alt_type"] = "BARO",
										["livery_id"] = "usaf 334th eagles fs af89 aim high",
										["skill"] = "High",
										["parking"] = "210",
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["InitAirborneTime"] = 0,
											["LCFTLaserCode"] = 688,
											["Sta8LaserCode"] = 688,
											["Sta5LaserCode"] = 688,
											["RCFTLaserCode"] = 688,
											["Sta2LaserCode"] = 688,
											["MountNVG"] = false,
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-15ESE",
										["unitId"] = 21,
										["psi"] = 0,
										["onboard_num"] = "475",
										["parking_id"] = "G24",
										["x"] = -399082.03125,
										["name"] = "Nelis F-15E",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "{F15E_EXTTANK}",
												}, -- end of [2]
												[3] = 
												{
													["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
												}, -- end of [3]
												[4] = 
												{
													["CLSID"] = "{CFT_L_BDU50LGB_x_2}",
												}, -- end of [4]
												[7] = 
												{
													["CLSID"] = "{F-15E_AAQ-14_LANTIRN}",
												}, -- end of [7]
												[8] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{F-15E_AAQ-13_LANTIRN}",
												}, -- end of [9]
												[12] = 
												{
													["CLSID"] = "{CFT_R_BDU50LGB_x_2}",
												}, -- end of [12]
												[13] = 
												{
													["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
												}, -- end of [13]
												[14] = 
												{
													["CLSID"] = "{F15E_EXTTANK}",
												}, -- end of [14]
												[15] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [15]
											}, -- end of ["pylons"]
											["fuel"] = 10245.529841878,
											["flare"] = 60,
											["ammo_type"] = 1,
											["chaff"] = 120,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17336.82421875,
										["heading"] = 0,
										["callsign"] = 
										{
											[1] = 5,
											[2] = 1,
											["name"] = "Dodge11",
											[3] = 1,
										}, -- end of ["callsign"]
									}, -- end of [1]
									[2] = 
									{
										["alt"] = 562,
										["alt_type"] = "BARO",
										["livery_id"] = "usaf 335th chiefs fs af89-0487 lucky",
										["skill"] = "High",
										["parking"] = "209",
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["InitAirborneTime"] = 0,
											["LCFTLaserCode"] = 688,
											["Sta8LaserCode"] = 688,
											["Sta5LaserCode"] = 688,
											["Sta2LaserCode"] = 688,
											["RCFTLaserCode"] = 688,
											["MountNVG"] = false,
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-15ESE",
										["unitId"] = 23,
										["psi"] = 0,
										["onboard_num"] = "487",
										["parking_id"] = "G25",
										["x"] = -399057.3125,
										["name"] = "Nelis F-15E-1",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "{F15E_EXTTANK}",
												}, -- end of [2]
												[3] = 
												{
													["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
												}, -- end of [3]
												[4] = 
												{
													["CLSID"] = "{CFT_L_BDU50LGB_x_2}",
												}, -- end of [4]
												[7] = 
												{
													["CLSID"] = "{F-15E_AAQ-14_LANTIRN}",
												}, -- end of [7]
												[8] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{F-15E_AAQ-13_LANTIRN}",
												}, -- end of [9]
												[12] = 
												{
													["CLSID"] = "{CFT_R_BDU50LGB_x_2}",
												}, -- end of [12]
												[13] = 
												{
													["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
												}, -- end of [13]
												[14] = 
												{
													["CLSID"] = "{F15E_EXTTANK}",
												}, -- end of [14]
												[15] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [15]
											}, -- end of ["pylons"]
											["fuel"] = 10245.529841878,
											["flare"] = 60,
											["ammo_type"] = 1,
											["chaff"] = 120,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17315.94921875,
										["heading"] = 0,
										["callsign"] = 
										{
											[1] = 5,
											[2] = 1,
											["name"] = "Dodge12",
											[3] = 2,
										}, -- end of ["callsign"]
									}, -- end of [2]
									[3] = 
									{
										["alt"] = 562,
										["alt_type"] = "BARO",
										["livery_id"] = "usaf 336th rocketeers fs af88-1673 336 fgs",
										["skill"] = "High",
										["parking"] = "211",
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["InitAirborneTime"] = 0,
											["LCFTLaserCode"] = 688,
											["Sta8LaserCode"] = 688,
											["Sta5LaserCode"] = 688,
											["Sta2LaserCode"] = 688,
											["RCFTLaserCode"] = 688,
											["MountNVG"] = false,
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-15ESE",
										["unitId"] = 24,
										["psi"] = 0,
										["onboard_num"] = "673",
										["parking_id"] = "G23",
										["x"] = -399106.8125,
										["name"] = "Nelis F-15E-2",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "{F15E_EXTTANK}",
												}, -- end of [2]
												[3] = 
												{
													["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
												}, -- end of [3]
												[4] = 
												{
													["CLSID"] = "{CFT_L_BDU50HD_x_6}",
												}, -- end of [4]
												[7] = 
												{
													["CLSID"] = "{F-15E_AAQ-14_LANTIRN}",
												}, -- end of [7]
												[8] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{F-15E_AAQ-13_LANTIRN}",
												}, -- end of [9]
												[12] = 
												{
													["CLSID"] = "{CFT_R_BDU50HD_x_6}",
												}, -- end of [12]
												[13] = 
												{
													["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
												}, -- end of [13]
												[14] = 
												{
													["CLSID"] = "{F15E_EXTTANK}",
												}, -- end of [14]
												[15] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [15]
											}, -- end of ["pylons"]
											["fuel"] = 10245.529841878,
											["flare"] = 60,
											["ammo_type"] = 1,
											["chaff"] = 120,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17357.80859375,
										["heading"] = 0,
										["callsign"] = 
										{
											[1] = 5,
											[2] = 1,
											["name"] = "Dodge13",
											[3] = 3,
										}, -- end of ["callsign"]
									}, -- end of [3]
									[4] = 
									{
										["alt"] = 562,
										["alt_type"] = "BARO",
										["livery_id"] = "usaf 336th rocketeers fs af88-1687 mad duck iv",
										["skill"] = "High",
										["parking"] = "212",
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["InitAirborneTime"] = 0,
											["LCFTLaserCode"] = 688,
											["Sta8LaserCode"] = 688,
											["Sta5LaserCode"] = 688,
											["Sta2LaserCode"] = 688,
											["RCFTLaserCode"] = 688,
											["MountNVG"] = false,
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-15ESE",
										["unitId"] = 25,
										["psi"] = 0,
										["onboard_num"] = "687",
										["parking_id"] = "G22",
										["x"] = -399131.5,
										["name"] = "Nelis F-15E-3",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "{F15E_EXTTANK}",
												}, -- end of [2]
												[3] = 
												{
													["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
												}, -- end of [3]
												[4] = 
												{
													["CLSID"] = "{CFT_L_BDU50HD_x_2}",
												}, -- end of [4]
												[7] = 
												{
													["CLSID"] = "{F-15E_AAQ-14_LANTIRN}",
												}, -- end of [7]
												[8] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{F-15E_AAQ-13_LANTIRN}",
												}, -- end of [9]
												[12] = 
												{
													["CLSID"] = "{CFT_R_BDU50HD_x_2}",
												}, -- end of [12]
												[13] = 
												{
													["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
												}, -- end of [13]
												[14] = 
												{
													["CLSID"] = "{F15E_EXTTANK}",
												}, -- end of [14]
												[15] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [15]
											}, -- end of ["pylons"]
											["fuel"] = 10245.529841878,
											["flare"] = 60,
											["ammo_type"] = 1,
											["chaff"] = 120,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17378.5,
										["heading"] = 0,
										["callsign"] = 
										{
											[1] = 5,
											[2] = 1,
											["name"] = "Dodge14",
											[3] = 4,
										}, -- end of ["callsign"]
									}, -- end of [4]
								}, -- end of ["units"]
								["y"] = -17336.82421875,
								["x"] = -399082.03125,
								["name"] = "Nelis F-15E",
								["communication"] = true,
								["start_time"] = 0,
								["frequency"] = 243,
							}, -- end of [2]
							[3] = 
							{
								["dynSpawnTemplate"] = false,
								["modulation"] = 0,
								["tasks"] = {},
								["radioSet"] = false,
								["task"] = "CAP",
								["uncontrolled"] = true,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 566,
											["action"] = "From Parking Area",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["enabled"] = true,
															["key"] = "CAP",
															["id"] = "EngageTargets",
															["number"] = 1,
															["auto"] = true,
															["params"] = 
															{
																["targetTypes"] = 
																{
																	[1] = "Air",
																}, -- end of ["targetTypes"]
																["priority"] = 0,
															}, -- end of ["params"]
														}, -- end of [1]
														[2] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 2,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 17,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [2]
														[3] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 3,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = 4,
																		["name"] = 18,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [3]
														[4] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 4,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 19,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [4]
														[5] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 5,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["targetTypes"] = {},
																		["name"] = 21,
																		["value"] = "none;",
																		["noTargetTypes"] = 
																		{
																			[1] = "Fighters",
																			[2] = "Multirole fighters",
																			[3] = "Bombers",
																			[4] = "Helicopters",
																			[5] = "UAVs",
																			[6] = "Infantry",
																			[7] = "Fortifications",
																			[8] = "Tanks",
																			[9] = "IFV",
																			[10] = "APC",
																			[11] = "Artillery",
																			[12] = "Unarmed vehicles",
																			[13] = "AAA",
																			[14] = "SR SAM",
																			[15] = "MR SAM",
																			[16] = "LR SAM",
																			[17] = "Aircraft Carriers",
																			[18] = "Cruisers",
																			[19] = "Destroyers",
																			[20] = "Frigates",
																			[21] = "Corvettes",
																			[22] = "Light armed ships",
																			[23] = "Unarmed ships",
																			[24] = "Submarines",
																			[25] = "Cruise missiles",
																			[26] = "Antiship Missiles",
																			[27] = "AA Missiles",
																			[28] = "AG Missiles",
																			[29] = "SA Missiles",
																		}, -- end of ["noTargetTypes"]
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [5]
														[6] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 6,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "EPLRS",
																	["params"] = 
																	{
																		["value"] = true,
																		["groupId"] = 6,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [6]
														[7] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 7,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 35,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [7]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "TakeOffParking",
											["ETA"] = 0,
											["ETA_locked"] = true,
											["y"] = -17237.78125,
											["x"] = -397228.84375,
											["speed_locked"] = true,
											["formation_template"] = "",
											["airdromeId"] = 4,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 12,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["alt"] = 566,
										["alt_type"] = "BARO",
										["livery_id"] = "18th agrs splinter",
										["skill"] = "High",
										["parking"] = "145",
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["STN_L16"] = "00237",
											["VoiceCallsignNumber"] = "11",
											["VoiceCallsignLabel"] = "FD",
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-16C_50",
										["unitId"] = 31,
										["psi"] = 0,
										["onboard_num"] = "298",
										["parking_id"] = "F07",
										["x"] = -397228.84375,
										["name"] = "USAF AGR F-16C-1-1",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "{AIS_ASQ_T50}",
												}, -- end of [2]
												[3] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [3]
												[4] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [4]
												[5] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [5]
												[6] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [6]
												[7] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [7]
												[8] = 
												{
													["CLSID"] = "CATM-9M",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [9]
											}, -- end of ["pylons"]
											["fuel"] = 3249,
											["flare"] = 60,
											["ammo_type"] = 5,
											["chaff"] = 60,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17237.78125,
										["heading"] = 0,
										["callsign"] = 
										{
											[1] = 6,
											[2] = 1,
											["name"] = "Ford11",
											[3] = 1,
										}, -- end of ["callsign"]
										["datalinks"] = 
										{
											["Link16"] = 
											{
												["settings"] = 
												{
													["flightLead"] = true,
													["transmitPower"] = 3,
													["specialChannel"] = 1,
													["fighterChannel"] = 1,
													["missionChannel"] = 1,
												}, -- end of ["settings"]
												["network"] = 
												{
													["teamMembers"] = 
													{
														[1] = 
														{
															["missionUnitId"] = 31,
															["TDOA"] = true,
														}, -- end of [1]
														[2] = 
														{
															["missionUnitId"] = 32,
															["TDOA"] = true,
														}, -- end of [2]
														[3] = 
														{
															["missionUnitId"] = 88,
															["TDOA"] = true,
														}, -- end of [3]
													}, -- end of ["teamMembers"]
													["donors"] = {},
												}, -- end of ["network"]
											}, -- end of ["Link16"]
										}, -- end of ["datalinks"]
									}, -- end of [1]
									[2] = 
									{
										["alt"] = 566,
										["alt_type"] = "BARO",
										["livery_id"] = "18th agrs splinter",
										["skill"] = "High",
										["parking"] = 138,
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["VoiceCallsignLabel"] = "FD",
											["VoiceCallsignNumber"] = "12",
											["STN_L16"] = "00240",
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-16C_50",
										["unitId"] = 32,
										["psi"] = 0,
										["onboard_num"] = "335",
										["parking_id"] = "F18",
										["x"] = -397277.8125,
										["name"] = "USAF AGR F-16C-1-2",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{C8E06185-7CD6-4C90-959F-044679E90751}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "{AIS_ASQ_T50}",
												}, -- end of [2]
												[4] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [4]
												[5] = 
												{
													["CLSID"] = "ALQ_184",
												}, -- end of [5]
												[6] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [6]
												[8] = 
												{
													["CLSID"] = "CATM-9M",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{C8E06185-7CD6-4C90-959F-044679E90751}",
												}, -- end of [9]
											}, -- end of ["pylons"]
											["fuel"] = 3249,
											["flare"] = 60,
											["ammo_type"] = 5,
											["chaff"] = 60,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17238.4609375,
										["heading"] = 0,
										["callsign"] = 
										{
											[1] = 6,
											[2] = 1,
											["name"] = "Ford12",
											[3] = 2,
										}, -- end of ["callsign"]
										["datalinks"] = 
										{
											["Link16"] = 
											{
												["settings"] = 
												{
													["flightLead"] = false,
													["transmitPower"] = 3,
													["specialChannel"] = 1,
													["fighterChannel"] = 1,
													["missionChannel"] = 1,
												}, -- end of ["settings"]
												["network"] = 
												{
													["teamMembers"] = 
													{
														[1] = 
														{
															["missionUnitId"] = 31,
															["TDOA"] = true,
														}, -- end of [1]
														[2] = 
														{
															["missionUnitId"] = 32,
															["TDOA"] = true,
														}, -- end of [2]
														[3] = 
														{
															["missionUnitId"] = 88,
															["TDOA"] = true,
														}, -- end of [3]
													}, -- end of ["teamMembers"]
													["donors"] = {},
												}, -- end of ["network"]
											}, -- end of ["Link16"]
										}, -- end of ["datalinks"]
									}, -- end of [2]
									[3] = 
									{
										["alt"] = 566,
										["alt_type"] = "BARO",
										["livery_id"] = "18th agrs bdu splinter",
										["skill"] = "High",
										["parking"] = "144",
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["VoiceCallsignLabel"] = "FD",
											["VoiceCallsignNumber"] = "13",
											["STN_L16"] = "00330",
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-16C_50",
										["unitId"] = 88,
										["psi"] = 0,
										["onboard_num"] = "285",
										["parking_id"] = "F05",
										["x"] = -397229.40625,
										["name"] = "USAF AGR F-16C-1-3",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{C8E06185-7CD6-4C90-959F-044679E90751}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "{AIS_ASQ_T50}",
												}, -- end of [2]
												[3] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [3]
												[4] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [4]
												[5] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [5]
												[6] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [6]
												[7] = 
												{
													["CLSID"] = "<CLEAN>",
												}, -- end of [7]
												[8] = 
												{
													["CLSID"] = "CATM-9M",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{C8E06185-7CD6-4C90-959F-044679E90751}",
												}, -- end of [9]
											}, -- end of ["pylons"]
											["fuel"] = 3249,
											["flare"] = 60,
											["ammo_type"] = 5,
											["chaff"] = 60,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17212.083984375,
										["heading"] = 0,
										["callsign"] = 
										{
											[1] = 6,
											[2] = 1,
											["name"] = "Ford13",
											[3] = 3,
										}, -- end of ["callsign"]
										["datalinks"] = 
										{
											["Link16"] = 
											{
												["settings"] = 
												{
													["flightLead"] = false,
													["transmitPower"] = 3,
													["specialChannel"] = 1,
													["fighterChannel"] = 1,
													["missionChannel"] = 1,
												}, -- end of ["settings"]
												["network"] = 
												{
													["teamMembers"] = 
													{
														[1] = 
														{
															["missionUnitId"] = 31,
															["TDOA"] = true,
														}, -- end of [1]
														[2] = 
														{
															["missionUnitId"] = 32,
															["TDOA"] = true,
														}, -- end of [2]
														[3] = 
														{
															["missionUnitId"] = 88,
															["TDOA"] = true,
														}, -- end of [3]
													}, -- end of ["teamMembers"]
													["donors"] = {},
												}, -- end of ["network"]
											}, -- end of ["Link16"]
										}, -- end of ["datalinks"]
									}, -- end of [3]
								}, -- end of ["units"]
								["y"] = -17237.78125,
								["x"] = -397228.84375,
								["name"] = "USAF AGR F-16C-1",
								["communication"] = true,
								["start_time"] = 0,
								["frequency"] = 305,
							}, -- end of [3]
							[4] = 
							{
								["dynSpawnTemplate"] = false,
								["modulation"] = 0,
								["tasks"] = {},
								["radioSet"] = true,
								["task"] = "AWACS",
								["uncontrolled"] = false,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 11887.2,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 238.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "AWACS",
															["number"] = 1,
															["params"] = {},
														}, -- end of [1]
														[2] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 2,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "EPLRS",
																	["params"] = 
																	{
																		["value"] = true,
																		["groupId"] = 8,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [2]
														[3] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 3,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 35,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [3]
														[4] = 
														{
															["enabled"] = true,
															["auto"] = false,
															["id"] = "Orbit",
															["number"] = 4,
															["params"] = 
															{
																["altitude"] = 11887.2,
																["pattern"] = "Race-Track",
																["speed"] = 238.95833333333,
																["speedEdited"] = true,
															}, -- end of ["params"]
														}, -- end of [4]
														[5] = 
														{
															["number"] = 5,
															["auto"] = false,
															["id"] = "WrappedAction",
															["enabled"] = true,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "SetInvisible",
																	["params"] = 
																	{
																		["value"] = true,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [5]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 0,
											["ETA_locked"] = true,
											["y"] = 21417.112299465,
											["x"] = -378857.28566294,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [1]
										[2] = 
										{
											["alt"] = 11887.2,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 238.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 412.46868569453,
											["ETA_locked"] = false,
											["y"] = -56550.802139037,
											["x"] = -429753.00758808,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [2]
										[3] = 
										{
											["alt"] = 562,
											["action"] = "Landing",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Land",
											["ETA"] = 1072.5014776892,
											["ETA_locked"] = false,
											["y"] = -17233.236816,
											["x"] = -398195.375,
											["speed_locked"] = true,
											["formation_template"] = "",
											["airdromeId"] = 4,
										}, -- end of [3]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 22,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["alt"] = 11887.2,
										["alt_type"] = "BARO",
										["parking_landing_id"] = "G26",
										["livery_id"] = "965th AACS (81-0006, Yellow Stripe), Tinker AFB (OK) - 4K",
										["skill"] = "Excellent",
										["speed"] = 238.88888888889,
										["AddPropAircraft"] = 
										{
											["STN_L16"] = "00254",
											["VoiceCallsignNumber"] = "11",
											["VoiceCallsignLabel"] = "MC",
										}, -- end of ["AddPropAircraft"]
										["type"] = "E-3A",
										["parking_landing"] = 208,
										["unitId"] = 44,
										["psi"] = 2.1491218130754,
										["onboard_num"] = "016",
										["y"] = 21417.112299465,
										["x"] = -378857.28566294,
										["name"] = "USA E-3A 275.600",
										["payload"] = 
										{
											["pylons"] = {},
											["fuel"] = "65000",
											["flare"] = 60,
											["chaff"] = 120,
											["gun"] = 100,
										}, -- end of ["payload"]
										["heading"] = -2.1491218130754,
										["callsign"] = 
										{
											[2] = 3,
											["name"] = "Darkstar31",
											[3] = 1,
											[1] = 5,
											[4] = "Darkstar31",
										}, -- end of ["callsign"]
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = 21417.112299465,
								["x"] = -378857.28566294,
								["name"] = "USA E-3A 275.600",
								["communication"] = true,
								["start_time"] = 0,
								["frequency"] = 275.6,
							}, -- end of [4]
							[5] = 
							{
								["dynSpawnTemplate"] = false,
								["modulation"] = 0,
								["tasks"] = {},
								["radioSet"] = true,
								["task"] = "Refueling",
								["uncontrolled"] = false,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 6705.6,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 233.81944444444,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "Tanker",
															["number"] = 1,
															["params"] = {},
														}, -- end of [1]
														[2] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 2,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "ActivateBeacon",
																	["params"] = 
																	{
																		["type"] = 4,
																		["AA"] = false,
																		["unitId"] = 52,
																		["system"] = 5,
																		["channel"] = 81,
																		["modeChannel"] = "Y",
																		["callsign"] = "SSS",
																		["bearing"] = true,
																		["frequency"] = 1042000000,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [2]
														[3] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 3,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "EPLRS",
																	["params"] = 
																	{
																		["value"] = true,
																		["groupId"] = 10,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [3]
														[4] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 4,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 35,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [4]
														[5] = 
														{
															["number"] = 5,
															["auto"] = false,
															["id"] = "WrappedAction",
															["enabled"] = true,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "SetInvisible",
																	["params"] = 
																	{
																		["value"] = true,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [5]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 0,
											["ETA_locked"] = true,
											["y"] = -83983.957219251,
											["x"] = -339873.32844369,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [1]
										[2] = 
										{
											["alt"] = 6705.6,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 234.84722222222,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["enabled"] = true,
															["auto"] = false,
															["id"] = "Orbit",
															["number"] = 1,
															["params"] = 
															{
																["speedEdited"] = true,
																["pattern"] = "Anchored",
																["clockWise"] = false,
																["width"] = 18500,
																["altitude"] = 6705.6,
																["speed"] = 234.84722222222,
																["legLength"] = 55500,
																["hotLegDir"] = 4.1364303272266,
															}, -- end of ["params"]
														}, -- end of [1]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 64.058482719919,
											["ETA_locked"] = false,
											["y"] = -96978.609625668,
											["x"] = -347453.54234743,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [2]
										[3] = 
										{
											["alt"] = 2000,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 699.64614389727,
											["ETA_locked"] = false,
											["y"] = -17233.236816,
											["x"] = -398195.375,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [3]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 28,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["alt"] = 6705.6,
										["alt_type"] = "BARO",
										["livery_id"] = "155th ARW NE ANG",
										["skill"] = "Excellent",
										["speed"] = 233.81944444444,
										["AddPropAircraft"] = 
										{
											["STN_L16"] = "00264",
											["VoiceCallsignNumber"] = "11",
											["VoiceCallsignLabel"] = "PC",
										}, -- end of ["AddPropAircraft"]
										["type"] = "KC-135",
										["unitId"] = 52,
										["psi"] = 2.0988707752211,
										["onboard_num"] = "063",
										["y"] = -83983.957219251,
										["x"] = -339873.32844369,
										["name"] = "USA KC-135 274.250(AM) Shell81 81Y",
										["payload"] = 
										{
											["pylons"] = {},
											["fuel"] = 90700,
											["flare"] = 0,
											["chaff"] = 0,
											["gun"] = 100,
										}, -- end of ["payload"]
										["heading"] = -2.0988707752211,
										["callsign"] = 
										{
											[2] = 8,
											["name"] = "Shell81",
											[3] = 1,
											[1] = 3,
											[4] = "Shell81",
										}, -- end of ["callsign"]
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -83983.957219251,
								["x"] = -339873.32844369,
								["name"] = "USA KC-135 274.250(AM) Shell81 81Y",
								["communication"] = true,
								["start_time"] = 0,
								["frequency"] = 274.25,
							}, -- end of [5]
							[6] = 
							{
								["dynSpawnTemplate"] = false,
								["modulation"] = 0,
								["tasks"] = 
								{
									[1] = 
									{
										["number"] = 1,
										["auto"] = false,
										["id"] = "WrappedAction",
										["enabled"] = true,
										["params"] = 
										{
											["action"] = 
											{
												["id"] = "Start",
												["params"] = {},
											}, -- end of ["action"]
										}, -- end of ["params"]
									}, -- end of [1]
								}, -- end of ["tasks"]
								["radioSet"] = false,
								["task"] = "Nothing",
								["uncontrolled"] = true,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 679,
											["action"] = "From Parking Area",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 85,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 1,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 35,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [1]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "TakeOffParking",
											["ETA"] = 0,
											["ETA_locked"] = true,
											["y"] = -31914.193359375,
											["x"] = -401495.15625,
											["speed_locked"] = true,
											["formation_template"] = "",
											["airdromeId"] = 15,
										}, -- end of [1]
										[2] = 
										{
											["alt"] = 1066.8,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 84.791666666667,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 44.18877631757,
											["ETA_locked"] = false,
											["y"] = -31661.055863786,
											["x"] = -397756.87705585,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [2]
										[3] = 
										{
											["alt"] = 1066.8,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 84.791666666667,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 118.67300051305,
											["ETA_locked"] = false,
											["y"] = -26708.581120476,
											["x"] = -401676.10167286,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [3]
										[4] = 
										{
											["alt"] = 1066.8,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 84.791666666667,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 173.54949744034,
											["ETA_locked"] = false,
											["y"] = -33050.599137089,
											["x"] = -399573.97210555,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [4]
										[5] = 
										{
											["alt"] = 1066.8,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 84.791666666667,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["enabled"] = true,
															["auto"] = false,
															["id"] = "WrappedAction",
															["number"] = 1,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "SwitchWaypoint",
																	["params"] = 
																	{
																		["goToWaypointIndex"] = 2,
																		["fromWaypointIndex"] = 5,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [1]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 274.40300679755,
											["ETA_locked"] = false,
											["y"] = -27349.908785077,
											["x"] = -402744.98111386,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [5]
										[6] = 
										{
											["alt"] = 679,
											["action"] = "Landing",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Land",
											["ETA"] = 290.74895802636,
											["ETA_locked"] = false,
											["y"] = -31726.952148,
											["x"] = -400891.484375,
											["speed_locked"] = true,
											["formation_template"] = "",
											["airdromeId"] = 15,
										}, -- end of [6]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 71,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["alt"] = 679,
										["alt_type"] = "BARO",
										["livery_id"] = "n104gf",
										["skill"] = "High",
										["parking"] = "35",
										["speed"] = 85,
										["AddPropAircraft"] = 
										{
											["NetCrewControlPriority"] = 1,
										}, -- end of ["AddPropAircraft"]
										["type"] = "Christen Eagle II",
										["unitId"] = 114,
										["psi"] = -0.067611764158392,
										["onboard_num"] = "022",
										["civil_plane"] = true,
										["parking_id"] = "B12",
										["x"] = -401495.15625,
										["name"] = "Civ Traffic",
										["payload"] = 
										{
											["pylons"] = {},
											["fuel"] = 71,
											["flare"] = 0,
											["chaff"] = 0,
											["gun"] = 0,
										}, -- end of ["payload"]
										["y"] = -31914.193359375,
										["heading"] = 0.067611764158392,
										["callsign"] = 
										{
											[1] = 2,
											[2] = 2,
											["name"] = "Springfield21",
											[3] = 1,
										}, -- end of ["callsign"]
									}, -- end of [1]
									[2] = 
									{
										["alt"] = 679,
										["alt_type"] = "BARO",
										["livery_id"] = "n24al",
										["skill"] = "High",
										["parking"] = "34",
										["speed"] = 85,
										["AddPropAircraft"] = 
										{
											["NetCrewControlPriority"] = 1,
										}, -- end of ["AddPropAircraft"]
										["type"] = "Christen Eagle II",
										["unitId"] = 212,
										["psi"] = -0.067611764158392,
										["onboard_num"] = "023",
										["civil_plane"] = true,
										["parking_id"] = "B11",
										["x"] = -401495.46875,
										["name"] = "Civ Traffic-1",
										["payload"] = 
										{
											["pylons"] = {},
											["fuel"] = 71,
											["flare"] = 0,
											["chaff"] = 0,
											["gun"] = 0,
										}, -- end of ["payload"]
										["y"] = -31936.4296875,
										["heading"] = 0.067611764158392,
										["callsign"] = 
										{
											[1] = 2,
											[2] = 2,
											["name"] = "Springfield22",
											[3] = 2,
										}, -- end of ["callsign"]
									}, -- end of [2]
								}, -- end of ["units"]
								["y"] = -31914.193359375,
								["x"] = -401495.15625,
								["name"] = "Civ Traffic",
								["communication"] = true,
								["start_time"] = 0,
								["frequency"] = 305,
							}, -- end of [6]
							[7] = 
							{
								["dynSpawnTemplate"] = false,
								["modulation"] = 0,
								["tasks"] = {},
								["DTC"] = {},
								["radioSet"] = true,
								["task"] = "SEAD",
								["uncontrolled"] = false,
								["taskSelected"] = true,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 561,
											["action"] = "From Parking Area",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["number"] = 1,
															["auto"] = true,
															["id"] = "EngageTargets",
															["enabled"] = true,
															["key"] = "SEAD",
															["params"] = 
															{
																["targetTypes"] = 
																{
																	[1] = "Air Defence",
																}, -- end of ["targetTypes"]
																["priority"] = 0,
															}, -- end of ["params"]
														}, -- end of [1]
														[2] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 2,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = 2,
																		["name"] = 1,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [2]
														[3] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 3,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = 2,
																		["name"] = 13,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [3]
														[4] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 4,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 19,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [4]
														[5] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 5,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["targetTypes"] = 
																		{
																			[1] = "Air Defence",
																		}, -- end of ["targetTypes"]
																		["name"] = 21,
																		["value"] = "Air Defence;",
																		["noTargetTypes"] = 
																		{
																			[1] = "Fighters",
																			[2] = "Multirole fighters",
																			[3] = "Bombers",
																			[4] = "Helicopters",
																			[5] = "UAVs",
																			[6] = "Infantry",
																			[7] = "Fortifications",
																			[8] = "Tanks",
																			[9] = "IFV",
																			[10] = "APC",
																			[11] = "Artillery",
																			[12] = "Unarmed vehicles",
																			[13] = "Aircraft Carriers",
																			[14] = "Cruisers",
																			[15] = "Destroyers",
																			[16] = "Frigates",
																			[17] = "Corvettes",
																			[18] = "Light armed ships",
																			[19] = "Unarmed ships",
																			[20] = "Submarines",
																			[21] = "Cruise missiles",
																			[22] = "Antiship Missiles",
																			[23] = "AA Missiles",
																			[24] = "AG Missiles",
																			[25] = "SA Missiles",
																		}, -- end of ["noTargetTypes"]
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [5]
														[6] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 6,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "EPLRS",
																	["params"] = 
																	{
																		["value"] = true,
																		["groupId"] = 13,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [6]
														[7] = 
														{
															["enabled"] = true,
															["auto"] = true,
															["id"] = "WrappedAction",
															["number"] = 7,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 35,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [7]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "TakeOffParking",
											["ETA"] = 0,
											["ETA_locked"] = true,
											["y"] = -17782.404296875,
											["x"] = -399611.125,
											["speed_locked"] = true,
											["formation_template"] = "",
											["airdromeId"] = 4,
										}, -- end of [1]
										[2] = 
										{
											["alt"] = 562.0512,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 9.2003077483063,
											["ETA_locked"] = false,
											["y"] = -17389.312758648,
											["x"] = -398395.26961163,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [2]
										[3] = 
										{
											["alt"] = 953.1096,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 506.22186721964,
											["ETA_locked"] = false,
											["y"] = -74973.035160241,
											["x"] = -360324.77686678,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [3]
										[4] = 
										{
											["alt"] = 1154.8872,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 836.10155872477,
											["ETA_locked"] = false,
											["y"] = -112323.11755639,
											["x"] = -332223.50095343,
											["name"] = "PUSH",
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [4]
										[5] = 
										{
											["alt"] = 1657,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 1118.8815144154,
											["ETA_locked"] = false,
											["y"] = -140218.94821091,
											["x"] = -304539.80045529,
											["name"] = "SAM WEZ",
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [5]
										[6] = 
										{
											["alt"] = 1827,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 1276.1271767882,
											["ETA_locked"] = false,
											["y"] = -152438.04024222,
											["x"] = -286473.79126699,
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [6]
										[7] = 
										{
											["alt"] = 1608,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 1434.51801187,
											["ETA_locked"] = false,
											["y"] = -163886.96389293,
											["x"] = -268776.2886278,
											["name"] = "TGT",
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [7]
										[8] = 
										{
											["alt"] = 1845,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 139.77777777778,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 1600.204336214,
											["ETA_locked"] = false,
											["y"] = -139805.59154892,
											["x"] = -269245.79421874,
											["name"] = "Egress",
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [8]
										[9] = 
										{
											["alt"] = 870,
											["action"] = "Turning Point",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Turning Point",
											["ETA"] = 2809.7722658322,
											["ETA_locked"] = false,
											["y"] = -48968.552774018,
											["x"] = -378127.77615175,
											["name"] = "Corn Creek",
											["speed_locked"] = true,
											["formation_template"] = "",
										}, -- end of [9]
										[10] = 
										{
											["alt"] = 562,
											["action"] = "Landing",
											["alt_type"] = "BARO",
											["properties"] = 
											{
												["addopt"] = {},
											}, -- end of ["properties"]
											["speed"] = 138.88888888889,
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["type"] = "Land",
											["ETA"] = 3181.802969227,
											["ETA_locked"] = false,
											["y"] = -17233.236816,
											["x"] = -398195.375,
											["speed_locked"] = true,
											["formation_template"] = "",
											["airdromeId"] = 4,
										}, -- end of [10]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 86,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["alt"] = 561,
										["alt_type"] = "BARO",
										["livery_id"] = "ww 14th ''90-0808''  'bob'",
										["skill"] = "Client",
										["parking"] = 232,
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["HelmetMountedDevice"] = 2,
											["VoiceCallsignLabel"] = "VM",
											["STN_L16"] = "00512",
											["LAU3ROF"] = 0,
											["VoiceCallsignNumber"] = "11",
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-16C_50",
										["Radio"] = 
										{
											[1] = 
											{
												["channels"] = 
												{
													[1] = 327,
													[2] = 274.25,
													[4] = 275.6,
													[8] = 257,
													[16] = 261,
													[17] = 267,
													[9] = 255,
													[18] = 251,
													[5] = 243,
													[10] = 262,
													[20] = 266,
													[11] = 259,
													[3] = 322.1,
													[6] = 360.6,
													[12] = 268,
													[13] = 269,
													[7] = 257.8,
													[14] = 260,
													[19] = 253,
													[15] = 263,
												}, -- end of ["channels"]
												["modulations"] = 
												{
													[1] = 0,
													[2] = 0,
													[4] = 0,
													[8] = 0,
													[16] = 0,
													[17] = 0,
													[9] = 0,
													[18] = 0,
													[5] = 0,
													[10] = 0,
													[20] = 0,
													[11] = 0,
													[3] = 0,
													[6] = 0,
													[12] = 0,
													[13] = 0,
													[7] = 0,
													[14] = 0,
													[19] = 0,
													[15] = 0,
												}, -- end of ["modulations"]
												["channelsNames"] = {},
											}, -- end of [1]
											[2] = 
											{
												["channels"] = 
												{
													[1] = 127.8,
													[2] = 118.1,
													[4] = 118,
													[8] = 128,
													[16] = 132,
													[17] = 138,
													[9] = 126,
													[18] = 122,
													[5] = 124.75,
													[10] = 133,
													[20] = 137,
													[11] = 130,
													[3] = 132.55,
													[6] = 118.3,
													[12] = 139,
													[13] = 140,
													[7] = 119.9,
													[14] = 131,
													[19] = 124,
													[15] = 134,
												}, -- end of ["channels"]
												["modulations"] = 
												{
													[1] = 0,
													[2] = 0,
													[4] = 0,
													[8] = 0,
													[16] = 0,
													[17] = 0,
													[9] = 0,
													[18] = 0,
													[5] = 0,
													[10] = 0,
													[20] = 0,
													[11] = 0,
													[3] = 0,
													[6] = 0,
													[12] = 0,
													[13] = 0,
													[7] = 0,
													[14] = 0,
													[19] = 0,
													[15] = 0,
												}, -- end of ["modulations"]
												["channelsNames"] = {},
											}, -- end of [2]
										}, -- end of ["Radio"]
										["unitId"] = 202,
										["psi"] = -0.3126976286005,
										["onboard_num"] = "808",
										["parking_id"] = "G02",
										["x"] = -399611.125,
										["name"] = "USA F-16C HARM-1-1",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "CATM-9M",
												}, -- end of [2]
												[4] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [4]
												[5] = 
												{
													["CLSID"] = "ALQ_184",
												}, -- end of [5]
												[6] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [6]
												[8] = 
												{
													["CLSID"] = "{AIS_ASQ_T50}",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [9]
												[10] = 
												{
													["CLSID"] = "{AN_ASQ_213}",
												}, -- end of [10]
												[11] = 
												{
													["CLSID"] = "{A111396E-D3E8-4b9c-8AC9-2432489304D5}",
												}, -- end of [11]
											}, -- end of ["pylons"]
											["fuel"] = 1300,
											["flare"] = 60,
											["ammo_type"] = 3,
											["chaff"] = 60,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17782.404296875,
										["heading"] = -0.97130839157674,
										["callsign"] = 
										{
											[2] = 2,
											["name"] = "Panther21",
											[3] = 1,
											[1] = 15,
											[4] = "Panther21",
										}, -- end of ["callsign"]
										["datalinks"] = 
										{
											["Link16"] = 
											{
												["settings"] = 
												{
													["flightLead"] = true,
													["transmitPower"] = 3,
													["specialChannel"] = 1,
													["fighterChannel"] = 1,
													["missionChannel"] = 1,
												}, -- end of ["settings"]
												["network"] = 
												{
													["teamMembers"] = 
													{
														[1] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 202,
														}, -- end of [1]
														[2] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 206,
														}, -- end of [2]
														[4] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 208,
														}, -- end of [4]
														[3] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 207,
														}, -- end of [3]
													}, -- end of ["teamMembers"]
													["donors"] = {},
												}, -- end of ["network"]
											}, -- end of ["Link16"]
										}, -- end of ["datalinks"]
									}, -- end of [1]
									[2] = 
									{
										["alt"] = 561,
										["alt_type"] = "BARO",
										["livery_id"] = "ww 14th ''90-0825''  '14fs'",
										["skill"] = "Client",
										["parking"] = 231,
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["HelmetMountedDevice"] = 2,
											["VoiceCallsignLabel"] = "VM",
											["STN_L16"] = "00516",
											["LAU3ROF"] = 0,
											["VoiceCallsignNumber"] = "12",
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-16C_50",
										["Radio"] = 
										{
											[1] = 
											{
												["channelsNames"] = {},
												["modulations"] = 
												{
													[1] = 0,
													[2] = 0,
													[3] = 0,
													[4] = 0,
													[5] = 0,
													[6] = 0,
													[7] = 0,
													[8] = 0,
													[9] = 0,
													[10] = 0,
													[11] = 0,
													[12] = 0,
													[13] = 0,
													[14] = 0,
													[15] = 0,
													[16] = 0,
													[18] = 0,
													[19] = 0,
													[17] = 0,
													[20] = 0,
												}, -- end of ["modulations"]
												["channels"] = 
												{
													[1] = 327,
													[2] = 274.25,
													[3] = 322.1,
													[4] = 275.6,
													[5] = 243,
													[6] = 360.6,
													[7] = 257.8,
													[8] = 257,
													[9] = 255,
													[10] = 262,
													[11] = 259,
													[12] = 268,
													[13] = 269,
													[14] = 260,
													[15] = 263,
													[16] = 261,
													[18] = 251,
													[19] = 253,
													[17] = 267,
													[20] = 266,
												}, -- end of ["channels"]
											}, -- end of [1]
											[2] = 
											{
												["channelsNames"] = {},
												["modulations"] = 
												{
													[1] = 0,
													[2] = 0,
													[3] = 0,
													[4] = 0,
													[5] = 0,
													[6] = 0,
													[7] = 0,
													[8] = 0,
													[9] = 0,
													[10] = 0,
													[11] = 0,
													[12] = 0,
													[13] = 0,
													[14] = 0,
													[15] = 0,
													[16] = 0,
													[18] = 0,
													[19] = 0,
													[17] = 0,
													[20] = 0,
												}, -- end of ["modulations"]
												["channels"] = 
												{
													[1] = 127.8,
													[2] = 118.1,
													[3] = 132.55,
													[4] = 118,
													[5] = 124.75,
													[6] = 118.3,
													[7] = 119.9,
													[8] = 128,
													[9] = 126,
													[10] = 133,
													[11] = 130,
													[12] = 139,
													[13] = 140,
													[14] = 131,
													[15] = 134,
													[16] = 132,
													[18] = 122,
													[19] = 124,
													[17] = 138,
													[20] = 137,
												}, -- end of ["channels"]
											}, -- end of [2]
										}, -- end of ["Radio"]
										["unitId"] = 206,
										["psi"] = -0.3126976286005,
										["onboard_num"] = "825",
										["parking_id"] = "G03",
										["x"] = -399588.15625,
										["name"] = "USA F-16C JDAM-1",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "CATM-9M",
												}, -- end of [2]
												[4] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [4]
												[5] = 
												{
													["CLSID"] = "ALQ_184",
												}, -- end of [5]
												[6] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [6]
												[8] = 
												{
													["CLSID"] = "{AIS_ASQ_T50}",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [9]
												[10] = 
												{
													["CLSID"] = "{AN_ASQ_213}",
												}, -- end of [10]
												[11] = 
												{
													["CLSID"] = "{A111396E-D3E8-4b9c-8AC9-2432489304D5}",
												}, -- end of [11]
											}, -- end of ["pylons"]
											["fuel"] = 1300,
											["flare"] = 60,
											["ammo_type"] = 3,
											["chaff"] = 60,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17762.86328125,
										["heading"] = -0.97130839157674,
										["callsign"] = 
										{
											[2] = 2,
											["name"] = "Panther22",
											[3] = 2,
											[1] = 15,
											[4] = "Panther22",
										}, -- end of ["callsign"]
										["datalinks"] = 
										{
											["Link16"] = 
											{
												["settings"] = 
												{
													["flightLead"] = false,
													["transmitPower"] = 3,
													["specialChannel"] = 1,
													["fighterChannel"] = 1,
													["missionChannel"] = 1,
												}, -- end of ["settings"]
												["network"] = 
												{
													["teamMembers"] = 
													{
														[1] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 202,
														}, -- end of [1]
														[2] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 206,
														}, -- end of [2]
														[4] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 208,
														}, -- end of [4]
														[3] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 207,
														}, -- end of [3]
													}, -- end of ["teamMembers"]
													["donors"] = {},
												}, -- end of ["network"]
											}, -- end of ["Link16"]
										}, -- end of ["datalinks"]
									}, -- end of [2]
									[3] = 
									{
										["alt"] = 561,
										["alt_type"] = "BARO",
										["livery_id"] = "ww 14th ''92-3894''",
										["skill"] = "Client",
										["parking"] = 230,
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["HelmetMountedDevice"] = 2,
											["VoiceCallsignLabel"] = "VM",
											["STN_L16"] = "00517",
											["LAU3ROF"] = 0,
											["VoiceCallsignNumber"] = "13",
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-16C_50",
										["Radio"] = 
										{
											[1] = 
											{
												["channelsNames"] = {},
												["modulations"] = 
												{
													[1] = 0,
													[2] = 0,
													[3] = 0,
													[4] = 0,
													[5] = 0,
													[6] = 0,
													[7] = 0,
													[8] = 0,
													[9] = 0,
													[10] = 0,
													[11] = 0,
													[12] = 0,
													[13] = 0,
													[14] = 0,
													[15] = 0,
													[16] = 0,
													[18] = 0,
													[19] = 0,
													[17] = 0,
													[20] = 0,
												}, -- end of ["modulations"]
												["channels"] = 
												{
													[1] = 327,
													[2] = 274.25,
													[3] = 322.1,
													[4] = 275.6,
													[5] = 243,
													[6] = 360.6,
													[7] = 257.8,
													[8] = 257,
													[9] = 255,
													[10] = 262,
													[11] = 259,
													[12] = 268,
													[13] = 269,
													[14] = 260,
													[15] = 263,
													[16] = 261,
													[18] = 251,
													[19] = 253,
													[17] = 267,
													[20] = 266,
												}, -- end of ["channels"]
											}, -- end of [1]
											[2] = 
											{
												["channelsNames"] = {},
												["modulations"] = 
												{
													[1] = 0,
													[2] = 0,
													[3] = 0,
													[4] = 0,
													[5] = 0,
													[6] = 0,
													[7] = 0,
													[8] = 0,
													[9] = 0,
													[10] = 0,
													[11] = 0,
													[12] = 0,
													[13] = 0,
													[14] = 0,
													[15] = 0,
													[16] = 0,
													[18] = 0,
													[19] = 0,
													[17] = 0,
													[20] = 0,
												}, -- end of ["modulations"]
												["channels"] = 
												{
													[1] = 127.8,
													[2] = 118.1,
													[3] = 132.55,
													[4] = 118,
													[5] = 124.75,
													[6] = 118.3,
													[7] = 119.9,
													[8] = 128,
													[9] = 126,
													[10] = 133,
													[11] = 130,
													[12] = 139,
													[13] = 140,
													[14] = 131,
													[15] = 134,
													[16] = 132,
													[18] = 122,
													[19] = 124,
													[17] = 138,
													[20] = 137,
												}, -- end of ["channels"]
											}, -- end of [2]
										}, -- end of ["Radio"]
										["unitId"] = 207,
										["psi"] = -0.3126976286005,
										["onboard_num"] = "894",
										["parking_id"] = "G04",
										["x"] = -399564.9375,
										["name"] = "USA F-16C JDAM-2",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "CATM-9M",
												}, -- end of [2]
												[4] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [4]
												[5] = 
												{
													["CLSID"] = "ALQ_184",
												}, -- end of [5]
												[6] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [6]
												[8] = 
												{
													["CLSID"] = "{AIS_ASQ_T50}",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [9]
												[10] = 
												{
													["CLSID"] = "{AN_ASQ_213}",
												}, -- end of [10]
												[11] = 
												{
													["CLSID"] = "{A111396E-D3E8-4b9c-8AC9-2432489304D5}",
												}, -- end of [11]
											}, -- end of ["pylons"]
											["fuel"] = 1300,
											["flare"] = 60,
											["ammo_type"] = 3,
											["chaff"] = 60,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17743.359375,
										["heading"] = -0.97130839157674,
										["callsign"] = 
										{
											[2] = 2,
											["name"] = "Panther23",
											[3] = 3,
											[1] = 15,
											[4] = "Panther23",
										}, -- end of ["callsign"]
										["datalinks"] = 
										{
											["Link16"] = 
											{
												["settings"] = 
												{
													["flightLead"] = false,
													["transmitPower"] = 3,
													["specialChannel"] = 1,
													["fighterChannel"] = 1,
													["missionChannel"] = 1,
												}, -- end of ["settings"]
												["network"] = 
												{
													["teamMembers"] = 
													{
														[1] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 202,
														}, -- end of [1]
														[2] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 206,
														}, -- end of [2]
														[4] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 208,
														}, -- end of [4]
														[3] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 207,
														}, -- end of [3]
													}, -- end of ["teamMembers"]
													["donors"] = {},
												}, -- end of ["network"]
											}, -- end of ["Link16"]
										}, -- end of ["datalinks"]
									}, -- end of [3]
									[4] = 
									{
										["alt"] = 561,
										["alt_type"] = "BARO",
										["livery_id"] = "ww 14th ''92-3897''",
										["skill"] = "Client",
										["parking"] = 229,
										["speed"] = 138.88888888889,
										["AddPropAircraft"] = 
										{
											["HelmetMountedDevice"] = 2,
											["VoiceCallsignLabel"] = "VM",
											["STN_L16"] = "00520",
											["LAU3ROF"] = 0,
											["VoiceCallsignNumber"] = "14",
										}, -- end of ["AddPropAircraft"]
										["type"] = "F-16C_50",
										["Radio"] = 
										{
											[1] = 
											{
												["channelsNames"] = {},
												["modulations"] = 
												{
													[1] = 0,
													[2] = 0,
													[3] = 0,
													[4] = 0,
													[5] = 0,
													[6] = 0,
													[7] = 0,
													[8] = 0,
													[9] = 0,
													[10] = 0,
													[11] = 0,
													[12] = 0,
													[13] = 0,
													[14] = 0,
													[15] = 0,
													[16] = 0,
													[18] = 0,
													[19] = 0,
													[17] = 0,
													[20] = 0,
												}, -- end of ["modulations"]
												["channels"] = 
												{
													[1] = 327,
													[2] = 274.25,
													[3] = 322.1,
													[4] = 275.6,
													[5] = 243,
													[6] = 360.6,
													[7] = 257.8,
													[8] = 257,
													[9] = 255,
													[10] = 262,
													[11] = 259,
													[12] = 268,
													[13] = 269,
													[14] = 260,
													[15] = 263,
													[16] = 261,
													[18] = 251,
													[19] = 253,
													[17] = 267,
													[20] = 266,
												}, -- end of ["channels"]
											}, -- end of [1]
											[2] = 
											{
												["channelsNames"] = {},
												["modulations"] = 
												{
													[1] = 0,
													[2] = 0,
													[3] = 0,
													[4] = 0,
													[5] = 0,
													[6] = 0,
													[7] = 0,
													[8] = 0,
													[9] = 0,
													[10] = 0,
													[11] = 0,
													[12] = 0,
													[13] = 0,
													[14] = 0,
													[15] = 0,
													[16] = 0,
													[18] = 0,
													[19] = 0,
													[17] = 0,
													[20] = 0,
												}, -- end of ["modulations"]
												["channels"] = 
												{
													[1] = 127.8,
													[2] = 118.1,
													[3] = 132.55,
													[4] = 118,
													[5] = 124.75,
													[6] = 118.3,
													[7] = 119.9,
													[8] = 128,
													[9] = 126,
													[10] = 133,
													[11] = 130,
													[12] = 139,
													[13] = 140,
													[14] = 131,
													[15] = 134,
													[16] = 132,
													[18] = 122,
													[19] = 124,
													[17] = 138,
													[20] = 137,
												}, -- end of ["channels"]
											}, -- end of [2]
										}, -- end of ["Radio"]
										["unitId"] = 208,
										["psi"] = -0.3126976286005,
										["onboard_num"] = "897",
										["parking_id"] = "G05",
										["x"] = -399541.5,
										["name"] = "USA F-16C JDAM-3",
										["payload"] = 
										{
											["pylons"] = 
											{
												[1] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [1]
												[2] = 
												{
													["CLSID"] = "CATM-9M",
												}, -- end of [2]
												[4] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [4]
												[5] = 
												{
													["CLSID"] = "ALQ_184",
												}, -- end of [5]
												[6] = 
												{
													["CLSID"] = "{F376DBEE-4CAE-41BA-ADD9-B2910AC95DEC}",
												}, -- end of [6]
												[8] = 
												{
													["CLSID"] = "{AIS_ASQ_T50}",
												}, -- end of [8]
												[9] = 
												{
													["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
												}, -- end of [9]
												[10] = 
												{
													["CLSID"] = "{AN_ASQ_213}",
												}, -- end of [10]
												[11] = 
												{
													["CLSID"] = "{A111396E-D3E8-4b9c-8AC9-2432489304D5}",
												}, -- end of [11]
											}, -- end of ["pylons"]
											["fuel"] = 1300,
											["flare"] = 60,
											["ammo_type"] = 3,
											["chaff"] = 60,
											["gun"] = 100,
										}, -- end of ["payload"]
										["y"] = -17723.845703125,
										["heading"] = -0.97130839157674,
										["callsign"] = 
										{
											[2] = 2,
											["name"] = "Panther24",
											[3] = 4,
											[1] = 15,
											[4] = "Panther24",
										}, -- end of ["callsign"]
										["datalinks"] = 
										{
											["Link16"] = 
											{
												["settings"] = 
												{
													["flightLead"] = false,
													["transmitPower"] = 3,
													["specialChannel"] = 1,
													["fighterChannel"] = 1,
													["missionChannel"] = 1,
												}, -- end of ["settings"]
												["network"] = 
												{
													["teamMembers"] = 
													{
														[1] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 202,
														}, -- end of [1]
														[2] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 206,
														}, -- end of [2]
														[4] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 208,
														}, -- end of [4]
														[3] = 
														{
															["TDOA"] = true,
															["missionUnitId"] = 207,
														}, -- end of [3]
													}, -- end of ["teamMembers"]
													["donors"] = {},
												}, -- end of ["network"]
											}, -- end of ["Link16"]
										}, -- end of ["datalinks"]
									}, -- end of [4]
								}, -- end of ["units"]
								["y"] = -17782.404296875,
								["x"] = -399611.125,
								["name"] = "USA F-16C DEAD",
								["communication"] = true,
								["start_time"] = 0,
								["uncontrollable"] = false,
								["frequency"] = 127.8,
							}, -- end of [7]
						}, -- end of ["group"]
					}, -- end of ["plane"]
					["static"] = 
					{
						["group"] = 
						{
							[1] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18033.607169841,
											["speed"] = 0,
											["x"] = -398284.95411347,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 3,
								["units"] = 
								{
									[1] = 
									{
										["livery_id"] = "US Air Force",
										["category"] = "Planes",
										["type"] = "C-130",
										["unitId"] = 7,
										["rate"] = "70",
										["y"] = -18033.607169841,
										["x"] = -398284.95411347,
										["name"] = "Nelis C-130",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18033.607169841,
								["x"] = -398284.95411347,
								["name"] = "Nelis C-130",
								["dead"] = false,
							}, -- end of [1]
							[2] = 
							{
								["heading"] = 0.71558499331767,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18004.555233792,
											["speed"] = 0,
											["x"] = -398211.54412794,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 9,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "374th OG 2009 Flagship (74-2062), Yokota AB (YJ)",
										["category"] = "Planes",
										["type"] = "C-130",
										["unitId"] = 28,
										["rate"] = "70",
										["y"] = -18004.555233792,
										["x"] = -398211.54412794,
										["name"] = "Nelis C-1-1",
										["heading"] = 0.71558499331767,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18004.555233792,
								["x"] = -398211.54412794,
								["name"] = "Nelis C-1",
								["dead"] = false,
							}, -- end of [2]
							[3] = 
							{
								["heading"] = 3.8571776469075,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -17805.510086775,
											["speed"] = 0,
											["x"] = -398054.4444429,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 10,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "standard",
										["category"] = "Helicopters",
										["type"] = "UH-60A",
										["unitId"] = 29,
										["rate"] = "30",
										["y"] = -17805.510086775,
										["x"] = -398054.4444429,
										["name"] = "Static UH-60A-1",
										["heading"] = 3.8571776469075,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -17805.510086775,
								["x"] = -398054.4444429,
								["name"] = "Static UH-60A-1",
								["dead"] = false,
							}, -- end of [3]
							[4] = 
							{
								["heading"] = 3.8571776469075,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -17867.736185334,
											["speed"] = 0,
											["x"] = -398000.8430742,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 11,
								["units"] = 
								{
									[1] = 
									{
										["livery_id"] = "standard",
										["category"] = "Helicopters",
										["type"] = "UH-60A",
										["unitId"] = 30,
										["rate"] = "30",
										["y"] = -17867.736185334,
										["x"] = -398000.8430742,
										["name"] = "Static UH-60A-2-1",
										["heading"] = 3.8571776469075,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -17867.736185334,
								["x"] = -398000.8430742,
								["name"] = "Static UH-60A-2",
								["dead"] = false,
							}, -- end of [4]
							[5] = 
							{
								["heading"] = 3.1415926535898,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -17127.435979484,
											["speed"] = 0,
											["x"] = -396350.57215835,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 13,
								["units"] = 
								{
									[1] = 
									{
										["livery_id"] = "standard",
										["category"] = "Helicopters",
										["type"] = "UH-60A",
										["unitId"] = 33,
										["rate"] = "30",
										["y"] = -17127.435979484,
										["x"] = -396350.57215835,
										["name"] = "Static UH-60A-3-1",
										["heading"] = 3.1415926535898,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -17127.435979484,
								["x"] = -396350.57215835,
								["name"] = "Static UH-60A-3",
								["dead"] = false,
							}, -- end of [5]
							[6] = 
							{
								["heading"] = 3.1415926535898,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -17159.271028788,
											["speed"] = 0,
											["x"] = -396351.77803143,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 14,
								["units"] = 
								{
									[1] = 
									{
										["livery_id"] = "standard",
										["category"] = "Helicopters",
										["type"] = "UH-60A",
										["unitId"] = 34,
										["rate"] = "30",
										["y"] = -17159.271028788,
										["x"] = -396351.77803143,
										["name"] = "Static UH-60A-4-1",
										["heading"] = 3.1415926535898,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -17159.271028788,
								["x"] = -396351.77803143,
								["name"] = "Static UH-60A-4",
								["dead"] = false,
							}, -- end of [6]
							[7] = 
							{
								["heading"] = 3.1415926535898,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -17159.453203893,
											["speed"] = 0,
											["x"] = -396434.62559124,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 15,
								["units"] = 
								{
									[1] = 
									{
										["livery_id"] = "standard",
										["category"] = "Helicopters",
										["type"] = "UH-60A",
										["unitId"] = 35,
										["rate"] = "30",
										["y"] = -17159.453203893,
										["x"] = -396434.62559124,
										["name"] = "Static UH-60A-5-1",
										["heading"] = 3.1415926535898,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -17159.453203893,
								["x"] = -396434.62559124,
								["name"] = "Static UH-60A-5",
								["dead"] = false,
							}, -- end of [7]
							[8] = 
							{
								["heading"] = 3.8222710618676,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16145.922539817,
											["speed"] = 0,
											["x"] = -397392.63751257,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 17,
								["units"] = 
								{
									[1] = 
									{
										["livery_id"] = "507th ARW USAF",
										["category"] = "Planes",
										["type"] = "KC135MPRS",
										["unitId"] = 37,
										["rate"] = "100",
										["y"] = -16145.922539817,
										["x"] = -397392.63751257,
										["name"] = "Static KC-135MPRS-1",
										["heading"] = 3.8222710618676,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16145.922539817,
								["x"] = -397392.63751257,
								["name"] = "Static KC-135MPRS-1",
								["dead"] = false,
							}, -- end of [8]
							[9] = 
							{
								["heading"] = 3.8222710618676,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16102.420275683,
											["speed"] = 0,
											["x"] = -397428.28019686,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 18,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "384th ARS USAF",
										["category"] = "Planes",
										["type"] = "KC-135",
										["unitId"] = 38,
										["rate"] = "100",
										["y"] = -16102.420275683,
										["x"] = -397428.28019686,
										["name"] = "Static KC-135-1",
										["heading"] = 3.8222710618676,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16102.420275683,
								["x"] = -397428.28019686,
								["name"] = "Static KC-135-1",
								["dead"] = false,
							}, -- end of [9]
							[10] = 
							{
								["heading"] = 5.4105206811824,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -17399.916233291,
											["speed"] = 0,
											["x"] = -399156.16696242,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 58,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "standard",
										["category"] = "Planes",
										["type"] = "MQ-9 Reaper",
										["unitId"] = 87,
										["rate"] = 40,
										["y"] = -17399.916233291,
										["x"] = -399156.16696242,
										["name"] = "Static MQ-9 Reaper-1",
										["heading"] = 5.4105206811824,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -17399.916233291,
								["x"] = -399156.16696242,
								["name"] = "Static MQ-9 Reaper-1",
								["dead"] = false,
							}, -- end of [10]
							[11] = 
							{
								["heading"] = 2.6703537555513,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -89102.973875534,
											["speed"] = 0,
											["x"] = -285018.4334827,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 87,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "usaf standard",
										["category"] = "Planes",
										["type"] = "F-117A",
										["unitId"] = 209,
										["rate"] = "70",
										["y"] = -89102.973875534,
										["x"] = -285018.4334827,
										["name"] = "Static F-117A-1",
										["heading"] = 2.6703537555513,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -89102.973875534,
								["x"] = -285018.4334827,
								["name"] = "Static F-117A-1",
								["dead"] = false,
							}, -- end of [11]
							[12] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16238.525761717,
											["speed"] = 0,
											["x"] = -397502.24420086,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 93,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "usaf 317 aw, dyess afb",
										["category"] = "Planes",
										["type"] = "C-130J-30",
										["unitId"] = 232,
										["rate"] = 70,
										["y"] = -16238.525761717,
										["x"] = -397502.24420086,
										["name"] = "Static C-130J-30-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16238.525761717,
								["x"] = -397502.24420086,
								["name"] = "Static C-130J-30-1",
								["dead"] = false,
							}, -- end of [12]
							[13] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16194.762556962,
											["speed"] = 0,
											["x"] = -397538.15727045,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 94,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "wv ang 130 aw, mclaughlin angb",
										["category"] = "Planes",
										["type"] = "C-130J-30",
										["unitId"] = 233,
										["rate"] = 70,
										["y"] = -16194.762556962,
										["x"] = -397538.15727045,
										["name"] = "Static C-130J-30-2-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16194.762556962,
								["x"] = -397538.15727045,
								["name"] = "Static C-130J-30-2",
								["dead"] = false,
							}, -- end of [13]
							[14] = 
							{
								["heading"] = 0.054831135561608,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18421.320899489,
											["speed"] = 0,
											["x"] = -399024.73479766,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 96,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["category"] = "Fortifications",
										["shape_name"] = "H-Windsock_RW",
										["type"] = "Windsock",
										["unitId"] = 236,
										["rate"] = 3,
										["y"] = -18421.320899489,
										["x"] = -399024.73479766,
										["name"] = "Static Windsock-1",
										["heading"] = 0.054831135561608,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18421.320899489,
								["x"] = -399024.73479766,
								["name"] = "Static Windsock-1",
								["dead"] = false,
							}, -- end of [14]
							[15] = 
							{
								["heading"] = 0.054831135561608,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16734.400514365,
											["speed"] = 0,
											["x"] = -396966.28235504,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 97,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["category"] = "Fortifications",
										["shape_name"] = "H-Windsock_RW",
										["type"] = "Windsock",
										["unitId"] = 237,
										["rate"] = 3,
										["y"] = -16734.400514365,
										["x"] = -396966.28235504,
										["name"] = "Static Windsock-2-1",
										["heading"] = 0.054831135561608,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16734.400514365,
								["x"] = -396966.28235504,
								["name"] = "Static Windsock-2",
								["dead"] = false,
							}, -- end of [15]
							[16] = 
							{
								["heading"] = 0.054831135561608,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18078.982312991,
											["speed"] = 0,
											["x"] = -399305.01341506,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 98,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["category"] = "Fortifications",
										["shape_name"] = "H-Windsock_RW",
										["type"] = "Windsock",
										["unitId"] = 238,
										["rate"] = 3,
										["y"] = -18078.982312991,
										["x"] = -399305.01341506,
										["name"] = "Static Windsock-3-1",
										["heading"] = 0.054831135561608,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18078.982312991,
								["x"] = -399305.01341506,
								["name"] = "Static Windsock-3",
								["dead"] = false,
							}, -- end of [16]
							[17] = 
							{
								["heading"] = 0.054831135561608,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16288.621635255,
											["speed"] = 0,
											["x"] = -397152.53224972,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 99,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["category"] = "Fortifications",
										["shape_name"] = "H-Windsock_RW",
										["type"] = "Windsock",
										["unitId"] = 239,
										["rate"] = 3,
										["y"] = -16288.621635255,
										["x"] = -397152.53224972,
										["name"] = "Static Windsock-4-1",
										["heading"] = 0.054831135561608,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16288.621635255,
								["x"] = -397152.53224972,
								["name"] = "Static Windsock-4",
								["dead"] = false,
							}, -- end of [17]
							[18] = 
							{
								["heading"] = 1.6283921921107,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16043.651868272,
											["speed"] = 0,
											["x"] = -397082.10201458,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 100,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_BarrierC",
										["type"] = "Barrier C",
										["unitId"] = 240,
										["rate"] = 1,
										["y"] = -16043.651868272,
										["x"] = -397082.10201458,
										["name"] = "Static M92 Barrier C-1",
										["heading"] = 1.6283921921107,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16043.651868272,
								["x"] = -397082.10201458,
								["name"] = "Static M92 Barrier C-1",
								["dead"] = false,
							}, -- end of [18]
							[19] = 
							{
								["heading"] = 1.6283921921107,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16038.854281187,
											["speed"] = 0,
											["x"] = -397082.23635418,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 101,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_BarrierC",
										["type"] = "Barrier C",
										["unitId"] = 241,
										["rate"] = 1,
										["y"] = -16038.854281187,
										["x"] = -397082.23635418,
										["name"] = "Static M92 Barrier C-2-1",
										["heading"] = 1.6283921921107,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16038.854281187,
								["x"] = -397082.23635418,
								["name"] = "Static M92 Barrier C-2",
								["dead"] = false,
							}, -- end of [19]
							[20] = 
							{
								["heading"] = 1.6283921921107,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16033.77528135,
											["speed"] = 0,
											["x"] = -397082.24309811,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 102,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_BarrierC",
										["type"] = "Barrier C",
										["unitId"] = 242,
										["rate"] = 1,
										["y"] = -16033.77528135,
										["x"] = -397082.24309811,
										["name"] = "Static M92 Barrier C-3-1",
										["heading"] = 1.6283921921107,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16033.77528135,
								["x"] = -397082.24309811,
								["name"] = "Static M92 Barrier C-3",
								["dead"] = false,
							}, -- end of [20]
							[21] = 
							{
								["heading"] = 1.6283921921107,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16028.288464442,
											["speed"] = 0,
											["x"] = -397082.55602348,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 103,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_BarrierC",
										["type"] = "Barrier C",
										["unitId"] = 243,
										["rate"] = 1,
										["y"] = -16028.288464442,
										["x"] = -397082.55602348,
										["name"] = "Static M92 Barrier C-4-1",
										["heading"] = 1.6283921921107,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16028.288464442,
								["x"] = -397082.55602348,
								["name"] = "Static M92 Barrier C-4",
								["dead"] = false,
							}, -- end of [21]
							[22] = 
							{
								["heading"] = 1.6283921921107,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16023.517384227,
											["speed"] = 0,
											["x"] = -397082.70714175,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 104,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_BarrierC",
										["type"] = "Barrier C",
										["unitId"] = 244,
										["rate"] = 1,
										["y"] = -16023.517384227,
										["x"] = -397082.70714175,
										["name"] = "Static M92 Barrier C-5-1",
										["heading"] = 1.6283921921107,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16023.517384227,
								["x"] = -397082.70714175,
								["name"] = "Static M92 Barrier C-5",
								["dead"] = false,
							}, -- end of [22]
							[23] = 
							{
								["heading"] = 1.6283921921107,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16018.212368088,
											["speed"] = 0,
											["x"] = -397082.92457606,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 105,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_BarrierC",
										["type"] = "Barrier C",
										["unitId"] = 245,
										["rate"] = 1,
										["y"] = -16018.212368088,
										["x"] = -397082.92457606,
										["name"] = "Static M92 Barrier C-6-1",
										["heading"] = 1.6283921921107,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16018.212368088,
								["x"] = -397082.92457606,
								["name"] = "Static M92 Barrier C-6",
								["dead"] = false,
							}, -- end of [23]
							[24] = 
							{
								["heading"] = 1.6283921921107,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16013.513201632,
											["speed"] = 0,
											["x"] = -397083.12963805,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 106,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_BarrierC",
										["type"] = "Barrier C",
										["unitId"] = 246,
										["rate"] = 1,
										["y"] = -16013.513201632,
										["x"] = -397083.12963805,
										["name"] = "Static M92 Barrier C-7-1",
										["heading"] = 1.6283921921107,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16013.513201632,
								["x"] = -397083.12963805,
								["name"] = "Static M92 Barrier C-7",
								["dead"] = false,
							}, -- end of [24]
							[25] = 
							{
								["heading"] = 3.4260813216648,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16047.603558945,
											["speed"] = 0,
											["x"] = -397085.33095905,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 114,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_NF-2_LightOn",
										["type"] = "NF-2_LightOn",
										["unitId"] = 254,
										["rate"] = 1,
										["y"] = -16047.603558945,
										["x"] = -397085.33095905,
										["name"] = "Static M92 NF-2 LightOn-1",
										["heading"] = 3.4260813216648,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16047.603558945,
								["x"] = -397085.33095905,
								["name"] = "Static M92 NF-2 LightOn-1",
								["dead"] = false,
							}, -- end of [25]
							[26] = 
							{
								["heading"] = 4.7874381382204,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16036.399830529,
											["speed"] = 0,
											["x"] = -397080.92485369,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 115,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_NF-2_LightOn",
										["type"] = "NF-2_LightOn",
										["unitId"] = 255,
										["rate"] = 1,
										["y"] = -16036.399830529,
										["x"] = -397080.92485369,
										["name"] = "Static M92 NF-2 LightOn-2-1",
										["heading"] = 4.7874381382204,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16036.399830529,
								["x"] = -397080.92485369,
								["name"] = "Static M92 NF-2 LightOn-2",
								["dead"] = false,
							}, -- end of [26]
							[27] = 
							{
								["heading"] = 4.7874381382204,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16020.781538795,
											["speed"] = 0,
											["x"] = -397081.48764731,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 116,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_NF-2_LightOn",
										["type"] = "NF-2_LightOn",
										["unitId"] = 256,
										["rate"] = 1,
										["y"] = -16020.781538795,
										["x"] = -397081.48764731,
										["name"] = "Static M92 NF-2 LightOn-3-1",
										["heading"] = 4.7874381382204,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16020.781538795,
								["x"] = -397081.48764731,
								["name"] = "Static M92 NF-2 LightOn-3",
								["dead"] = false,
							}, -- end of [27]
							[28] = 
							{
								["heading"] = 6.0440751996564,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16010.380927193,
											["speed"] = 0,
											["x"] = -397086.67695072,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 118,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_NF-2_LightOn",
										["type"] = "NF-2_LightOn",
										["unitId"] = 258,
										["rate"] = 1,
										["y"] = -16010.380927193,
										["x"] = -397086.67695072,
										["name"] = "Static M92 NF-2 LightOn-5-1",
										["heading"] = 6.0440751996564,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16010.380927193,
								["x"] = -397086.67695072,
								["name"] = "Static M92 NF-2 LightOn-5",
								["dead"] = false,
							}, -- end of [28]
							[29] = 
							{
								["heading"] = 5.2761303287788,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16019.301518712,
											["speed"] = 0,
											["x"] = -397047.70208689,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 125,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "cat_345L",
										["type"] = "345 Excavator",
										["unitId"] = 265,
										["rate"] = 3,
										["y"] = -16019.301518712,
										["x"] = -397047.70208689,
										["name"] = "Static Excavator-1",
										["heading"] = 5.2761303287788,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16019.301518712,
								["x"] = -397047.70208689,
								["name"] = "Static Excavator-1",
								["dead"] = false,
							}, -- end of [29]
							[30] = 
							{
								["heading"] = 2.6406831582674,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16030.639795406,
											["speed"] = 0,
											["x"] = -397026.30993477,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 126,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "cat_345L",
										["type"] = "345 Excavator",
										["unitId"] = 266,
										["rate"] = 3,
										["y"] = -16030.639795406,
										["x"] = -397026.30993477,
										["name"] = "Static Excavator-2-1",
										["heading"] = 2.6406831582674,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16030.639795406,
								["x"] = -397026.30993477,
								["name"] = "Static Excavator-2",
								["dead"] = false,
							}, -- end of [30]
							[31] = 
							{
								["heading"] = 3.6180675393842,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16035.946461168,
											["speed"] = 0,
											["x"] = -397032.37957636,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 129,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_NF-2_LightOn",
										["type"] = "NF-2_LightOn",
										["unitId"] = 269,
										["rate"] = 1,
										["y"] = -16035.946461168,
										["x"] = -397032.37957636,
										["name"] = "Static M92 NF-2 LightOn-4-1",
										["heading"] = 3.6180675393842,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16035.946461168,
								["x"] = -397032.37957636,
								["name"] = "Static M92 NF-2 LightOn-4",
								["dead"] = false,
							}, -- end of [31]
							[32] = 
							{
								["heading"] = 2.134537675189,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16034.281489465,
											["speed"] = 0,
											["x"] = -397053.80670454,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 130,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_NF-2_LightOn",
										["type"] = "NF-2_LightOn",
										["unitId"] = 270,
										["rate"] = 1,
										["y"] = -16034.281489465,
										["x"] = -397053.80670454,
										["name"] = "Static M92 NF-2 LightOn-7-1",
										["heading"] = 2.134537675189,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16034.281489465,
								["x"] = -397053.80670454,
								["name"] = "Static M92 NF-2 LightOn-7",
								["dead"] = false,
							}, -- end of [32]
							[33] = 
							{
								["heading"] = 6.2186081248558,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16012.072736169,
											["speed"] = 0,
											["x"] = -397037.14143075,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 132,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_NF-2_LightOn",
										["type"] = "NF-2_LightOn",
										["unitId"] = 272,
										["rate"] = 1,
										["y"] = -16012.072736169,
										["x"] = -397037.14143075,
										["name"] = "Static M92 NF-2 LightOn-10-1",
										["heading"] = 6.2186081248558,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16012.072736169,
								["x"] = -397037.14143075,
								["name"] = "Static M92 NF-2 LightOn-10",
								["dead"] = false,
							}, -- end of [33]
							[34] = 
							{
								["heading"] = 6.2186081248558,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16012.304542513,
											["speed"] = 0,
											["x"] = -397041.40592107,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 136,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_NF-2_LightOn",
										["type"] = "NF-2_LightOn",
										["unitId"] = 277,
										["rate"] = 1,
										["y"] = -16012.304542513,
										["x"] = -397041.40592107,
										["name"] = "Static M92 NF-2 LightOn-12-1",
										["heading"] = 6.2186081248558,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16012.304542513,
								["x"] = -397041.40592107,
								["name"] = "Static M92 NF-2 LightOn-12",
								["dead"] = false,
							}, -- end of [34]
							[35] = 
							{
								["heading"] = 2.134537675189,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16037.878045593,
											["speed"] = 0,
											["x"] = -397050.69565379,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 137,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_NF-2_LightOn",
										["type"] = "NF-2_LightOn",
										["unitId"] = 278,
										["rate"] = 1,
										["y"] = -16037.878045593,
										["x"] = -397050.69565379,
										["name"] = "Static M92 NF-2 LightOn-13-1",
										["heading"] = 2.134537675189,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16037.878045593,
								["x"] = -397050.69565379,
								["name"] = "Static M92 NF-2 LightOn-13",
								["dead"] = false,
							}, -- end of [35]
							[36] = 
							{
								["heading"] = 3.6180675393842,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -16038.247177106,
											["speed"] = 0,
											["x"] = -397036.17275353,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 138,
								["units"] = 
								{
									[1] = 
									{
										["effectPreset"] = "1",
										["tasks"] = {},
										["category"] = "Fortifications",
										["effectTransparency"] = 1,
										["shape_name"] = "M92_NF-2_LightOn",
										["type"] = "NF-2_LightOn",
										["unitId"] = 279,
										["rate"] = 1,
										["y"] = -16038.247177106,
										["x"] = -397036.17275353,
										["name"] = "Static M92 NF-2 LightOn-14-1",
										["heading"] = 3.6180675393842,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -16038.247177106,
								["x"] = -397036.17275353,
								["name"] = "Static M92 NF-2 LightOn-14",
								["dead"] = false,
							}, -- end of [36]
							[37] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18498.829918086,
											["speed"] = 0,
											["x"] = -398823.69533116,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 179,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "104th fs maryland ang, baltimore (md)",
										["category"] = "Planes",
										["type"] = "A-10C_2",
										["unitId"] = 536,
										["rate"] = 50,
										["y"] = -18498.829918086,
										["x"] = -398823.69533116,
										["name"] = "Static A-10C II-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18498.829918086,
								["x"] = -398823.69533116,
								["name"] = "Static A-10C II-1",
								["dead"] = false,
							}, -- end of [37]
							[38] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18473.723772516,
											["speed"] = 0,
											["x"] = -398843.44549901,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 180,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "104th fs maryland ang, baltimore (md)",
										["category"] = "Planes",
										["type"] = "A-10C_2",
										["unitId"] = 537,
										["rate"] = 50,
										["y"] = -18473.723772516,
										["x"] = -398843.44549901,
										["name"] = "Static A-10C II-2-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18473.723772516,
								["x"] = -398843.44549901,
								["name"] = "Static A-10C II-2",
								["dead"] = false,
							}, -- end of [38]
							[39] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18455.465351583,
											["speed"] = 0,
											["x"] = -398771.37326684,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 181,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "104th fs maryland ang, baltimore (md)",
										["category"] = "Planes",
										["type"] = "A-10C_2",
										["unitId"] = 538,
										["rate"] = 50,
										["y"] = -18455.465351583,
										["x"] = -398771.37326684,
										["name"] = "Static A-10C II-3-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18455.465351583,
								["x"] = -398771.37326684,
								["name"] = "Static A-10C II-3",
								["dead"] = false,
							}, -- end of [39]
							[40] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18430.229377113,
											["speed"] = 0,
											["x"] = -398792.54582169,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 182,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "104th fs maryland ang, baltimore (md)",
										["category"] = "Planes",
										["type"] = "A-10C_2",
										["unitId"] = 539,
										["rate"] = 50,
										["y"] = -18430.229377113,
										["x"] = -398792.54582169,
										["name"] = "Static A-10C II-4-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18430.229377113,
								["x"] = -398792.54582169,
								["name"] = "Static A-10C II-4",
								["dead"] = false,
							}, -- end of [40]
							[41] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18518.127559377,
											["speed"] = 0,
											["x"] = -398806.01926569,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 183,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "104th fs maryland ang, baltimore (md)",
										["category"] = "Planes",
										["type"] = "A-10C_2",
										["unitId"] = 540,
										["rate"] = 50,
										["y"] = -18518.127559377,
										["x"] = -398806.01926569,
										["name"] = "Static A-10C II-5-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18518.127559377,
								["x"] = -398806.01926569,
								["name"] = "Static A-10C II-5",
								["dead"] = false,
							}, -- end of [41]
							[42] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18548.924002797,
											["speed"] = 0,
											["x"] = -398781.2110196,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 184,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "104th fs maryland ang, baltimore (md)",
										["category"] = "Planes",
										["type"] = "A-10C_2",
										["unitId"] = 541,
										["rate"] = 50,
										["y"] = -18548.924002797,
										["x"] = -398781.2110196,
										["name"] = "Static A-10C II-6-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18548.924002797,
								["x"] = -398781.2110196,
								["name"] = "Static A-10C II-6",
								["dead"] = false,
							}, -- end of [42]
							[43] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18378.529191436,
											["speed"] = 0,
											["x"] = -398730.90781884,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 185,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "104th fs maryland ang, baltimore (md)",
										["category"] = "Planes",
										["type"] = "A-10C_2",
										["unitId"] = 542,
										["rate"] = 50,
										["y"] = -18378.529191436,
										["x"] = -398730.90781884,
										["name"] = "Static A-10C II-7-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18378.529191436,
								["x"] = -398730.90781884,
								["name"] = "Static A-10C II-7",
								["dead"] = false,
							}, -- end of [43]
							[44] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18404.19447061,
											["speed"] = 0,
											["x"] = -398711.2311048,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 186,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "104th fs maryland ang, baltimore (md)",
										["category"] = "Planes",
										["type"] = "A-10C_2",
										["unitId"] = 543,
										["rate"] = 50,
										["y"] = -18404.19447061,
										["x"] = -398711.2311048,
										["name"] = "Static A-10C II-8-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18404.19447061,
								["x"] = -398711.2311048,
								["name"] = "Static A-10C II-8",
								["dead"] = false,
							}, -- end of [44]
							[45] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18300.528062958,
											["speed"] = 0,
											["x"] = -398587.68402696,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 187,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 544,
										["rate"] = "50",
										["y"] = -18300.528062958,
										["x"] = -398587.68402696,
										["name"] = "Static F-15C-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18300.528062958,
								["x"] = -398587.68402696,
								["name"] = "Static F-15C-1",
								["dead"] = false,
							}, -- end of [45]
							[46] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18287.764560647,
											["speed"] = 0,
											["x"] = -398598.43179651,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 188,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 545,
										["rate"] = "50",
										["y"] = -18287.764560647,
										["x"] = -398598.43179651,
										["name"] = "Static F-15C-2-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18287.764560647,
								["x"] = -398598.43179651,
								["name"] = "Static F-15C-2",
								["dead"] = false,
							}, -- end of [46]
							[47] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18275.448266123,
											["speed"] = 0,
											["x"] = -398608.67376775,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 189,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 546,
										["rate"] = "50",
										["y"] = -18275.448266123,
										["x"] = -398608.67376775,
										["name"] = "Static F-15C-3-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18275.448266123,
								["x"] = -398608.67376775,
								["name"] = "Static F-15C-3",
								["dead"] = false,
							}, -- end of [47]
							[48] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18256.588392253,
											["speed"] = 0,
											["x"] = -398535.53216181,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 190,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 547,
										["rate"] = "50",
										["y"] = -18256.588392253,
										["x"] = -398535.53216181,
										["name"] = "Static F-15C-4-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18256.588392253,
								["x"] = -398535.53216181,
								["name"] = "Static F-15C-4",
								["dead"] = false,
							}, -- end of [48]
							[49] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18243.855763406,
											["speed"] = 0,
											["x"] = -398546.65079545,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 191,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 548,
										["rate"] = "50",
										["y"] = -18243.855763406,
										["x"] = -398546.65079545,
										["name"] = "Static F-15C-5-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18243.855763406,
								["x"] = -398546.65079545,
								["name"] = "Static F-15C-5",
								["dead"] = false,
							}, -- end of [49]
							[50] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18218.928504113,
											["speed"] = 0,
											["x"] = -398567.09473473,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 192,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 549,
										["rate"] = "50",
										["y"] = -18218.928504113,
										["x"] = -398567.09473473,
										["name"] = "Static F-15C-6-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18218.928504113,
								["x"] = -398567.09473473,
								["name"] = "Static F-15C-6",
								["dead"] = false,
							}, -- end of [50]
							[51] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18213.33881226,
											["speed"] = 0,
											["x"] = -398481.78052842,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 193,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 550,
										["rate"] = "50",
										["y"] = -18213.33881226,
										["x"] = -398481.78052842,
										["name"] = "Static F-15C-7-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18213.33881226,
								["x"] = -398481.78052842,
								["name"] = "Static F-15C-7",
								["dead"] = false,
							}, -- end of [51]
							[52] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18188.442249642,
											["speed"] = 0,
											["x"] = -398502.88848368,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 194,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 551,
										["rate"] = "50",
										["y"] = -18188.442249642,
										["x"] = -398502.88848368,
										["name"] = "Static F-15C-8-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18188.442249642,
								["x"] = -398502.88848368,
								["name"] = "Static F-15C-8",
								["dead"] = false,
							}, -- end of [52]
							[53] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18237.694145255,
											["speed"] = 0,
											["x"] = -398461.21380278,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 195,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 552,
										["rate"] = "50",
										["y"] = -18237.694145255,
										["x"] = -398461.21380278,
										["name"] = "Static F-15C-9-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18237.694145255,
								["x"] = -398461.21380278,
								["name"] = "Static F-15C-9",
								["dead"] = false,
							}, -- end of [53]
							[54] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18117.975251738,
											["speed"] = 0,
											["x"] = -398404.48757445,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 196,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 553,
										["rate"] = "50",
										["y"] = -18117.975251738,
										["x"] = -398404.48757445,
										["name"] = "Static F-15C-10-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18117.975251738,
								["x"] = -398404.48757445,
								["name"] = "Static F-15C-10",
								["dead"] = false,
							}, -- end of [54]
							[55] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -18089.675890798,
											["speed"] = 0,
											["x"] = -398345.26105476,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 197,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "12th fighter sqn (ak)",
										["category"] = "Planes",
										["type"] = "F-15C",
										["unitId"] = 554,
										["rate"] = "50",
										["y"] = -18089.675890798,
										["x"] = -398345.26105476,
										["name"] = "Static F-15C-11-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -18089.675890798,
								["x"] = -398345.26105476,
								["name"] = "Static F-15C-11",
								["dead"] = false,
							}, -- end of [55]
							[56] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -17599.440698762,
											["speed"] = 0,
											["x"] = -397811.47695195,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 198,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "usaf 492nd madhatters fs af91-308 low vis clean",
										["category"] = "Planes",
										["type"] = "F-15ESE",
										["unitId"] = 555,
										["rate"] = 50,
										["y"] = -17599.440698762,
										["x"] = -397811.47695195,
										["name"] = "Static F-15E S4+-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -17599.440698762,
								["x"] = -397811.47695195,
								["name"] = "Static F-15E S4+-1",
								["dead"] = false,
							}, -- end of [56]
							[57] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -17626.019489103,
											["speed"] = 0,
											["x"] = -397789.86167064,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 199,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "usaf 492nd madhatters fs af91-315 vader",
										["category"] = "Planes",
										["type"] = "F-15ESE",
										["unitId"] = 556,
										["rate"] = 50,
										["y"] = -17626.019489103,
										["x"] = -397789.86167064,
										["name"] = "Static F-15E S4+-2-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -17626.019489103,
								["x"] = -397789.86167064,
								["name"] = "Static F-15E S4+-2",
								["dead"] = false,
							}, -- end of [57]
							[58] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -17671.011296849,
											["speed"] = 0,
											["x"] = -397843.49959091,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 200,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "usaf 492nd madhatters fs af91-321 loki",
										["category"] = "Planes",
										["type"] = "F-15ESE",
										["unitId"] = 557,
										["rate"] = 50,
										["y"] = -17671.011296849,
										["x"] = -397843.49959091,
										["name"] = "Static F-15E S4+-3-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -17671.011296849,
								["x"] = -397843.49959091,
								["name"] = "Static F-15E S4+-3",
								["dead"] = false,
							}, -- end of [58]
							[59] = 
							{
								["heading"] = 3.8397243543875,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -17644.912846092,
											["speed"] = 0,
											["x"] = -397865.5952118,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 201,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["livery_id"] = "usaf 492nd madhatters fs af91-327 green goblin",
										["category"] = "Planes",
										["type"] = "F-15ESE",
										["unitId"] = 558,
										["rate"] = 50,
										["y"] = -17644.912846092,
										["x"] = -397865.5952118,
										["name"] = "Static F-15E S4+-4-1",
										["heading"] = 3.8397243543875,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -17644.912846092,
								["x"] = -397865.5952118,
								["name"] = "Static F-15E S4+-4",
								["dead"] = false,
							}, -- end of [59]
						}, -- end of ["group"]
					}, -- end of ["static"]
				}, -- end of [1]
			}, -- end of ["country"]
		}, -- end of ["blue"]
		["red"] = 
		{
			["bullseye"] = 
			{
				["y"] = -26949.778112797,
				["x"] = -379807.53381324,
			}, -- end of ["bullseye"]
			["nav_points"] = {},
			["name"] = "red",
			["country"] = 
			{
				[1] = 
				{
					["name"] = "USAF Aggressors",
					["id"] = 7,
					["static"] = 
					{
						["group"] = 
						{
							[1] = 
							{
								["heading"] = 3.07177948351,
								["route"] = 
								{
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 0,
											["type"] = "",
											["name"] = "",
											["y"] = -162104.51686289,
											["speed"] = 0,
											["x"] = -267597.87303933,
											["formation_template"] = "",
											["action"] = "",
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 168,
								["units"] = 
								{
									[1] = 
									{
										["tasks"] = {},
										["category"] = "Fortifications",
										["shape_name"] = "M92_Sandbag_02",
										["type"] = "Sandbag_02",
										["unitId"] = 496,
										["rate"] = 1,
										["y"] = -162104.51686289,
										["x"] = -267597.87303933,
										["name"] = "Static M92 Sandbag 02-2-1",
										["heading"] = 3.07177948351,
									}, -- end of [1]
								}, -- end of ["units"]
								["y"] = -162104.51686289,
								["x"] = -267597.87303933,
								["name"] = "Static M92 Sandbag 02-2",
								["dead"] = false,
							}, -- end of [1]
						}, -- end of ["group"]
					}, -- end of ["static"]
					["vehicle"] = 
					{
						["group"] = 
						{
							[1] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["route"] = 
								{
									["spans"] = {},
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 1603,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -162101.68720923,
											["x"] = -267597.84975105,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["enabled"] = true,
															["auto"] = false,
															["id"] = "WrappedAction",
															["number"] = 1,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["value"] = true,
																		["name"] = 31,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [1]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 169,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Excellent",
										["coldAtStart"] = false,
										["type"] = "SNR_75V",
										["unitId"] = 497,
										["y"] = -162101.68720923,
										["x"] = -267597.84975105,
										["name"] = "AGR SA-2-1",
										["heading"] = 0.0038885041518015,
										["playerCanDrive"] = false,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "S_75M_Volhov",
										["unitId"] = 498,
										["y"] = -162148.78390663,
										["x"] = -267518.75068928,
										["name"] = "AGR SA-2-2",
										["heading"] = 5.4803338512622,
										["playerCanDrive"] = false,
									}, -- end of [2]
									[3] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "S_75M_Volhov",
										["unitId"] = 499,
										["y"] = -161994.88667674,
										["x"] = -267597.63154418,
										["name"] = "AGR SA-2-3",
										["heading"] = 1.535889741755,
										["playerCanDrive"] = false,
									}, -- end of [3]
									[4] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "S_75M_Volhov",
										["unitId"] = 500,
										["y"] = -162199.93143502,
										["x"] = -267599.67744532,
										["name"] = "AGR SA-2-4",
										["heading"] = 4.6774823953448,
										["playerCanDrive"] = false,
									}, -- end of [4]
									[5] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "S_75M_Volhov",
										["unitId"] = 501,
										["y"] = -162148.55658428,
										["x"] = -267683.10474719,
										["name"] = "AGR SA-2-5",
										["heading"] = 3.8048177693476,
										["playerCanDrive"] = false,
									}, -- end of [5]
									[6] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "S_75M_Volhov",
										["unitId"] = 502,
										["y"] = -162043.76098165,
										["x"] = -267685.60529302,
										["name"] = "AGR SA-2-6",
										["heading"] = 2.3561944901923,
										["playerCanDrive"] = false,
									}, -- end of [6]
									[7] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "S_75M_Volhov",
										["unitId"] = 503,
										["y"] = -162047.39813923,
										["x"] = -267517.15943284,
										["name"] = "AGR SA-2-7",
										["heading"] = 0.92502450355699,
										["playerCanDrive"] = false,
									}, -- end of [7]
									[8] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "ZIL-131 KUNG",
										["unitId"] = 504,
										["y"] = -162057.05104413,
										["x"] = -267567.89307895,
										["name"] = "AGR SA-2-8",
										["heading"] = 4.1713369122664,
										["playerCanDrive"] = false,
									}, -- end of [8]
									[9] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "ZIL-131 KUNG",
										["unitId"] = 505,
										["y"] = -162053.79806711,
										["x"] = -267572.72280119,
										["name"] = "AGR SA-2-9",
										["heading"] = 4.1713369122664,
										["playerCanDrive"] = false,
									}, -- end of [9]
									[10] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "p-19 s-125 sr",
										["unitId"] = 506,
										["y"] = -161936.03135929,
										["x"] = -267658.99224928,
										["name"] = "AGR SA-2-10",
										["heading"] = 2.2165681500328,
										["playerCanDrive"] = false,
									}, -- end of [10]
									[11] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Ural-4320 APA-5D",
										["unitId"] = 507,
										["y"] = -161937.3024485,
										["x"] = -267647.7907968,
										["name"] = "AGR SA-2-11",
										["heading"] = 0.68067840827779,
										["playerCanDrive"] = false,
									}, -- end of [11]
									[12] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "ATMZ-5",
										["unitId"] = 508,
										["y"] = -162272.84934134,
										["x"] = -267716.1353842,
										["name"] = "AGR SA-2-12",
										["heading"] = 0.87266462599716,
										["playerCanDrive"] = false,
									}, -- end of [12]
									[13] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "ATMZ-5",
										["unitId"] = 509,
										["y"] = -162252.94624926,
										["x"] = -267735.20918078,
										["name"] = "AGR SA-2-13",
										["heading"] = 1.0297442586767,
										["playerCanDrive"] = false,
									}, -- end of [13]
									[14] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Ural-4320T",
										["unitId"] = 510,
										["y"] = -162186.60260899,
										["x"] = -267765.8931144,
										["name"] = "AGR SA-2-14",
										["heading"] = 5.4279739737024,
										["playerCanDrive"] = false,
									}, -- end of [14]
									[15] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "Ural-4320T",
										["unitId"] = 511,
										["y"] = -162172.50458543,
										["x"] = -267749.30720434,
										["name"] = "AGR SA-2-15",
										["heading"] = 5.3407075111026,
										["playerCanDrive"] = false,
									}, -- end of [15]
								}, -- end of ["units"]
								["y"] = -162101.68720923,
								["x"] = -267597.84975105,
								["name"] = "AGR SA-2",
								["start_time"] = 0,
							}, -- end of [1]
							[2] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = 
									{
										[1] = 
										{
											[1] = 
											{
												["y"] = -159986.6752087,
												["x"] = -267120.67192391,
											}, -- end of [1]
											[2] = 
											{
												["y"] = -159986.6752087,
												["x"] = -267120.67192391,
											}, -- end of [2]
										}, -- end of [1]
									}, -- end of ["spans"]
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 1598,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -159986.6752087,
											["x"] = -267120.67192391,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 170,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Average",
										["AddPropVehicle"] = 
										{
											["Branches"] = false,
										}, -- end of ["AddPropVehicle"]
										["coldAtStart"] = false,
										["type"] = "ZSU_57_2",
										["unitId"] = 512,
										["y"] = -159986.6752087,
										["x"] = -267120.67192391,
										["name"] = "AGR ZSU-57-1-1",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = true,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "Average",
										["AddPropVehicle"] = 
										{
											["Branches"] = false,
										}, -- end of ["AddPropVehicle"]
										["coldAtStart"] = false,
										["type"] = "ZSU_57_2",
										["unitId"] = 513,
										["y"] = -159989.3967837,
										["x"] = -267137.85385406,
										["name"] = "AGR ZSU-57-1-2",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = true,
									}, -- end of [2]
									[3] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 514,
										["y"] = -160025.82020538,
										["x"] = -267130.59939663,
										["name"] = "AGR ZSU-57-1-3",
										["heading"] = 0.19722220547536,
										["playerCanDrive"] = true,
									}, -- end of [3]
								}, -- end of ["units"]
								["y"] = -159986.6752087,
								["x"] = -267120.67192391,
								["name"] = "AGR ZSU-57-1",
								["start_time"] = 0,
							}, -- end of [2]
							[3] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = 
									{
										[1] = 
										{
											[1] = 
											{
												["y"] = -161196.80769059,
												["x"] = -269727.11111566,
											}, -- end of [1]
											[2] = 
											{
												["y"] = -161196.80769059,
												["x"] = -269727.11111566,
											}, -- end of [2]
										}, -- end of [1]
									}, -- end of ["spans"]
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 1642.4856212731,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -161196.80769059,
											["x"] = -269727.11111566,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 171,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Average",
										["AddPropVehicle"] = 
										{
											["Branches"] = false,
										}, -- end of ["AddPropVehicle"]
										["coldAtStart"] = false,
										["type"] = "ZSU_57_2",
										["unitId"] = 515,
										["y"] = -161196.80769059,
										["x"] = -269727.11111566,
										["name"] = "AGR ZSU-57-2-1",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = true,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "Average",
										["AddPropVehicle"] = 
										{
											["Branches"] = false,
										}, -- end of ["AddPropVehicle"]
										["coldAtStart"] = false,
										["type"] = "ZSU_57_2",
										["unitId"] = 516,
										["y"] = -161199.52926558,
										["x"] = -269744.29304581,
										["name"] = "AGR ZSU-57-2-2",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = true,
									}, -- end of [2]
									[3] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 517,
										["y"] = -161235.95268726,
										["x"] = -269737.03858837,
										["name"] = "AGR ZSU-57-2-3",
										["heading"] = 0.19722220547536,
										["playerCanDrive"] = true,
									}, -- end of [3]
								}, -- end of ["units"]
								["y"] = -161196.80769059,
								["x"] = -269727.11111566,
								["name"] = "AGR ZSU-57-2",
								["start_time"] = 0,
							}, -- end of [3]
							[4] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = 
									{
										[1] = 
										{
											[1] = 
											{
												["y"] = -160265.93655068,
												["x"] = -268550.22403163,
											}, -- end of [1]
											[2] = 
											{
												["y"] = -160265.93655068,
												["x"] = -268550.22403163,
											}, -- end of [2]
										}, -- end of [1]
									}, -- end of ["spans"]
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 1604,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -160265.93655068,
											["x"] = -268550.22403163,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 172,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "KS-19",
										["unitId"] = 518,
										["y"] = -160265.93655068,
										["x"] = -268550.22403163,
										["name"] = "AGR KS-19-1-1",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = false,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "KS-19",
										["unitId"] = 521,
										["y"] = -160288.43994529,
										["x"] = -268586.97782445,
										["name"] = "AGR KS-19-1-2",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = false,
									}, -- end of [2]
									[3] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 522,
										["y"] = -160322.66194129,
										["x"] = -268553.44486192,
										["name"] = "AGR KS-19-1-3",
										["heading"] = 5.9219021520168,
										["playerCanDrive"] = false,
									}, -- end of [3]
								}, -- end of ["units"]
								["y"] = -160265.93655068,
								["x"] = -268550.22403163,
								["name"] = "AGR KS-19-1",
								["start_time"] = 0,
							}, -- end of [4]
							[5] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = 
									{
										[1] = 
										{
											[1] = 
											{
												["y"] = -163638.661074,
												["x"] = -269247.44651039,
											}, -- end of [1]
											[2] = 
											{
												["y"] = -163638.661074,
												["x"] = -269247.44651039,
											}, -- end of [2]
										}, -- end of [1]
									}, -- end of ["spans"]
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 1636.9304399366,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -163638.661074,
											["x"] = -269247.44651039,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 173,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "KS-19",
										["unitId"] = 523,
										["y"] = -163638.661074,
										["x"] = -269247.44651039,
										["name"] = "AGR KS-19-2-1",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = false,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "KS-19",
										["unitId"] = 524,
										["y"] = -163661.16446862,
										["x"] = -269284.20030321,
										["name"] = "AGR KS-19-2-2",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = false,
									}, -- end of [2]
									[3] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 525,
										["y"] = -163695.38646462,
										["x"] = -269250.66734068,
										["name"] = "AGR KS-19-2-3",
										["heading"] = 5.9219021520168,
										["playerCanDrive"] = false,
									}, -- end of [3]
								}, -- end of ["units"]
								["y"] = -163638.661074,
								["x"] = -269247.44651039,
								["name"] = "AGR KS-19-2",
								["start_time"] = 0,
							}, -- end of [5]
							[6] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = 
									{
										[1] = 
										{
											[1] = 
											{
												["y"] = -162325.5426201,
												["x"] = -267496.16313558,
											}, -- end of [1]
											[2] = 
											{
												["y"] = -162325.5426201,
												["x"] = -267496.16313558,
											}, -- end of [2]
										}, -- end of [1]
									}, -- end of ["spans"]
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 1604,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -162325.5426201,
											["x"] = -267496.16313558,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 174,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "KS-19",
										["unitId"] = 526,
										["y"] = -162325.5426201,
										["x"] = -267496.16313558,
										["name"] = "AGR KS-19-3-1",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = false,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "KS-19",
										["unitId"] = 527,
										["y"] = -162348.04601472,
										["x"] = -267532.9169284,
										["name"] = "AGR KS-19-3-2",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = false,
									}, -- end of [2]
									[3] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 528,
										["y"] = -162382.26801072,
										["x"] = -267499.38396587,
										["name"] = "AGR KS-19-3-3",
										["heading"] = 5.9219021520168,
										["playerCanDrive"] = false,
									}, -- end of [3]
								}, -- end of ["units"]
								["y"] = -162325.5426201,
								["x"] = -267496.16313558,
								["name"] = "AGR KS-19-3",
								["start_time"] = 0,
							}, -- end of [6]
							[7] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = 
									{
										[1] = 
										{
											[1] = 
											{
												["y"] = -163296.66718981,
												["x"] = -265763.94132783,
											}, -- end of [1]
											[2] = 
											{
												["y"] = -163296.66718981,
												["x"] = -265763.94132783,
											}, -- end of [2]
										}, -- end of [1]
									}, -- end of ["spans"]
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 1647.0802303599,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -163296.66718981,
											["x"] = -265763.94132783,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = {},
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 175,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "KS-19",
										["unitId"] = 529,
										["y"] = -163296.66718981,
										["x"] = -265763.94132783,
										["name"] = "AGR KS-19-4-1",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = false,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "KS-19",
										["unitId"] = 530,
										["y"] = -163319.17058442,
										["x"] = -265800.69512065,
										["name"] = "AGR KS-19-4-2",
										["heading"] = 1.6959600535367,
										["playerCanDrive"] = false,
									}, -- end of [2]
									[3] = 
									{
										["skill"] = "Average",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 531,
										["y"] = -163353.39258043,
										["x"] = -265767.16215812,
										["name"] = "AGR KS-19-4-3",
										["heading"] = 5.9219021520168,
										["playerCanDrive"] = false,
									}, -- end of [3]
								}, -- end of ["units"]
								["y"] = -163296.66718981,
								["x"] = -265763.94132783,
								["name"] = "AGR KS-19-4",
								["start_time"] = 0,
							}, -- end of [7]
							[8] = 
							{
								["visible"] = false,
								["tasks"] = {},
								["uncontrollable"] = false,
								["task"] = "Ground Nothing",
								["taskSelected"] = true,
								["route"] = 
								{
									["spans"] = {},
									["points"] = 
									{
										[1] = 
										{
											["alt"] = 1608,
											["type"] = "Turning Point",
											["ETA"] = 0,
											["alt_type"] = "BARO",
											["formation_template"] = "",
											["y"] = -163251.76310058,
											["x"] = -267425.16988621,
											["ETA_locked"] = true,
											["speed"] = 0,
											["action"] = "Off Road",
											["task"] = 
											{
												["id"] = "ComboTask",
												["params"] = 
												{
													["tasks"] = 
													{
														[1] = 
														{
															["enabled"] = true,
															["auto"] = false,
															["id"] = "WrappedAction",
															["number"] = 1,
															["params"] = 
															{
																["action"] = 
																{
																	["id"] = "Option",
																	["params"] = 
																	{
																		["name"] = 31,
																		["value"] = true,
																	}, -- end of ["params"]
																}, -- end of ["action"]
															}, -- end of ["params"]
														}, -- end of [1]
													}, -- end of ["tasks"]
												}, -- end of ["params"]
											}, -- end of ["task"]
											["speed_locked"] = true,
										}, -- end of [1]
									}, -- end of ["points"]
								}, -- end of ["route"]
								["groupId"] = 177,
								["hidden"] = false,
								["units"] = 
								{
									[1] = 
									{
										["skill"] = "Excellent",
										["coldAtStart"] = false,
										["type"] = "Osa 9A33 ln",
										["unitId"] = 533,
										["y"] = -163251.76310058,
										["x"] = -267425.16988621,
										["name"] = "AGR SA-1-1",
										["heading"] = 3.2585297134734,
										["playerCanDrive"] = false,
									}, -- end of [1]
									[2] = 
									{
										["skill"] = "High",
										["coldAtStart"] = false,
										["type"] = "M 818",
										["unitId"] = 534,
										["y"] = -163182.69244049,
										["x"] = -267358.68130686,
										["name"] = "AGR SA-8-1",
										["heading"] = 5.9219021520168,
										["playerCanDrive"] = false,
									}, -- end of [2]
								}, -- end of ["units"]
								["y"] = -163251.76310058,
								["x"] = -267425.16988621,
								["name"] = "AGR SA-8",
								["start_time"] = 0,
							}, -- end of [8]
						}, -- end of ["group"]
					}, -- end of ["vehicle"]
				}, -- end of [1]
			}, -- end of ["country"]
		}, -- end of ["red"]
	}, -- end of ["coalition"]
	["sortie"] = "DictKey_sortie_5",
	["version"] = 23,
	["trigrules"] = 
	{
		[1] = 
		{
			["rules"] = {},
			["comment"] = "Trigger 1756743455",
			["eventlist"] = "",
			["actions"] = 
			{
				[1] = 
				{
					["silent"] = true,
					["object"] = 4,
					["data"] = 
					{
						["type"] = "airdromeId",
					}, -- end of ["data"]
					["predicate"] = "a_set_ATC_silent_mode",
				}, -- end of [1]
				[2] = 
				{
					["silent"] = true,
					["predicate"] = "a_set_ATC_silent_mode",
					["object"] = 2,
					["data"] = 
					{
						["type"] = "airdromeId",
					}, -- end of ["data"]
				}, -- end of [2]
				[3] = 
				{
					["silent"] = true,
					["data"] = 
					{
						["type"] = "airdromeId",
					}, -- end of ["data"]
					["predicate"] = "a_set_ATC_silent_mode",
					["object"] = 1,
				}, -- end of [3]
				[4] = 
				{
					["silent"] = true,
					["object"] = 18,
					["data"] = 
					{
						["type"] = "airdromeId",
					}, -- end of ["data"]
					["predicate"] = "a_set_ATC_silent_mode",
				}, -- end of [4]
			}, -- end of ["actions"]
			["predicate"] = "triggerStart",
		}, -- end of [1]
		[2] = 
		{
			["rules"] = {},
			["eventlist"] = "dead",
			["predicate"] = "triggerOnce",
			["actions"] = 
			{
				[1] = 
				{
					["predicate"] = "a_ai_task",
					["ai_task"] = 
					{
						[1] = 71,
						[2] = 1,
					}, -- end of ["ai_task"]
				}, -- end of [1]
			}, -- end of ["actions"]
			["comment"] = "Trigger 1757271470",
		}, -- end of [2]
		[3] = 
		{
			["rules"] = {},
			["comment"] = "LAND",
			["eventlist"] = "",
			["actions"] = 
			{
				[1] = 
				{
					["text"] = "----------------------------------------------------------------\
-- 設定：判定したい滑走路ゾーン\
----------------------------------------------------------------\
local LAND_ZONES = {\
    { name = \"LAND_03L\", displayName = \"着陸滑走路 03L\" },\
    { name = \"LAND_03R\", displayName = \"着陸滑走路 03R\" },\
    { name = \"LAND_21L\", displayName = \"着陸滑走路 21L\" },\
    { name = \"LAND_21R\", displayName = \"着陸滑走路 21R\" },\
}\
\
----------------------------------------------------------------\
-- ユーティリティ\
----------------------------------------------------------------\
local function getZoneByName(name)\
    return trigger.misc.getZone(name)\
end\
\
local function distance2D(p1, p2)\
    local dx = p2.x - p1.x\
    local dz = p2.z - p1.z\
    return math.sqrt(dx * dx + dz * dz)\
end\
\
-- from から見た to の真方位（度）\
local function bearingTrueDeg(from, to)\
    local dx = to.x - from.x\
    local dz = to.z - from.z\
    -- DCS座標系：x=東, z=北\
    local brg = math.deg(math.atan2(dx, dz))\
    if brg < 0 then brg = brg + 360 end\
    return brg\
end\
\
local function isPointInPolygon(pt, poly)\
    local inside = false\
    local j = #poly\
    for i = 1, #poly do\
        local xi = poly[i].x\
        local zi = poly[i].y   -- verticies は x,y で y が「北」(z)方向\
        local xj = poly[j].x\
        local zj = poly[j].y\
\
        local intersect =\
            ((zi > pt.z) ~= (zj > pt.z)) and\
            (pt.x < (xj - xi) * (pt.z - zi) / ((zj - zi) + 1e-6) + xi)\
\
        if intersect then\
            inside = not inside\
        end\
        j = i\
    end\
    return inside\
end\
\
local function isPointInZone2D(pt, zone)\
    if zone.radius then\
        local ctr = { x = zone.point.x, z = zone.point.z }\
        return distance2D(ctr, pt) <= zone.radius\
    elseif zone.verticies then\
        return isPointInPolygon(pt, zone.verticies)\
    end\
    return false\
end\
\
local function findLandingZone(pos2)\
    for _, zinfo in ipairs(LAND_ZONES) do\
        local z = getZoneByName(zinfo.name)\
        if z and isPointInZone2D(pos2, z) then\
            return z, zinfo.displayName\
        end\
    end\
    return nil, nil\
end\
\
----------------------------------------------------------------\
-- 着陸イベントハンドラ（ランディングレートなし）\
----------------------------------------------------------------\
LandingTouchSimpleHandler = {}\
\
function LandingTouchSimpleHandler:onEvent(event)\
    if event.id ~= world.event.S_EVENT_RUNWAY_TOUCH then\
        return\
    end\
\
    local unit = event.initiator\
    if not unit or not Unit.isExist(unit) then\
        return\
    end\
\
    -- プレイヤー機のみ対象（AIも含めたいならこの4行消す）\
    local playerName = unit:getPlayerName()\
    if not playerName then\
        return\
    end\
\
    -- 着陸位置\
    local pos3 = unit:getPoint()\
    local pos2 = { x = pos3.x, z = pos3.z }\
\
    -- どの滑走路ゾーンか\
    local zoneMatched, zoneDispName = findLandingZone(pos2)\
    if not zoneMatched then\
        return\
    end\
\
    -- ゾーン中心からのズレ\
    local ref     = { x = zoneMatched.point.x, z = zoneMatched.point.z }\
    local dist    = distance2D(ref, pos2)\
    local brgTrue = bearingTrueDeg(ref, pos2)\
\
    local dist_m   = math.floor(dist + 0.5)\
    local brg_deg  = math.floor(brgTrue + 0.5)\
\
    -- 機種名\
    local acType = unit:getTypeName()\
    local desc   = unit:getDesc()\
    if desc and desc.displayName then\
        acType = desc.displayName\
    end\
\
    local txt = string.format(\
        \"着陸情報: %s\\n\" ..\
        \"機種: %s\\n\" ..\
        \"トリガーゾーン: %s\\n\" ..\
        \"着陸ズレ: %d m / 方位 %03d°（真）\",\
        playerName,\
        acType,\
        zoneDispName,\
        dist_m, brg_deg\
    )\
\
    trigger.action.outTextForCoalition(unit:getCoalition(), txt, 10)\
end\
\
world.addEventHandler(LandingTouchSimpleHandler)\
",
					["predicate"] = "a_do_script",
				}, -- end of [1]
			}, -- end of ["actions"]
			["predicate"] = "triggerOnce",
		}, -- end of [3]
		[4] = 
		{
			["rules"] = {},
			["eventlist"] = "",
			["actions"] = 
			{
				[1] = 
				{
					["text"] = "----------------------------------------------------------------\
-- Nevada DEAD精度ログスクリプト（砲弾以外の武器 + 磁方位BRA + 機体別F10）\
-- ・砲弾以外の武器：着弾地点から最寄りSAMへのズレ＋BRA(磁方位)\
-- ・SAM位置はミッション開始時点で固定（撃破されても座標は残す）\
-- ・あまりにも遠い命中は「目標N/A」にする\
----------------------------------------------------------------\
\
-----------------------------\
-- 設定：対象SAMユニット名\
--  ※ミッションエディタでユニット名を一致させること\
-----------------------------\
local DEAD_TARGET_UNIT_NAMES = {\
    \"SA2_SITE_1\",  -- SA-2 サイト\
    \"SA22_1\",      -- SA-22 #1\
    \"SA22_2\",      -- SA-22 #2\
}\
\
-- SAMと紐づける最大距離 (m)\
-- これより離れていたら「目標N/A」として扱う\
local DEAD_MAX_ASSIGN_DIST = 1500  -- 1.5 km\
\
-------------------------------------------------\
-- ネバダ用 磁偏角（deg）\
--  東偏を +、西偏を - として指定する\
-------------------------------------------------\
local MAGVAR_DEG = 12.0\
\
-------------------------------------------------\
-- 砲弾以外の武器かどうか判定\
-------------------------------------------------\
local function isTrackedWeapon(weapon)\
    if not weapon or not weapon.getDesc then\
        return false\
    end\
\
    local desc = weapon:getDesc()\
    if not desc or desc.category == nil then\
        return false\
    end\
\
    -- desc.category:\
    -- 0 = shell（砲弾）\
    -- 1 = missile\
    -- 2 = rocket\
    -- 3 = bomb\
    --\
    -- 砲弾だけ除外。それ以外はすべて記録。\
    if desc.category == 0 then\
        return false\
    end\
\
    return true\
end\
\
-------------------------------------------------\
-- ユーティリティ\
-------------------------------------------------\
local function get2DDistance(p1, p2)\
    if not p1 or not p2 then return nil end\
    local dx = p1.x - p2.x\
    local dz = p1.z - p2.z\
    return math.sqrt(dx * dx + dz * dz)\
end\
\
-- 真方位（北=0°, 時計回り）\
local function getTrueBearingDeg(fromPoint, toPoint)\
    if not fromPoint or not toPoint then return nil end\
    local dx = toPoint.x - fromPoint.x  -- 東\
    local dz = toPoint.z - fromPoint.z  -- 北\
    local brg = math.deg(math.atan2(dx, dz))\
    if brg < 0 then\
        brg = brg + 360\
    end\
    return brg\
end\
\
-- 磁方位（東偏 + / 西偏 -）\
local function getMagneticBearingDeg(fromPoint, toPoint)\
    local trueBrg = getTrueBearingDeg(fromPoint, toPoint)\
    if not trueBrg then return nil end\
    -- true = mag + variation（東偏）\
    -- → mag = true - variation\
    local magBrg = trueBrg - MAGVAR_DEG\
    magBrg = magBrg % 360\
    if magBrg < 0 then\
        magBrg = magBrg + 360\
    end\
    return magBrg\
end\
\
----------------------------------------------------------------\
-- SAM座標テーブル（ミッション開始時に固定）\
----------------------------------------------------------------\
local DEAD_TARGETS = {}  -- { { name=..., point=... }, ... }\
\
local function initDeadTargets()\
    DEAD_TARGETS = {}\
    for _, unitName in ipairs(DEAD_TARGET_UNIT_NAMES) do\
        local u = Unit.getByName(unitName)\
        if u then\
            local p = u:getPoint()\
            table.insert(DEAD_TARGETS, {\
                name  = unitName,\
                point = { x = p.x, y = p.y, z = p.z }  -- 座標コピー\
            })\
        else\
            env.info(\"DEAD: Unit not found for target '\" .. unitName .. \"'\")\
        end\
    end\
end\
\
-- 指定SAM群の中から最寄りターゲットを探す（撃破後も座標は残る）\
local function findNearestTarget(point)\
    if not point or #DEAD_TARGETS == 0 then return nil, nil end\
\
    local nearestName  = nil\
    local nearestPoint = nil\
    local nearestDist  = nil\
\
    for _, t in ipairs(DEAD_TARGETS) do\
        local tp = t.point\
        local d  = get2DDistance(point, tp)\
        if d and (not nearestDist or d < nearestDist) then\
            nearestDist  = d\
            nearestName  = t.name\
            nearestPoint = tp\
        end\
    end\
\
    -- あまりにも遠い場合は「目標無し」にする\
    if nearestDist and nearestDist <= DEAD_MAX_ASSIGN_DIST then\
        return nearestPoint, nearestName\
    else\
        return nil, nil\
    end\
end\
\
----------------------------------------------------------------\
-- DEAD精度モジュール本体\
----------------------------------------------------------------\
WeaponAccuracy = {\
    shots      = {},  -- [weaponId] = shotData（飛行中の武器）\
    results    = {},  -- 記録済みの結果\
    groupMenus = {}   -- F10メニューを作ったグループID\
}\
\
-- 武器追跡：消えた瞬間を着弾扱い\
function WeaponAccuracy.startTrack(weaponId, weapon)\
    local function trackFunc(arg, time)\
        local shot = WeaponAccuracy.shots[weaponId]\
        if not shot then\
            return\
        end\
\
        -- 武器が消えた＝着弾とみなす\
        if not weapon or not weapon:isExist() then\
            if arg.lastPos then\
                shot.impactPoint = arg.lastPos\
\
                -- ★ 着弾地点から最寄りSAMを決定（撃破済みでもOK）\
                local tPoint, tName = findNearestTarget(shot.impactPoint)\
                shot.targetPoint = tPoint\
                shot.targetName  = tName\
\
                if shot.targetPoint then\
                    local miss = get2DDistance(shot.impactPoint, shot.targetPoint)\
                    shot.miss = miss\
                    -- BRA（磁方位：目標 → 着弾点）\
                    shot.bearingMag = getMagneticBearingDeg(shot.targetPoint, shot.impactPoint)\
                end\
\
                table.insert(WeaponAccuracy.results, {\
                    shooter        = shot.shooter,\
                    shooterUnit    = shot.shooterUnit,\
                    shooterGroup   = shot.shooterGroup,\
                    shooterGroupId = shot.shooterGroupId,\
                    shooterSide    = shot.shooterSide,\
                    weaponName     = shot.weaponName,\
                    targetName     = shot.targetName or \"N/A\",\
                    miss           = shot.miss,\
                    bearingMag     = shot.bearingMag,\
                    impactPoint    = shot.impactPoint,\
                    targetPoint    = shot.targetPoint,\
                })\
            end\
\
            return\
        end\
\
        -- まだ飛行中 → 位置更新して0.1秒後に再チェック\
        arg.lastPos = weapon:getPoint()\
        return time + 0.1\
    end\
\
    local p = weapon:getPoint()\
    timer.scheduleFunction(trackFunc, { lastPos = p }, timer.getTime() + 0.1)\
end\
\
-- 結果フォーマット（グループ絞り込み可）\
function WeaponAccuracy.formatResultLines(filterGroupId)\
    local lines = {}\
    local idx = 1\
\
    for _, r in ipairs(WeaponAccuracy.results) do\
        if (not filterGroupId) or (r.shooterGroupId == filterGroupId) then\
            local missStrM = r.miss and string.format(\"%.1f m\", r.miss) or \"N/A\"\
            local bearingStr = r.bearingMag and string.format(\"%03.0f°\", r.bearingMag) or \"N/A\"\
            local rangeStrNm = \"N/A\"\
            if r.miss then\
                local nm = r.miss / 1852\
                rangeStrNm = string.format(\"%.2f nm\", nm)\
            end\
\
            local line = string.format(\
                \"%02d) 射手: %s / 兵器: %s / 目標: %s\\n    ズレ: %s / BRA(磁方位・目標→着弾): %s/%s\",\
                idx,\
                r.shooter or \"Unknown\",\
                r.weaponName or \"Unknown\",\
                r.targetName or \"N/A\",\
                missStrM,\
                bearingStr,\
                rangeStrNm\
            )\
\
            table.insert(lines, line)\
            idx = idx + 1\
        end\
    end\
\
    return lines\
end\
\
function WeaponAccuracy.showAccuracyForGroup(groupId)\
    local lines = WeaponAccuracy.formatResultLines(groupId)\
    if #lines == 0 then\
        trigger.action.outTextForGroup(groupId, \"まだ自機のDEAD精度データはありません。\", 15)\
        return\
    end\
    local txt = \"=== DEAD 精度ログ（自機のみ） ===\\n\" .. table.concat(lines, \"\\n\")\
    trigger.action.outTextForGroup(groupId, txt, 25)\
end\
\
function WeaponAccuracy.showAccuracyForCoalition(coa)\
    local lines = WeaponAccuracy.formatResultLines(nil)\
    if #lines == 0 then\
        trigger.action.outTextForCoalition(coa, \"まだDEAD精度データはありません。\", 15)\
        return\
    end\
    local txt = \"=== DEAD 精度ログ（味方全員） ===\\n\" .. table.concat(lines, \"\\n\")\
    trigger.action.outTextForCoalition(coa, txt, 25)\
end\
\
function WeaponAccuracy.clearAccuracyData(coa)\
    WeaponAccuracy.results = {}\
    WeaponAccuracy.shots   = {}\
    trigger.action.outTextForCoalition(coa, \"DEAD精度ログをクリアしました。\", 10)\
end\
\
----------------------------------------------------------------\
-- イベントハンドラ\
----------------------------------------------------------------\
WeaponAccuracyHandler = {}\
\
function WeaponAccuracyHandler:onEvent(event)\
    -------------------------------------------------------------\
    -- 武器発射：砲弾以外を全部トラッキング開始\
    -------------------------------------------------------------\
    if event.id == world.event.S_EVENT_SHOT and event.weapon then\
        local weapon = event.weapon\
        if not isTrackedWeapon(weapon) then\
            return\
        end\
\
        local shooter        = event.initiator\
        local shooterName    = \"Unknown\"\
        local shooterUnit    = nil\
        local shooterGroup   = nil\
        local shooterGroupId = nil\
        local shooterSide    = nil\
\
        if shooter and shooter:isExist() then\
            shooterUnit = shooter:getName()\
            local group = shooter:getGroup()\
            if group then\
                shooterGroup   = group:getName()\
                shooterGroupId = group:getID()\
                shooterSide    = group:getCoalition()\
            end\
\
            local pn = shooter:getPlayerName()\
            if pn then\
                shooterName = pn\
            elseif shooterUnit then\
                shooterName = shooterUnit\
            end\
        end\
\
        local weaponName = weapon:getTypeName() or \"UnknownWeapon\"\
        local weaponId = weapon:getName()\
        if not weaponId or weaponId == \"\" then\
            weaponId = tostring(weapon)\
        end\
\
        WeaponAccuracy.shots[weaponId] = {\
            shooter        = shooterName,\
            shooterUnit    = shooterUnit,\
            shooterGroup   = shooterGroup,\
            shooterGroupId = shooterGroupId,\
            shooterSide    = shooterSide,\
            weaponName     = weaponName,\
            targetName     = nil,\
            targetPoint    = nil,\
            impactPoint    = nil,\
            miss           = nil,\
            bearingMag     = nil,\
        }\
\
        WeaponAccuracy.startTrack(weaponId, weapon)\
\
        -- グループ専用メニュー作成（初回のみ）\
        if shooterGroupId and not WeaponAccuracy.groupMenus[shooterGroupId] then\
            local root = missionCommands.addSubMenuForGroup(\
                shooterGroupId,\
                \"DEAD精度ツール\"\
            )\
\
            -- DEAD：自機のみ\
            missionCommands.addCommandForGroup(\
                shooterGroupId,\
                \"自機のDEAD結果表示\",\
                root,\
                function()\
                    WeaponAccuracy.showAccuracyForGroup(shooterGroupId)\
                end\
            )\
\
            -- DEAD：味方全体\
            if shooterSide then\
                missionCommands.addCommandForGroup(\
                    shooterGroupId,\
                    \"全体DEAD結果表示（味方）\",\
                    root,\
                    function()\
                        WeaponAccuracy.showAccuracyForCoalition(shooterSide)\
                    end\
                )\
            end\
\
            -- DEADログクリア\
            if shooterSide then\
                missionCommands.addCommandForGroup(\
                    shooterGroupId,\
                    \"DEADログをクリア\",\
                    root,\
                    function()\
                        WeaponAccuracy.clearAccuracyData(shooterSide)\
                    end\
                )\
            end\
\
            WeaponAccuracy.groupMenus[shooterGroupId] = true\
        end\
    end\
end\
\
world.addEventHandler(WeaponAccuracyHandler)\
\
-- ★ SAM座標初期化（ミッション開始時点）\
initDeadTargets()\
\
----------------------------------------------------------------\
-- ここまで\
----------------------------------------------------------------\
",
					["predicate"] = "a_do_script",
				}, -- end of [1]
			}, -- end of ["actions"]
			["predicate"] = "triggerOnce",
			["comment"] = "DEAD BDA",
		}, -- end of [4]
	}, -- end of ["trigrules"]
	["currentKey"] = 211669,
	["failures"] = 
	{
		["hydro"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "hydro",
			["mm"] = 0,
		}, -- end of ["hydro"]
		["ecm"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "ecm",
			["mm"] = 0,
		}, -- end of ["ecm"]
		["l_engine"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "l_engine",
			["mm"] = 0,
		}, -- end of ["l_engine"]
		["autopilot"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "autopilot",
			["mm"] = 0,
		}, -- end of ["autopilot"]
		["hud"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "hud",
			["mm"] = 0,
		}, -- end of ["hud"]
		["asc"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "asc",
			["mm"] = 0,
		}, -- end of ["asc"]
		["mlws"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "mlws",
			["mm"] = 0,
		}, -- end of ["mlws"]
		["r_engine"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "r_engine",
			["mm"] = 0,
		}, -- end of ["r_engine"]
		["mfd"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "mfd",
			["mm"] = 0,
		}, -- end of ["mfd"]
		["rws"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "rws",
			["mm"] = 0,
		}, -- end of ["rws"]
		["radar"] = 
		{
			["hh"] = 0,
			["prob"] = 100,
			["enable"] = false,
			["mmint"] = 1,
			["id"] = "radar",
			["mm"] = 0,
		}, -- end of ["radar"]
	}, -- end of ["failures"]
	["forcedOptions"] = 
	{
		["geffect"] = "realistic",
		["radio"] = false,
		["cockpitVisualRM"] = false,
		["unrestrictedSATNAV"] = true,
		["spottingDot"] = 2,
		["birds"] = 0,
		["miniHUD"] = false,
		["userMarks"] = true,
		["accidental_failures"] = true,
		["optionsView"] = "optview_allies",
		["RBDAI"] = false,
		["civTraffic"] = "",
		["easyCommunication"] = false,
		["wakeTurbulence"] = true,
		["labels"] = 0,
	}, -- end of ["forcedOptions"]
	["start_time"] = 25200,
} -- end of mission
