Skip to content

Instantly share code, notes, and snippets.

@ZingBallyhoo
Last active August 23, 2024 20:26
Show Gist options
  • Save ZingBallyhoo/bb157f944be153319587f6e0d250ed3a to your computer and use it in GitHub Desktop.
Save ZingBallyhoo/bb157f944be153319587f6e0d250ed3a to your computer and use it in GitHub Desktop.
datatool area importer
import bpy
import bpy_extras
import json
import mathutils
with open('D:\\ow\\dump\\2.12\\MapObjectives\\Areas.json', 'r') as file:
data = json.load(file)
target_map_name = "Temple of Anubis - A03A - Deathmatch"
def create_cube(translation, orientation_quat, extents, collection, cubeIndex):
bpy.ops.mesh.primitive_cube_add(size=2)
cube = bpy.context.object
cube.location = translation
cube.rotation_euler = orientation_quat.to_euler('XYZ')
cube.name = "Box." + str(cubeIndex)
cube.scale = extents
for other_col in cube.users_collection:
other_col.objects.unlink(cube) # remove from outer collection
collection.objects.link(cube)
# (conversion between y-up and z-up, from io_scene_owm)
def pos_matrix(pos):
acm = bpy_extras.io_utils.axis_conversion(from_forward='-Z', from_up='Y').to_4x4()
posMtx = mathutils.Matrix.Translation(pos)
mtx = acm @ posMtx
return mtx.to_translation()
# (conversion between y-up and z-up, from io_scene_owm)
def wxzy(vec):
return vec[3], vec[0], -vec[2], vec[1]
# (conversion between y-up and z-up, from io_scene_owm)
def xpzy(vec):
return vec[0], vec[2], vec[1]
for map_data in data:
if map_data['MapName'] != target_map_name:
continue
areaList = map_data['Areas']
for areaObj in areaList:
areaUUID = areaObj["UUID"]
boxes = areaObj["Boxes"]
areaCollection = bpy.data.collections.new(f"Area {areaUUID}")
bpy.context.scene.collection.children.link(areaCollection)
i = 0
for box in boxes:
i = i + 1
create_cube(
pos_matrix(box['Translation']),
mathutils.Quaternion(wxzy(box['Orientation'])),
xpzy(box['Extents']),
areaCollection,
i)
[
{
"MapName": "Temple of Anubis - A03A - Deathmatch",
"Areas": [
{
"UUID": "e7472f83-fef2-430a-b4ba-1806641c5bd0",
"Boxes": [
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-6.874178,
6.9251924,
111.39737
],
"Extents": [
9.930713,
3.1701713,
5.808311
]
},
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-5.360113,
13.231315,
111.21688
],
"Extents": [
8.409362,
3.4963808,
5.910601
]
},
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-14.448416,
13.522324,
114.16676
],
"Extents": [
2.2239208,
3.2969766,
3.4326117
]
}
]
},
{
"UUID": "d83045a1-68ef-479b-b25b-1137c2f0a853",
"Boxes": [
{
"Orientation": [
0.0,
-0.37875003,
0.0,
0.92549926
],
"Translation": [
-45.35216,
5.8627663,
43.23094
],
"Extents": [
5.333434,
4.9332523,
7.3992333
]
},
{
"Orientation": [
0.0,
-0.41892928,
0.0,
0.908019
],
"Translation": [
-41.86658,
5.9159966,
46.60295
],
"Extents": [
1.0917081,
4.880025,
7.3836517
]
},
{
"Orientation": [
0.0,
-0.33784363,
0.0,
0.9412025
],
"Translation": [
-48.554817,
5.807129,
39.948895
],
"Extents": [
0.99108404,
4.9889026,
7.2335186
]
}
]
}
]
},
{
"MapName": "Temple of Anubis - A03A - Team Deathmatch",
"Areas": [
{
"UUID": "e7472f83-fef2-430a-b4ba-1806641c5bd0",
"Boxes": [
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-6.874178,
6.9251924,
111.39737
],
"Extents": [
9.930713,
3.1701713,
5.808311
]
},
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-5.360113,
13.231315,
111.21688
],
"Extents": [
8.409362,
3.4963808,
5.910601
]
},
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-14.448416,
13.522324,
114.16676
],
"Extents": [
2.2239208,
3.2969766,
3.4326117
]
}
]
},
{
"UUID": "d83045a1-68ef-479b-b25b-1137c2f0a853",
"Boxes": [
{
"Orientation": [
0.0,
-0.37875003,
0.0,
0.92549926
],
"Translation": [
-45.35216,
5.8627663,
43.23094
],
"Extents": [
5.333434,
4.9332523,
7.3992333
]
},
{
"Orientation": [
0.0,
-0.41892928,
0.0,
0.908019
],
"Translation": [
-41.86658,
5.9159966,
46.60295
],
"Extents": [
1.0917081,
4.880025,
7.3836517
]
},
{
"Orientation": [
0.0,
-0.33784363,
0.0,
0.9412025
],
"Translation": [
-48.554817,
5.807129,
39.948895
],
"Extents": [
0.99108404,
4.9889026,
7.2335186
]
}
]
}
]
},
{
"MapName": "Temple of Anubis - A03A - Bounty Hunter",
"Areas": [
{
"UUID": "e7472f83-fef2-430a-b4ba-1806641c5bd0",
"Boxes": [
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-6.874178,
6.9251924,
111.39737
],
"Extents": [
9.930713,
3.1701713,
5.808311
]
},
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-5.360113,
13.231315,
111.21688
],
"Extents": [
8.409362,
3.4963808,
5.910601
]
},
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-14.448416,
13.522324,
114.16676
],
"Extents": [
2.2239208,
3.2969766,
3.4326117
]
}
]
},
{
"UUID": "d83045a1-68ef-479b-b25b-1137c2f0a853",
"Boxes": [
{
"Orientation": [
0.0,
-0.37875003,
0.0,
0.92549926
],
"Translation": [
-45.35216,
5.8627663,
43.23094
],
"Extents": [
5.333434,
4.9332523,
7.3992333
]
},
{
"Orientation": [
0.0,
-0.41892928,
0.0,
0.908019
],
"Translation": [
-41.86658,
5.9159966,
46.60295
],
"Extents": [
1.0917081,
4.880025,
7.3836517
]
},
{
"Orientation": [
0.0,
-0.33784363,
0.0,
0.9412025
],
"Translation": [
-48.554817,
5.807129,
39.948895
],
"Extents": [
0.99108404,
4.9889026,
7.2335186
]
}
]
}
]
},
{
"MapName": "Temple of Anubis - A03A - Assault",
"Areas": [
{
"UUID": "e7472f83-fef2-430a-b4ba-1806641c5bd0",
"Boxes": [
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-6.874178,
6.9251924,
111.39737
],
"Extents": [
9.930713,
3.1701713,
5.808311
]
},
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-5.360113,
13.231315,
111.21688
],
"Extents": [
8.409362,
3.4963808,
5.910601
]
},
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-14.448416,
13.522324,
114.16676
],
"Extents": [
2.2239208,
3.2969766,
3.4326117
]
}
]
},
{
"UUID": "d83045a1-68ef-479b-b25b-1137c2f0a853",
"Boxes": [
{
"Orientation": [
0.0,
-0.37875003,
0.0,
0.92549926
],
"Translation": [
-45.35216,
5.8627663,
43.23094
],
"Extents": [
5.333434,
4.9332523,
7.3992333
]
},
{
"Orientation": [
0.0,
-0.41892928,
0.0,
0.908019
],
"Translation": [
-41.86658,
5.9159966,
46.60295
],
"Extents": [
1.0917081,
4.880025,
7.3836517
]
},
{
"Orientation": [
0.0,
-0.33784363,
0.0,
0.9412025
],
"Translation": [
-48.554817,
5.807129,
39.948895
],
"Extents": [
0.99108404,
4.9889026,
7.2335186
]
}
]
}
]
},
{
"MapName": "Temple of Anubis - A03A - Skirmish",
"Areas": [
{
"UUID": "e7472f83-fef2-430a-b4ba-1806641c5bd0",
"Boxes": [
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-6.874178,
6.9251924,
111.39737
],
"Extents": [
9.930713,
3.1701713,
5.808311
]
},
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-5.360113,
13.231315,
111.21688
],
"Extents": [
8.409362,
3.4963808,
5.910601
]
},
{
"Orientation": [
0.0,
0.02575481,
0.0,
0.9996683
],
"Translation": [
-14.448416,
13.522324,
114.16676
],
"Extents": [
2.2239208,
3.2969766,
3.4326117
]
}
]
},
{
"UUID": "d83045a1-68ef-479b-b25b-1137c2f0a853",
"Boxes": [
{
"Orientation": [
0.0,
-0.37875003,
0.0,
0.92549926
],
"Translation": [
-45.35216,
5.8627663,
43.23094
],
"Extents": [
5.333434,
4.9332523,
7.3992333
]
},
{
"Orientation": [
0.0,
-0.41892928,
0.0,
0.908019
],
"Translation": [
-41.86658,
5.9159966,
46.60295
],
"Extents": [
1.0917081,
4.880025,
7.3836517
]
},
{
"Orientation": [
0.0,
-0.33784363,
0.0,
0.9412025
],
"Translation": [
-48.554817,
5.807129,
39.948895
],
"Extents": [
0.99108404,
4.9889026,
7.2335186
]
}
]
}
]
},
{
"MapName": "King's Row - Night - Skirmish",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "King's Row - Evening - Hybrid",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "King's Row - Evening - Skirmish",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "King's Row - Night - Hybrid",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "King's Row - Evening - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "King's Row - Evening - Hybrid",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "King's Row - Night - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "King's Row - Night - Hybrid",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "King's Row - Night - Hybrid",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "King's Row - Evening - Hybrid",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "Hanamura - Evening - Deathmatch",
"Areas": [
{
"UUID": "33d21673-b719-428a-927e-abaccec633d9",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-3.933515,
6.220354,
0.9960196
],
"Extents": [
7.7596865,
6.1294365,
9.823242
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
1.28056,
6.220354,
9.926487
],
"Extents": [
2.5282636,
6.1294365,
0.80855405
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.322071,
6.220354,
9.926487
],
"Extents": [
2.4656014,
6.1294365,
0.80855405
]
}
]
},
{
"UUID": "b2c4e11c-f438-4c68-acca-70c66369dc2e",
"Boxes": [
{
"Orientation": [
0.0,
0.38410544,
0.0,
0.92328924
],
"Translation": [
-10.608284,
5.083041,
-84.46554
],
"Extents": [
7.881891,
6.8818994,
5.597294
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-16.260307,
1.9287689,
-90.16894
],
"Extents": [
7.677351,
3.7276278,
3.133648
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-18.251545,
-0.5577911,
-92.173645
],
"Extents": [
7.677351,
1.2410678,
0.90389776
]
}
]
}
]
},
{
"MapName": "Hanamura - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "33d21673-b719-428a-927e-abaccec633d9",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-3.933515,
6.220354,
0.9960196
],
"Extents": [
7.7596865,
6.1294365,
9.823242
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
1.28056,
6.220354,
9.926487
],
"Extents": [
2.5282636,
6.1294365,
0.80855405
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.322071,
6.220354,
9.926487
],
"Extents": [
2.4656014,
6.1294365,
0.80855405
]
}
]
},
{
"UUID": "b2c4e11c-f438-4c68-acca-70c66369dc2e",
"Boxes": [
{
"Orientation": [
0.0,
0.38410544,
0.0,
0.92328924
],
"Translation": [
-10.608284,
5.083041,
-84.46554
],
"Extents": [
7.881891,
6.8818994,
5.597294
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-16.260307,
1.9287689,
-90.16894
],
"Extents": [
7.677351,
3.7276278,
3.133648
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-18.251545,
-0.5577911,
-92.173645
],
"Extents": [
7.677351,
1.2410678,
0.90389776
]
}
]
}
]
},
{
"MapName": "Hanamura - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "33d21673-b719-428a-927e-abaccec633d9",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-3.933515,
6.220354,
0.9960196
],
"Extents": [
7.7596865,
6.1294365,
9.823242
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
1.28056,
6.220354,
9.926487
],
"Extents": [
2.5282636,
6.1294365,
0.80855405
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.322071,
6.220354,
9.926487
],
"Extents": [
2.4656014,
6.1294365,
0.80855405
]
}
]
},
{
"UUID": "b2c4e11c-f438-4c68-acca-70c66369dc2e",
"Boxes": [
{
"Orientation": [
0.0,
0.38410544,
0.0,
0.92328924
],
"Translation": [
-10.608284,
5.083041,
-84.46554
],
"Extents": [
7.881891,
6.8818994,
5.597294
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-16.260307,
1.9287689,
-90.16894
],
"Extents": [
7.677351,
3.7276278,
3.133648
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-18.251545,
-0.5577911,
-92.173645
],
"Extents": [
7.677351,
1.2410678,
0.90389776
]
}
]
}
]
},
{
"MapName": "Hanamura - Evening - Assault",
"Areas": [
{
"UUID": "33d21673-b719-428a-927e-abaccec633d9",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-3.933515,
6.220354,
0.9960196
],
"Extents": [
7.7596865,
6.1294365,
9.823242
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
1.28056,
6.220354,
9.926487
],
"Extents": [
2.5282636,
6.1294365,
0.80855405
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.322071,
6.220354,
9.926487
],
"Extents": [
2.4656014,
6.1294365,
0.80855405
]
}
]
},
{
"UUID": "b2c4e11c-f438-4c68-acca-70c66369dc2e",
"Boxes": [
{
"Orientation": [
0.0,
0.38410544,
0.0,
0.92328924
],
"Translation": [
-10.608284,
5.083041,
-84.46554
],
"Extents": [
7.881891,
6.8818994,
5.597294
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-16.260307,
1.9287689,
-90.16894
],
"Extents": [
7.677351,
3.7276278,
3.133648
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-18.251545,
-0.5577911,
-92.173645
],
"Extents": [
7.677351,
1.2410678,
0.90389776
]
}
]
}
]
},
{
"MapName": "Hanamura - Evening - Skirmish",
"Areas": [
{
"UUID": "33d21673-b719-428a-927e-abaccec633d9",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-3.933515,
6.220354,
0.9960196
],
"Extents": [
7.7596865,
6.1294365,
9.823242
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
1.28056,
6.220354,
9.926487
],
"Extents": [
2.5282636,
6.1294365,
0.80855405
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.322071,
6.220354,
9.926487
],
"Extents": [
2.4656014,
6.1294365,
0.80855405
]
}
]
},
{
"UUID": "b2c4e11c-f438-4c68-acca-70c66369dc2e",
"Boxes": [
{
"Orientation": [
0.0,
0.38410544,
0.0,
0.92328924
],
"Translation": [
-10.608284,
5.083041,
-84.46554
],
"Extents": [
7.881891,
6.8818994,
5.597294
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-16.260307,
1.9287689,
-90.16894
],
"Extents": [
7.677351,
3.7276278,
3.133648
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-18.251545,
-0.5577911,
-92.173645
],
"Extents": [
7.677351,
1.2410678,
0.90389776
]
}
]
}
]
},
{
"MapName": "Numbani - Morning - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "ecde79f0-f63e-401e-87ad-e284f2e27f8d",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268343,
0.0,
0.92387956
],
"Translation": [
87.33963,
5.03551,
-1.5506862
],
"Extents": [
9.474852,
5.67947,
6.6666374
]
}
]
}
]
},
{
"MapName": "Numbani - Morning - Hybrid",
"Areas": [
{
"UUID": "ecde79f0-f63e-401e-87ad-e284f2e27f8d",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268343,
0.0,
0.92387956
],
"Translation": [
87.33963,
5.03551,
-1.5506862
],
"Extents": [
9.474852,
5.67947,
6.6666374
]
}
]
}
]
},
{
"MapName": "Numbani - Morning - Skirmish",
"Areas": [
{
"UUID": "ecde79f0-f63e-401e-87ad-e284f2e27f8d",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268343,
0.0,
0.92387956
],
"Translation": [
87.33963,
5.03551,
-1.5506862
],
"Extents": [
9.474852,
5.67947,
6.6666374
]
}
]
}
]
},
{
"MapName": "Numbani - Morning - Hybrid",
"Areas": [
{
"UUID": "ecde79f0-f63e-401e-87ad-e284f2e27f8d",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268343,
0.0,
0.92387956
],
"Translation": [
87.33963,
5.03551,
-1.5506862
],
"Extents": [
9.474852,
5.67947,
6.6666374
]
}
]
}
]
},
{
"MapName": "Volskaya Industries - Evening - Deathmatch",
"Areas": [
{
"UUID": "99dd6a95-8ceb-496d-ab57-e4cbda783b2e",
"Boxes": [
{
"Orientation": [
0.0,
-0.71005154,
0.0,
0.7041497
],
"Translation": [
-13.70234,
3.206756,
90.27573
],
"Extents": [
6.399865,
9.076378,
7.015433
]
}
]
},
{
"UUID": "2799fb84-a82d-49b7-af5f-86b0cb1b4a98",
"Boxes": [
{
"Orientation": [
0.0,
-0.87032664,
0.0,
0.4924749
],
"Translation": [
-94.18635,
-1.0055537,
49.4156
],
"Extents": [
7.75026,
2.023418,
7.6013346
]
},
{
"Orientation": [
0.0,
-0.87032664,
0.0,
0.4924749
],
"Translation": [
-95.23517,
3.9746017,
48.670113
],
"Extents": [
7.6512847,
3.2395074,
6.3183813
]
}
]
}
]
},
{
"MapName": "Volskaya Industries - Evening - Skirmish",
"Areas": [
{
"UUID": "99dd6a95-8ceb-496d-ab57-e4cbda783b2e",
"Boxes": [
{
"Orientation": [
0.0,
-0.71005154,
0.0,
0.7041497
],
"Translation": [
-13.70234,
3.206756,
90.27573
],
"Extents": [
6.399865,
9.076378,
7.015433
]
}
]
},
{
"UUID": "2799fb84-a82d-49b7-af5f-86b0cb1b4a98",
"Boxes": [
{
"Orientation": [
0.0,
-0.87032664,
0.0,
0.4924749
],
"Translation": [
-94.18635,
-1.0055537,
49.4156
],
"Extents": [
7.75026,
2.023418,
7.6013346
]
},
{
"Orientation": [
0.0,
-0.87032664,
0.0,
0.4924749
],
"Translation": [
-95.23517,
3.9746017,
48.670113
],
"Extents": [
7.6512847,
3.2395074,
6.3183813
]
}
]
}
]
},
{
"MapName": "Volskaya Industries - Evening - Assault",
"Areas": [
{
"UUID": "99dd6a95-8ceb-496d-ab57-e4cbda783b2e",
"Boxes": [
{
"Orientation": [
0.0,
-0.71005154,
0.0,
0.7041497
],
"Translation": [
-13.70234,
3.206756,
90.27573
],
"Extents": [
6.399865,
9.076378,
7.015433
]
}
]
},
{
"UUID": "2799fb84-a82d-49b7-af5f-86b0cb1b4a98",
"Boxes": [
{
"Orientation": [
0.0,
-0.87032664,
0.0,
0.4924749
],
"Translation": [
-94.18635,
-1.0055537,
49.4156
],
"Extents": [
7.75026,
2.023418,
7.6013346
]
},
{
"Orientation": [
0.0,
-0.87032664,
0.0,
0.4924749
],
"Translation": [
-95.23517,
3.9746017,
48.670113
],
"Extents": [
7.6512847,
3.2395074,
6.3183813
]
}
]
}
]
},
{
"MapName": "Volskaya Industries - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "99dd6a95-8ceb-496d-ab57-e4cbda783b2e",
"Boxes": [
{
"Orientation": [
0.0,
-0.71005154,
0.0,
0.7041497
],
"Translation": [
-13.70234,
3.206756,
90.27573
],
"Extents": [
6.399865,
9.076378,
7.015433
]
}
]
},
{
"UUID": "2799fb84-a82d-49b7-af5f-86b0cb1b4a98",
"Boxes": [
{
"Orientation": [
0.0,
-0.87032664,
0.0,
0.4924749
],
"Translation": [
-94.18635,
-1.0055537,
49.4156
],
"Extents": [
7.75026,
2.023418,
7.6013346
]
},
{
"Orientation": [
0.0,
-0.87032664,
0.0,
0.4924749
],
"Translation": [
-95.23517,
3.9746017,
48.670113
],
"Extents": [
7.6512847,
3.2395074,
6.3183813
]
}
]
}
]
},
{
"MapName": "Volskaya Industries - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "99dd6a95-8ceb-496d-ab57-e4cbda783b2e",
"Boxes": [
{
"Orientation": [
0.0,
-0.71005154,
0.0,
0.7041497
],
"Translation": [
-13.70234,
3.206756,
90.27573
],
"Extents": [
6.399865,
9.076378,
7.015433
]
}
]
},
{
"UUID": "2799fb84-a82d-49b7-af5f-86b0cb1b4a98",
"Boxes": [
{
"Orientation": [
0.0,
-0.87032664,
0.0,
0.4924749
],
"Translation": [
-94.18635,
-1.0055537,
49.4156
],
"Extents": [
7.75026,
2.023418,
7.6013346
]
},
{
"Orientation": [
0.0,
-0.87032664,
0.0,
0.4924749
],
"Translation": [
-95.23517,
3.9746017,
48.670113
],
"Extents": [
7.6512847,
3.2395074,
6.3183813
]
}
]
}
]
},
{
"MapName": "Hollywood - Morning - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "b6554c3e-08dc-4dba-b31e-14f5356e20a3",
"Boxes": [
{
"Orientation": [
0.0,
-0.26516765,
0.0,
0.9642024
],
"Translation": [
-24.52196,
6.4294877,
-1.4180632
],
"Extents": [
7.782058,
5.67947,
5.575978
]
}
]
}
]
},
{
"MapName": "Hollywood - Morning - Hybrid",
"Areas": [
{
"UUID": "b6554c3e-08dc-4dba-b31e-14f5356e20a3",
"Boxes": [
{
"Orientation": [
0.0,
-0.26516765,
0.0,
0.9642024
],
"Translation": [
-24.52196,
6.4294877,
-1.4180632
],
"Extents": [
7.782058,
5.67947,
5.575978
]
}
]
}
]
},
{
"MapName": "Hollywood - Night - Skirmish",
"Areas": [
{
"UUID": "b6554c3e-08dc-4dba-b31e-14f5356e20a3",
"Boxes": [
{
"Orientation": [
0.0,
-0.26516765,
0.0,
0.9642024
],
"Translation": [
-24.52196,
6.4294877,
-1.4180632
],
"Extents": [
7.782058,
5.67947,
5.575978
]
}
]
}
]
},
{
"MapName": "Hollywood - Night - Hybrid",
"Areas": [
{
"UUID": "b6554c3e-08dc-4dba-b31e-14f5356e20a3",
"Boxes": [
{
"Orientation": [
0.0,
-0.26516765,
0.0,
0.9642024
],
"Translation": [
-24.52196,
6.4294877,
-1.4180632
],
"Extents": [
7.782058,
5.67947,
5.575978
]
}
]
}
]
},
{
"MapName": "Hollywood - Morning - Skirmish",
"Areas": [
{
"UUID": "b6554c3e-08dc-4dba-b31e-14f5356e20a3",
"Boxes": [
{
"Orientation": [
0.0,
-0.26516765,
0.0,
0.9642024
],
"Translation": [
-24.52196,
6.4294877,
-1.4180632
],
"Extents": [
7.782058,
5.67947,
5.575978
]
}
]
}
]
},
{
"MapName": "Hollywood - Night - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "b6554c3e-08dc-4dba-b31e-14f5356e20a3",
"Boxes": [
{
"Orientation": [
0.0,
-0.26516765,
0.0,
0.9642024
],
"Translation": [
-24.52196,
6.4294877,
-1.4180632
],
"Extents": [
7.782058,
5.67947,
5.575978
]
}
]
}
]
},
{
"MapName": "Hollywood - Night - Hybrid",
"Areas": [
{
"UUID": "b6554c3e-08dc-4dba-b31e-14f5356e20a3",
"Boxes": [
{
"Orientation": [
0.0,
-0.26516765,
0.0,
0.9642024
],
"Translation": [
-24.52196,
6.4294877,
-1.4180632
],
"Extents": [
7.782058,
5.67947,
5.575978
]
}
]
}
]
},
{
"MapName": "Hollywood - Morning - Hybrid",
"Areas": [
{
"UUID": "b6554c3e-08dc-4dba-b31e-14f5356e20a3",
"Boxes": [
{
"Orientation": [
0.0,
-0.26516765,
0.0,
0.9642024
],
"Translation": [
-24.52196,
6.4294877,
-1.4180632
],
"Extents": [
7.782058,
5.67947,
5.575978
]
}
]
}
]
},
{
"MapName": "Nepal - Morning - Mirrorwatch Control",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
16.24625,
-0.011191368
],
"Extents": [
8.305351,
3.9905424,
8.38424
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-56.582283,
21.419384,
-0.106274
],
"Extents": [
2.4319859,
1.2098427,
5.147238
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-43.329395,
21.44728,
-0.023197018
],
"Extents": [
1.9382477,
1.1886864,
5.3865676
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.078907,
21.431389,
6.611381
],
"Extents": [
5.483368,
1.1893463,
2.1669526
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.00899,
21.444502,
-6.3619885
],
"Extents": [
5.240738,
1.194725,
2.2680135
]
},
{
"Orientation": [
0.0,
-0.9238795,
0.0,
0.38268343
],
"Translation": [
-50.05396,
21.14098,
-0.0028265156
],
"Extents": [
3.0375023,
1.4952669,
9.469162
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826835
],
"Translation": [
-49.97247,
21.250004,
-0.004493624
],
"Extents": [
9.444492,
1.3770714,
2.205044
]
}
]
},
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
},
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.21068,
133.03926,
-0.012011804
],
"Extents": [
5.1867557,
5.1683154,
7.787295
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.588455,
132.61868,
-0.041677304
],
"Extents": [
1.5642855,
5.6186895,
4.9354143
]
}
]
}
]
},
{
"MapName": "Nepal - Evening - Control",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
16.24625,
-0.011191368
],
"Extents": [
8.305351,
3.9905424,
8.38424
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-56.582283,
21.419384,
-0.106274
],
"Extents": [
2.4319859,
1.2098427,
5.147238
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-43.329395,
21.44728,
-0.023197018
],
"Extents": [
1.9382477,
1.1886864,
5.3865676
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.078907,
21.431389,
6.611381
],
"Extents": [
5.483368,
1.1893463,
2.1669526
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.00899,
21.444502,
-6.3619885
],
"Extents": [
5.240738,
1.194725,
2.2680135
]
},
{
"Orientation": [
0.0,
-0.9238795,
0.0,
0.38268343
],
"Translation": [
-50.05396,
21.14098,
-0.0028265156
],
"Extents": [
3.0375023,
1.4952669,
9.469162
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826835
],
"Translation": [
-49.97247,
21.250004,
-0.004493624
],
"Extents": [
9.444492,
1.3770714,
2.205044
]
}
]
},
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
},
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.21068,
133.03926,
-0.012011804
],
"Extents": [
5.1867557,
5.1683154,
7.787295
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.588455,
132.61868,
-0.041677304
],
"Extents": [
1.5642855,
5.6186895,
4.9354143
]
}
]
}
]
},
{
"MapName": "Nepal - Morning - Control",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
16.24625,
-0.011191368
],
"Extents": [
8.305351,
3.9905424,
8.38424
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-56.582283,
21.419384,
-0.106274
],
"Extents": [
2.4319859,
1.2098427,
5.147238
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-43.329395,
21.44728,
-0.023197018
],
"Extents": [
1.9382477,
1.1886864,
5.3865676
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.078907,
21.431389,
6.611381
],
"Extents": [
5.483368,
1.1893463,
2.1669526
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.00899,
21.444502,
-6.3619885
],
"Extents": [
5.240738,
1.194725,
2.2680135
]
},
{
"Orientation": [
0.0,
-0.9238795,
0.0,
0.38268343
],
"Translation": [
-50.05396,
21.14098,
-0.0028265156
],
"Extents": [
3.0375023,
1.4952669,
9.469162
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826835
],
"Translation": [
-49.97247,
21.250004,
-0.004493624
],
"Extents": [
9.444492,
1.3770714,
2.205044
]
}
]
},
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
},
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.21068,
133.03926,
-0.012011804
],
"Extents": [
5.1867557,
5.1683154,
7.787295
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.588455,
132.61868,
-0.041677304
],
"Extents": [
1.5642855,
5.6186895,
4.9354143
]
}
]
}
]
},
{
"MapName": "Nepal - Evening - Skirmish",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
16.24625,
-0.011191368
],
"Extents": [
8.305351,
3.9905424,
8.38424
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-56.582283,
21.419384,
-0.106274
],
"Extents": [
2.4319859,
1.2098427,
5.147238
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-43.329395,
21.44728,
-0.023197018
],
"Extents": [
1.9382477,
1.1886864,
5.3865676
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.078907,
21.431389,
6.611381
],
"Extents": [
5.483368,
1.1893463,
2.1669526
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.00899,
21.444502,
-6.3619885
],
"Extents": [
5.240738,
1.194725,
2.2680135
]
},
{
"Orientation": [
0.0,
-0.9238795,
0.0,
0.38268343
],
"Translation": [
-50.05396,
21.14098,
-0.0028265156
],
"Extents": [
3.0375023,
1.4952669,
9.469162
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826835
],
"Translation": [
-49.97247,
21.250004,
-0.004493624
],
"Extents": [
9.444492,
1.3770714,
2.205044
]
}
]
},
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
},
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.21068,
133.03926,
-0.012011804
],
"Extents": [
5.1867557,
5.1683154,
7.787295
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.588455,
132.61868,
-0.041677304
],
"Extents": [
1.5642855,
5.6186895,
4.9354143
]
}
]
}
]
},
{
"MapName": "Nepal - Evening - Mirrorwatch Control",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
16.24625,
-0.011191368
],
"Extents": [
8.305351,
3.9905424,
8.38424
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-56.582283,
21.419384,
-0.106274
],
"Extents": [
2.4319859,
1.2098427,
5.147238
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-43.329395,
21.44728,
-0.023197018
],
"Extents": [
1.9382477,
1.1886864,
5.3865676
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.078907,
21.431389,
6.611381
],
"Extents": [
5.483368,
1.1893463,
2.1669526
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.00899,
21.444502,
-6.3619885
],
"Extents": [
5.240738,
1.194725,
2.2680135
]
},
{
"Orientation": [
0.0,
-0.9238795,
0.0,
0.38268343
],
"Translation": [
-50.05396,
21.14098,
-0.0028265156
],
"Extents": [
3.0375023,
1.4952669,
9.469162
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826835
],
"Translation": [
-49.97247,
21.250004,
-0.004493624
],
"Extents": [
9.444492,
1.3770714,
2.205044
]
}
]
},
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
},
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.21068,
133.03926,
-0.012011804
],
"Extents": [
5.1867557,
5.1683154,
7.787295
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.588455,
132.61868,
-0.041677304
],
"Extents": [
1.5642855,
5.6186895,
4.9354143
]
}
]
}
]
},
{
"MapName": "Nepal - Evening - Control",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
16.24625,
-0.011191368
],
"Extents": [
8.305351,
3.9905424,
8.38424
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-56.582283,
21.419384,
-0.106274
],
"Extents": [
2.4319859,
1.2098427,
5.147238
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-43.329395,
21.44728,
-0.023197018
],
"Extents": [
1.9382477,
1.1886864,
5.3865676
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.078907,
21.431389,
6.611381
],
"Extents": [
5.483368,
1.1893463,
2.1669526
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.00899,
21.444502,
-6.3619885
],
"Extents": [
5.240738,
1.194725,
2.2680135
]
},
{
"Orientation": [
0.0,
-0.9238795,
0.0,
0.38268343
],
"Translation": [
-50.05396,
21.14098,
-0.0028265156
],
"Extents": [
3.0375023,
1.4952669,
9.469162
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826835
],
"Translation": [
-49.97247,
21.250004,
-0.004493624
],
"Extents": [
9.444492,
1.3770714,
2.205044
]
}
]
},
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
},
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.21068,
133.03926,
-0.012011804
],
"Extents": [
5.1867557,
5.1683154,
7.787295
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.588455,
132.61868,
-0.041677304
],
"Extents": [
1.5642855,
5.6186895,
4.9354143
]
}
]
}
]
},
{
"MapName": "Nepal - Morning - Skirmish",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
16.24625,
-0.011191368
],
"Extents": [
8.305351,
3.9905424,
8.38424
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-56.582283,
21.419384,
-0.106274
],
"Extents": [
2.4319859,
1.2098427,
5.147238
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-43.329395,
21.44728,
-0.023197018
],
"Extents": [
1.9382477,
1.1886864,
5.3865676
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.078907,
21.431389,
6.611381
],
"Extents": [
5.483368,
1.1893463,
2.1669526
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.00899,
21.444502,
-6.3619885
],
"Extents": [
5.240738,
1.194725,
2.2680135
]
},
{
"Orientation": [
0.0,
-0.9238795,
0.0,
0.38268343
],
"Translation": [
-50.05396,
21.14098,
-0.0028265156
],
"Extents": [
3.0375023,
1.4952669,
9.469162
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826835
],
"Translation": [
-49.97247,
21.250004,
-0.004493624
],
"Extents": [
9.444492,
1.3770714,
2.205044
]
}
]
},
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
},
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.21068,
133.03926,
-0.012011804
],
"Extents": [
5.1867557,
5.1683154,
7.787295
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.588455,
132.61868,
-0.041677304
],
"Extents": [
1.5642855,
5.6186895,
4.9354143
]
}
]
}
]
},
{
"MapName": "Nepal - Morning - Control",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
16.24625,
-0.011191368
],
"Extents": [
8.305351,
3.9905424,
8.38424
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-56.582283,
21.419384,
-0.106274
],
"Extents": [
2.4319859,
1.2098427,
5.147238
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-43.329395,
21.44728,
-0.023197018
],
"Extents": [
1.9382477,
1.1886864,
5.3865676
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.078907,
21.431389,
6.611381
],
"Extents": [
5.483368,
1.1893463,
2.1669526
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.371139E-08
],
"Translation": [
-50.00899,
21.444502,
-6.3619885
],
"Extents": [
5.240738,
1.194725,
2.2680135
]
},
{
"Orientation": [
0.0,
-0.9238795,
0.0,
0.38268343
],
"Translation": [
-50.05396,
21.14098,
-0.0028265156
],
"Extents": [
3.0375023,
1.4952669,
9.469162
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826835
],
"Translation": [
-49.97247,
21.250004,
-0.004493624
],
"Extents": [
9.444492,
1.3770714,
2.205044
]
}
]
},
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
},
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.21068,
133.03926,
-0.012011804
],
"Extents": [
5.1867557,
5.1683154,
7.787295
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.588455,
132.61868,
-0.041677304
],
"Extents": [
1.5642855,
5.6186895,
4.9354143
]
}
]
}
]
},
{
"MapName": "Tutorial - Evening - Tutorial",
"Areas": [
{
"UUID": "43005899-9a5d-42fa-9fd9-dfd5540c2eee",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-86.46647,
6.8904,
21.943089
],
"Extents": [
7.2214932,
4.3,
8.812566
]
}
]
}
]
},
{
"MapName": "Lijiang Tower - Night - Mirrorwatch Control",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Lijiang Tower - Dawn - Control",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Lijiang Tower - Night - Control",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Lijiang Tower - Night - Skirmish",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Lijiang Tower - Dawn - Control",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Lijiang Tower - Night - Control",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Lijiang Tower - Dawn - Mirrorwatch Control",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Lijiang Tower - Dawn - Skirmish",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Lijiang Tower - Dawn - Control",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Lijiang Tower - Night - Control",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Ilios - Morning - Mirrorwatch Control",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509038,
0.0,
0.98078537
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.017137168,
0.8312905,
0.011455959,
0.5554562
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204698,
0.19508347,
-0.0005209171,
0.98078316
],
"Translation": [
353.4209,
-22.664913,
-56.710217
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
},
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387974,
0.0,
0.3826835
],
"Translation": [
-208.1353,
3.043233,
-16.516434
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
},
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios - Evening - Control",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509038,
0.0,
0.98078537
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.017137168,
0.8312905,
0.011455959,
0.5554562
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204698,
0.19508347,
-0.0005209171,
0.98078316
],
"Translation": [
353.4209,
-22.664913,
-56.710217
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
},
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387974,
0.0,
0.3826835
],
"Translation": [
-208.1353,
3.043233,
-16.516434
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
},
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios - Morning - Control",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509038,
0.0,
0.98078537
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.017137168,
0.8312905,
0.011455959,
0.5554562
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204698,
0.19508347,
-0.0005209171,
0.98078316
],
"Translation": [
353.4209,
-22.664913,
-56.710217
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
},
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387974,
0.0,
0.3826835
],
"Translation": [
-208.1353,
3.043233,
-16.516434
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
},
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios - Evening - Skirmish",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509038,
0.0,
0.98078537
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.017137168,
0.8312905,
0.011455959,
0.5554562
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204698,
0.19508347,
-0.0005209171,
0.98078316
],
"Translation": [
353.4209,
-22.664913,
-56.710217
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
},
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387974,
0.0,
0.3826835
],
"Translation": [
-208.1353,
3.043233,
-16.516434
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
},
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios - Evening - Mirrorwatch Control",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509038,
0.0,
0.98078537
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.017137168,
0.8312905,
0.011455959,
0.5554562
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204698,
0.19508347,
-0.0005209171,
0.98078316
],
"Translation": [
353.4209,
-22.664913,
-56.710217
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
},
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387974,
0.0,
0.3826835
],
"Translation": [
-208.1353,
3.043233,
-16.516434
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
},
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios - Evening - Control",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509038,
0.0,
0.98078537
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.017137168,
0.8312905,
0.011455959,
0.5554562
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204698,
0.19508347,
-0.0005209171,
0.98078316
],
"Translation": [
353.4209,
-22.664913,
-56.710217
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
},
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387974,
0.0,
0.3826835
],
"Translation": [
-208.1353,
3.043233,
-16.516434
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
},
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios - Morning - Skirmish",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509038,
0.0,
0.98078537
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.017137168,
0.8312905,
0.011455959,
0.5554562
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204698,
0.19508347,
-0.0005209171,
0.98078316
],
"Translation": [
353.4209,
-22.664913,
-56.710217
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
},
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387974,
0.0,
0.3826835
],
"Translation": [
-208.1353,
3.043233,
-16.516434
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
},
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios - Morning - Control",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509038,
0.0,
0.98078537
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.017137168,
0.8312905,
0.011455959,
0.5554562
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204698,
0.19508347,
-0.0005209171,
0.98078316
],
"Translation": [
353.4209,
-22.664913,
-56.710217
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
},
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387974,
0.0,
0.3826835
],
"Translation": [
-208.1353,
3.043233,
-16.516434
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
},
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Eichenwalde - Morning - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "6476a523-ca4e-477e-82fd-795a66930cbb",
"Boxes": [
{
"Orientation": [
0.0,
0.9807855,
0.0,
0.19509026
],
"Translation": [
11.348828,
8.142797,
-72.16461
],
"Extents": [
5.731164,
3.1087942,
6.851138
]
}
]
}
]
},
{
"MapName": "Eichenwalde - Morning - Hybrid",
"Areas": [
{
"UUID": "6476a523-ca4e-477e-82fd-795a66930cbb",
"Boxes": [
{
"Orientation": [
0.0,
0.9807855,
0.0,
0.19509026
],
"Translation": [
11.348828,
8.142797,
-72.16461
],
"Extents": [
5.731164,
3.1087942,
6.851138
]
}
]
}
]
},
{
"MapName": "Eichenwalde - Evening - Hybrid",
"Areas": [
{
"UUID": "6476a523-ca4e-477e-82fd-795a66930cbb",
"Boxes": [
{
"Orientation": [
0.0,
0.9807855,
0.0,
0.19509026
],
"Translation": [
11.348828,
8.142797,
-72.16461
],
"Extents": [
5.731164,
3.1087942,
6.851138
]
}
]
}
]
},
{
"MapName": "Eichenwalde - Evening - Skirmish",
"Areas": [
{
"UUID": "6476a523-ca4e-477e-82fd-795a66930cbb",
"Boxes": [
{
"Orientation": [
0.0,
0.9807855,
0.0,
0.19509026
],
"Translation": [
11.348828,
8.142797,
-72.16461
],
"Extents": [
5.731164,
3.1087942,
6.851138
]
}
]
}
]
},
{
"MapName": "Eichenwalde - Morning - Skirmish",
"Areas": [
{
"UUID": "6476a523-ca4e-477e-82fd-795a66930cbb",
"Boxes": [
{
"Orientation": [
0.0,
0.9807855,
0.0,
0.19509026
],
"Translation": [
11.348828,
8.142797,
-72.16461
],
"Extents": [
5.731164,
3.1087942,
6.851138
]
}
]
}
]
},
{
"MapName": "Eichenwalde - Evening - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "6476a523-ca4e-477e-82fd-795a66930cbb",
"Boxes": [
{
"Orientation": [
0.0,
0.9807855,
0.0,
0.19509026
],
"Translation": [
11.348828,
8.142797,
-72.16461
],
"Extents": [
5.731164,
3.1087942,
6.851138
]
}
]
}
]
},
{
"MapName": "Eichenwalde - Evening - Hybrid",
"Areas": [
{
"UUID": "6476a523-ca4e-477e-82fd-795a66930cbb",
"Boxes": [
{
"Orientation": [
0.0,
0.9807855,
0.0,
0.19509026
],
"Translation": [
11.348828,
8.142797,
-72.16461
],
"Extents": [
5.731164,
3.1087942,
6.851138
]
}
]
}
]
},
{
"MapName": "Eichenwalde - Morning - Hybrid",
"Areas": [
{
"UUID": "6476a523-ca4e-477e-82fd-795a66930cbb",
"Boxes": [
{
"Orientation": [
0.0,
0.9807855,
0.0,
0.19509026
],
"Translation": [
11.348828,
8.142797,
-72.16461
],
"Extents": [
5.731164,
3.1087942,
6.851138
]
}
]
}
]
},
{
"MapName": "Oasis - Night - Mirrorwatch Control",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Morning - Mirrorwatch Control",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Night - Control",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Evening - Control",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Night - Skirmish",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Morning - Control",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Evening - Skirmish",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Evening - Mirrorwatch Control",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Evening - Control",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Morning - Skirmish",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Night - Control",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis - Morning - Control",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
-0.19509035,
0.0,
0.98078537
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.1950902,
0.0,
0.9807853
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.38268328,
0.0,
0.9238796
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.5555701,
0.0,
0.8314697
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.7071068
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
},
{
"Orientation": [
0.0,
0.8314696,
0.0,
0.55557024
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.775,
3.9,
2.35
]
}
]
},
{
"UUID": "f4d25185-4cff-4ac7-81ff-2f55d7f6bdab",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238797,
0.0,
-0.3826836
],
"Translation": [
121.05253,
8.1322155,
-227.42566
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
},
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Hollywood (Halloween) - Evening - Hybrid",
"Areas": [
{
"UUID": "b6554c3e-08dc-4dba-b31e-14f5356e20a3",
"Boxes": [
{
"Orientation": [
0.0,
-0.26516765,
0.0,
0.9642024
],
"Translation": [
-24.52196,
6.4294877,
-1.4180632
],
"Extents": [
7.782058,
5.67947,
5.575978
]
}
]
}
]
},
{
"MapName": "Hollywood (Halloween) - Evening - Skirmish",
"Areas": [
{
"UUID": "b6554c3e-08dc-4dba-b31e-14f5356e20a3",
"Boxes": [
{
"Orientation": [
0.0,
-0.26516765,
0.0,
0.9642024
],
"Translation": [
-24.52196,
6.4294877,
-1.4180632
],
"Extents": [
7.782058,
5.67947,
5.575978
]
}
]
}
]
},
{
"MapName": "King's Row (Winter) - Evening - Hybrid",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "King's Row (Winter) - Evening - Skirmish",
"Areas": [
{
"UUID": "4e50fd27-ef54-410c-92f1-db81a48f70e9",
"Boxes": [
{
"Orientation": [
0.0,
-0.08729292,
0.0,
0.99618274
],
"Translation": [
-19.031591,
4.7601404,
-34.03014
],
"Extents": [
6.062683,
5.5161915,
5.7555876
]
}
]
}
]
},
{
"MapName": "Hanamura (Winter) - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "33d21673-b719-428a-927e-abaccec633d9",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-3.933515,
6.220354,
0.9960196
],
"Extents": [
7.7596865,
6.1294365,
9.823242
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
1.28056,
6.220354,
9.926487
],
"Extents": [
2.5282636,
6.1294365,
0.80855405
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.322071,
6.220354,
9.926487
],
"Extents": [
2.4656014,
6.1294365,
0.80855405
]
}
]
},
{
"UUID": "b2c4e11c-f438-4c68-acca-70c66369dc2e",
"Boxes": [
{
"Orientation": [
0.0,
0.38410544,
0.0,
0.92328924
],
"Translation": [
-10.608284,
5.083041,
-84.46554
],
"Extents": [
7.881891,
6.8818994,
5.597294
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-16.260307,
1.9287689,
-90.16894
],
"Extents": [
7.677351,
3.7276278,
3.133648
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-18.251545,
-0.5577911,
-92.173645
],
"Extents": [
7.677351,
1.2410678,
0.90389776
]
}
]
}
]
},
{
"MapName": "Hanamura (Winter) - Evening - Assault",
"Areas": [
{
"UUID": "33d21673-b719-428a-927e-abaccec633d9",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-3.933515,
6.220354,
0.9960196
],
"Extents": [
7.7596865,
6.1294365,
9.823242
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
1.28056,
6.220354,
9.926487
],
"Extents": [
2.5282636,
6.1294365,
0.80855405
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.322071,
6.220354,
9.926487
],
"Extents": [
2.4656014,
6.1294365,
0.80855405
]
}
]
},
{
"UUID": "b2c4e11c-f438-4c68-acca-70c66369dc2e",
"Boxes": [
{
"Orientation": [
0.0,
0.38410544,
0.0,
0.92328924
],
"Translation": [
-10.608284,
5.083041,
-84.46554
],
"Extents": [
7.881891,
6.8818994,
5.597294
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-16.260307,
1.9287689,
-90.16894
],
"Extents": [
7.677351,
3.7276278,
3.133648
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-18.251545,
-0.5577911,
-92.173645
],
"Extents": [
7.677351,
1.2410678,
0.90389776
]
}
]
}
]
},
{
"MapName": "Hanamura (Winter) - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "33d21673-b719-428a-927e-abaccec633d9",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-3.933515,
6.220354,
0.9960196
],
"Extents": [
7.7596865,
6.1294365,
9.823242
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
1.28056,
6.220354,
9.926487
],
"Extents": [
2.5282636,
6.1294365,
0.80855405
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.322071,
6.220354,
9.926487
],
"Extents": [
2.4656014,
6.1294365,
0.80855405
]
}
]
},
{
"UUID": "b2c4e11c-f438-4c68-acca-70c66369dc2e",
"Boxes": [
{
"Orientation": [
0.0,
0.38410544,
0.0,
0.92328924
],
"Translation": [
-10.608284,
5.083041,
-84.46554
],
"Extents": [
7.881891,
6.8818994,
5.597294
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-16.260307,
1.9287689,
-90.16894
],
"Extents": [
7.677351,
3.7276278,
3.133648
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-18.251545,
-0.5577911,
-92.173645
],
"Extents": [
7.677351,
1.2410678,
0.90389776
]
}
]
}
]
},
{
"MapName": "Hanamura (Winter) - Evening - Skirmish",
"Areas": [
{
"UUID": "33d21673-b719-428a-927e-abaccec633d9",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-3.933515,
6.220354,
0.9960196
],
"Extents": [
7.7596865,
6.1294365,
9.823242
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
1.28056,
6.220354,
9.926487
],
"Extents": [
2.5282636,
6.1294365,
0.80855405
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.322071,
6.220354,
9.926487
],
"Extents": [
2.4656014,
6.1294365,
0.80855405
]
}
]
},
{
"UUID": "b2c4e11c-f438-4c68-acca-70c66369dc2e",
"Boxes": [
{
"Orientation": [
0.0,
0.38410544,
0.0,
0.92328924
],
"Translation": [
-10.608284,
5.083041,
-84.46554
],
"Extents": [
7.881891,
6.8818994,
5.597294
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-16.260307,
1.9287689,
-90.16894
],
"Extents": [
7.677351,
3.7276278,
3.133648
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-18.251545,
-0.5577911,
-92.173645
],
"Extents": [
7.677351,
1.2410678,
0.90389776
]
}
]
}
]
},
{
"MapName": "Hanamura (Winter) - Evening - Deathmatch",
"Areas": [
{
"UUID": "33d21673-b719-428a-927e-abaccec633d9",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-3.933515,
6.220354,
0.9960196
],
"Extents": [
7.7596865,
6.1294365,
9.823242
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
1.28056,
6.220354,
9.926487
],
"Extents": [
2.5282636,
6.1294365,
0.80855405
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.322071,
6.220354,
9.926487
],
"Extents": [
2.4656014,
6.1294365,
0.80855405
]
}
]
},
{
"UUID": "b2c4e11c-f438-4c68-acca-70c66369dc2e",
"Boxes": [
{
"Orientation": [
0.0,
0.38410544,
0.0,
0.92328924
],
"Translation": [
-10.608284,
5.083041,
-84.46554
],
"Extents": [
7.881891,
6.8818994,
5.597294
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-16.260307,
1.9287689,
-90.16894
],
"Extents": [
7.677351,
3.7276278,
3.133648
]
},
{
"Orientation": [
0.0,
0.38112578,
0.0,
0.9245232
],
"Translation": [
-18.251545,
-0.5577911,
-92.173645
],
"Extents": [
7.677351,
1.2410678,
0.90389776
]
}
]
}
]
},
{
"MapName": "Lijiang Tower (Lunar New Year) - Evening - Control",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Lijiang Tower (Lunar New Year) - Evening - Skirmish",
"Areas": [
{
"UUID": "ac243113-6d65-4367-90bb-060d8644b313",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.4901161E-07
],
"Translation": [
1.0218635,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
},
{
"UUID": "58c16b3f-f61e-4915-baa9-be0c584b9bc6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
},
{
"UUID": "6182911f-d738-4afc-8767-3f67675b25fa",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.98078525,
0.0,
-0.19509046
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268358
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.83146954,
0.0,
-0.5555704
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.70710665,
0.0,
-0.707107
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.55557,
0.0,
-0.8314698
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.38268313,
0.0,
-0.9238796
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
},
{
"Orientation": [
0.0,
0.19509,
0.0,
-0.9807854
],
"Translation": [
0.0,
272.61975,
280.0
],
"Extents": [
8.2601185,
5.7576447,
1.6470288
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica - Morning - Freezethaw Elimination",
"Areas": [
{
"UUID": "54203ac9-fea0-4acc-b6d2-e743fba5fd19",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica - Morning - Elimination",
"Areas": [
{
"UUID": "54203ac9-fea0-4acc-b6d2-e743fba5fd19",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica - 9241 - Bounty Hunter",
"Areas": [
{
"UUID": "54203ac9-fea0-4acc-b6d2-e743fba5fd19",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica - 9241 - Team Deathmatch",
"Areas": [
{
"UUID": "54203ac9-fea0-4acc-b6d2-e743fba5fd19",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica - Morning - Deathmatch",
"Areas": [
{
"UUID": "54203ac9-fea0-4acc-b6d2-e743fba5fd19",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica - 9241 - Freezethaw Elimination",
"Areas": [
{
"UUID": "54203ac9-fea0-4acc-b6d2-e743fba5fd19",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica - Morning - Team Deathmatch",
"Areas": [
{
"UUID": "54203ac9-fea0-4acc-b6d2-e743fba5fd19",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica - Morning - Bounty Hunter",
"Areas": [
{
"UUID": "54203ac9-fea0-4acc-b6d2-e743fba5fd19",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica - 9241 - Elimination",
"Areas": [
{
"UUID": "54203ac9-fea0-4acc-b6d2-e743fba5fd19",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica - 9241 - Deathmatch",
"Areas": [
{
"UUID": "54203ac9-fea0-4acc-b6d2-e743fba5fd19",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Horizon Lunar Colony - 9241 - Starwatch_ Galactic Rescue",
"Areas": [
{
"UUID": "f4cd9677-1c7f-4c4f-b5b9-61c8c7971d4c",
"Boxes": [
{
"Orientation": [
3.2153205E-10,
-0.7222009,
-1.489768E-08,
0.6916841
],
"Translation": [
9.912881,
7.8559027,
-97.33144
],
"Extents": [
5.2188396,
4.5,
5.1321387
]
},
{
"Orientation": [
4.166378E-09,
-0.87661356,
-1.4306832E-08,
0.4811961
],
"Translation": [
10.209929,
7.8559084,
-99.48323
],
"Extents": [
5.132843,
4.5,
3.0324783
]
},
{
"Orientation": [
7.727294E-09,
-0.9712864,
-1.27410065E-08,
0.2379154
],
"Translation": [
6.7312365,
7.8559227,
-99.06798
],
"Extents": [
6.1778383,
4.5,
4.228982
]
},
{
"Orientation": [
3.2153266E-10,
-0.7222009,
-1.4897681E-08,
0.6916841
],
"Translation": [
6.6947117,
7.8559103,
-94.72457
],
"Extents": [
2.4755492,
4.5,
3.4077325
]
}
]
},
{
"UUID": "ca99a367-2157-4f30-a746-13f6f74b132d",
"Boxes": [
{
"Orientation": [
0.0,
0.2379159,
0.0,
0.9712862
],
"Translation": [
-3.45747,
12.000014,
-109.68721
],
"Extents": [
4.4474406,
3.2,
6.068211
]
},
{
"Orientation": [
0.0,
0.9601164,
0.0,
0.27960193
],
"Translation": [
1.3939648,
12.000018,
-112.214806
],
"Extents": [
4.674158,
3.2,
4.1652703
]
},
{
"Orientation": [
0.0,
0.2379159,
0.0,
0.9712862
],
"Translation": [
-3.421559,
12.000018,
-114.139084
],
"Extents": [
4.4474406,
3.2,
2.136919
]
}
]
},
{
"UUID": "10116bfa-7d0c-43d7-a44e-aa7d3d6376e0",
"Boxes": [
{
"Orientation": [
0.0,
0.85503495,
0.0,
0.5185707
],
"Translation": [
-25.109554,
7.529087,
-122.16244
],
"Extents": [
5.8856525,
5.5290823,
6.941246
]
}
]
},
{
"UUID": "fd4fac3f-ef2a-45a4-ba88-491853f32937",
"Boxes": [
{
"Orientation": [
-4.605835E-16,
0.5185708,
7.594233E-16,
-0.8550348
],
"Translation": [
-46.844616,
8.000002,
-112.09167
],
"Extents": [
5.6295557,
4.0,
6.0653405
]
}
]
},
{
"UUID": "36041344-d135-4c12-b2fa-34a1d8496431",
"Boxes": [
{
"Orientation": [
3.2154782E-10,
-0.72220093,
-1.4897689E-08,
0.6916838
],
"Translation": [
72.321526,
17.000034,
-68.32629
],
"Extents": [
9.396567,
3.0,
3.4369147
]
}
]
},
{
"UUID": "2aa73486-3036-4893-b350-b1ccceba9013",
"Boxes": [
{
"Orientation": [
3.2154865E-10,
-0.72220093,
-1.489769E-08,
0.6916838
],
"Translation": [
57.46065,
8.000016,
-71.27865
],
"Extents": [
7.3118014,
5.0,
5.948041
]
}
]
},
{
"UUID": "b2c78d00-d1e4-4193-af74-c38eb150baa2",
"Boxes": [
{
"Orientation": [
3.976688E-15,
-0.27960134,
1.5727975E-14,
0.9601162
],
"Translation": [
57.827362,
8.0,
-16.30217
],
"Extents": [
3.6764653,
4.0,
9.0
]
}
]
},
{
"UUID": "e2378c1b-3155-4539-8bc5-3aad94ff4e88",
"Boxes": [
{
"Orientation": [
-8.309429E-15,
-0.87661266,
1.3933318E-14,
0.48119652
],
"Translation": [
31.657816,
9.008376,
-26.430672
],
"Extents": [
2.8515248,
2.75,
8.807725
]
},
{
"Orientation": [
-8.309429E-15,
-0.87661266,
1.3933318E-14,
0.48119652
],
"Translation": [
32.76439,
9.008376,
-32.49851
],
"Extents": [
4.790378,
2.75,
5.845702
]
}
]
}
]
},
{
"MapName": "Horizon Lunar Colony - Evening - Deathmatch",
"Areas": [
{
"UUID": "466e934c-acb6-4bab-a057-32c1cf160307",
"Boxes": [
{
"Orientation": [
0.0,
0.85503477,
0.0,
0.5185707
],
"Translation": [
-25.021858,
7.5290813,
-122.00679
],
"Extents": [
5.8650036,
5.5290823,
6.785755
]
},
{
"Orientation": [
-7.727304E-09,
-0.5185707,
1.274101E-08,
0.85503495
],
"Translation": [
-22.313717,
7.5864367,
-116.83436
],
"Extents": [
1.0,
5.4332485,
5.4668417
]
}
]
},
{
"UUID": "b0789194-e368-4d82-abce-7c82097b94f1",
"Boxes": [
{
"Orientation": [
0.0,
-0.7222001,
0.0,
0.6916842
],
"Translation": [
54.051468,
11.045278,
-88.466675
],
"Extents": [
8.000941,
4.2152214,
6.4273453
]
},
{
"Orientation": [
0.0,
0.7222001,
0.0,
-0.6916842
],
"Translation": [
59.158596,
11.638544,
-86.29181
],
"Extents": [
3.0141144,
3.6360307,
1.4889488
]
},
{
"Orientation": [
0.0,
0.021577895,
0.0,
-0.9997672
],
"Translation": [
48.355026,
11.986234,
-90.302
],
"Extents": [
1.0,
3.6854095,
2.4947739
]
}
]
}
]
},
{
"MapName": "Horizon Lunar Colony - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "466e934c-acb6-4bab-a057-32c1cf160307",
"Boxes": [
{
"Orientation": [
0.0,
0.85503477,
0.0,
0.5185707
],
"Translation": [
-25.021858,
7.5290813,
-122.00679
],
"Extents": [
5.8650036,
5.5290823,
6.785755
]
},
{
"Orientation": [
-7.727304E-09,
-0.5185707,
1.274101E-08,
0.85503495
],
"Translation": [
-22.313717,
7.5864367,
-116.83436
],
"Extents": [
1.0,
5.4332485,
5.4668417
]
}
]
},
{
"UUID": "b0789194-e368-4d82-abce-7c82097b94f1",
"Boxes": [
{
"Orientation": [
0.0,
-0.7222001,
0.0,
0.6916842
],
"Translation": [
54.051468,
11.045278,
-88.466675
],
"Extents": [
8.000941,
4.2152214,
6.4273453
]
},
{
"Orientation": [
0.0,
0.7222001,
0.0,
-0.6916842
],
"Translation": [
59.158596,
11.638544,
-86.29181
],
"Extents": [
3.0141144,
3.6360307,
1.4889488
]
},
{
"Orientation": [
0.0,
0.021577895,
0.0,
-0.9997672
],
"Translation": [
48.355026,
11.986234,
-90.302
],
"Extents": [
1.0,
3.6854095,
2.4947739
]
}
]
}
]
},
{
"MapName": "Horizon Lunar Colony - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "466e934c-acb6-4bab-a057-32c1cf160307",
"Boxes": [
{
"Orientation": [
0.0,
0.85503477,
0.0,
0.5185707
],
"Translation": [
-25.021858,
7.5290813,
-122.00679
],
"Extents": [
5.8650036,
5.5290823,
6.785755
]
},
{
"Orientation": [
-7.727304E-09,
-0.5185707,
1.274101E-08,
0.85503495
],
"Translation": [
-22.313717,
7.5864367,
-116.83436
],
"Extents": [
1.0,
5.4332485,
5.4668417
]
}
]
},
{
"UUID": "b0789194-e368-4d82-abce-7c82097b94f1",
"Boxes": [
{
"Orientation": [
0.0,
-0.7222001,
0.0,
0.6916842
],
"Translation": [
54.051468,
11.045278,
-88.466675
],
"Extents": [
8.000941,
4.2152214,
6.4273453
]
},
{
"Orientation": [
0.0,
0.7222001,
0.0,
-0.6916842
],
"Translation": [
59.158596,
11.638544,
-86.29181
],
"Extents": [
3.0141144,
3.6360307,
1.4889488
]
},
{
"Orientation": [
0.0,
0.021577895,
0.0,
-0.9997672
],
"Translation": [
48.355026,
11.986234,
-90.302
],
"Extents": [
1.0,
3.6854095,
2.4947739
]
}
]
}
]
},
{
"MapName": "Horizon Lunar Colony - Evening - Assault",
"Areas": [
{
"UUID": "466e934c-acb6-4bab-a057-32c1cf160307",
"Boxes": [
{
"Orientation": [
0.0,
0.85503477,
0.0,
0.5185707
],
"Translation": [
-25.021858,
7.5290813,
-122.00679
],
"Extents": [
5.8650036,
5.5290823,
6.785755
]
},
{
"Orientation": [
-7.727304E-09,
-0.5185707,
1.274101E-08,
0.85503495
],
"Translation": [
-22.313717,
7.5864367,
-116.83436
],
"Extents": [
1.0,
5.4332485,
5.4668417
]
}
]
},
{
"UUID": "b0789194-e368-4d82-abce-7c82097b94f1",
"Boxes": [
{
"Orientation": [
0.0,
-0.7222001,
0.0,
0.6916842
],
"Translation": [
54.051468,
11.045278,
-88.466675
],
"Extents": [
8.000941,
4.2152214,
6.4273453
]
},
{
"Orientation": [
0.0,
0.7222001,
0.0,
-0.6916842
],
"Translation": [
59.158596,
11.638544,
-86.29181
],
"Extents": [
3.0141144,
3.6360307,
1.4889488
]
},
{
"Orientation": [
0.0,
0.021577895,
0.0,
-0.9997672
],
"Translation": [
48.355026,
11.986234,
-90.302
],
"Extents": [
1.0,
3.6854095,
2.4947739
]
}
]
}
]
},
{
"MapName": "Horizon Lunar Colony - Evening - Skirmish",
"Areas": [
{
"UUID": "466e934c-acb6-4bab-a057-32c1cf160307",
"Boxes": [
{
"Orientation": [
0.0,
0.85503477,
0.0,
0.5185707
],
"Translation": [
-25.021858,
7.5290813,
-122.00679
],
"Extents": [
5.8650036,
5.5290823,
6.785755
]
},
{
"Orientation": [
-7.727304E-09,
-0.5185707,
1.274101E-08,
0.85503495
],
"Translation": [
-22.313717,
7.5864367,
-116.83436
],
"Extents": [
1.0,
5.4332485,
5.4668417
]
}
]
},
{
"UUID": "b0789194-e368-4d82-abce-7c82097b94f1",
"Boxes": [
{
"Orientation": [
0.0,
-0.7222001,
0.0,
0.6916842
],
"Translation": [
54.051468,
11.045278,
-88.466675
],
"Extents": [
8.000941,
4.2152214,
6.4273453
]
},
{
"Orientation": [
0.0,
0.7222001,
0.0,
-0.6916842
],
"Translation": [
59.158596,
11.638544,
-86.29181
],
"Extents": [
3.0141144,
3.6360307,
1.4889488
]
},
{
"Orientation": [
0.0,
0.021577895,
0.0,
-0.9997672
],
"Translation": [
48.355026,
11.986234,
-90.302
],
"Extents": [
1.0,
3.6854095,
2.4947739
]
}
]
}
]
},
{
"MapName": "Necropolis - A039 - Deathmatch",
"Areas": [
{
"UUID": "5823d418-0af1-4e4e-93d8-8f135b7f8973",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.165034,
5.2823067,
-0.024453402
],
"Extents": [
4.2375264,
4.75,
5.98258
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-4.3837333,
4.9901633,
5.404023
],
"Extents": [
1.3286839,
4.981721,
1.2004569
]
},
{
"Orientation": [
0.0,
-0.27401036,
0.0,
0.9617267
],
"Translation": [
-4.7407722,
5.008719,
4.3668966
],
"Extents": [
1.4046136,
5.0002766,
1.0
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-4.372838,
5.0249395,
-5.468446
],
"Extents": [
1.3334494,
5.016497,
1.2289598
]
},
{
"Orientation": [
0.0,
0.2731189,
0.0,
0.9619804
],
"Translation": [
-5.106762,
4.9758205,
-4.141286
],
"Extents": [
1.7827613,
4.967378,
1.0
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-12.612014,
5.019642,
5.309645
],
"Extents": [
1.4219708,
5.0111995,
1.3496842
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-12.667207,
5.02755,
-5.312958
],
"Extents": [
1.402915,
5.0191083,
1.3505862
]
}
]
}
]
},
{
"MapName": "Necropolis - A039 - Bounty Hunter",
"Areas": [
{
"UUID": "5823d418-0af1-4e4e-93d8-8f135b7f8973",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.165034,
5.2823067,
-0.024453402
],
"Extents": [
4.2375264,
4.75,
5.98258
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-4.3837333,
4.9901633,
5.404023
],
"Extents": [
1.3286839,
4.981721,
1.2004569
]
},
{
"Orientation": [
0.0,
-0.27401036,
0.0,
0.9617267
],
"Translation": [
-4.7407722,
5.008719,
4.3668966
],
"Extents": [
1.4046136,
5.0002766,
1.0
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-4.372838,
5.0249395,
-5.468446
],
"Extents": [
1.3334494,
5.016497,
1.2289598
]
},
{
"Orientation": [
0.0,
0.2731189,
0.0,
0.9619804
],
"Translation": [
-5.106762,
4.9758205,
-4.141286
],
"Extents": [
1.7827613,
4.967378,
1.0
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-12.612014,
5.019642,
5.309645
],
"Extents": [
1.4219708,
5.0111995,
1.3496842
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-12.667207,
5.02755,
-5.312958
],
"Extents": [
1.402915,
5.0191083,
1.3505862
]
}
]
}
]
},
{
"MapName": "Necropolis - A039 - Team Deathmatch",
"Areas": [
{
"UUID": "5823d418-0af1-4e4e-93d8-8f135b7f8973",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.165034,
5.2823067,
-0.024453402
],
"Extents": [
4.2375264,
4.75,
5.98258
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-4.3837333,
4.9901633,
5.404023
],
"Extents": [
1.3286839,
4.981721,
1.2004569
]
},
{
"Orientation": [
0.0,
-0.27401036,
0.0,
0.9617267
],
"Translation": [
-4.7407722,
5.008719,
4.3668966
],
"Extents": [
1.4046136,
5.0002766,
1.0
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-4.372838,
5.0249395,
-5.468446
],
"Extents": [
1.3334494,
5.016497,
1.2289598
]
},
{
"Orientation": [
0.0,
0.2731189,
0.0,
0.9619804
],
"Translation": [
-5.106762,
4.9758205,
-4.141286
],
"Extents": [
1.7827613,
4.967378,
1.0
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-12.612014,
5.019642,
5.309645
],
"Extents": [
1.4219708,
5.0111995,
1.3496842
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-12.667207,
5.02755,
-5.312958
],
"Extents": [
1.402915,
5.0191083,
1.3505862
]
}
]
}
]
},
{
"MapName": "Necropolis - A039 - Elimination",
"Areas": [
{
"UUID": "5823d418-0af1-4e4e-93d8-8f135b7f8973",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.165034,
5.2823067,
-0.024453402
],
"Extents": [
4.2375264,
4.75,
5.98258
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-4.3837333,
4.9901633,
5.404023
],
"Extents": [
1.3286839,
4.981721,
1.2004569
]
},
{
"Orientation": [
0.0,
-0.27401036,
0.0,
0.9617267
],
"Translation": [
-4.7407722,
5.008719,
4.3668966
],
"Extents": [
1.4046136,
5.0002766,
1.0
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-4.372838,
5.0249395,
-5.468446
],
"Extents": [
1.3334494,
5.016497,
1.2289598
]
},
{
"Orientation": [
0.0,
0.2731189,
0.0,
0.9619804
],
"Translation": [
-5.106762,
4.9758205,
-4.141286
],
"Extents": [
1.7827613,
4.967378,
1.0
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-12.612014,
5.019642,
5.309645
],
"Extents": [
1.4219708,
5.0111995,
1.3496842
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-12.667207,
5.02755,
-5.312958
],
"Extents": [
1.402915,
5.0191083,
1.3505862
]
}
]
}
]
},
{
"MapName": "Necropolis - A039 - Freezethaw Elimination",
"Areas": [
{
"UUID": "5823d418-0af1-4e4e-93d8-8f135b7f8973",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-9.165034,
5.2823067,
-0.024453402
],
"Extents": [
4.2375264,
4.75,
5.98258
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-4.3837333,
4.9901633,
5.404023
],
"Extents": [
1.3286839,
4.981721,
1.2004569
]
},
{
"Orientation": [
0.0,
-0.27401036,
0.0,
0.9617267
],
"Translation": [
-4.7407722,
5.008719,
4.3668966
],
"Extents": [
1.4046136,
5.0002766,
1.0
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-4.372838,
5.0249395,
-5.468446
],
"Extents": [
1.3334494,
5.016497,
1.2289598
]
},
{
"Orientation": [
0.0,
0.2731189,
0.0,
0.9619804
],
"Translation": [
-5.106762,
4.9758205,
-4.141286
],
"Extents": [
1.7827613,
4.967378,
1.0
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-12.612014,
5.019642,
5.309645
],
"Extents": [
1.4219708,
5.0111995,
1.3496842
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-12.667207,
5.02755,
-5.312958
],
"Extents": [
1.402915,
5.0191083,
1.3505862
]
}
]
}
]
},
{
"MapName": "Black Forest - Evening - Elimination",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Black Forest - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Black Forest - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Black Forest - Evening - Deathmatch",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica (Winter) - Evening - Mei's Snowball Offensive",
"Areas": [
{
"UUID": "95c92132-88f9-439c-8076-12dd0ead0e65",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica (Winter) - Evening - Elimination",
"Areas": [
{
"UUID": "95c92132-88f9-439c-8076-12dd0ead0e65",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica (Winter) - Evening - Freezethaw Elimination",
"Areas": [
{
"UUID": "95c92132-88f9-439c-8076-12dd0ead0e65",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica (Winter) - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "95c92132-88f9-439c-8076-12dd0ead0e65",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica (Winter) - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "95c92132-88f9-439c-8076-12dd0ead0e65",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica (Winter) - Evening - Snowball Deathmatch",
"Areas": [
{
"UUID": "95c92132-88f9-439c-8076-12dd0ead0e65",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Ecopoint: Antarctica (Winter) - Evening - Deathmatch",
"Areas": [
{
"UUID": "95c92132-88f9-439c-8076-12dd0ead0e65",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
2.7358565,
7.5530095,
-0.056170702
],
"Extents": [
7.1796603,
3.5530105,
8.205905
]
}
]
}
]
},
{
"MapName": "Lijiang Garden (Lunar New Year) - Evening - Elimination",
"Areas": [
{
"UUID": "f1417fe5-5031-411d-a0be-4d4678067b08",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
}
]
},
{
"MapName": "Lijiang Garden (Lunar New Year) - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "f1417fe5-5031-411d-a0be-4d4678067b08",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
}
]
},
{
"MapName": "Lijiang Garden (Lunar New Year) - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "f1417fe5-5031-411d-a0be-4d4678067b08",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
}
]
},
{
"MapName": "Lijiang Garden (Lunar New Year) - Evening - Deathmatch",
"Areas": [
{
"UUID": "f1417fe5-5031-411d-a0be-4d4678067b08",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
}
]
},
{
"MapName": "Lijiang Garden (Lunar New Year) - Evening - Capture the Flag",
"Areas": [
{
"UUID": "f1417fe5-5031-411d-a0be-4d4678067b08",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
}
]
},
{
"MapName": "Lijiang Night Market (Lunar New Year) - Evening - Elimination",
"Areas": [
{
"UUID": "8dba3142-d909-4a86-a1c2-19c8fdb1aa8d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.490116E-07
],
"Translation": [
1.0218637,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
}
]
},
{
"MapName": "Lijiang Night Market (Lunar New Year) - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "8dba3142-d909-4a86-a1c2-19c8fdb1aa8d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.490116E-07
],
"Translation": [
1.0218637,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
}
]
},
{
"MapName": "Lijiang Night Market (Lunar New Year) - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "8dba3142-d909-4a86-a1c2-19c8fdb1aa8d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.490116E-07
],
"Translation": [
1.0218637,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
}
]
},
{
"MapName": "Lijiang Night Market (Lunar New Year) - Evening - Deathmatch",
"Areas": [
{
"UUID": "8dba3142-d909-4a86-a1c2-19c8fdb1aa8d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.490116E-07
],
"Translation": [
1.0218637,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
}
]
},
{
"MapName": "Lijiang Night Market (Lunar New Year) - Evening - Capture the Flag",
"Areas": [
{
"UUID": "8dba3142-d909-4a86-a1c2-19c8fdb1aa8d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.490116E-07
],
"Translation": [
1.0218637,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
}
]
},
{
"MapName": "Nepal Sanctum - Evening - Elimination",
"Areas": [
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.16477,
133.03926,
-0.021198602
],
"Extents": [
5.210282,
5.1683154,
7.8473935
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.842,
132.58214,
0.025947535
],
"Extents": [
1.860845,
5.5886035,
4.9117074
]
}
]
}
]
},
{
"MapName": "Nepal Sanctum - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.16477,
133.03926,
-0.021198602
],
"Extents": [
5.210282,
5.1683154,
7.8473935
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.842,
132.58214,
0.025947535
],
"Extents": [
1.860845,
5.5886035,
4.9117074
]
}
]
}
]
},
{
"MapName": "Nepal Sanctum - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.16477,
133.03926,
-0.021198602
],
"Extents": [
5.210282,
5.1683154,
7.8473935
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.842,
132.58214,
0.025947535
],
"Extents": [
1.860845,
5.5886035,
4.9117074
]
}
]
}
]
},
{
"MapName": "Nepal Sanctum - Evening - Deathmatch",
"Areas": [
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.16477,
133.03926,
-0.021198602
],
"Extents": [
5.210282,
5.1683154,
7.8473935
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.842,
132.58214,
0.025947535
],
"Extents": [
1.860845,
5.5886035,
4.9117074
]
}
]
}
]
},
{
"MapName": "Nepal Sanctum - Evening - Capture the Flag",
"Areas": [
{
"UUID": "23f4aae0-889f-4caf-861f-a56a6177080d",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
85.16477,
133.03926,
-0.021198602
],
"Extents": [
5.210282,
5.1683154,
7.8473935
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
78.842,
132.58214,
0.025947535
],
"Extents": [
1.860845,
5.5886035,
4.9117074
]
}
]
}
]
},
{
"MapName": "Lijiang Control Center (Lunar New Year) - Evening - Elimination",
"Areas": [
{
"UUID": "cec91334-0ca8-48a1-90c6-4483e46e7ac5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.192093E-07
],
"Translation": [
0.057346635,
272.61975,
280.05402
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
0.027056277,
272.68353,
279.969
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.70710677
],
"Translation": [
0.112055846,
272.45905,
279.97247
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
0.08802673,
272.5334,
280.078
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Lijiang Control Center (Lunar New Year) - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "cec91334-0ca8-48a1-90c6-4483e46e7ac5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.192093E-07
],
"Translation": [
0.057346635,
272.61975,
280.05402
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
0.027056277,
272.68353,
279.969
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.70710677
],
"Translation": [
0.112055846,
272.45905,
279.97247
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
0.08802673,
272.5334,
280.078
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Lijiang Control Center (Lunar New Year) - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "cec91334-0ca8-48a1-90c6-4483e46e7ac5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.192093E-07
],
"Translation": [
0.057346635,
272.61975,
280.05402
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
0.027056277,
272.68353,
279.969
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.70710677
],
"Translation": [
0.112055846,
272.45905,
279.97247
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
0.08802673,
272.5334,
280.078
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Lijiang Control Center (Lunar New Year) - Evening - Deathmatch",
"Areas": [
{
"UUID": "cec91334-0ca8-48a1-90c6-4483e46e7ac5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.192093E-07
],
"Translation": [
0.057346635,
272.61975,
280.05402
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
0.027056277,
272.68353,
279.969
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.70710677
],
"Translation": [
0.112055846,
272.45905,
279.97247
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
0.08802673,
272.5334,
280.078
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Lijiang Control Center (Lunar New Year) - Evening - Capture the Flag",
"Areas": [
{
"UUID": "cec91334-0ca8-48a1-90c6-4483e46e7ac5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.192093E-07
],
"Translation": [
0.057346635,
272.61975,
280.05402
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
0.027056277,
272.68353,
279.969
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.70710677
],
"Translation": [
0.112055846,
272.45905,
279.97247
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
0.08802673,
272.5334,
280.078
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Castillo - Evening - Elimination",
"Areas": [
{
"UUID": "0b9c5dc6-c63f-42d2-90aa-4ea379231faf",
"Boxes": [
{
"Orientation": [
0.0,
-0.99619484,
0.0,
0.08715579
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054652,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.953717,
0.0,
0.30070585
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.7660443,
0.0,
0.64278775
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.46174866,
0.0,
0.8870109
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
}
]
}
]
},
{
"MapName": "Castillo - Evening - Freezethaw Elimination",
"Areas": [
{
"UUID": "0b9c5dc6-c63f-42d2-90aa-4ea379231faf",
"Boxes": [
{
"Orientation": [
0.0,
-0.99619484,
0.0,
0.08715579
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054652,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.953717,
0.0,
0.30070585
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.7660443,
0.0,
0.64278775
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.46174866,
0.0,
0.8870109
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
}
]
}
]
},
{
"MapName": "Castillo - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "0b9c5dc6-c63f-42d2-90aa-4ea379231faf",
"Boxes": [
{
"Orientation": [
0.0,
-0.99619484,
0.0,
0.08715579
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054652,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.953717,
0.0,
0.30070585
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.7660443,
0.0,
0.64278775
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.46174866,
0.0,
0.8870109
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
}
]
}
]
},
{
"MapName": "Castillo - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "0b9c5dc6-c63f-42d2-90aa-4ea379231faf",
"Boxes": [
{
"Orientation": [
0.0,
-0.99619484,
0.0,
0.08715579
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054652,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.953717,
0.0,
0.30070585
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.7660443,
0.0,
0.64278775
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.46174866,
0.0,
0.8870109
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
}
]
}
]
},
{
"MapName": "Castillo - Evening - Deathmatch",
"Areas": [
{
"UUID": "0b9c5dc6-c63f-42d2-90aa-4ea379231faf",
"Boxes": [
{
"Orientation": [
0.0,
-0.99619484,
0.0,
0.08715579
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054652,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.953717,
0.0,
0.30070585
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.7660443,
0.0,
0.64278775
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
},
{
"Orientation": [
0.0,
0.46174866,
0.0,
0.8870109
],
"Translation": [
-102.482216,
36.972004,
58.115356
],
"Extents": [
8.054655,
5.7,
3.3241005
]
}
]
}
]
},
{
"MapName": "Nepal Village - Evening - Elimination",
"Areas": [
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
}
]
},
{
"MapName": "Nepal Village - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
}
]
},
{
"MapName": "Nepal Village - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
}
]
},
{
"MapName": "Nepal Village - Evening - Deathmatch",
"Areas": [
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
}
]
},
{
"MapName": "Nepal Village - Evening - Capture the Flag",
"Areas": [
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
}
]
},
{
"MapName": "Nepal Shrine - Evening - Elimination",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
18.61522,
-0.011191368
],
"Extents": [
8.305351,
6.3595123,
8.38424
]
}
]
}
]
},
{
"MapName": "Nepal Shrine - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
18.61522,
-0.011191368
],
"Extents": [
8.305351,
6.3595123,
8.38424
]
}
]
}
]
},
{
"MapName": "Nepal Shrine - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
18.61522,
-0.011191368
],
"Extents": [
8.305351,
6.3595123,
8.38424
]
}
]
}
]
},
{
"MapName": "Nepal Shrine - Evening - Deathmatch",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
18.61522,
-0.011191368
],
"Extents": [
8.305351,
6.3595123,
8.38424
]
}
]
}
]
},
{
"MapName": "Nepal Shrine - Evening - Capture the Flag",
"Areas": [
{
"UUID": "0e13e20f-92d0-496e-9f15-66086e83802b",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-50.18139,
18.61522,
-0.011191368
],
"Extents": [
8.305351,
6.3595123,
8.38424
]
}
]
}
]
},
{
"MapName": "Ilios Well - Evening - Elimination",
"Areas": [
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.38268343
],
"Translation": [
-208.1353,
3.0432324,
-16.516438
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
}
]
},
{
"MapName": "Ilios Well - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.38268343
],
"Translation": [
-208.1353,
3.0432324,
-16.516438
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
}
]
},
{
"MapName": "Ilios Well - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.38268343
],
"Translation": [
-208.1353,
3.0432324,
-16.516438
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
}
]
},
{
"MapName": "Ilios Well - Evening - Deathmatch",
"Areas": [
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.38268343
],
"Translation": [
-208.1353,
3.0432324,
-16.516438
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
}
]
},
{
"MapName": "Ilios Well - Evening - Capture the Flag",
"Areas": [
{
"UUID": "58d2192c-a7fe-49f1-b19d-02978aefd305",
"Boxes": [
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.38268343
],
"Translation": [
-208.1353,
3.0432324,
-16.516438
],
"Extents": [
12.6875925,
3.6833389,
8.649162
]
}
]
}
]
},
{
"MapName": "Ilios Lighthouse - Evening - Elimination",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509034,
0.0,
0.98078525
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.01713716,
0.8312903,
0.01145596,
0.5554561
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204677,
0.19508344,
-0.00052091666,
0.9807829
],
"Translation": [
353.4209,
-22.664913,
-56.71021
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
}
]
},
{
"MapName": "Ilios Lighthouse - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509034,
0.0,
0.98078525
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.01713716,
0.8312903,
0.01145596,
0.5554561
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204677,
0.19508344,
-0.00052091666,
0.9807829
],
"Translation": [
353.4209,
-22.664913,
-56.71021
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
}
]
},
{
"MapName": "Ilios Lighthouse - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509034,
0.0,
0.98078525
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.01713716,
0.8312903,
0.01145596,
0.5554561
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204677,
0.19508344,
-0.00052091666,
0.9807829
],
"Translation": [
353.4209,
-22.664913,
-56.71021
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
}
]
},
{
"MapName": "Ilios Lighthouse - Evening - Deathmatch",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509034,
0.0,
0.98078525
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.01713716,
0.8312903,
0.01145596,
0.5554561
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204677,
0.19508344,
-0.00052091666,
0.9807829
],
"Translation": [
353.4209,
-22.664913,
-56.71021
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
}
]
},
{
"MapName": "Ilios Lighthouse - Evening - Capture the Flag",
"Areas": [
{
"UUID": "559ece5c-393f-423f-bc16-8b7779e6ab99",
"Boxes": [
{
"Orientation": [
0.0,
0.19509034,
0.0,
0.98078525
],
"Translation": [
357.98758,
-22.64549,
-51.569073
],
"Extents": [
6.1891885,
3.4818528,
7.086135
]
},
{
"Orientation": [
0.01713716,
0.8312903,
0.01145596,
0.5554561
],
"Translation": [
358.59875,
-22.90475,
-44.448856
],
"Extents": [
1.969916,
3.5855489,
4.0676365
]
},
{
"Orientation": [
0.0026204677,
0.19508344,
-0.00052091666,
0.9807829
],
"Translation": [
353.4209,
-22.664913,
-56.71021
],
"Extents": [
3.9411101,
3.9058366,
1.6827936
]
}
]
}
]
},
{
"MapName": "Ilios Ruins - Evening - Elimination",
"Areas": [
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios Ruins - Evening - Battle for Olympus",
"Areas": [
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios Ruins - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios Ruins - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios Ruins - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios Ruins - Evening - Deathmatch",
"Areas": [
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Ilios Ruins - Evening - Capture the Flag",
"Areas": [
{
"UUID": "7c658ef5-f506-4c6e-874b-40722f65aaed",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
28.558744,
60.430122,
-157.47826
],
"Extents": [
8.812652,
7.006363,
7.1821823
]
}
]
}
]
},
{
"MapName": "Lijiang Control Center - Evening - Elimination",
"Areas": [
{
"UUID": "cec91334-0ca8-48a1-90c6-4483e46e7ac5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.192093E-07
],
"Translation": [
0.057346635,
272.61975,
280.05402
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
0.027056277,
272.68353,
279.969
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.70710677
],
"Translation": [
0.112055846,
272.45905,
279.97247
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
0.08802673,
272.5334,
280.078
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Lijiang Control Center - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "cec91334-0ca8-48a1-90c6-4483e46e7ac5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.192093E-07
],
"Translation": [
0.057346635,
272.61975,
280.05402
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
0.027056277,
272.68353,
279.969
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.70710677
],
"Translation": [
0.112055846,
272.45905,
279.97247
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
0.08802673,
272.5334,
280.078
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Lijiang Control Center - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "cec91334-0ca8-48a1-90c6-4483e46e7ac5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.192093E-07
],
"Translation": [
0.057346635,
272.61975,
280.05402
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
0.027056277,
272.68353,
279.969
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.70710677
],
"Translation": [
0.112055846,
272.45905,
279.97247
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
0.08802673,
272.5334,
280.078
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Lijiang Control Center - Evening - Deathmatch",
"Areas": [
{
"UUID": "cec91334-0ca8-48a1-90c6-4483e46e7ac5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.192093E-07
],
"Translation": [
0.057346635,
272.61975,
280.05402
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
0.027056277,
272.68353,
279.969
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.70710677
],
"Translation": [
0.112055846,
272.45905,
279.97247
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
0.08802673,
272.5334,
280.078
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Lijiang Control Center - Evening - Capture the Flag",
"Areas": [
{
"UUID": "cec91334-0ca8-48a1-90c6-4483e46e7ac5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.192093E-07
],
"Translation": [
0.057346635,
272.61975,
280.05402
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
0.027056277,
272.68353,
279.969
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.70710677,
0.0,
0.70710677
],
"Translation": [
0.112055846,
272.45905,
279.97247
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
0.08802673,
272.5334,
280.078
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Lijiang Garden - Evening - Elimination",
"Areas": [
{
"UUID": "f1417fe5-5031-411d-a0be-4d4678067b08",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
}
]
},
{
"MapName": "Lijiang Garden - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "f1417fe5-5031-411d-a0be-4d4678067b08",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
}
]
},
{
"MapName": "Lijiang Garden - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "f1417fe5-5031-411d-a0be-4d4678067b08",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
}
]
},
{
"MapName": "Lijiang Garden - Evening - Deathmatch",
"Areas": [
{
"UUID": "f1417fe5-5031-411d-a0be-4d4678067b08",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
}
]
},
{
"MapName": "Lijiang Garden - Evening - Capture the Flag",
"Areas": [
{
"UUID": "f1417fe5-5031-411d-a0be-4d4678067b08",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.12610507,
98.1794,
149.962
],
"Extents": [
9.176567,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
144.04744
],
"Extents": [
3.7589476,
5.1793976,
3.7087097
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.954549,
98.1794,
146.05164
],
"Extents": [
3.6481044,
5.1793976,
4.061084
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.7334187,
98.1794,
146.09738
],
"Extents": [
4.27952,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
-3.495143,
98.1794,
153.80188
],
"Extents": [
4.029539,
5.1793976,
3.7045135
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
3.602688,
98.1794,
153.63841
],
"Extents": [
3.7589476,
5.1793976,
4.111862
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.05450225,
98.1794,
155.41971
],
"Extents": [
3.7589476,
5.1793976,
4.240532
]
}
]
}
]
},
{
"MapName": "Lijiang Night Market - Evening - Elimination",
"Areas": [
{
"UUID": "8dba3142-d909-4a86-a1c2-19c8fdb1aa8d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.490116E-07
],
"Translation": [
1.0218637,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
}
]
},
{
"MapName": "Lijiang Night Market - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "8dba3142-d909-4a86-a1c2-19c8fdb1aa8d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.490116E-07
],
"Translation": [
1.0218637,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
}
]
},
{
"MapName": "Lijiang Night Market - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "8dba3142-d909-4a86-a1c2-19c8fdb1aa8d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.490116E-07
],
"Translation": [
1.0218637,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
}
]
},
{
"MapName": "Lijiang Night Market - Evening - Deathmatch",
"Areas": [
{
"UUID": "8dba3142-d909-4a86-a1c2-19c8fdb1aa8d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.490116E-07
],
"Translation": [
1.0218637,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
}
]
},
{
"MapName": "Lijiang Night Market - Evening - Capture the Flag",
"Areas": [
{
"UUID": "8dba3142-d909-4a86-a1c2-19c8fdb1aa8d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.490116E-07
],
"Translation": [
1.0218637,
6.0109234,
-61.014736
],
"Extents": [
7.9837546,
7.683173,
7.8915606
]
}
]
}
]
},
{
"MapName": "Oasis City Center - Evening - Deathmatch",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
}
]
}
]
},
{
"MapName": "Oasis City Center - Evening - Elimination",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
}
]
}
]
},
{
"MapName": "Oasis City Center - Evening - Capture the Flag",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
}
]
}
]
},
{
"MapName": "Oasis City Center - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
}
]
}
]
},
{
"MapName": "Oasis City Center - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "9a634ce4-187c-481b-8929-d1fbd44876df",
"Boxes": [
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.9238795
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
},
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
143.49435,
5.002755,
247.49438
],
"Extents": [
11.735461,
3.9027553,
4.91823
]
}
]
}
]
},
{
"MapName": "Oasis Gardens - Evening - Deathmatch",
"Areas": [
{
"UUID": "541d6fca-dbd9-493d-a6eb-4417ca2bb35c",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387956,
0.0,
-0.38268355
],
"Translation": [
121.22168,
8.132223,
-227.1757
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
}
]
},
{
"MapName": "Oasis Gardens - Evening - Elimination",
"Areas": [
{
"UUID": "541d6fca-dbd9-493d-a6eb-4417ca2bb35c",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387956,
0.0,
-0.38268355
],
"Translation": [
121.22168,
8.132223,
-227.1757
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
}
]
},
{
"MapName": "Oasis Gardens - Evening - Capture the Flag",
"Areas": [
{
"UUID": "541d6fca-dbd9-493d-a6eb-4417ca2bb35c",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387956,
0.0,
-0.38268355
],
"Translation": [
121.22168,
8.132223,
-227.1757
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
}
]
},
{
"MapName": "Oasis Gardens - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "541d6fca-dbd9-493d-a6eb-4417ca2bb35c",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387956,
0.0,
-0.38268355
],
"Translation": [
121.22168,
8.132223,
-227.1757
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
}
]
},
{
"MapName": "Oasis Gardens - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "541d6fca-dbd9-493d-a6eb-4417ca2bb35c",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387956,
0.0,
-0.38268355
],
"Translation": [
121.22168,
8.132223,
-227.1757
],
"Extents": [
11.796484,
3.0004644,
10.281229
]
}
]
}
]
},
{
"MapName": "Oasis University - Evening - Deathmatch",
"Areas": [
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis University - Evening - Elimination",
"Areas": [
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis University - Evening - Capture the Flag",
"Areas": [
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis University - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Oasis University - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "18c9bd0f-874b-4bcc-af28-e211d8c81876",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-8.9406974E-08
],
"Translation": [
-188.41438,
19.777147,
-0.023905873
],
"Extents": [
7.9397173,
4.8343596,
9.0543375
]
}
]
}
]
},
{
"MapName": "Blizzard World - Overcast - Bounty Hunter",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Morning - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Overcast - Hybrid",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Overcast - Roadhog’s Catch-A-Mari",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Night - Deathmatch",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Overcast - Hybrid",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Morning - Hybrid",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Night - Skirmish",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Morning - Deathmatch",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Morning - Team Deathmatch",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Morning - Bounty Hunter",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Night - Bounty Hunter",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Night - Team Deathmatch",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Overcast - Team Deathmatch",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Overcast - Deathmatch",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Night - Hybrid",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Overcast - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Morning - Roadhog’s Catch-A-Mari",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Morning - Skirmish",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Overcast - Skirmish",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Night - Roadhog’s Catch-A-Mari",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Night - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Night - Hybrid",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World - Morning - Hybrid",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.9999929,
0.0,
-0.003771454
],
"Translation": [
3.0407498,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Ayutthaya - Evening - Elimination",
"Areas": [
{
"UUID": "b0d39be0-c7f0-42c0-af9d-c13cf368e72b",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
16.508848,
0.58879757,
-6.9015813
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
16.478558,
0.6525793,
-6.9865966
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.7071068,
0.0,
0.7071068
],
"Translation": [
16.563557,
0.42807674,
-6.9830956
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
16.539528,
0.5024328,
-6.8775673
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Ayutthaya - Evening - Capture the Flag",
"Areas": [
{
"UUID": "b0d39be0-c7f0-42c0-af9d-c13cf368e72b",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-1.1920929E-07
],
"Translation": [
16.508848,
0.58879757,
-6.9015813
],
"Extents": [
8.539161,
5.7576447,
3.3241005
]
},
{
"Orientation": [
0.0,
0.92387956,
0.0,
0.38268334
],
"Translation": [
16.478558,
0.6525793,
-6.9865966
],
"Extents": [
8.72246,
5.8214417,
3.3241005
]
},
{
"Orientation": [
0.0,
0.7071068,
0.0,
0.7071068
],
"Translation": [
16.563557,
0.42807674,
-6.9830956
],
"Extents": [
8.767426,
5.596939,
3.3241005
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
0.92387956
],
"Translation": [
16.539528,
0.5024328,
-6.8775673
],
"Extents": [
8.800546,
5.671295,
3.3241005
]
}
]
}
]
},
{
"MapName": "Busan - Night - Mirrorwatch Control",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Morning - Mirrorwatch Control",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Night - Control - 000000000211.0C3",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Night - Skirmish",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Overcast - Control - 000000000211.0C3",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Overcast - Control",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Overcast - Mirrorwatch Control",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Morning - Skirmish",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Overcast - Skirmish",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Night - Skirmish - 0000000001AB.0C3",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Morning - Control - 000000000211.0C3",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Night - Control - 0000000001AB.0C3",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Night - Control",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Busan - Morning - Control",
"Areas": [
{
"UUID": "fc76e3fe-8749-409a-bb56-ac011f9055a6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
51.966637,
8.023243,
-92.95854
],
"Extents": [
9.0973425,
2.319315,
6.392145
]
}
]
},
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
},
{
"UUID": "d81b6594-90c8-4912-8ed2-edfc9ea2815e",
"Boxes": [
{
"Orientation": [
0.0,
0.20205265,
0.0,
0.97937477
],
"Translation": [
222.34221,
10.5277,
241.27184
],
"Extents": [
7.9772873,
4.5922813,
7.5031433
]
}
]
}
]
},
{
"MapName": "Eichenwalde (Halloween) - Evening - Hybrid",
"Areas": [
{
"UUID": "6476a523-ca4e-477e-82fd-795a66930cbb",
"Boxes": [
{
"Orientation": [
0.0,
0.9807855,
0.0,
0.19509026
],
"Translation": [
11.348828,
8.142797,
-72.16461
],
"Extents": [
5.731164,
3.1087942,
6.851138
]
}
]
}
]
},
{
"MapName": "Eichenwalde (Halloween) - Evening - Skirmish",
"Areas": [
{
"UUID": "6476a523-ca4e-477e-82fd-795a66930cbb",
"Boxes": [
{
"Orientation": [
0.0,
0.9807855,
0.0,
0.19509026
],
"Translation": [
11.348828,
8.142797,
-72.16461
],
"Extents": [
5.731164,
3.1087942,
6.851138
]
}
]
}
]
},
{
"MapName": "Black Forest (Winter) - Evening - Mei's Snowball Offensive",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Black Forest (Winter) - Evening - Elimination",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Black Forest (Winter) - Evening - Freezethaw Elimination",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Black Forest (Winter) - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Black Forest (Winter) - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Black Forest (Winter) - Evening - Snowball Deathmatch",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Black Forest (Winter) - Evening - Deathmatch",
"Areas": [
{
"UUID": "9cc5f2e8-92f9-4f98-848d-50803393102a",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.716908,
15.0,
5.0435877
],
"Extents": [
3.4961262,
4.1,
8.321861
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-17.771019,
15.0,
5.2070007
],
"Extents": [
1.7475119,
4.1,
7.01646
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-15.185272,
15.0,
4.9859934
],
"Extents": [
1.0,
4.1,
8.44006
]
}
]
}
]
},
{
"MapName": "Nepal Village (Winter) - Evening - Yeti Hunter",
"Areas": [
{
"UUID": "29ca1c1b-e642-4bcb-99e0-432c6a1953bd",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-194.94203,
-91.68792,
0.0
],
"Extents": [
6.05586,
2.7026572,
6.281703
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Deathmatch",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Skirmish",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Assault",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Love of Geometry",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paraíso - Morning - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Morning - Skirmish - Winter",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Morning - Hybrid",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Evening - Hybrid",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Evening - Skirmish",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Evening - Skirmish - Winter",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Evening - Hybrid - Winter",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Morning - Skirmish",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Evening - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Morning - Hybrid - Winter",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Evening - Hybrid",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Paraíso - Morning - Hybrid",
"Areas": [
{
"UUID": "bde98da8-fda9-41f7-a1a0-33d0cc20cefe",
"Boxes": [
{
"Orientation": [
-3.4841867E-07,
0.86762,
6.153094E-07,
0.49722824
],
"Translation": [
-8.659969,
3.845056,
-15.517324
],
"Extents": [
5.9837255,
3.844966,
8.20774
]
}
]
}
]
},
{
"MapName": "Blizzard World (Winter) - Evening - Hybrid",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.99999297,
0.0,
-0.003771484
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.999993,
0.0,
-0.003771454
],
"Translation": [
3.0407488,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World (Winter) - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.99999297,
0.0,
-0.003771484
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.999993,
0.0,
-0.003771454
],
"Translation": [
3.0407488,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World (Winter) - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.99999297,
0.0,
-0.003771484
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.999993,
0.0,
-0.003771454
],
"Translation": [
3.0407488,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World (Winter) - Evening - Skirmish",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.99999297,
0.0,
-0.003771484
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.999993,
0.0,
-0.003771454
],
"Translation": [
3.0407488,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Blizzard World (Winter) - Evening - Deathmatch",
"Areas": [
{
"UUID": "5f76328f-3481-4cd9-8264-742ca0527e89",
"Boxes": [
{
"Orientation": [
0.0,
0.99999297,
0.0,
-0.003771484
],
"Translation": [
3.1391704,
3.409619,
72.73813
],
"Extents": [
7.1588483,
2.40962,
7.803427
]
},
{
"Orientation": [
0.0,
0.0067055523,
-0.0,
0.9999776
],
"Translation": [
3.500085,
3.3844194,
66.64167
],
"Extents": [
4.7666926,
2.384419,
3.791311
]
},
{
"Orientation": [
0.0,
0.38268358,
-0.0,
0.92387956
],
"Translation": [
0.066706896,
3.0723917,
66.50253
],
"Extents": [
1.600338,
2.0723917,
3.850519
]
},
{
"Orientation": [
0.0,
-0.37337163,
0.0,
0.927682
],
"Translation": [
7.397499,
3.02129,
65.58793
],
"Extents": [
1.5399376,
2.02129,
2.213723
]
},
{
"Orientation": [
0.0,
0.999993,
0.0,
-0.003771454
],
"Translation": [
3.0407488,
6.855747,
73.71912
],
"Extents": [
6.117532,
1.5484467,
4.426686
]
}
]
}
]
},
{
"MapName": "Busan Sanctuary (Lunar New Year) - Evening - Capture the Flag",
"Areas": [
{
"UUID": "09edf379-e346-45e6-bde1-e005cb396189",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-328.39978,
12.511068,
140.57346
],
"Extents": [
7.043335,
4.7357826,
6.6583548
]
}
]
}
]
},
{
"MapName": "Midtown - Morning - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "f7cd064a-4382-424c-a1ca-4fe56247d3f0",
"Boxes": [
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
9.342852,
8.2947235,
30.204987
],
"Extents": [
4.721209,
3.840038,
7.13942
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
10.185195,
8.2947235,
25.369698
],
"Extents": [
0.56427693,
3.840038,
2.754943
]
},
{
"Orientation": [
0.0,
-0.45114186,
0.0,
0.8924523
],
"Translation": [
7.2611203,
8.2947235,
24.960014
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.971782,
0.0,
0.23588088
],
"Translation": [
13.174814,
8.2947235,
26.20897
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
1.9628973,
8.2947235,
28.72342
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
},
{
"Orientation": [
0.0,
-0.46339568,
0.0,
0.8861515
],
"Translation": [
2.9583569,
8.2947235,
24.665436
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
0.29564455,
0.0,
0.95529807
],
"Translation": [
1.2597513,
8.2947235,
32.868458
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.9552981,
0.0,
0.2956444
],
"Translation": [
17.406881,
8.2947235,
27.53594
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.88615143,
0.0,
-0.46339577
],
"Translation": [
15.692545,
8.2947235,
35.74973
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.63340044,
0.0,
-0.7738242
],
"Translation": [
16.688007,
8.2947235,
31.691744
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
}
]
}
]
},
{
"MapName": "Midtown - Morning - Hybrid",
"Areas": [
{
"UUID": "f7cd064a-4382-424c-a1ca-4fe56247d3f0",
"Boxes": [
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
9.342852,
8.2947235,
30.204987
],
"Extents": [
4.721209,
3.840038,
7.13942
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
10.185195,
8.2947235,
25.369698
],
"Extents": [
0.56427693,
3.840038,
2.754943
]
},
{
"Orientation": [
0.0,
-0.45114186,
0.0,
0.8924523
],
"Translation": [
7.2611203,
8.2947235,
24.960014
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.971782,
0.0,
0.23588088
],
"Translation": [
13.174814,
8.2947235,
26.20897
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
1.9628973,
8.2947235,
28.72342
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
},
{
"Orientation": [
0.0,
-0.46339568,
0.0,
0.8861515
],
"Translation": [
2.9583569,
8.2947235,
24.665436
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
0.29564455,
0.0,
0.95529807
],
"Translation": [
1.2597513,
8.2947235,
32.868458
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.9552981,
0.0,
0.2956444
],
"Translation": [
17.406881,
8.2947235,
27.53594
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.88615143,
0.0,
-0.46339577
],
"Translation": [
15.692545,
8.2947235,
35.74973
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.63340044,
0.0,
-0.7738242
],
"Translation": [
16.688007,
8.2947235,
31.691744
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
}
]
}
]
},
{
"MapName": "Midtown - Morning - Hybrid",
"Areas": [
{
"UUID": "f7cd064a-4382-424c-a1ca-4fe56247d3f0",
"Boxes": [
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
9.342852,
8.2947235,
30.204987
],
"Extents": [
4.721209,
3.840038,
7.13942
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
10.185195,
8.2947235,
25.369698
],
"Extents": [
0.56427693,
3.840038,
2.754943
]
},
{
"Orientation": [
0.0,
-0.45114186,
0.0,
0.8924523
],
"Translation": [
7.2611203,
8.2947235,
24.960014
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.971782,
0.0,
0.23588088
],
"Translation": [
13.174814,
8.2947235,
26.20897
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
1.9628973,
8.2947235,
28.72342
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
},
{
"Orientation": [
0.0,
-0.46339568,
0.0,
0.8861515
],
"Translation": [
2.9583569,
8.2947235,
24.665436
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
0.29564455,
0.0,
0.95529807
],
"Translation": [
1.2597513,
8.2947235,
32.868458
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.9552981,
0.0,
0.2956444
],
"Translation": [
17.406881,
8.2947235,
27.53594
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.88615143,
0.0,
-0.46339577
],
"Translation": [
15.692545,
8.2947235,
35.74973
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.63340044,
0.0,
-0.7738242
],
"Translation": [
16.688007,
8.2947235,
31.691744
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
}
]
}
]
},
{
"MapName": "Midtown - Night - Hybrid",
"Areas": [
{
"UUID": "f7cd064a-4382-424c-a1ca-4fe56247d3f0",
"Boxes": [
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
9.342852,
8.2947235,
30.204987
],
"Extents": [
4.721209,
3.840038,
7.13942
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
10.185195,
8.2947235,
25.369698
],
"Extents": [
0.56427693,
3.840038,
2.754943
]
},
{
"Orientation": [
0.0,
-0.45114186,
0.0,
0.8924523
],
"Translation": [
7.2611203,
8.2947235,
24.960014
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.971782,
0.0,
0.23588088
],
"Translation": [
13.174814,
8.2947235,
26.20897
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
1.9628973,
8.2947235,
28.72342
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
},
{
"Orientation": [
0.0,
-0.46339568,
0.0,
0.8861515
],
"Translation": [
2.9583569,
8.2947235,
24.665436
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
0.29564455,
0.0,
0.95529807
],
"Translation": [
1.2597513,
8.2947235,
32.868458
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.9552981,
0.0,
0.2956444
],
"Translation": [
17.406881,
8.2947235,
27.53594
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.88615143,
0.0,
-0.46339577
],
"Translation": [
15.692545,
8.2947235,
35.74973
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.63340044,
0.0,
-0.7738242
],
"Translation": [
16.688007,
8.2947235,
31.691744
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
}
]
}
]
},
{
"MapName": "Midtown - Night - Mirrorwatch Hybrid",
"Areas": [
{
"UUID": "f7cd064a-4382-424c-a1ca-4fe56247d3f0",
"Boxes": [
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
9.342852,
8.2947235,
30.204987
],
"Extents": [
4.721209,
3.840038,
7.13942
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
10.185195,
8.2947235,
25.369698
],
"Extents": [
0.56427693,
3.840038,
2.754943
]
},
{
"Orientation": [
0.0,
-0.45114186,
0.0,
0.8924523
],
"Translation": [
7.2611203,
8.2947235,
24.960014
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.971782,
0.0,
0.23588088
],
"Translation": [
13.174814,
8.2947235,
26.20897
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
1.9628973,
8.2947235,
28.72342
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
},
{
"Orientation": [
0.0,
-0.46339568,
0.0,
0.8861515
],
"Translation": [
2.9583569,
8.2947235,
24.665436
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
0.29564455,
0.0,
0.95529807
],
"Translation": [
1.2597513,
8.2947235,
32.868458
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.9552981,
0.0,
0.2956444
],
"Translation": [
17.406881,
8.2947235,
27.53594
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.88615143,
0.0,
-0.46339577
],
"Translation": [
15.692545,
8.2947235,
35.74973
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.63340044,
0.0,
-0.7738242
],
"Translation": [
16.688007,
8.2947235,
31.691744
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
}
]
}
]
},
{
"MapName": "Midtown - Night - Hybrid",
"Areas": [
{
"UUID": "f7cd064a-4382-424c-a1ca-4fe56247d3f0",
"Boxes": [
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
9.342852,
8.2947235,
30.204987
],
"Extents": [
4.721209,
3.840038,
7.13942
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
10.185195,
8.2947235,
25.369698
],
"Extents": [
0.56427693,
3.840038,
2.754943
]
},
{
"Orientation": [
0.0,
-0.45114186,
0.0,
0.8924523
],
"Translation": [
7.2611203,
8.2947235,
24.960014
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.971782,
0.0,
0.23588088
],
"Translation": [
13.174814,
8.2947235,
26.20897
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
1.9628973,
8.2947235,
28.72342
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
},
{
"Orientation": [
0.0,
-0.46339568,
0.0,
0.8861515
],
"Translation": [
2.9583569,
8.2947235,
24.665436
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
0.29564455,
0.0,
0.95529807
],
"Translation": [
1.2597513,
8.2947235,
32.868458
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.9552981,
0.0,
0.2956444
],
"Translation": [
17.406881,
8.2947235,
27.53594
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.88615143,
0.0,
-0.46339577
],
"Translation": [
15.692545,
8.2947235,
35.74973
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.63340044,
0.0,
-0.7738242
],
"Translation": [
16.688007,
8.2947235,
31.691744
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
}
]
}
]
},
{
"MapName": "Midtown - Night - Hybrid",
"Areas": [
{
"UUID": "f7cd064a-4382-424c-a1ca-4fe56247d3f0",
"Boxes": [
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
9.342852,
8.2947235,
30.204987
],
"Extents": [
4.721209,
3.840038,
7.13942
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
10.185195,
8.2947235,
25.369698
],
"Extents": [
0.56427693,
3.840038,
2.754943
]
},
{
"Orientation": [
0.0,
-0.45114186,
0.0,
0.8924523
],
"Translation": [
7.2611203,
8.2947235,
24.960014
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.971782,
0.0,
0.23588088
],
"Translation": [
13.174814,
8.2947235,
26.20897
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
1.9628973,
8.2947235,
28.72342
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
},
{
"Orientation": [
0.0,
-0.46339568,
0.0,
0.8861515
],
"Translation": [
2.9583569,
8.2947235,
24.665436
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
0.29564455,
0.0,
0.95529807
],
"Translation": [
1.2597513,
8.2947235,
32.868458
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.9552981,
0.0,
0.2956444
],
"Translation": [
17.406881,
8.2947235,
27.53594
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.88615143,
0.0,
-0.46339577
],
"Translation": [
15.692545,
8.2947235,
35.74973
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.63340044,
0.0,
-0.7738242
],
"Translation": [
16.688007,
8.2947235,
31.691744
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
}
]
}
]
},
{
"MapName": "Midtown - Morning - Hybrid",
"Areas": [
{
"UUID": "f7cd064a-4382-424c-a1ca-4fe56247d3f0",
"Boxes": [
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
9.342852,
8.2947235,
30.204987
],
"Extents": [
4.721209,
3.840038,
7.13942
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
10.185195,
8.2947235,
25.369698
],
"Extents": [
0.56427693,
3.840038,
2.754943
]
},
{
"Orientation": [
0.0,
-0.45114186,
0.0,
0.8924523
],
"Translation": [
7.2611203,
8.2947235,
24.960014
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.971782,
0.0,
0.23588088
],
"Translation": [
13.174814,
8.2947235,
26.20897
],
"Extents": [
0.33444408,
3.840038,
0.7462615
]
},
{
"Orientation": [
0.0,
-0.7738242,
0.0,
0.63340056
],
"Translation": [
1.9628973,
8.2947235,
28.72342
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
},
{
"Orientation": [
0.0,
-0.46339568,
0.0,
0.8861515
],
"Translation": [
2.9583569,
8.2947235,
24.665436
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
0.29564455,
0.0,
0.95529807
],
"Translation": [
1.2597513,
8.2947235,
32.868458
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.9552981,
0.0,
0.2956444
],
"Translation": [
17.406881,
8.2947235,
27.53594
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.88615143,
0.0,
-0.46339577
],
"Translation": [
15.692545,
8.2947235,
35.74973
],
"Extents": [
0.33444408,
3.840038,
0.52048105
]
},
{
"Orientation": [
0.0,
-0.63340044,
0.0,
-0.7738242
],
"Translation": [
16.688007,
8.2947235,
31.691744
],
"Extents": [
3.9367843,
3.840038,
0.3962654
]
}
]
}
]
},
{
"MapName": "Workshop Island - Evening - Elimination",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Island - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Island - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Island - Evening - Skirmish",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Island - Evening - Deathmatch",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Expanse - Evening - Elimination",
"Areas": [
{
"UUID": "020138e5-2cb0-457d-9f20-ab3556972e25",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.074946284,
4.1464767,
-0.04766488
],
"Extents": [
7.25,
4.316663,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Expanse - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "020138e5-2cb0-457d-9f20-ab3556972e25",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.074946284,
4.1464767,
-0.04766488
],
"Extents": [
7.25,
4.316663,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Expanse - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "020138e5-2cb0-457d-9f20-ab3556972e25",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.074946284,
4.1464767,
-0.04766488
],
"Extents": [
7.25,
4.316663,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Expanse - Evening - Skirmish",
"Areas": [
{
"UUID": "020138e5-2cb0-457d-9f20-ab3556972e25",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.074946284,
4.1464767,
-0.04766488
],
"Extents": [
7.25,
4.316663,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Expanse - Evening - Deathmatch",
"Areas": [
{
"UUID": "020138e5-2cb0-457d-9f20-ab3556972e25",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.074946284,
4.1464767,
-0.04766488
],
"Extents": [
7.25,
4.316663,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Chamber - 9241 - Bounty Hunter",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Chamber - 9241 - Team Deathmatch",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Chamber - 9241 - Elimination",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Chamber - 9241 - Deathmatch",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Chamber - 9241 - Skirmish",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Deathmatch",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Skirmish",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Assault",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Team Deathmatch",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Bounty Hunter",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Paris - Evening - Love of Geometry",
"Areas": [
{
"UUID": "bdcad127-9024-4588-bceb-01e5cae068d3",
"Boxes": [
{
"Orientation": [
0.0,
-0.22688413,
0.0,
-0.9739218
],
"Translation": [
-94.96053,
15.340961,
-82.05952
],
"Extents": [
8.802433,
3.7113829,
8.30984
]
}
]
},
{
"UUID": "96b10c1c-9c57-479a-ae3b-e53fc5c3e152",
"Boxes": [
{
"Orientation": [
0.0,
0.38015628,
0.0,
-0.9249223
],
"Translation": [
-54.397606,
14.675493,
13.9597
],
"Extents": [
6.203696,
3.650939,
7.2645874
]
}
]
}
]
},
{
"MapName": "Workshop Expanse (Night) - 9241 - Bounty Hunter",
"Areas": [
{
"UUID": "020138e5-2cb0-457d-9f20-ab3556972e25",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.074946284,
4.1464767,
-0.04766488
],
"Extents": [
7.25,
4.316663,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Expanse (Night) - 9241 - Team Deathmatch",
"Areas": [
{
"UUID": "020138e5-2cb0-457d-9f20-ab3556972e25",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.074946284,
4.1464767,
-0.04766488
],
"Extents": [
7.25,
4.316663,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Expanse (Night) - 9241 - Elimination",
"Areas": [
{
"UUID": "020138e5-2cb0-457d-9f20-ab3556972e25",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.074946284,
4.1464767,
-0.04766488
],
"Extents": [
7.25,
4.316663,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Expanse (Night) - 9241 - Deathmatch",
"Areas": [
{
"UUID": "020138e5-2cb0-457d-9f20-ab3556972e25",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.074946284,
4.1464767,
-0.04766488
],
"Extents": [
7.25,
4.316663,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Expanse (Night) - 9241 - Skirmish",
"Areas": [
{
"UUID": "020138e5-2cb0-457d-9f20-ab3556972e25",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.074946284,
4.1464767,
-0.04766488
],
"Extents": [
7.25,
4.316663,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Island (Night) - 9243 - Deathmatch",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Island (Night) - 9243 - Elimination",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Island (Night) - 9243 - Bounty Hunter",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Island (Night) - 9243 - Skirmish",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Island (Night) - 9243 - Team Deathmatch",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Antarctic Peninsula - Night - Mirrorwatch Control",
"Areas": [
{
"UUID": "aec8c31b-40b5-40c9-84ac-c8229f52e0be",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-8.940695E-08
],
"Translation": [
270.0,
41.192894,
159.99994
],
"Extents": [
8.912499,
2.25,
7.0125003
]
}
]
},
{
"UUID": "b4e79d43-b87b-4486-9ca9-2804261449fb",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-223.0
],
"Extents": [
7.40625,
3.2625,
4.95
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
286.42456,
-10.000002,
-228.29294
],
"Extents": [
3.71875,
3.0,
3.3
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826834
],
"Translation": [
281.39856,
-10.750003,
-228.11612
],
"Extents": [
3.5,
3.75,
3.3
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-216.25
],
"Extents": [
3.25,
3.2625,
2.1875
]
},
{
"Orientation": [
0.0,
0.38268355,
0.0,
0.92387956
],
"Translation": [
288.6339,
-10.250001,
-218.19452
],
"Extents": [
1.875,
3.2625,
2.125
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
-0.9238795
],
"Translation": [
279.29288,
-11.000004,
-218.12129
],
"Extents": [
1.875,
3.9875002,
2.0
]
}
]
},
{
"UUID": "c5baf680-ee4b-4d24-b422-6345883560ba",
"Boxes": [
{
"Orientation": [
0.0,
0.70710677,
0.0,
-0.707107
],
"Translation": [
-74.458275,
-158.30055,
60.06049
],
"Extents": [
8.912499,
3.014313,
7.559482
]
}
]
}
]
},
{
"MapName": "Antarctic Peninsula - Morning - Mirrorwatch Control",
"Areas": [
{
"UUID": "aec8c31b-40b5-40c9-84ac-c8229f52e0be",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-8.940695E-08
],
"Translation": [
270.0,
41.192894,
159.99994
],
"Extents": [
8.912499,
2.25,
7.0125003
]
}
]
},
{
"UUID": "b4e79d43-b87b-4486-9ca9-2804261449fb",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-223.0
],
"Extents": [
7.40625,
3.2625,
4.95
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
286.42456,
-10.000002,
-228.29294
],
"Extents": [
3.71875,
3.0,
3.3
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826834
],
"Translation": [
281.39856,
-10.750003,
-228.11612
],
"Extents": [
3.5,
3.75,
3.3
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-216.25
],
"Extents": [
3.25,
3.2625,
2.1875
]
},
{
"Orientation": [
0.0,
0.38268355,
0.0,
0.92387956
],
"Translation": [
288.6339,
-10.250001,
-218.19452
],
"Extents": [
1.875,
3.2625,
2.125
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
-0.9238795
],
"Translation": [
279.29288,
-11.000004,
-218.12129
],
"Extents": [
1.875,
3.9875002,
2.0
]
}
]
},
{
"UUID": "c5baf680-ee4b-4d24-b422-6345883560ba",
"Boxes": [
{
"Orientation": [
0.0,
0.70710677,
0.0,
-0.707107
],
"Translation": [
-74.458275,
-158.30055,
60.06049
],
"Extents": [
8.912499,
3.014313,
7.559482
]
}
]
}
]
},
{
"MapName": "Antarctic Peninsula - Night - Control",
"Areas": [
{
"UUID": "aec8c31b-40b5-40c9-84ac-c8229f52e0be",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-8.940695E-08
],
"Translation": [
270.0,
41.192894,
159.99994
],
"Extents": [
8.912499,
2.25,
7.0125003
]
}
]
},
{
"UUID": "b4e79d43-b87b-4486-9ca9-2804261449fb",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-223.0
],
"Extents": [
7.40625,
3.2625,
4.95
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
286.42456,
-10.000002,
-228.29294
],
"Extents": [
3.71875,
3.0,
3.3
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826834
],
"Translation": [
281.39856,
-10.750003,
-228.11612
],
"Extents": [
3.5,
3.75,
3.3
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-216.25
],
"Extents": [
3.25,
3.2625,
2.1875
]
},
{
"Orientation": [
0.0,
0.38268355,
0.0,
0.92387956
],
"Translation": [
288.6339,
-10.250001,
-218.19452
],
"Extents": [
1.875,
3.2625,
2.125
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
-0.9238795
],
"Translation": [
279.29288,
-11.000004,
-218.12129
],
"Extents": [
1.875,
3.9875002,
2.0
]
}
]
},
{
"UUID": "c5baf680-ee4b-4d24-b422-6345883560ba",
"Boxes": [
{
"Orientation": [
0.0,
0.70710677,
0.0,
-0.707107
],
"Translation": [
-74.458275,
-158.30055,
60.06049
],
"Extents": [
8.912499,
3.014313,
7.559482
]
}
]
}
]
},
{
"MapName": "Antarctic Peninsula - Night - Skirmish",
"Areas": [
{
"UUID": "aec8c31b-40b5-40c9-84ac-c8229f52e0be",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-8.940695E-08
],
"Translation": [
270.0,
41.192894,
159.99994
],
"Extents": [
8.912499,
2.25,
7.0125003
]
}
]
},
{
"UUID": "b4e79d43-b87b-4486-9ca9-2804261449fb",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-223.0
],
"Extents": [
7.40625,
3.2625,
4.95
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
286.42456,
-10.000002,
-228.29294
],
"Extents": [
3.71875,
3.0,
3.3
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826834
],
"Translation": [
281.39856,
-10.750003,
-228.11612
],
"Extents": [
3.5,
3.75,
3.3
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-216.25
],
"Extents": [
3.25,
3.2625,
2.1875
]
},
{
"Orientation": [
0.0,
0.38268355,
0.0,
0.92387956
],
"Translation": [
288.6339,
-10.250001,
-218.19452
],
"Extents": [
1.875,
3.2625,
2.125
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
-0.9238795
],
"Translation": [
279.29288,
-11.000004,
-218.12129
],
"Extents": [
1.875,
3.9875002,
2.0
]
}
]
},
{
"UUID": "c5baf680-ee4b-4d24-b422-6345883560ba",
"Boxes": [
{
"Orientation": [
0.0,
0.70710677,
0.0,
-0.707107
],
"Translation": [
-74.458275,
-158.30055,
60.06049
],
"Extents": [
8.912499,
3.014313,
7.559482
]
}
]
}
]
},
{
"MapName": "Antarctic Peninsula - Morning - Control",
"Areas": [
{
"UUID": "aec8c31b-40b5-40c9-84ac-c8229f52e0be",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-8.940695E-08
],
"Translation": [
270.0,
41.192894,
159.99994
],
"Extents": [
8.912499,
2.25,
7.0125003
]
}
]
},
{
"UUID": "b4e79d43-b87b-4486-9ca9-2804261449fb",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-223.0
],
"Extents": [
7.40625,
3.2625,
4.95
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
286.42456,
-10.000002,
-228.29294
],
"Extents": [
3.71875,
3.0,
3.3
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826834
],
"Translation": [
281.39856,
-10.750003,
-228.11612
],
"Extents": [
3.5,
3.75,
3.3
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-216.25
],
"Extents": [
3.25,
3.2625,
2.1875
]
},
{
"Orientation": [
0.0,
0.38268355,
0.0,
0.92387956
],
"Translation": [
288.6339,
-10.250001,
-218.19452
],
"Extents": [
1.875,
3.2625,
2.125
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
-0.9238795
],
"Translation": [
279.29288,
-11.000004,
-218.12129
],
"Extents": [
1.875,
3.9875002,
2.0
]
}
]
},
{
"UUID": "c5baf680-ee4b-4d24-b422-6345883560ba",
"Boxes": [
{
"Orientation": [
0.0,
0.70710677,
0.0,
-0.707107
],
"Translation": [
-74.458275,
-158.30055,
60.06049
],
"Extents": [
8.912499,
3.014313,
7.559482
]
}
]
}
]
},
{
"MapName": "Antarctic Peninsula - Morning - Skirmish",
"Areas": [
{
"UUID": "aec8c31b-40b5-40c9-84ac-c8229f52e0be",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-8.940695E-08
],
"Translation": [
270.0,
41.192894,
159.99994
],
"Extents": [
8.912499,
2.25,
7.0125003
]
}
]
},
{
"UUID": "b4e79d43-b87b-4486-9ca9-2804261449fb",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-223.0
],
"Extents": [
7.40625,
3.2625,
4.95
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
286.42456,
-10.000002,
-228.29294
],
"Extents": [
3.71875,
3.0,
3.3
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826834
],
"Translation": [
281.39856,
-10.750003,
-228.11612
],
"Extents": [
3.5,
3.75,
3.3
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-216.25
],
"Extents": [
3.25,
3.2625,
2.1875
]
},
{
"Orientation": [
0.0,
0.38268355,
0.0,
0.92387956
],
"Translation": [
288.6339,
-10.250001,
-218.19452
],
"Extents": [
1.875,
3.2625,
2.125
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
-0.9238795
],
"Translation": [
279.29288,
-11.000004,
-218.12129
],
"Extents": [
1.875,
3.9875002,
2.0
]
}
]
},
{
"UUID": "c5baf680-ee4b-4d24-b422-6345883560ba",
"Boxes": [
{
"Orientation": [
0.0,
0.70710677,
0.0,
-0.707107
],
"Translation": [
-74.458275,
-158.30055,
60.06049
],
"Extents": [
8.912499,
3.014313,
7.559482
]
}
]
}
]
},
{
"MapName": "Antarctic Peninsula - Night - Control",
"Areas": [
{
"UUID": "aec8c31b-40b5-40c9-84ac-c8229f52e0be",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-8.940695E-08
],
"Translation": [
270.0,
41.192894,
159.99994
],
"Extents": [
8.912499,
2.25,
7.0125003
]
}
]
},
{
"UUID": "b4e79d43-b87b-4486-9ca9-2804261449fb",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-223.0
],
"Extents": [
7.40625,
3.2625,
4.95
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
286.42456,
-10.000002,
-228.29294
],
"Extents": [
3.71875,
3.0,
3.3
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826834
],
"Translation": [
281.39856,
-10.750003,
-228.11612
],
"Extents": [
3.5,
3.75,
3.3
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-216.25
],
"Extents": [
3.25,
3.2625,
2.1875
]
},
{
"Orientation": [
0.0,
0.38268355,
0.0,
0.92387956
],
"Translation": [
288.6339,
-10.250001,
-218.19452
],
"Extents": [
1.875,
3.2625,
2.125
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
-0.9238795
],
"Translation": [
279.29288,
-11.000004,
-218.12129
],
"Extents": [
1.875,
3.9875002,
2.0
]
}
]
},
{
"UUID": "c5baf680-ee4b-4d24-b422-6345883560ba",
"Boxes": [
{
"Orientation": [
0.0,
0.70710677,
0.0,
-0.707107
],
"Translation": [
-74.458275,
-158.30055,
60.06049
],
"Extents": [
8.912499,
3.014313,
7.559482
]
}
]
}
]
},
{
"MapName": "Antarctic Peninsula - Morning - Control",
"Areas": [
{
"UUID": "aec8c31b-40b5-40c9-84ac-c8229f52e0be",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-8.940695E-08
],
"Translation": [
270.0,
41.192894,
159.99994
],
"Extents": [
8.912499,
2.25,
7.0125003
]
}
]
},
{
"UUID": "b4e79d43-b87b-4486-9ca9-2804261449fb",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-223.0
],
"Extents": [
7.40625,
3.2625,
4.95
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
286.42456,
-10.000002,
-228.29294
],
"Extents": [
3.71875,
3.0,
3.3
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
0.3826834
],
"Translation": [
281.39856,
-10.750003,
-228.11612
],
"Extents": [
3.5,
3.75,
3.3
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
284.0,
-10.250001,
-216.25
],
"Extents": [
3.25,
3.2625,
2.1875
]
},
{
"Orientation": [
0.0,
0.38268355,
0.0,
0.92387956
],
"Translation": [
288.6339,
-10.250001,
-218.19452
],
"Extents": [
1.875,
3.2625,
2.125
]
},
{
"Orientation": [
0.0,
0.38268346,
0.0,
-0.9238795
],
"Translation": [
279.29288,
-11.000004,
-218.12129
],
"Extents": [
1.875,
3.9875002,
2.0
]
}
]
},
{
"UUID": "c5baf680-ee4b-4d24-b422-6345883560ba",
"Boxes": [
{
"Orientation": [
0.0,
0.70710677,
0.0,
-0.707107
],
"Translation": [
-74.458275,
-158.30055,
60.06049
],
"Extents": [
8.912499,
3.014313,
7.559482
]
}
]
}
]
},
{
"MapName": "Suravasa - Evening - Flashpoint",
"Areas": [
{
"UUID": "e07c8a78-01b9-4d93-ade1-8fc24e1f5188",
"Boxes": [
{
"Orientation": [
0.0,
0.7071068,
0.0,
0.7071067
],
"Translation": [
61.917557,
8.738193,
42.022297
],
"Extents": [
6.99062,
5.285861,
8.273805
]
}
]
},
{
"UUID": "f13c6f6c-7a69-4816-b1fa-5cd827551975",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-2.3349283,
7.055982,
-0.05963254
],
"Extents": [
6.9731627,
3.4326022,
6.675591
]
}
]
},
{
"UUID": "91de85f2-e21f-4e18-a327-754ea44f68d5",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-82.75339,
-1.1935134,
41.998055
],
"Extents": [
7.760866,
5.791424,
5.8913183
]
},
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-74.14649,
-1.1935134,
47.27173
],
"Extents": [
2.5318918,
5.791424,
3.2209415
]
},
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-74.13528,
-1.1935134,
36.69848
],
"Extents": [
2.5559568,
5.791424,
3.2198732
]
}
]
},
{
"UUID": "e1abfe16-ccab-4645-97b5-4225c9ac9f46",
"Boxes": [
{
"Orientation": [
0.0,
-0.70710707,
0.0,
0.7071067
],
"Translation": [
70.39765,
7.3091335,
-41.98617
],
"Extents": [
6.268983,
5.285861,
7.293296
]
}
]
},
{
"UUID": "99f8c433-160c-411c-a1ca-0d8df82cda6e",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
-75.918274,
8.380723,
-41.0
],
"Extents": [
7.967819,
5.791424,
6.8445787
]
}
]
}
]
},
{
"MapName": "Suravasa - Evening - Battle of the Beasts",
"Areas": [
{
"UUID": "e07c8a78-01b9-4d93-ade1-8fc24e1f5188",
"Boxes": [
{
"Orientation": [
0.0,
0.7071068,
0.0,
0.7071067
],
"Translation": [
61.917557,
8.738193,
42.022297
],
"Extents": [
6.99062,
5.285861,
8.273805
]
}
]
},
{
"UUID": "f13c6f6c-7a69-4816-b1fa-5cd827551975",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-2.3349283,
7.055982,
-0.05963254
],
"Extents": [
6.9731627,
3.4326022,
6.675591
]
}
]
},
{
"UUID": "91de85f2-e21f-4e18-a327-754ea44f68d5",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-82.75339,
-1.1935134,
41.998055
],
"Extents": [
7.760866,
5.791424,
5.8913183
]
},
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-74.14649,
-1.1935134,
47.27173
],
"Extents": [
2.5318918,
5.791424,
3.2209415
]
},
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-74.13528,
-1.1935134,
36.69848
],
"Extents": [
2.5559568,
5.791424,
3.2198732
]
}
]
},
{
"UUID": "e1abfe16-ccab-4645-97b5-4225c9ac9f46",
"Boxes": [
{
"Orientation": [
0.0,
-0.70710707,
0.0,
0.7071067
],
"Translation": [
70.39765,
7.3091335,
-41.98617
],
"Extents": [
6.268983,
5.285861,
7.293296
]
}
]
},
{
"UUID": "99f8c433-160c-411c-a1ca-0d8df82cda6e",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
-75.918274,
8.380723,
-41.0
],
"Extents": [
7.967819,
5.791424,
6.8445787
]
}
]
}
]
},
{
"MapName": "Suravasa - Evening - Flashpoint",
"Areas": [
{
"UUID": "e07c8a78-01b9-4d93-ade1-8fc24e1f5188",
"Boxes": [
{
"Orientation": [
0.0,
0.7071068,
0.0,
0.7071067
],
"Translation": [
61.917557,
8.738193,
42.022297
],
"Extents": [
6.99062,
5.285861,
8.273805
]
}
]
},
{
"UUID": "f13c6f6c-7a69-4816-b1fa-5cd827551975",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-2.3349283,
7.055982,
-0.05963254
],
"Extents": [
6.9731627,
3.4326022,
6.675591
]
}
]
},
{
"UUID": "91de85f2-e21f-4e18-a327-754ea44f68d5",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-82.75339,
-1.1935134,
41.998055
],
"Extents": [
7.760866,
5.791424,
5.8913183
]
},
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-74.14649,
-1.1935134,
47.27173
],
"Extents": [
2.5318918,
5.791424,
3.2209415
]
},
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-74.13528,
-1.1935134,
36.69848
],
"Extents": [
2.5559568,
5.791424,
3.2198732
]
}
]
},
{
"UUID": "e1abfe16-ccab-4645-97b5-4225c9ac9f46",
"Boxes": [
{
"Orientation": [
0.0,
-0.70710707,
0.0,
0.7071067
],
"Translation": [
70.39765,
7.3091335,
-41.98617
],
"Extents": [
6.268983,
5.285861,
7.293296
]
}
]
},
{
"UUID": "99f8c433-160c-411c-a1ca-0d8df82cda6e",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
-75.918274,
8.380723,
-41.0
],
"Extents": [
7.967819,
5.791424,
6.8445787
]
}
]
}
]
},
{
"MapName": "Suravasa - Evening - Skirmish",
"Areas": [
{
"UUID": "e07c8a78-01b9-4d93-ade1-8fc24e1f5188",
"Boxes": [
{
"Orientation": [
0.0,
0.7071068,
0.0,
0.7071067
],
"Translation": [
61.917557,
8.738193,
42.022297
],
"Extents": [
6.99062,
5.285861,
8.273805
]
}
]
},
{
"UUID": "f13c6f6c-7a69-4816-b1fa-5cd827551975",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-2.3349283,
7.055982,
-0.05963254
],
"Extents": [
6.9731627,
3.4326022,
6.675591
]
}
]
},
{
"UUID": "91de85f2-e21f-4e18-a327-754ea44f68d5",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-82.75339,
-1.1935134,
41.998055
],
"Extents": [
7.760866,
5.791424,
5.8913183
]
},
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-74.14649,
-1.1935134,
47.27173
],
"Extents": [
2.5318918,
5.791424,
3.2209415
]
},
{
"Orientation": [
0.0,
-0.7071066,
0.0,
-0.70710695
],
"Translation": [
-74.13528,
-1.1935134,
36.69848
],
"Extents": [
2.5559568,
5.791424,
3.2198732
]
}
]
},
{
"UUID": "e1abfe16-ccab-4645-97b5-4225c9ac9f46",
"Boxes": [
{
"Orientation": [
0.0,
-0.70710707,
0.0,
0.7071067
],
"Translation": [
70.39765,
7.3091335,
-41.98617
],
"Extents": [
6.268983,
5.285861,
7.293296
]
}
]
},
{
"UUID": "99f8c433-160c-411c-a1ca-0d8df82cda6e",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
-75.918274,
8.380723,
-41.0
],
"Extents": [
7.967819,
5.791424,
6.8445787
]
}
]
}
]
},
{
"MapName": "Workshop Green Screen - 9244 - Elimination",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Green Screen - 9244 - Deathmatch",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Green Screen - 9244 - Bounty Hunter",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Green Screen - 9244 - Team Deathmatch",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "Workshop Green Screen - 9244 - Skirmish",
"Areas": [
{
"UUID": "77e1f5c4-3f77-46de-a853-e169a1a2b2a1",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
0.07490003,
4.1465,
-0.0477
],
"Extents": [
7.25,
4.32,
8.2
]
}
]
}
]
},
{
"MapName": "New Junk City - A03A - Flashpoint",
"Areas": [
{
"UUID": "11d2e82b-8366-460b-9b6e-1945163030b5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-3.576278E-07
],
"Translation": [
70.89383,
6.7384353,
43.027077
],
"Extents": [
8.594275,
4.1730485,
3.9180596
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
-3.576278E-07
],
"Translation": [
70.97412,
6.7384353,
43.011055
],
"Extents": [
3.940122,
4.1730485,
8.616934
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268378
],
"Translation": [
70.95356,
6.7384353,
43.013268
],
"Extents": [
3.2872431,
4.1730485,
8.823927
]
},
{
"Orientation": [
0.0,
0.38268325,
0.0,
-0.92387974
],
"Translation": [
70.90894,
6.7384353,
42.977238
],
"Extents": [
3.3348606,
4.1730485,
8.843001
]
}
]
},
{
"UUID": "fdf74782-5f68-4cbd-9f6f-61f31145c58f",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
72.0087,
-0.5,
-42.995026
],
"Extents": [
8.012146,
3.25,
6.8181286
]
}
]
},
{
"UUID": "faa311d8-fd2a-49b2-96c8-c1ab12ea3e8f",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-75.63057,
2.380821,
-39.998127
],
"Extents": [
6.598385,
5.791424,
6.7541876
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-83.54991,
-0.22029924,
-40.01976
],
"Extents": [
1.4179119,
3.1903033,
6.752004
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-82.77892,
2.380821,
-45.879417
],
"Extents": [
2.188897,
5.791424,
0.8978479
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-82.57702,
2.380821,
-34.10776
],
"Extents": [
2.3907971,
5.791424,
0.8808012
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
-0.3826833
],
"Translation": [
-82.579124,
2.380821,
-44.057045
],
"Extents": [
2.3466868,
5.791424,
1.0504315
]
},
{
"Orientation": [
0.0,
-0.38268352,
0.0,
-0.92387944
],
"Translation": [
-82.35585,
2.380821,
-36.016846
],
"Extents": [
2.5696268,
5.791424,
1.1007555
]
}
]
},
{
"UUID": "d1b69cbf-acd2-414a-82c0-37ec34bac2a9",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
0.17841214,
4.4354196,
-0.02932614
],
"Extents": [
1.5925016,
5.8800063,
7.5778294
]
},
{
"Orientation": [
0.0,
-0.55557024,
0.0,
0.83146966
],
"Translation": [
0.14463735,
4.4354196,
-0.12595063
],
"Extents": [
1.5925016,
5.8800063,
7.595528
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
-0.07700521,
4.4354196,
-0.04095602
],
"Extents": [
1.5925016,
5.8800063,
7.8329997
]
},
{
"Orientation": [
0.0,
-0.19509023,
0.0,
0.9807853
],
"Translation": [
-0.094886184,
4.4354196,
-0.014234185
],
"Extents": [
1.5925016,
5.8800063,
7.764736
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.08863509,
4.4354196,
-0.021401525
],
"Extents": [
1.5925016,
5.8800063,
7.7158103
]
},
{
"Orientation": [
0.0,
0.19509041,
0.0,
0.9807853
],
"Translation": [
-0.08735141,
4.4354196,
-0.026226878
],
"Extents": [
1.5925016,
5.8800063,
7.8149714
]
},
{
"Orientation": [
0.0,
0.55557024,
0.0,
0.83146954
],
"Translation": [
0.16958827,
4.4354196,
0.07763463
],
"Extents": [
1.5925016,
5.8800063,
7.5643325
]
},
{
"Orientation": [
0.0,
0.3826835,
0.0,
0.9238795
],
"Translation": [
-0.026238203,
4.4354196,
0.0330711
],
"Extents": [
1.5925016,
5.8800063,
7.7333155
]
},
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
-6.881614,
0.25988883,
-0.008895755
],
"Extents": [
4.787803,
1.539471,
1.6721278
]
}
]
},
{
"UUID": "78726ed3-e3d2-43ff-8cd9-42ffc7161c56",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.7683713E-07
],
"Translation": [
-75.85025,
7.494202,
39.998844
],
"Extents": [
8.902907,
4.2854967,
9.112785
]
}
]
}
]
},
{
"MapName": "New Junk City - A03A - Battle of the Beasts",
"Areas": [
{
"UUID": "35bb8200-6c1a-4781-b271-35d3d61581aa",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
0.17841214,
4.4354196,
-0.02932614
],
"Extents": [
1.5925016,
5.8800063,
7.5778294
]
},
{
"Orientation": [
0.0,
-0.55557024,
0.0,
0.83146966
],
"Translation": [
0.14463735,
4.4354196,
-0.12595063
],
"Extents": [
1.5925016,
5.8800063,
7.595528
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
-0.07700521,
4.4354196,
-0.04095602
],
"Extents": [
1.5925016,
5.8800063,
7.8329997
]
},
{
"Orientation": [
0.0,
-0.19509023,
0.0,
0.9807853
],
"Translation": [
-0.094886184,
4.4354196,
-0.014234185
],
"Extents": [
1.5925016,
5.8800063,
7.764736
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.08863509,
4.4354196,
-0.021401525
],
"Extents": [
1.5925016,
5.8800063,
7.7158103
]
},
{
"Orientation": [
0.0,
0.19509041,
0.0,
0.9807853
],
"Translation": [
-0.08735141,
4.4354196,
-0.026226878
],
"Extents": [
1.5925016,
5.8800063,
7.8149714
]
},
{
"Orientation": [
0.0,
0.55557024,
0.0,
0.83146954
],
"Translation": [
0.16958827,
4.4354196,
0.07763463
],
"Extents": [
1.5925016,
5.8800063,
7.5643325
]
},
{
"Orientation": [
0.0,
0.3826835,
0.0,
0.9238795
],
"Translation": [
-0.026238203,
4.4354196,
0.0330711
],
"Extents": [
1.5925016,
5.8800063,
7.7333155
]
},
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
-6.881614,
0.25988883,
-0.008895755
],
"Extents": [
4.787803,
1.539471,
1.6721278
]
}
]
}
]
},
{
"MapName": "New Junk City - A03A - Flashpoint",
"Areas": [
{
"UUID": "11d2e82b-8366-460b-9b6e-1945163030b5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-3.576278E-07
],
"Translation": [
70.89383,
6.7384353,
43.027077
],
"Extents": [
8.594275,
4.1730485,
3.9180596
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
-3.576278E-07
],
"Translation": [
70.97412,
6.7384353,
43.011055
],
"Extents": [
3.940122,
4.1730485,
8.616934
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268378
],
"Translation": [
70.95356,
6.7384353,
43.013268
],
"Extents": [
3.2872431,
4.1730485,
8.823927
]
},
{
"Orientation": [
0.0,
0.38268325,
0.0,
-0.92387974
],
"Translation": [
70.90894,
6.7384353,
42.977238
],
"Extents": [
3.3348606,
4.1730485,
8.843001
]
}
]
},
{
"UUID": "fdf74782-5f68-4cbd-9f6f-61f31145c58f",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
72.0087,
-0.5,
-42.995026
],
"Extents": [
8.012146,
3.25,
6.8181286
]
}
]
},
{
"UUID": "faa311d8-fd2a-49b2-96c8-c1ab12ea3e8f",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-75.63057,
2.380821,
-39.998127
],
"Extents": [
6.598385,
5.791424,
6.7541876
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-83.54991,
-0.22029924,
-40.01976
],
"Extents": [
1.4179119,
3.1903033,
6.752004
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-82.77892,
2.380821,
-45.879417
],
"Extents": [
2.188897,
5.791424,
0.8978479
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-82.57702,
2.380821,
-34.10776
],
"Extents": [
2.3907971,
5.791424,
0.8808012
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
-0.3826833
],
"Translation": [
-82.579124,
2.380821,
-44.057045
],
"Extents": [
2.3466868,
5.791424,
1.0504315
]
},
{
"Orientation": [
0.0,
-0.38268352,
0.0,
-0.92387944
],
"Translation": [
-82.35585,
2.380821,
-36.016846
],
"Extents": [
2.5696268,
5.791424,
1.1007555
]
}
]
},
{
"UUID": "d1b69cbf-acd2-414a-82c0-37ec34bac2a9",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
0.17841214,
4.4354196,
-0.02932614
],
"Extents": [
1.5925016,
5.8800063,
7.5778294
]
},
{
"Orientation": [
0.0,
-0.55557024,
0.0,
0.83146966
],
"Translation": [
0.14463735,
4.4354196,
-0.12595063
],
"Extents": [
1.5925016,
5.8800063,
7.595528
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
-0.07700521,
4.4354196,
-0.04095602
],
"Extents": [
1.5925016,
5.8800063,
7.8329997
]
},
{
"Orientation": [
0.0,
-0.19509023,
0.0,
0.9807853
],
"Translation": [
-0.094886184,
4.4354196,
-0.014234185
],
"Extents": [
1.5925016,
5.8800063,
7.764736
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.08863509,
4.4354196,
-0.021401525
],
"Extents": [
1.5925016,
5.8800063,
7.7158103
]
},
{
"Orientation": [
0.0,
0.19509041,
0.0,
0.9807853
],
"Translation": [
-0.08735141,
4.4354196,
-0.026226878
],
"Extents": [
1.5925016,
5.8800063,
7.8149714
]
},
{
"Orientation": [
0.0,
0.55557024,
0.0,
0.83146954
],
"Translation": [
0.16958827,
4.4354196,
0.07763463
],
"Extents": [
1.5925016,
5.8800063,
7.5643325
]
},
{
"Orientation": [
0.0,
0.3826835,
0.0,
0.9238795
],
"Translation": [
-0.026238203,
4.4354196,
0.0330711
],
"Extents": [
1.5925016,
5.8800063,
7.7333155
]
},
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
-6.881614,
0.25988883,
-0.008895755
],
"Extents": [
4.787803,
1.539471,
1.6721278
]
}
]
},
{
"UUID": "78726ed3-e3d2-43ff-8cd9-42ffc7161c56",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.7683713E-07
],
"Translation": [
-75.85025,
7.494202,
39.998844
],
"Extents": [
8.902907,
4.2854967,
9.112785
]
}
]
}
]
},
{
"MapName": "New Junk City - A03A - Skirmish",
"Areas": [
{
"UUID": "11d2e82b-8366-460b-9b6e-1945163030b5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-3.576278E-07
],
"Translation": [
70.89383,
6.7384353,
43.027077
],
"Extents": [
8.594275,
4.1730485,
3.9180596
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
-3.576278E-07
],
"Translation": [
70.97412,
6.7384353,
43.011055
],
"Extents": [
3.940122,
4.1730485,
8.616934
]
},
{
"Orientation": [
0.0,
0.92387944,
0.0,
-0.38268378
],
"Translation": [
70.95356,
6.7384353,
43.013268
],
"Extents": [
3.2872431,
4.1730485,
8.823927
]
},
{
"Orientation": [
0.0,
0.38268325,
0.0,
-0.92387974
],
"Translation": [
70.90894,
6.7384353,
42.977238
],
"Extents": [
3.3348606,
4.1730485,
8.843001
]
}
]
},
{
"UUID": "fdf74782-5f68-4cbd-9f6f-61f31145c58f",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
72.0087,
-0.5,
-42.995026
],
"Extents": [
8.012146,
3.25,
6.8181286
]
}
]
},
{
"UUID": "faa311d8-fd2a-49b2-96c8-c1ab12ea3e8f",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-75.63057,
2.380821,
-39.998127
],
"Extents": [
6.598385,
5.791424,
6.7541876
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-83.54991,
-0.22029924,
-40.01976
],
"Extents": [
1.4179119,
3.1903033,
6.752004
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-82.77892,
2.380821,
-45.879417
],
"Extents": [
2.188897,
5.791424,
0.8978479
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
1.6391274E-07
],
"Translation": [
-82.57702,
2.380821,
-34.10776
],
"Extents": [
2.3907971,
5.791424,
0.8808012
]
},
{
"Orientation": [
0.0,
-0.9238796,
0.0,
-0.3826833
],
"Translation": [
-82.579124,
2.380821,
-44.057045
],
"Extents": [
2.3466868,
5.791424,
1.0504315
]
},
{
"Orientation": [
0.0,
-0.38268352,
0.0,
-0.92387944
],
"Translation": [
-82.35585,
2.380821,
-36.016846
],
"Extents": [
2.5696268,
5.791424,
1.1007555
]
}
]
},
{
"UUID": "d1b69cbf-acd2-414a-82c0-37ec34bac2a9",
"Boxes": [
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
0.17841214,
4.4354196,
-0.02932614
],
"Extents": [
1.5925016,
5.8800063,
7.5778294
]
},
{
"Orientation": [
0.0,
-0.55557024,
0.0,
0.83146966
],
"Translation": [
0.14463735,
4.4354196,
-0.12595063
],
"Extents": [
1.5925016,
5.8800063,
7.595528
]
},
{
"Orientation": [
0.0,
-0.38268346,
0.0,
0.9238795
],
"Translation": [
-0.07700521,
4.4354196,
-0.04095602
],
"Extents": [
1.5925016,
5.8800063,
7.8329997
]
},
{
"Orientation": [
0.0,
-0.19509023,
0.0,
0.9807853
],
"Translation": [
-0.094886184,
4.4354196,
-0.014234185
],
"Extents": [
1.5925016,
5.8800063,
7.764736
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-0.08863509,
4.4354196,
-0.021401525
],
"Extents": [
1.5925016,
5.8800063,
7.7158103
]
},
{
"Orientation": [
0.0,
0.19509041,
0.0,
0.9807853
],
"Translation": [
-0.08735141,
4.4354196,
-0.026226878
],
"Extents": [
1.5925016,
5.8800063,
7.8149714
]
},
{
"Orientation": [
0.0,
0.55557024,
0.0,
0.83146954
],
"Translation": [
0.16958827,
4.4354196,
0.07763463
],
"Extents": [
1.5925016,
5.8800063,
7.5643325
]
},
{
"Orientation": [
0.0,
0.3826835,
0.0,
0.9238795
],
"Translation": [
-0.026238203,
4.4354196,
0.0330711
],
"Extents": [
1.5925016,
5.8800063,
7.7333155
]
},
{
"Orientation": [
0.0,
-0.7071068,
0.0,
0.7071067
],
"Translation": [
-6.881614,
0.25988883,
-0.008895755
],
"Extents": [
4.787803,
1.539471,
1.6721278
]
}
]
},
{
"UUID": "78726ed3-e3d2-43ff-8cd9-42ffc7161c56",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-4.7683713E-07
],
"Translation": [
-75.85025,
7.494202,
39.998844
],
"Extents": [
8.902907,
4.2854967,
9.112785
]
}
]
}
]
},
{
"MapName": "Samoa - A03A - Mirrorwatch Control",
"Areas": [
{
"UUID": "cc23ed07-e29e-4162-aa71-6aaf3dae4675",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-4.371139E-08
],
"Translation": [
27.619053,
341.70398,
359.59674
],
"Extents": [
9.001934,
1.9600487,
8.949073
]
}
]
},
{
"UUID": "a79d6ae7-3bf1-4356-b0df-f2dfd63fcf39",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-1.9371507E-07
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.9914449,
0.0,
-0.13052638
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.96592575,
0.0,
-0.25881922
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.92387944,
0.0,
-0.3826836
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.8660253,
0.0,
-0.5000002
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.7933532,
0.0,
-0.60876155
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.70710665,
0.0,
-0.70710695
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.60876125,
0.0,
-0.7933535
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.49999982,
0.0,
-0.86602557
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.38268325,
0.0,
-0.9238797
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.25881884,
0.0,
-0.9659259
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.13052598,
0.0,
-0.99144495
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
}
]
},
{
"UUID": "eb357374-76bc-4a63-9613-f10ce0137ea6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.98328,
4.972006,
-98.78177
],
"Extents": [
5.957888,
2.6866064,
6.9126325
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.96466,
4.586752,
-110.66205
],
"Extents": [
5.976504,
2.3013525,
5.3124056
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.95047,
5.4718685,
-106.9169
],
"Extents": [
5.4514184,
3.1864688,
9.057564
]
}
]
}
]
},
{
"MapName": "Samoa - A03A - Control",
"Areas": [
{
"UUID": "cc23ed07-e29e-4162-aa71-6aaf3dae4675",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-4.371139E-08
],
"Translation": [
27.619053,
341.70398,
359.59674
],
"Extents": [
9.001934,
1.9600487,
8.949073
]
}
]
},
{
"UUID": "a79d6ae7-3bf1-4356-b0df-f2dfd63fcf39",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-1.9371507E-07
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.9914449,
0.0,
-0.13052638
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.96592575,
0.0,
-0.25881922
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.92387944,
0.0,
-0.3826836
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.8660253,
0.0,
-0.5000002
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.7933532,
0.0,
-0.60876155
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.70710665,
0.0,
-0.70710695
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.60876125,
0.0,
-0.7933535
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.49999982,
0.0,
-0.86602557
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.38268325,
0.0,
-0.9238797
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.25881884,
0.0,
-0.9659259
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.13052598,
0.0,
-0.99144495
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
}
]
},
{
"UUID": "eb357374-76bc-4a63-9613-f10ce0137ea6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.98328,
4.972006,
-98.78177
],
"Extents": [
5.957888,
2.6866064,
6.9126325
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.96466,
4.586752,
-110.66205
],
"Extents": [
5.976504,
2.3013525,
5.3124056
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.95047,
5.4718685,
-106.9169
],
"Extents": [
5.4514184,
3.1864688,
9.057564
]
}
]
}
]
},
{
"MapName": "Samoa - A03A - Control",
"Areas": [
{
"UUID": "cc23ed07-e29e-4162-aa71-6aaf3dae4675",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-4.371139E-08
],
"Translation": [
27.619053,
341.70398,
359.59674
],
"Extents": [
9.001934,
1.9600487,
8.949073
]
}
]
},
{
"UUID": "a79d6ae7-3bf1-4356-b0df-f2dfd63fcf39",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-1.9371507E-07
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.9914449,
0.0,
-0.13052638
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.96592575,
0.0,
-0.25881922
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.92387944,
0.0,
-0.3826836
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.8660253,
0.0,
-0.5000002
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.7933532,
0.0,
-0.60876155
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.70710665,
0.0,
-0.70710695
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.60876125,
0.0,
-0.7933535
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.49999982,
0.0,
-0.86602557
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.38268325,
0.0,
-0.9238797
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.25881884,
0.0,
-0.9659259
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.13052598,
0.0,
-0.99144495
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
}
]
},
{
"UUID": "eb357374-76bc-4a63-9613-f10ce0137ea6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.98328,
4.972006,
-98.78177
],
"Extents": [
5.957888,
2.6866064,
6.9126325
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.96466,
4.586752,
-110.66205
],
"Extents": [
5.976504,
2.3013525,
5.3124056
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.95047,
5.4718685,
-106.9169
],
"Extents": [
5.4514184,
3.1864688,
9.057564
]
}
]
}
]
},
{
"MapName": "Samoa - A03A - Skirmish",
"Areas": [
{
"UUID": "cc23ed07-e29e-4162-aa71-6aaf3dae4675",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-4.371139E-08
],
"Translation": [
27.619053,
341.70398,
359.59674
],
"Extents": [
9.001934,
1.9600487,
8.949073
]
}
]
},
{
"UUID": "a79d6ae7-3bf1-4356-b0df-f2dfd63fcf39",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-1.9371507E-07
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.9914449,
0.0,
-0.13052638
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.96592575,
0.0,
-0.25881922
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.92387944,
0.0,
-0.3826836
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.8660253,
0.0,
-0.5000002
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.7933532,
0.0,
-0.60876155
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.70710665,
0.0,
-0.70710695
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.60876125,
0.0,
-0.7933535
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.49999982,
0.0,
-0.86602557
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.38268325,
0.0,
-0.9238797
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.25881884,
0.0,
-0.9659259
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.13052598,
0.0,
-0.99144495
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
}
]
},
{
"UUID": "eb357374-76bc-4a63-9613-f10ce0137ea6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.98328,
4.972006,
-98.78177
],
"Extents": [
5.957888,
2.6866064,
6.9126325
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.96466,
4.586752,
-110.66205
],
"Extents": [
5.976504,
2.3013525,
5.3124056
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.95047,
5.4718685,
-106.9169
],
"Extents": [
5.4514184,
3.1864688,
9.057564
]
}
]
}
]
},
{
"MapName": "Samoa - A03A - Control",
"Areas": [
{
"UUID": "cc23ed07-e29e-4162-aa71-6aaf3dae4675",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
-4.371139E-08
],
"Translation": [
27.619053,
341.70398,
359.59674
],
"Extents": [
9.001934,
1.9600487,
8.949073
]
}
]
},
{
"UUID": "a79d6ae7-3bf1-4356-b0df-f2dfd63fcf39",
"Boxes": [
{
"Orientation": [
0.0,
-1.0,
0.0,
-1.9371507E-07
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.9914449,
0.0,
-0.13052638
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.96592575,
0.0,
-0.25881922
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.92387944,
0.0,
-0.3826836
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.8660253,
0.0,
-0.5000002
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.7933532,
0.0,
-0.60876155
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.70710665,
0.0,
-0.70710695
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.60876125,
0.0,
-0.7933535
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.49999982,
0.0,
-0.86602557
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.38268325,
0.0,
-0.9238797
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.25881884,
0.0,
-0.9659259
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
},
{
"Orientation": [
0.0,
-0.13052598,
0.0,
-0.99144495
],
"Translation": [
234.0,
7.9999537,
-256.0
],
"Extents": [
12.0,
3.0,
1.6
]
}
]
},
{
"UUID": "eb357374-76bc-4a63-9613-f10ce0137ea6",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.98328,
4.972006,
-98.78177
],
"Extents": [
5.957888,
2.6866064,
6.9126325
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.96466,
4.586752,
-110.66205
],
"Extents": [
5.976504,
2.3013525,
5.3124056
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-329.95047,
5.4718685,
-106.9169
],
"Extents": [
5.4514184,
3.1864688,
9.057564
]
}
]
}
]
},
{
"MapName": "Hanaoka - Morning - Clash",
"Areas": [
{
"UUID": "6c51269a-6317-4110-8178-54868ffc5ce5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
0.0
],
"Translation": [
-4.989465,
40.147377,
-47.124664
],
"Extents": [
7.5064483,
2.623506,
7.6206546
]
}
]
},
{
"UUID": "77957d6f-d2d0-435d-ada4-7d64d7fdf16e",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387944,
0.0,
0.38268355
],
"Translation": [
6.5660467,
43.629715,
-100.79517
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-2.9802322E-08
],
"Translation": [
7.0846815,
43.629715,
-96.95215
],
"Extents": [
1.0761176,
3.8472574,
3.631057
]
},
{
"Orientation": [
0.0,
-8.940695E-08,
0.0,
-1.0
],
"Translation": [
-4.4255667,
43.629715,
-96.96326
],
"Extents": [
10.577613,
3.8472574,
5.5577693
]
},
{
"Orientation": [
0.0,
-8.940695E-08,
0.0,
-1.0
],
"Translation": [
-15.915338,
43.629715,
-97.14534
],
"Extents": [
1.0761176,
3.8472574,
3.656863
]
},
{
"Orientation": [
0.0,
0.38268337,
0.0,
-0.92387956
],
"Translation": [
-15.396701,
43.629715,
-100.59545
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
},
{
"Orientation": [
0.0,
-0.38268355,
0.0,
-0.92387944
],
"Translation": [
-15.396706,
43.629715,
-92.84545
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
},
{
"Orientation": [
0.0,
-0.92387956,
0.0,
-0.3826835
],
"Translation": [
6.566044,
43.629715,
-93.04517
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
}
]
},
{
"UUID": "6271358c-97d2-47c3-aa8c-75e93964b61c",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
0.0
],
"Translation": [
-4.9895,
40.147377,
61.103073
],
"Extents": [
7.506447,
2.623506,
7.6206555
]
}
]
},
{
"UUID": "1a0dc0cf-35fe-4b14-84b7-560e01ceab5d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
2.4740129,
41.74063,
6.9206285
],
"Extents": [
4.9895196,
2.6125,
10.866835
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
-2.0623617,
40.898064,
7.0109105
],
"Extents": [
0.43723303,
1.7699308,
9.990015
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
-1.8186724,
41.74063,
14.15895
],
"Extents": [
0.7000058,
2.6125,
2.7790165
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
-1.6983631,
41.74063,
-0.14668989
],
"Extents": [
0.8297025,
2.6125,
2.7656925
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
8.187489,
41.74063,
-1.9972496
],
"Extents": [
1.2079831,
2.6125,
1.9489543
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
8.187483,
41.74063,
15.92317
],
"Extents": [
1.2079831,
2.6125,
1.9262828
]
}
]
},
{
"UUID": "e64be5de-3718-4df9-81ab-f9471f9c6183",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387956,
0.0,
0.3826836
],
"Translation": [
6.372426,
43.629715,
107.261185
],
"Extents": [
0.97365797,
3.8472574,
1.6561235
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-2.9802322E-08
],
"Translation": [
7.0847006,
43.629715,
111.1233
],
"Extents": [
1.0761176,
3.8472574,
3.4566717
]
},
{
"Orientation": [
0.0,
-8.940695E-08,
0.0,
-1.0
],
"Translation": [
-4.4621124,
43.629715,
111.06319
],
"Extents": [
10.782967,
3.8472574,
5.467861
]
},
{
"Orientation": [
0.0,
-8.940695E-08,
0.0,
-1.0
],
"Translation": [
-15.9153185,
43.629715,
111.00386
],
"Extents": [
1.0761176,
3.8472574,
3.4744596
]
},
{
"Orientation": [
0.0,
0.38268337,
0.0,
-0.92387956
],
"Translation": [
-15.396682,
43.629715,
107.15455
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
},
{
"Orientation": [
0.0,
-0.3826836,
0.0,
-0.92387956
],
"Translation": [
-15.396687,
43.629715,
114.65455
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
},
{
"Orientation": [
0.0,
-0.92387956,
0.0,
-0.3826835
],
"Translation": [
6.566063,
43.629715,
114.95483
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
}
]
}
]
},
{
"MapName": "Hanaoka - Morning - Skirmish",
"Areas": [
{
"UUID": "6c51269a-6317-4110-8178-54868ffc5ce5",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
0.0
],
"Translation": [
-4.989465,
40.147377,
-47.124664
],
"Extents": [
7.5064483,
2.623506,
7.6206546
]
}
]
},
{
"UUID": "77957d6f-d2d0-435d-ada4-7d64d7fdf16e",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387944,
0.0,
0.38268355
],
"Translation": [
6.5660467,
43.629715,
-100.79517
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-2.9802322E-08
],
"Translation": [
7.0846815,
43.629715,
-96.95215
],
"Extents": [
1.0761176,
3.8472574,
3.631057
]
},
{
"Orientation": [
0.0,
-8.940695E-08,
0.0,
-1.0
],
"Translation": [
-4.4255667,
43.629715,
-96.96326
],
"Extents": [
10.577613,
3.8472574,
5.5577693
]
},
{
"Orientation": [
0.0,
-8.940695E-08,
0.0,
-1.0
],
"Translation": [
-15.915338,
43.629715,
-97.14534
],
"Extents": [
1.0761176,
3.8472574,
3.656863
]
},
{
"Orientation": [
0.0,
0.38268337,
0.0,
-0.92387956
],
"Translation": [
-15.396701,
43.629715,
-100.59545
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
},
{
"Orientation": [
0.0,
-0.38268355,
0.0,
-0.92387944
],
"Translation": [
-15.396706,
43.629715,
-92.84545
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
},
{
"Orientation": [
0.0,
-0.92387956,
0.0,
-0.3826835
],
"Translation": [
6.566044,
43.629715,
-93.04517
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
}
]
},
{
"UUID": "6271358c-97d2-47c3-aa8c-75e93964b61c",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
0.0
],
"Translation": [
-4.9895,
40.147377,
61.103073
],
"Extents": [
7.506447,
2.623506,
7.6206555
]
}
]
},
{
"UUID": "1a0dc0cf-35fe-4b14-84b7-560e01ceab5d",
"Boxes": [
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
2.4740129,
41.74063,
6.9206285
],
"Extents": [
4.9895196,
2.6125,
10.866835
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
-2.0623617,
40.898064,
7.0109105
],
"Extents": [
0.43723303,
1.7699308,
9.990015
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
-1.8186724,
41.74063,
14.15895
],
"Extents": [
0.7000058,
2.6125,
2.7790165
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
-1.6983631,
41.74063,
-0.14668989
],
"Extents": [
0.8297025,
2.6125,
2.7656925
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
8.187489,
41.74063,
-1.9972496
],
"Extents": [
1.2079831,
2.6125,
1.9489543
]
},
{
"Orientation": [
0.0,
1.0,
0.0,
2.086162E-07
],
"Translation": [
8.187483,
41.74063,
15.92317
],
"Extents": [
1.2079831,
2.6125,
1.9262828
]
}
]
},
{
"UUID": "e64be5de-3718-4df9-81ab-f9471f9c6183",
"Boxes": [
{
"Orientation": [
0.0,
-0.92387956,
0.0,
0.3826836
],
"Translation": [
6.372426,
43.629715,
107.261185
],
"Extents": [
0.97365797,
3.8472574,
1.6561235
]
},
{
"Orientation": [
0.0,
-1.0,
0.0,
-2.9802322E-08
],
"Translation": [
7.0847006,
43.629715,
111.1233
],
"Extents": [
1.0761176,
3.8472574,
3.4566717
]
},
{
"Orientation": [
0.0,
-8.940695E-08,
0.0,
-1.0
],
"Translation": [
-4.4621124,
43.629715,
111.06319
],
"Extents": [
10.782967,
3.8472574,
5.467861
]
},
{
"Orientation": [
0.0,
-8.940695E-08,
0.0,
-1.0
],
"Translation": [
-15.9153185,
43.629715,
111.00386
],
"Extents": [
1.0761176,
3.8472574,
3.4744596
]
},
{
"Orientation": [
0.0,
0.38268337,
0.0,
-0.92387956
],
"Translation": [
-15.396682,
43.629715,
107.15455
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
},
{
"Orientation": [
0.0,
-0.3826836,
0.0,
-0.92387956
],
"Translation": [
-15.396687,
43.629715,
114.65455
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
},
{
"Orientation": [
0.0,
-0.92387956,
0.0,
-0.3826835
],
"Translation": [
6.566063,
43.629715,
114.95483
],
"Extents": [
0.97365797,
3.8472574,
1.382275
]
}
]
}
]
},
{
"MapName": "Throne of Anubis - A03A - Clash",
"Areas": [
{
"UUID": "64447ccb-0f04-4278-af0a-fe2cd16fc4c7",
"Boxes": [
{
"Orientation": [
0.0,
0.087155774,
0.0,
0.9961947
],
"Translation": [
-0.50431377,
9.028199,
91.76647
],
"Extents": [
8.494924,
3.846708,
3.2020507
]
},
{
"Orientation": [
0.0,
0.087155774,
0.0,
0.9961947
],
"Translation": [
-1.5133084,
9.180369,
86.10809
],
"Extents": [
8.510377,
3.694538,
2.512517
]
},
{
"Orientation": [
0.0,
0.087155774,
0.0,
0.9961947
],
"Translation": [
-2.2173069,
9.187153,
82.15725
],
"Extents": [
5.6789036,
3.6877542,
1.5029371
]
},
{
"Orientation": [
0.0,
0.46174866,
0.0,
0.8870109
],
"Translation": [
-7.726906,
9.183758,
84.34115
],
"Extents": [
2.093279,
3.6911492,
1.7289919
]
},
{
"Orientation": [
0.0,
-0.3007058,
0.0,
0.95371705
],
"Translation": [
3.8259807,
9.185623,
82.32451
],
"Extents": [
2.085723,
3.6892843,
1.7289919
]
},
{
"Orientation": [
0.0,
0.087155774,
0.0,
0.9961947
],
"Translation": [
0.26732686,
9.028199,
96.124664
],
"Extents": [
6.0083876,
3.846708,
1.3385785
]
},
{
"Orientation": [
0.0,
-0.3007058,
0.0,
0.95371705
],
"Translation": [
-6.297036,
9.028199,
96.64339
],
"Extents": [
1.8017282,
3.846708,
0.99497235
]
},
{
"Orientation": [
0.0,
0.46174866,
0.0,
0.8870108
],
"Translation": [
6.4165606,
9.028199,
94.25489
],
"Extents": [
1.8017282,
3.846708,
1.2306008
]
}
]
},
{
"UUID": "2529b0bb-c4e2-4464-bd2b-aeb4e3bf1810",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.493986,
5.375,
51.60401
],
"Extents": [
7.531985,
3.5,
7.1597257
]
},
{
"Orientation": [
0.0,
0.08715579,
0.0,
0.9961947
],
"Translation": [
-20.67353,
5.3124027,
58.751106
],
"Extents": [
6.642427,
3.5,
1.1877272
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-27.993986,
5.375,
59.88523
],
"Extents": [
1.0,
3.5,
1.125
]
}
]
},
{
"UUID": "dfcf5cea-5874-4bf3-9c77-7b8397d1316b",
"Boxes": [
{
"Orientation": [
0.0,
-0.08715575,
0.0,
0.9961947
],
"Translation": [
-0.38281262,
8.914344,
-92.512344
],
"Extents": [
8.5286,
3.960657,
2.5021005
]
},
{
"Orientation": [
0.0,
-0.08715575,
0.0,
0.9961947
],
"Translation": [
-1.379293,
9.164063,
-86.77801
],
"Extents": [
8.585058,
3.710937,
3.3177752
]
},
{
"Orientation": [
0.0,
-0.08715575,
0.0,
0.9961947
],
"Translation": [
-2.1835015,
9.185117,
-82.17349
],
"Extents": [
5.8333697,
3.6898837,
1.4919834
]
},
{
"Orientation": [
0.0,
0.3007058,
0.0,
0.9537171
],
"Translation": [
4.1121755,
9.176868,
-82.06523
],
"Extents": [
2.081054,
3.6981332,
1.4919834
]
},
{
"Orientation": [
0.0,
-0.46174866,
0.0,
0.8870109
],
"Translation": [
-8.228259,
9.183095,
-84.17543
],
"Extents": [
2.1068316,
3.6919065,
1.4919834
]
},
{
"Orientation": [
0.0,
0.9537171,
0.0,
-0.3007058
],
"Translation": [
-6.00252,
9.176868,
-96.25358
],
"Extents": [
1.7891904,
3.6981332,
1.4919834
]
},
{
"Orientation": [
0.0,
0.8870109,
0.0,
0.46174866
],
"Translation": [
6.2191434,
9.183095,
-94.06339
],
"Extents": [
1.7630796,
3.6919065,
1.4919834
]
},
{
"Orientation": [
0.0,
0.9961947,
0.0,
0.08715571
],
"Translation": [
0.24554163,
9.185117,
-95.96116
],
"Extents": [
6.003256,
3.6898837,
1.4919834
]
}
]
},
{
"UUID": "a787e922-c1de-4c60-be1b-21b2f2c77779",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-1.75,
3.375,
0.00045204163
],
"Extents": [
7.25,
3.5,
7.8577847
]
}
]
},
{
"UUID": "2f336b2d-a9cf-4f83-83b0-8d960f70feee",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.494656,
5.375,
-51.49095
],
"Extents": [
7.4961042,
3.5,
7.011567
]
},
{
"Orientation": [
0.0,
-0.64278764,
0.0,
-0.76604444
],
"Translation": [
-20.94008,
5.3749027,
-57.760048
],
"Extents": [
2.177586,
3.5,
6.64149
]
},
{
"Orientation": [
0.0,
0.7071066,
0.0,
0.70710707
],
"Translation": [
-27.995214,
5.375,
-58.78409
],
"Extents": [
2.2116761,
3.5,
1.0011867
]
}
]
}
]
},
{
"MapName": "Throne of Anubis - A03A - Skirmish",
"Areas": [
{
"UUID": "64447ccb-0f04-4278-af0a-fe2cd16fc4c7",
"Boxes": [
{
"Orientation": [
0.0,
0.087155774,
0.0,
0.9961947
],
"Translation": [
-0.50431377,
9.028199,
91.76647
],
"Extents": [
8.494924,
3.846708,
3.2020507
]
},
{
"Orientation": [
0.0,
0.087155774,
0.0,
0.9961947
],
"Translation": [
-1.5133084,
9.180369,
86.10809
],
"Extents": [
8.510377,
3.694538,
2.512517
]
},
{
"Orientation": [
0.0,
0.087155774,
0.0,
0.9961947
],
"Translation": [
-2.2173069,
9.187153,
82.15725
],
"Extents": [
5.6789036,
3.6877542,
1.5029371
]
},
{
"Orientation": [
0.0,
0.46174866,
0.0,
0.8870109
],
"Translation": [
-7.726906,
9.183758,
84.34115
],
"Extents": [
2.093279,
3.6911492,
1.7289919
]
},
{
"Orientation": [
0.0,
-0.3007058,
0.0,
0.95371705
],
"Translation": [
3.8259807,
9.185623,
82.32451
],
"Extents": [
2.085723,
3.6892843,
1.7289919
]
},
{
"Orientation": [
0.0,
0.087155774,
0.0,
0.9961947
],
"Translation": [
0.26732686,
9.028199,
96.124664
],
"Extents": [
6.0083876,
3.846708,
1.3385785
]
},
{
"Orientation": [
0.0,
-0.3007058,
0.0,
0.95371705
],
"Translation": [
-6.297036,
9.028199,
96.64339
],
"Extents": [
1.8017282,
3.846708,
0.99497235
]
},
{
"Orientation": [
0.0,
0.46174866,
0.0,
0.8870108
],
"Translation": [
6.4165606,
9.028199,
94.25489
],
"Extents": [
1.8017282,
3.846708,
1.2306008
]
}
]
},
{
"UUID": "2529b0bb-c4e2-4464-bd2b-aeb4e3bf1810",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.493986,
5.375,
51.60401
],
"Extents": [
7.531985,
3.5,
7.1597257
]
},
{
"Orientation": [
0.0,
0.08715579,
0.0,
0.9961947
],
"Translation": [
-20.67353,
5.3124027,
58.751106
],
"Extents": [
6.642427,
3.5,
1.1877272
]
},
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-27.993986,
5.375,
59.88523
],
"Extents": [
1.0,
3.5,
1.125
]
}
]
},
{
"UUID": "dfcf5cea-5874-4bf3-9c77-7b8397d1316b",
"Boxes": [
{
"Orientation": [
0.0,
-0.08715575,
0.0,
0.9961947
],
"Translation": [
-0.38281262,
8.914344,
-92.512344
],
"Extents": [
8.5286,
3.960657,
2.5021005
]
},
{
"Orientation": [
0.0,
-0.08715575,
0.0,
0.9961947
],
"Translation": [
-1.379293,
9.164063,
-86.77801
],
"Extents": [
8.585058,
3.710937,
3.3177752
]
},
{
"Orientation": [
0.0,
-0.08715575,
0.0,
0.9961947
],
"Translation": [
-2.1835015,
9.185117,
-82.17349
],
"Extents": [
5.8333697,
3.6898837,
1.4919834
]
},
{
"Orientation": [
0.0,
0.3007058,
0.0,
0.9537171
],
"Translation": [
4.1121755,
9.176868,
-82.06523
],
"Extents": [
2.081054,
3.6981332,
1.4919834
]
},
{
"Orientation": [
0.0,
-0.46174866,
0.0,
0.8870109
],
"Translation": [
-8.228259,
9.183095,
-84.17543
],
"Extents": [
2.1068316,
3.6919065,
1.4919834
]
},
{
"Orientation": [
0.0,
0.9537171,
0.0,
-0.3007058
],
"Translation": [
-6.00252,
9.176868,
-96.25358
],
"Extents": [
1.7891904,
3.6981332,
1.4919834
]
},
{
"Orientation": [
0.0,
0.8870109,
0.0,
0.46174866
],
"Translation": [
6.2191434,
9.183095,
-94.06339
],
"Extents": [
1.7630796,
3.6919065,
1.4919834
]
},
{
"Orientation": [
0.0,
0.9961947,
0.0,
0.08715571
],
"Translation": [
0.24554163,
9.185117,
-95.96116
],
"Extents": [
6.003256,
3.6898837,
1.4919834
]
}
]
},
{
"UUID": "a787e922-c1de-4c60-be1b-21b2f2c77779",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-1.75,
3.375,
0.00045204163
],
"Extents": [
7.25,
3.5,
7.8577847
]
}
]
},
{
"UUID": "2f336b2d-a9cf-4f83-83b0-8d960f70feee",
"Boxes": [
{
"Orientation": [
0.0,
0.0,
0.0,
1.0
],
"Translation": [
-21.494656,
5.375,
-51.49095
],
"Extents": [
7.4961042,
3.5,
7.011567
]
},
{
"Orientation": [
0.0,
-0.64278764,
0.0,
-0.76604444
],
"Translation": [
-20.94008,
5.3749027,
-57.760048
],
"Extents": [
2.177586,
3.5,
6.64149
]
},
{
"Orientation": [
0.0,
0.7071066,
0.0,
0.70710707
],
"Translation": [
-27.995214,
5.375,
-58.78409
],
"Extents": [
2.2116761,
3.5,
1.0011867
]
}
]
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment