diff --git a/TREnvironmentEditor/Model/Types/Entities/EMMovePickupFunction.cs b/TREnvironmentEditor/Model/Types/Entities/EMMovePickupFunction.cs index bf8d604c5..67c4d6539 100644 --- a/TREnvironmentEditor/Model/Types/Entities/EMMovePickupFunction.cs +++ b/TREnvironmentEditor/Model/Types/Entities/EMMovePickupFunction.cs @@ -54,7 +54,7 @@ private void MovePickups(IEnumerable> entities, EMLevelData data, else { // Only look for the types we are interested in. - matchingEntities = entities.Where(e => Types.Select(t => (T)(object)(int)t).Contains(e.TypeID)); + matchingEntities = entities.Where(e => Types.Select(t => (T)(object)(uint)t).Contains(e.TypeID)); } foreach (TREntity match in matchingEntities) diff --git a/TREnvironmentEditor/Model/Types/Models/EMConvertSpriteSequenceFunction.cs b/TREnvironmentEditor/Model/Types/Models/EMConvertSpriteSequenceFunction.cs index 2255625d1..d84c906bf 100644 --- a/TREnvironmentEditor/Model/Types/Models/EMConvertSpriteSequenceFunction.cs +++ b/TREnvironmentEditor/Model/Types/Models/EMConvertSpriteSequenceFunction.cs @@ -26,8 +26,8 @@ private void ConvertSpriteSequence(TRDictionary seque where T : Enum where E : TREntity { - T oldID = (T)(object)OldSpriteID; - T newID = (T)(object)NewSpriteID; + T oldID = (T)(object)(uint)OldSpriteID; + T newID = (T)(object)(uint)NewSpriteID; if (!sequences.ChangeKey(oldID, newID)) { return; diff --git a/TREnvironmentEditor/Model/Types/Models/EMCopySpriteSequenceFunction.cs b/TREnvironmentEditor/Model/Types/Models/EMCopySpriteSequenceFunction.cs index 19f1d6f4f..346d401a0 100644 --- a/TREnvironmentEditor/Model/Types/Models/EMCopySpriteSequenceFunction.cs +++ b/TREnvironmentEditor/Model/Types/Models/EMCopySpriteSequenceFunction.cs @@ -25,8 +25,8 @@ public override void ApplyToLevel(TR3Level level) private void CopySpriteSequence(TRDictionary sequences) where T : Enum { - T baseID = (T)(object)BaseSpriteID; - T targetID = (T)(object)TargetSpriteID; + T baseID = (T)(object)(uint)BaseSpriteID; + T targetID = (T)(object)(uint)TargetSpriteID; if (!sequences.ContainsKey(baseID) || sequences.ContainsKey(targetID)) { return; diff --git a/TREnvironmentEditor/Model/Types/Models/EMImportModelFunction.cs b/TREnvironmentEditor/Model/Types/Models/EMImportModelFunction.cs index 27b659438..d0fdd85ca 100644 --- a/TREnvironmentEditor/Model/Types/Models/EMImportModelFunction.cs +++ b/TREnvironmentEditor/Model/Types/Models/EMImportModelFunction.cs @@ -56,7 +56,7 @@ private Dictionary GetAliasPriority() where T : Enum { return AliasPriority? - .Select(kv => new KeyValuePair((T)(object)(int)kv.Key, (T)(object)(int)kv.Value)) + .Select(kv => new KeyValuePair((T)(object)(uint)kv.Key, (T)(object)(uint)kv.Value)) .ToDictionary(kv => kv.Key, kv => kv.Value); } } diff --git a/TREnvironmentEditor/Model/Types/Models/EMImportNonGraphicsModelFunction.cs b/TREnvironmentEditor/Model/Types/Models/EMImportNonGraphicsModelFunction.cs index ea839dde1..7e0d11aca 100644 --- a/TREnvironmentEditor/Model/Types/Models/EMImportNonGraphicsModelFunction.cs +++ b/TREnvironmentEditor/Model/Types/Models/EMImportNonGraphicsModelFunction.cs @@ -74,7 +74,7 @@ public override void ApplyToLevel(TR3Level level) private IEnumerable PrepareImportData(SortedDictionary existingModels) where T : Enum { - return Data.Where(d => !existingModels.ContainsKey((T)(object)d.ModelID)); + return Data.Where(d => !existingModels.ContainsKey((T)(object)(uint)d.ModelID)); } private static void RemapFaces(IEnumerable data, int maximumTexture, SortedDictionary models) @@ -82,7 +82,7 @@ private static void RemapFaces(IEnumerable data, int maxim { foreach (EMMeshTextureData textureData in data) { - TRModel model = models[(T)(object)textureData.ModelID]; + TRModel model = models[(T)(object)(uint)textureData.ModelID]; foreach (TRMesh mesh in model.Meshes) { foreach (TRMeshFace face in mesh.ColouredTriangles) diff --git a/TREnvironmentEditor/Model/Types/Textures/EMCreateStaticMeshFunction.cs b/TREnvironmentEditor/Model/Types/Textures/EMCreateStaticMeshFunction.cs index 8b5b67a95..d24eb000f 100644 --- a/TREnvironmentEditor/Model/Types/Textures/EMCreateStaticMeshFunction.cs +++ b/TREnvironmentEditor/Model/Types/Textures/EMCreateStaticMeshFunction.cs @@ -5,27 +5,20 @@ namespace TREnvironmentEditor.Model; public class EMCreateStaticMeshFunction : BaseEMFunction { public uint ID { get; set; } - public TRMesh Mesh { get; set; } public TRStaticMesh Info { get; set; } public override void ApplyToLevel(TR1Level level) { - TRStaticMesh newMesh = Info.Clone(); - newMesh.Mesh = Mesh; - level.StaticMeshes[(TR1Type)ID] = newMesh; + level.StaticMeshes[(TR1Type)ID] = Info.Clone(); } public override void ApplyToLevel(TR2Level level) { - TRStaticMesh newMesh = Info.Clone(); - newMesh.Mesh = Mesh; - level.StaticMeshes[(TR2Type)ID] = newMesh; + level.StaticMeshes[(TR2Type)ID] = Info.Clone(); } public override void ApplyToLevel(TR3Level level) { - TRStaticMesh newMesh = Info.Clone(); - newMesh.Mesh = Mesh; - level.StaticMeshes[(TR3Type)ID] = newMesh; + level.StaticMeshes[(TR3Type)ID] = Info.Clone(); } } diff --git a/TREnvironmentEditor/Model/Types/Textures/EMRemoveFaceFunction.cs b/TREnvironmentEditor/Model/Types/Textures/EMRemoveFaceFunction.cs index 6706e16e5..f0fc8c88b 100644 --- a/TREnvironmentEditor/Model/Types/Textures/EMRemoveFaceFunction.cs +++ b/TREnvironmentEditor/Model/Types/Textures/EMRemoveFaceFunction.cs @@ -102,12 +102,10 @@ public override void ApplyToLevel(TR3Level level) private static void RemoveEntries(List items, List indices) { - List itemList = items.ToList(); - indices.Sort(); for (int i = indices.Count - 1; i >= 0; i--) { - itemList.RemoveAt(indices[i]); + items.RemoveAt(indices[i]); } } } diff --git a/TREnvironmentEditor/Model/Types/Triggers/EMAppendTriggerActionFunction.cs b/TREnvironmentEditor/Model/Types/Triggers/EMAppendTriggerActionFunction.cs index 03ae092ba..f681b7dae 100644 --- a/TREnvironmentEditor/Model/Types/Triggers/EMAppendTriggerActionFunction.cs +++ b/TREnvironmentEditor/Model/Types/Triggers/EMAppendTriggerActionFunction.cs @@ -102,7 +102,7 @@ private void AppendActions(TRRoomSector sector, FDControl floorData, List a.Action == item.Action && a.Parameter == item.Parameter)) { - trigger.Actions.Add(item); + trigger.Actions.Add(item.Clone()); } } } diff --git a/TREnvironmentEditor/Model/Types/Triggers/EMCameraTriggerFunction.cs b/TREnvironmentEditor/Model/Types/Triggers/EMCameraTriggerFunction.cs index 6b7a945d2..3a38c85f6 100644 --- a/TREnvironmentEditor/Model/Types/Triggers/EMCameraTriggerFunction.cs +++ b/TREnvironmentEditor/Model/Types/Triggers/EMCameraTriggerFunction.cs @@ -172,7 +172,7 @@ private void AttachToSector(TRRoomSector sector, FDControl control, short camera if (control[sector.FDIndex].Find(e => e is FDTriggerEntry) is FDTriggerEntry trigger && trigger.TrigType != FDTrigType.Dummy) { - trigger.Actions.Add(new FDActionItem + trigger.Actions.Add(new() { Action = FDTrigAction.Camera, CamAction = CameraAction, @@ -181,7 +181,7 @@ private void AttachToSector(TRRoomSector sector, FDControl control, short camera if (LookAtItem != ushort.MaxValue) { - trigger.Actions.Add(new FDActionItem + trigger.Actions.Add(new() { Action = FDTrigAction.LookAtItem, Parameter = data.ConvertEntity(LookAtItem) diff --git a/TREnvironmentEditor/Model/Types/Triggers/EMDuplicateTriggerFunction.cs b/TREnvironmentEditor/Model/Types/Triggers/EMDuplicateTriggerFunction.cs index 4bb91db60..c3854cb0d 100644 --- a/TREnvironmentEditor/Model/Types/Triggers/EMDuplicateTriggerFunction.cs +++ b/TREnvironmentEditor/Model/Types/Triggers/EMDuplicateTriggerFunction.cs @@ -87,7 +87,7 @@ private static void AppendTriggers(TRRoomSector sector, List triggerEnt List entries = control[sector.FDIndex]; if (entries.FindIndex(e => e is FDTriggerEntry) == -1) { - entries.AddRange(triggerEntries); + entries.AddRange(triggerEntries.Select(t => t.Clone())); } } } diff --git a/TREnvironmentEditor/Model/Types/Triggers/EMTriggerFunction.cs b/TREnvironmentEditor/Model/Types/Triggers/EMTriggerFunction.cs index 37b3eefff..27e30d854 100644 --- a/TREnvironmentEditor/Model/Types/Triggers/EMTriggerFunction.cs +++ b/TREnvironmentEditor/Model/Types/Triggers/EMTriggerFunction.cs @@ -170,7 +170,7 @@ private void CreateTrigger(TRRoomSector sector, FDControl control, FDTriggerEntr } if (entries.FindIndex(e => e is FDTriggerEntry) == -1) { - entries.Add(triggerEntry); + entries.Add(triggerEntry.Clone()); } } diff --git a/TREnvironmentEditor/Parsing/EMSerializationResolver.cs b/TREnvironmentEditor/Parsing/EMSerializationResolver.cs index ff9804b1e..01e8a5e27 100644 --- a/TREnvironmentEditor/Parsing/EMSerializationResolver.cs +++ b/TREnvironmentEditor/Parsing/EMSerializationResolver.cs @@ -9,6 +9,7 @@ public class EMSerializationResolver : DefaultContractResolver protected override IList CreateProperties(Type type, MemberSerialization memberSerialization) { return base.CreateProperties(type, memberSerialization) + ?.Where(p => !p.Ignored && p.Writable) ?.OrderBy(p => p.DeclaringType.BaseTypesAndSelf().Count()).ToList(); } } diff --git a/TRLevelControl/Build/TRFDBuilder.cs b/TRLevelControl/Build/TRFDBuilder.cs index 792fd8a99..3ffbb4ea1 100644 --- a/TRLevelControl/Build/TRFDBuilder.cs +++ b/TRLevelControl/Build/TRFDBuilder.cs @@ -323,22 +323,14 @@ private static List Flatten(FDTriggerEntry trigger) data.Add(switchRef); } - for (int i = 0; i < trigger.Actions.Count; i++) + foreach (FDActionItem action in trigger.Actions) { - FDActionItem action = trigger.Actions[i]; int actionValue = action.Parameter & 0x03FF; actionValue |= ((byte)action.Action & 0x001F) << 10; - - bool isCamera = action.CamAction != null - && (action.Action == FDTrigAction.Camera || action.Action == FDTrigAction.Flyby); - if (i == trigger.Actions.Count - 1 && !isCamera) - { - actionValue |= 0x8000; - } - data.Add((ushort)actionValue); - if (isCamera) + if (action.CamAction != null + && (action.Action == FDTrigAction.Camera || action.Action == FDTrigAction.Flyby)) { int cameraValue = action.CamAction.Timer; if (action.CamAction.Once) @@ -346,16 +338,11 @@ private static List Flatten(FDTriggerEntry trigger) cameraValue |= 0x0100; } cameraValue |= (action.CamAction.MoveTimer & 0x001F) << 9; - - if (i == trigger.Actions.Count - 1) - { - cameraValue |= 0x8000; - } - data.Add((ushort)cameraValue); } } + data[^1] |= 0x8000; return data; } } diff --git a/TRRandomizerCore/Resources/TR1/Environment/CAT.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/CAT.PHD-Environment.json index 4ed17274b..4dd05b959 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/CAT.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/CAT.PHD-Environment.json @@ -617,6 +617,7 @@ "Triangles": { "75": [ { + "Type": 3, "Vertices": [ 287, 253, @@ -625,6 +626,7 @@ "Texture": 100 }, { + "Type": 3, "Vertices": [ 256, 288, diff --git a/TRRandomizerCore/Resources/TR1/Environment/EGYPT.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/EGYPT.PHD-Environment.json index 3feb3d91e..3c7ce8b2f 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/EGYPT.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/EGYPT.PHD-Environment.json @@ -390,7 +390,7 @@ "Z": 30208, "Room": 55 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -490,6 +490,7 @@ "Quads": { "45": [ { + "Type": 4, "Vertices": [ 170, 169, @@ -499,6 +500,7 @@ "Texture": 20 }, { + "Type": 4, "Vertices": [ 169, 172, @@ -510,6 +512,7 @@ ], "55": [ { + "Type": 4, "Vertices": [ 84, 86, @@ -742,6 +745,7 @@ "Quads": { "31": [ { + "Type": 4, "Vertices": [ 17, 41, @@ -2439,9 +2443,7 @@ } ], "CameraAction": { - "Value": 1536, - "MoveTimer": 3, - "Continue": true + "MoveTimer": 3 } }, { @@ -2560,6 +2562,7 @@ "Room": 11 }, "CeilingClicks": 1, + "SlantType": 3, "XSlant": 1 }, { @@ -2672,9 +2675,7 @@ "AttachToItems": [ 19 ], - "CameraAction": { - "Continue": true - } + "CameraAction": {} }, { "EMType": 61, @@ -2923,7 +2924,7 @@ "ExpandX": 2, "ExpandZ": 4 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": 3 }, { @@ -2938,6 +2939,7 @@ "ExpandX": 2, "ExpandZ": 4 }, + "SlantType": 3, "ZSlant": -3 }, { @@ -2974,7 +2976,7 @@ "ExpandZ": 1 }, "FloorClicks": -3, - "SlantType": 1, + "SlantType": 2, "ZSlant": -6 }, { @@ -4063,209 +4065,215 @@ { "EMType": 34, "ID": 206, - "Mesh": { - "Pointer": 87280, - "Centre": {}, - "NumVertices": 16, - "Vertices": [ - { - "X": 3, - "Y": -614, - "Z": 503 - }, - { - "X": 3, - "Y": -626, - "Z": 454 - }, - { - "X": 3, - "Y": -658, - "Z": 462 - }, - { - "X": 3, - "Y": -646, - "Z": 511 - }, - { - "X": -12, - "Y": -614, - "Z": 503 - }, - { - "X": -12, - "Y": -626, - "Z": 454 - }, - { - "X": -12, - "Y": -658, - "Z": 462 - }, - { - "X": -12, - "Y": -646, - "Z": 511 - }, - { - "X": 160, - "Y": -662, - "Z": 463 - }, - { - "X": -166, - "Y": -662, - "Z": 463 - }, - { - "X": -166, - "Y": -666, - "Z": 448 - }, - { - "X": 160, - "Y": -666, - "Z": 448 - }, - { - "X": 160, - "Y": -624, - "Z": 453 - }, - { - "X": -166, - "Y": -624, - "Z": 453 - }, - { - "X": -166, - "Y": -628, - "Z": 439 - }, - { - "X": 160, - "Y": -628, - "Z": 439 - } - ], - "NumNormals": -16, - "Lights": [ - 4093, - 4093, - 4093, - 4093, - 4093, - 4093, - 4093, - 4093, - 3411, - 2048, - 3411, - 4774, - 4774, - 3411, - 4774, - 6137 - ], - "NumTexturedRectangles": 10, - "TexturedRectangles": [ - { - "Vertices": [ - 2, - 3, - 0, - 1 - ], - "Texture": 615 - }, - { - "Vertices": [ - 5, - 1, - 0, - 4 - ], - "Texture": 615 - }, - { - "Vertices": [ - 7, - 3, - 2, - 6 - ], - "Texture": 615 - }, - { - "Vertices": [ - 6, - 5, - 4, - 7 - ], - "Texture": 615 - }, - { - "Vertices": [ - 11, - 10, - 9, - 8 - ], - "Texture": 615 - }, - { - "Vertices": [ - 8, - 9, - 13, - 12 - ], - "Texture": 615 - }, - { - "Vertices": [ - 10, - 14, - 13, - 9 - ], - "Texture": 615 - }, - { - "Vertices": [ - 10, - 11, - 15, - 14 - ], - "Texture": 615 - }, - { - "Vertices": [ - 11, - 8, - 12, - 15 - ], - "Texture": 615 - }, - { - "Vertices": [ - 12, - 13, - 14, - 15 - ], - "Texture": 615 - } - ], - "TexturedTriangles": [], - "ColouredRectangles": [], - "ColouredTriangles": [] - }, "Info": { + "Mesh": { + "Centre": {}, + "Vertices": [ + { + "X": 3, + "Y": -614, + "Z": 503 + }, + { + "X": 3, + "Y": -626, + "Z": 454 + }, + { + "X": 3, + "Y": -658, + "Z": 462 + }, + { + "X": 3, + "Y": -646, + "Z": 511 + }, + { + "X": -12, + "Y": -614, + "Z": 503 + }, + { + "X": -12, + "Y": -626, + "Z": 454 + }, + { + "X": -12, + "Y": -658, + "Z": 462 + }, + { + "X": -12, + "Y": -646, + "Z": 511 + }, + { + "X": 160, + "Y": -662, + "Z": 463 + }, + { + "X": -166, + "Y": -662, + "Z": 463 + }, + { + "X": -166, + "Y": -666, + "Z": 448 + }, + { + "X": 160, + "Y": -666, + "Z": 448 + }, + { + "X": 160, + "Y": -624, + "Z": 453 + }, + { + "X": -166, + "Y": -624, + "Z": 453 + }, + { + "X": -166, + "Y": -628, + "Z": 439 + }, + { + "X": 160, + "Y": -628, + "Z": 439 + } + ], + "Lights": [ + 4093, + 4093, + 4093, + 4093, + 4093, + 4093, + 4093, + 4093, + 3411, + 2048, + 3411, + 4774, + 4774, + 3411, + 4774, + 6137 + ], + "TexturedRectangles": [ + { + "Type": 4, + "Vertices": [ + 2, + 3, + 0, + 1 + ], + "Texture": 615 + }, + { + "Type": 4, + "Vertices": [ + 5, + 1, + 0, + 4 + ], + "Texture": 615 + }, + { + "Type": 4, + "Vertices": [ + 7, + 3, + 2, + 6 + ], + "Texture": 615 + }, + { + "Type": 4, + "Vertices": [ + 6, + 5, + 4, + 7 + ], + "Texture": 615 + }, + { + "Type": 4, + "Vertices": [ + 11, + 10, + 9, + 8 + ], + "Texture": 615 + }, + { + "Type": 4, + "Vertices": [ + 8, + 9, + 13, + 12 + ], + "Texture": 615 + }, + { + "Type": 4, + "Vertices": [ + 10, + 14, + 13, + 9 + ], + "Texture": 615 + }, + { + "Type": 4, + "Vertices": [ + 10, + 11, + 15, + 14 + ], + "Texture": 615 + }, + { + "Type": 4, + "Vertices": [ + 11, + 8, + 12, + 15 + ], + "Texture": 615 + }, + { + "Type": 4, + "Vertices": [ + 12, + 13, + 14, + 15 + ], + "Texture": 615 + } + ], + "TexturedTriangles": [], + "ColouredRectangles": [], + "ColouredTriangles": [] + }, "VisibilityBox": { "MinX": -166, "MaxX": 160, @@ -4710,6 +4718,7 @@ "Quads": { "61": [ { + "Type": 4, "Vertices": [ 27, 150, @@ -4964,6 +4973,7 @@ "Quads": { "61": [ { + "Type": 4, "Vertices": [ 151, 138, @@ -5039,6 +5049,7 @@ "Quads": { "63": [ { + "Type": 4, "Vertices": [ 273, 272, @@ -5087,6 +5098,7 @@ "Quads": { "63": [ { + "Type": 4, "Vertices": [ 273, 272, diff --git a/TRRandomizerCore/Resources/TR1/Environment/END.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/END.PHD-Environment.json index 2d9825762..9ca2fe58a 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/END.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/END.PHD-Environment.json @@ -549,6 +549,7 @@ "Quads": { "13": [ { + "Type": 4, "Vertices": [ 73, 81, @@ -558,6 +559,7 @@ "Texture": 42 }, { + "Type": 4, "Vertices": [ 652, 609, @@ -571,6 +573,7 @@ "Triangles": { "13": [ { + "Type": 3, "Vertices": [ 656, 652, @@ -3232,7 +3235,7 @@ "ExpandX": 1, "ExpandZ": 3 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": 3 }, { @@ -3247,7 +3250,7 @@ "ExpandX": 1, "ExpandZ": 3 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -3 }, { @@ -3262,6 +3265,7 @@ "ExpandX": 1, "ExpandZ": 3 }, + "SlantType": 3, "ZSlant": -3 }, { @@ -3276,6 +3280,7 @@ "ExpandX": 1, "ExpandZ": 3 }, + "SlantType": 3, "ZSlant": 3 }, { @@ -3908,23 +3913,19 @@ }, { "EMType": 101, - "Source": { - "X": 46592, - "Y": -256, - "Z": 17920, - "SoundID": 155, - "Flags": 192 - } + "ID": 155, + "Mode": 192, + "X": 46592, + "Y": -256, + "Z": 17920 }, { "EMType": 101, - "Source": { - "X": 48553, - "Y": -256, - "Z": 25873, - "SoundID": 148, - "Flags": 192 - } + "ID": 148, + "Mode": 192, + "X": 48553, + "Y": -256, + "Z": 25873 }, { "EMType": 70, @@ -3993,10 +3994,8 @@ } ], "CameraAction": { - "Value": 1792, "Once": true, - "MoveTimer": 3, - "Continue": true + "MoveTimer": 3 } }, { @@ -4245,9 +4244,7 @@ -10 ], "CameraAction": { - "Value": 5, - "Timer": 5, - "Continue": true + "Timer": 5 } }, { @@ -4337,9 +4334,7 @@ -9 ], "CameraAction": { - "Value": 5, - "Timer": 5, - "Continue": true + "Timer": 5 } }, { @@ -4439,9 +4434,7 @@ -8 ], "CameraAction": { - "Value": 5, - "Timer": 5, - "Continue": true + "Timer": 5 } }, { diff --git a/TRRandomizerCore/Resources/TR1/Environment/END2.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/END2.PHD-Environment.json index a54e80699..51d617b73 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/END2.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/END2.PHD-Environment.json @@ -396,13 +396,11 @@ "Tags": [ 9 ], - "Source": { - "X": 47104, - "Y": 5120, - "Z": 28160, - "SoundID": 148, - "Flags": 192 - } + "ID": 148, + "Mode": 192, + "X": 47104, + "Y": 5120, + "Z": 28160 }, { "Comments": "Adjust/remove faces for portals.", @@ -1448,6 +1446,7 @@ "Quads": { "17": [ { + "Type": 4, "Vertices": [ 47, 48, @@ -1457,6 +1456,7 @@ "Texture": 13 }, { + "Type": 4, "Vertices": [ 13, 14, @@ -1468,6 +1468,7 @@ ], "20": [ { + "Type": 4, "Vertices": [ 72, 73, @@ -1477,6 +1478,7 @@ "Texture": 13 }, { + "Type": 4, "Vertices": [ 90, 104, @@ -3497,7 +3499,7 @@ "Z": 18944, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -4 }, { @@ -3508,7 +3510,7 @@ "Z": 18944, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -4 }, { @@ -3519,7 +3521,7 @@ "Z": 18944, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -4 }, { @@ -3530,7 +3532,7 @@ "Z": 18944, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -4 }, { @@ -3541,7 +3543,7 @@ "Z": 18944, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -4 }, { @@ -4756,9 +4758,7 @@ "Room": -2 } ], - "CameraAction": { - "Continue": true - } + "CameraAction": {} }, { "EMType": 61, @@ -4792,9 +4792,7 @@ "Room": -2 } ], - "CameraAction": { - "Continue": true - } + "CameraAction": {} }, { "EMType": 61, @@ -4828,9 +4826,7 @@ "Room": -2 } ], - "CameraAction": { - "Continue": true - } + "CameraAction": {} }, { "EMType": 61, @@ -4864,9 +4860,7 @@ "Room": -2 } ], - "CameraAction": { - "Continue": true - } + "CameraAction": {} }, { "EMType": 61, @@ -4901,9 +4895,7 @@ } ], "CameraAction": { - "Value": 5, - "Timer": 5, - "Continue": true + "Timer": 5 } }, { @@ -5353,9 +5345,7 @@ } ], "CameraAction": { - "Value": 5, - "Timer": 5, - "Continue": true + "Timer": 5 } }, { @@ -5401,9 +5391,7 @@ "Room": -1 } ], - "CameraAction": { - "Continue": true - } + "CameraAction": {} }, { "EMType": 71, @@ -7232,6 +7220,7 @@ "Room": 33 }, "CeilingClicks": 1, + "SlantType": 3, "XSlant": 1, "ZSlant": 0 }, @@ -7243,6 +7232,7 @@ "Z": 22016, "Room": 33 }, + "SlantType": 3, "XSlant": 1 }, { @@ -7337,6 +7327,7 @@ "Triangles": { "33": [ { + "Type": 3, "Vertices": [ 790, 89, @@ -7345,6 +7336,7 @@ "Texture": 20 }, { + "Type": 3, "Vertices": [ 21, 89, diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL1.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL1.PHD-Environment.json index 8978bf595..a615ccfbd 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL1.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL1.PHD-Environment.json @@ -43,6 +43,7 @@ "Quads": { "1": [ { + "Type": 4, "Vertices": [ 106, 105, @@ -56,6 +57,7 @@ "Triangles": { "10": [ { + "Type": 3, "Vertices": [ 119, 122, @@ -64,6 +66,7 @@ "Texture": 72 }, { + "Type": 3, "Vertices": [ 327, 298, @@ -74,6 +77,7 @@ ], "30": [ { + "Type": 3, "Vertices": [ 220, 252, @@ -82,6 +86,7 @@ "Texture": 72 }, { + "Type": 3, "Vertices": [ 252, 253, @@ -1481,6 +1486,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 31, 30, @@ -1490,6 +1496,7 @@ "Texture": 707 }, { + "Type": 4, "Vertices": [ 30, 47, @@ -2870,7 +2877,7 @@ "Z": 97792, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -2881,7 +2888,7 @@ "Z": 96768, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -2892,7 +2899,7 @@ "Z": 95744, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -2903,7 +2910,7 @@ "Z": 94720, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -2914,7 +2921,7 @@ "Z": 98816, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -2 }, { @@ -2925,7 +2932,7 @@ "Z": 99840, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -2 }, { @@ -2936,7 +2943,7 @@ "Z": 100864, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -2 }, { @@ -2947,7 +2954,7 @@ "Z": 101888, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -2 }, { @@ -3639,9 +3646,7 @@ "Room": -2 } ], - "CameraAction": { - "Continue": true - } + "CameraAction": {} }, { "EMType": 71, diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL10A.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL10A.PHD-Environment.json index 2665a2784..ab4122ea4 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL10A.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL10A.PHD-Environment.json @@ -9,6 +9,7 @@ "Triangles": { "35": [ { + "Type": 3, "Vertices": [ 0, 6, @@ -528,6 +529,7 @@ "Quads": { "17": [ { + "Type": 4, "Vertices": [ 294, 266, @@ -537,6 +539,7 @@ "Texture": 3 }, { + "Type": 4, "Vertices": [ 230, 194, @@ -715,7 +718,7 @@ "Room": 3 }, "FloorClicks": -1, - "SlantType": 1, + "SlantType": 2, "XSlant": -3 }, { @@ -730,7 +733,7 @@ "Room": 16 }, "FloorClicks": -1, - "SlantType": 1, + "SlantType": 2, "XSlant": -3 }, { @@ -745,7 +748,7 @@ "Room": 3 }, "FloorClicks": -1, - "SlantType": 1, + "SlantType": 2, "XSlant": 5 }, { @@ -760,7 +763,7 @@ "Room": 16 }, "FloorClicks": -1, - "SlantType": 1, + "SlantType": 2, "XSlant": 5 }, { @@ -2205,13 +2208,11 @@ { "Comments": "Add a lava sound source.", "EMType": 101, - "Source": { - "X": 29686, - "Y": 256, - "Z": 91133, - "SoundID": 148, - "Flags": 192 - } + "ID": 148, + "Mode": 192, + "X": 29686, + "Y": 256, + "Z": 91133 }, { "Comments": "Get rid of the normal end level trigger.", @@ -2435,10 +2436,8 @@ } ], "CameraAction": { - "Value": 1280, "Once": true, - "MoveTimer": 2, - "Continue": true + "MoveTimer": 2 } }, { @@ -5891,13 +5890,11 @@ { "Comments": "Add a lava sound source.", "EMType": 101, - "Source": { - "X": 32782, - "Y": 2048, - "Z": 89059, - "SoundID": 148, - "Flags": 192 - } + "ID": 148, + "Mode": 192, + "X": 32782, + "Y": 2048, + "Z": 89059 }, { "Comments": "Add some embers.", @@ -6068,9 +6065,7 @@ -1 ], "CameraAction": { - "Value": 5, - "Timer": 5, - "Continue": true + "Timer": 5 } }, { diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL10B.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL10B.PHD-Environment.json index b3eeaafa5..1a41610a1 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL10B.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL10B.PHD-Environment.json @@ -644,7 +644,7 @@ "Room": 40 }, "FloorClicks": -6, - "SlantType": 1, + "SlantType": 2, "XSlant": -3, "ZSlant": -3 }, @@ -714,6 +714,7 @@ "Quads": { "40": [ { + "Type": 4, "Vertices": [ 484, 483, @@ -723,6 +724,7 @@ "Texture": 26 }, { + "Type": 4, "Vertices": [ 483, 482, @@ -732,6 +734,7 @@ "Texture": 67 }, { + "Type": 4, "Vertices": [ 482, 485, @@ -741,6 +744,7 @@ "Texture": 27 }, { + "Type": 4, "Vertices": [ 485, 484, @@ -4686,6 +4690,7 @@ "Quads": { "36": [ { + "Type": 4, "Vertices": [ 232, 231, diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL10C.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL10C.PHD-Environment.json index ace7c37aa..e588356d0 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL10C.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL10C.PHD-Environment.json @@ -56,6 +56,7 @@ "Quads": { "66": [ { + "Type": 4, "Vertices": [ 13, 3, @@ -89,6 +90,7 @@ "Room": 25 }, "CeilingClicks": -2, + "SlantType": 3, "XSlant": 0, "ZSlant": 2 }, @@ -133,6 +135,7 @@ "Triangles": { "25": [ { + "Type": 3, "Vertices": [ 131, 132, @@ -141,6 +144,7 @@ "Texture": 60 }, { + "Type": 3, "Vertices": [ 120, 121, @@ -1573,13 +1577,11 @@ "Tags": [ 5 ], - "Source": { - "X": 59392, - "Y": 11264, - "Z": 11776, - "SoundID": 148, - "Flags": 192 - } + "ID": 148, + "Mode": 192, + "X": 59392, + "Y": 11264, + "Z": 11776 }, { "Comments": "Raise some of the platforms for the jumps back up the pit.", @@ -2834,6 +2836,7 @@ "Quads": { "3": [ { + "Type": 4, "Vertices": [ 41, 43, diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL3A.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL3A.PHD-Environment.json index d6ce2b101..dbc321a5a 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL3A.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL3A.PHD-Environment.json @@ -67,6 +67,7 @@ "Quads": { "90": [ { + "Type": 4, "Vertices": [ 49, 42, @@ -78,6 +79,7 @@ ], "26": [ { + "Type": 4, "Vertices": [ 3, 0, @@ -91,6 +93,7 @@ "Triangles": { "9": [ { + "Type": 3, "Vertices": [ 79, 75, @@ -557,6 +560,7 @@ "ExpandX": 1, "ExpandZ": 3 }, + "SlantType": 3, "ZSlant": 3 }, { @@ -581,7 +585,7 @@ "Room": -1 } ], - "SlantType": 1, + "SlantType": 2, "ZSlant": -3 }, { @@ -592,6 +596,7 @@ "Z": 82432, "Room": -1 }, + "SlantType": 3, "XSlant": -1, "ZSlant": 1 }, @@ -726,6 +731,7 @@ "Z": 79360, "Room": -1 }, + "SlantType": 3, "XSlant": 1, "ZSlant": -1 }, @@ -737,7 +743,7 @@ "Z": 79360, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "XSlant": -1, "ZSlant": 1 }, @@ -748,6 +754,7 @@ "Z": 81408, "Room": -1 }, + "SlantType": 3, "XSlant": 1, "ZSlant": 2 }, @@ -767,6 +774,7 @@ "Room": -1 } ], + "SlantType": 3, "ZSlant": 1 }, "Locations": [ @@ -782,6 +790,7 @@ } ], "CeilingClicks": -1, + "SlantType": 3, "ZSlant": -1 }, { @@ -1888,7 +1897,7 @@ "Z": 79360, "Room": -1 }, - "SlantType": 1, + "SlantType": 2, "XSlant": 1 }, { diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL3B.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL3B.PHD-Environment.json index d83f74a45..e38ab5452 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL3B.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL3B.PHD-Environment.json @@ -1207,6 +1207,7 @@ "Room": -2 } ], + "SlantType": 3, "XSlant": 2 }, { @@ -1225,6 +1226,7 @@ "Room": -2 } ], + "SlantType": 3, "XSlant": -2 }, { @@ -1736,7 +1738,6 @@ } ], "CameraAction": { - "Value": 32771, "Timer": 3 } }, @@ -2496,7 +2497,6 @@ } ], "CameraAction": { - "Value": 32771, "Timer": 3 } }, @@ -3975,7 +3975,6 @@ } ], "CameraAction": { - "Value": 32771, "Timer": 3 } }, diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL4.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL4.PHD-Environment.json index 1dade9830..e9e75a6da 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL4.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL4.PHD-Environment.json @@ -2260,7 +2260,7 @@ "Room": -2 } ], - "SlantType": 1, + "SlantType": 2, "XSlant": -4 }, { @@ -2329,6 +2329,7 @@ "Triangles": { "-2": [ { + "Type": 3, "Vertices": [ 77, 169, @@ -2337,6 +2338,7 @@ "Texture": 75 }, { + "Type": 3, "Vertices": [ 113, 171, @@ -2345,6 +2347,7 @@ "Texture": 75 }, { + "Type": 3, "Vertices": [ 52, 54, @@ -2353,6 +2356,7 @@ "Texture": 75 }, { + "Type": 3, "Vertices": [ 90, 91, @@ -2361,6 +2365,7 @@ "Texture": 75 }, { + "Type": 3, "Vertices": [ 33, 25, @@ -2369,6 +2374,7 @@ "Texture": 75 }, { + "Type": 3, "Vertices": [ 82, 64, @@ -2377,6 +2383,7 @@ "Texture": 75 }, { + "Type": 3, "Vertices": [ 119, 101, @@ -2385,6 +2392,7 @@ "Texture": 75 }, { + "Type": 3, "Vertices": [ 47, 56, @@ -2393,6 +2401,7 @@ "Texture": 75 }, { + "Type": 3, "Vertices": [ 76, 92, @@ -2401,6 +2410,7 @@ "Texture": 75 }, { + "Type": 3, "Vertices": [ 109, 126, @@ -3051,6 +3061,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 29, 28, @@ -3905,7 +3916,7 @@ "Room": -3 } ], - "SlantType": 1, + "SlantType": 2, "XSlant": -3 }, { @@ -3924,7 +3935,7 @@ "Room": -3 } ], - "SlantType": 1, + "SlantType": 2, "XSlant": 3 }, { @@ -3937,7 +3948,7 @@ "Room": -2 } ], - "SlantType": 1, + "SlantType": 2, "XSlant": 2 }, { diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL5.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL5.PHD-Environment.json index 2e134d0b3..7adfa4437 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL5.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL5.PHD-Environment.json @@ -73,7 +73,7 @@ "Room": 2 }, "FloorClicks": -1, - "SlantType": 1, + "SlantType": 2, "XSlant": -1 }, { @@ -109,6 +109,7 @@ "Quads": { "2": [ { + "Type": 4, "Vertices": [ 177, 178, @@ -122,6 +123,7 @@ "Triangles": { "2": [ { + "Type": 3, "Vertices": [ 93, 107, @@ -231,6 +233,7 @@ "Quads": { "38": [ { + "Type": 4, "Vertices": [ 35, 34, @@ -240,6 +243,7 @@ "Texture": 76 }, { + "Type": 4, "Vertices": [ 34, 33, @@ -728,7 +732,7 @@ "Z": 49664, "Room": 8 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": 3 }, { @@ -742,7 +746,7 @@ "Z": 48640, "Room": 8 }, - "SlantType": 1, + "SlantType": 2, "XSlant": 4, "ZSlant": -3 }, @@ -3262,7 +3266,6 @@ -1 ], "CameraAction": { - "Value": 34816, "MoveTimer": 4 } }, @@ -3847,7 +3850,6 @@ -1 ], "CameraAction": { - "Value": 34816, "MoveTimer": 4 } }, diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL6.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL6.PHD-Environment.json index 1373c739d..e9d15d6dd 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL6.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL6.PHD-Environment.json @@ -251,6 +251,7 @@ "Quads": { "2": [ { + "Type": 4, "Vertices": [ 50, 52, @@ -260,6 +261,7 @@ "Texture": 9 }, { + "Type": 4, "Vertices": [ 54, 50, @@ -273,6 +275,7 @@ "Triangles": { "53": [ { + "Type": 3, "Vertices": [ 12, 7, @@ -631,6 +634,7 @@ "Quads": { "34": [ { + "Type": 4, "Vertices": [ 12, 13, @@ -1518,7 +1522,7 @@ "Room": 10 }, "FloorClicks": -2, - "SlantType": 1, + "SlantType": 2, "ZSlant": 1 }, { @@ -1529,7 +1533,7 @@ "Room": 10 }, "FloorClicks": -4, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -1540,7 +1544,7 @@ "Room": 10 }, "FloorClicks": -6, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -1551,7 +1555,7 @@ "Room": 10 }, "FloorClicks": -8, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -1737,6 +1741,7 @@ "Quads": { "10": [ { + "Type": 4, "Vertices": [ 100, 99, @@ -1750,6 +1755,7 @@ "Triangles": { "10": [ { + "Type": 3, "Vertices": [ 119, 127, @@ -1758,6 +1764,7 @@ "Texture": 76 }, { + "Type": 3, "Vertices": [ 102, 105, diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL7A.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL7A.PHD-Environment.json index d641f798b..ff59e013a 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL7A.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL7A.PHD-Environment.json @@ -2194,6 +2194,7 @@ "Quads": { "60": [ { + "Type": 4, "Vertices": [ 61, 52, @@ -2205,6 +2206,7 @@ ], "69": [ { + "Type": 4, "Vertices": [ 12, 11, @@ -2216,6 +2218,7 @@ ], "-1": [ { + "Type": 4, "Vertices": [ 169, 172, @@ -2225,6 +2228,7 @@ "Texture": 104 }, { + "Type": 4, "Vertices": [ 5, 7, @@ -2234,6 +2238,7 @@ "Texture": 32 }, { + "Type": 4, "Vertices": [ 76, 75, @@ -2243,6 +2248,7 @@ "Texture": 32 }, { + "Type": 4, "Vertices": [ 28, 214, @@ -2252,6 +2258,7 @@ "Texture": 66 }, { + "Type": 4, "Vertices": [ 66, 34, @@ -2261,6 +2268,7 @@ "Texture": 66 }, { + "Type": 4, "Vertices": [ 34, 33, @@ -2270,6 +2278,7 @@ "Texture": 66 }, { + "Type": 4, "Vertices": [ 143, 113, @@ -2279,6 +2288,7 @@ "Texture": 15 }, { + "Type": 4, "Vertices": [ 84, 64, @@ -2288,6 +2298,7 @@ "Texture": 15 }, { + "Type": 4, "Vertices": [ 87, 88, @@ -2297,6 +2308,7 @@ "Texture": 15 }, { + "Type": 4, "Vertices": [ 190, 189, @@ -2306,6 +2318,7 @@ "Texture": 15 }, { + "Type": 4, "Vertices": [ 141, 194, @@ -2315,6 +2328,7 @@ "Texture": 15 }, { + "Type": 4, "Vertices": [ 194, 193, @@ -2324,6 +2338,7 @@ "Texture": 15 }, { + "Type": 4, "Vertices": [ 193, 187, @@ -2333,6 +2348,7 @@ "Texture": 15 }, { + "Type": 4, "Vertices": [ 187, 190, @@ -2342,6 +2358,7 @@ "Texture": 15 }, { + "Type": 4, "Vertices": [ 190, 25, diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL8A.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL8A.PHD-Environment.json index 29f6d4bbe..20b59f9c5 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL8A.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL8A.PHD-Environment.json @@ -75,7 +75,7 @@ "Z": 14848 }, "FloorClicks": 1, - "SlantType": 1, + "SlantType": 2, "XSlant": 1 }, { @@ -91,7 +91,7 @@ "Room": 42 }, "FloorClicks": -1, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -168,6 +168,7 @@ "Triangles": { "0": [ { + "Type": 3, "Vertices": [ 137, 109, @@ -178,6 +179,7 @@ ], "42": [ { + "Type": 3, "Vertices": [ 69, 67, @@ -3087,10 +3089,8 @@ } ], "CameraAction": { - "Value": 1280, "Once": true, - "MoveTimer": 2, - "Continue": true + "MoveTimer": 2 } }, { @@ -5948,6 +5948,7 @@ "Quads": { "12": [ { + "Type": 4, "Vertices": [ 27, 28, @@ -5957,6 +5958,7 @@ "Texture": 620 }, { + "Type": 4, "Vertices": [ 28, 32, diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL8B.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL8B.PHD-Environment.json index 1117b42e8..544dd825c 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL8B.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL8B.PHD-Environment.json @@ -2732,6 +2732,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 2, 3, @@ -2741,6 +2742,7 @@ "Texture": 577 }, { + "Type": 4, "Vertices": [ 3, 5, @@ -3773,6 +3775,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 2, 3, @@ -3782,6 +3785,7 @@ "Texture": 577 }, { + "Type": 4, "Vertices": [ 3, 5, @@ -3791,6 +3795,7 @@ "Texture": 581 }, { + "Type": 4, "Vertices": [ 131, 129, @@ -3800,6 +3805,7 @@ "Texture": 577 }, { + "Type": 4, "Vertices": [ 129, 126, diff --git a/TRRandomizerCore/Resources/TR1/Environment/LEVEL8C.PHD-Environment.json b/TRRandomizerCore/Resources/TR1/Environment/LEVEL8C.PHD-Environment.json index 301dfc94e..35f2f1ab3 100644 --- a/TRRandomizerCore/Resources/TR1/Environment/LEVEL8C.PHD-Environment.json +++ b/TRRandomizerCore/Resources/TR1/Environment/LEVEL8C.PHD-Environment.json @@ -132,6 +132,7 @@ "Triangles": { "0": [ { + "Type": 3, "Vertices": [ 145, 192, @@ -172,6 +173,7 @@ "Triangles": { "53": [ { + "Type": 3, "Vertices": [ 87, 89, @@ -182,6 +184,7 @@ ], "54": [ { + "Type": 3, "Vertices": [ 305, 304, @@ -205,7 +208,7 @@ "Room": 36 }, "FloorClicks": -2, - "SlantType": 1, + "SlantType": 2, "XSlant": 1, "ZSlant": 2 }, @@ -357,7 +360,7 @@ "Room": 19 }, "FloorClicks": -3, - "SlantType": 1, + "SlantType": 2, "XSlant": -1, "ZSlant": -2 }, @@ -493,7 +496,7 @@ "Room": 27 }, "FloorClicks": -1, - "SlantType": 1, + "SlantType": 2, "XSlant": 1 }, { @@ -504,7 +507,7 @@ "Z": 49664, "Room": 27 }, - "SlantType": 1, + "SlantType": 2, "XSlant": 1 }, { @@ -591,6 +594,7 @@ "Quads": { "27": [ { + "Type": 4, "Vertices": [ 26, 25, @@ -614,7 +618,7 @@ "Room": 25 }, "FloorClicks": -1, - "SlantType": 1, + "SlantType": 2, "XSlant": -1 }, { @@ -625,7 +629,7 @@ "Z": 44544, "Room": 25 }, - "SlantType": 1, + "SlantType": 2, "XSlant": -1 }, { @@ -712,6 +716,7 @@ "Quads": { "25": [ { + "Type": 4, "Vertices": [ 22, 21, @@ -735,7 +740,7 @@ "Room": 43 }, "FloorClicks": -1, - "SlantType": 1, + "SlantType": 2, "ZSlant": -1 }, { @@ -746,7 +751,7 @@ "Z": 46592, "Room": 43 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -1 }, { @@ -833,6 +838,7 @@ "Quads": { "43": [ { + "Type": 4, "Vertices": [ 27, 26, @@ -1390,6 +1396,7 @@ "Quads": { "60": [ { + "Type": 4, "Vertices": [ 8, 9, @@ -1399,6 +1406,7 @@ "Texture": 677 }, { + "Type": 4, "Vertices": [ 9, 13, @@ -1424,7 +1432,7 @@ "Z": 55808, "Room": 12 }, - "SlantType": 1, + "SlantType": 2, "XSlant": -3 }, { @@ -2380,6 +2388,7 @@ "Quads": { "30": [ { + "Type": 4, "Vertices": [ 5, 4, @@ -2915,6 +2924,7 @@ "Quads": { "30": [ { + "Type": 4, "Vertices": [ 5, 4, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/CAT.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/CAT.PHD-SecretMapping.json index 7551e0d17..aa733114e 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/CAT.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/CAT.PHD-SecretMapping.json @@ -134,6 +134,7 @@ "ExpandX": 3, "ExpandZ": 1 }, + "SlantType": 3, "ZSlant": -4 }, { @@ -225,6 +226,7 @@ "Triangles": { "-1": [ { + "Type": 4, "Vertices": [ 64, 61, @@ -233,6 +235,7 @@ "Texture": 105 }, { + "Type": 4, "Vertices": [ 28, 6, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/EGYPT.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/EGYPT.PHD-SecretMapping.json index ad01506bf..d06bd2298 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/EGYPT.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/EGYPT.PHD-SecretMapping.json @@ -207,6 +207,7 @@ "ExpandX": 1, "ExpandZ": 3 }, + "SlantType": 3, "XSlant": 2 }, { @@ -247,6 +248,7 @@ "Triangles": { "-1": [ { + "Type": 4, "Vertices": [ 25, 13, @@ -255,6 +257,7 @@ "Texture": 221 }, { + "Type": 4, "Vertices": [ 19, 18, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL1.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL1.PHD-SecretMapping.json index dfcb3e207..6fc9f0d34 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL1.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL1.PHD-SecretMapping.json @@ -176,6 +176,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 23, 22, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL10B.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL10B.PHD-SecretMapping.json index 991c91907..eca678309 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL10B.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL10B.PHD-SecretMapping.json @@ -370,6 +370,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 5, 6, @@ -381,6 +382,7 @@ ], "50": [ { + "Type": 4, "Vertices": [ 180, 179, @@ -390,6 +392,7 @@ "Texture": 35 }, { + "Type": 4, "Vertices": [ 182, 181, @@ -401,6 +404,7 @@ ], "51": [ { + "Type": 4, "Vertices": [ 56, 55, @@ -412,6 +416,7 @@ ], "49": [ { + "Type": 4, "Vertices": [ 246, 245, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL10C.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL10C.PHD-SecretMapping.json index 6fcfc80fa..a9ac95a7f 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL10C.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL10C.PHD-SecretMapping.json @@ -233,6 +233,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 2, 6, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL2.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL2.PHD-SecretMapping.json index 879ced493..56ee6f172 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL2.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL2.PHD-SecretMapping.json @@ -269,6 +269,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 2, 3, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL3B.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL3B.PHD-SecretMapping.json index db343803d..5cf4cc260 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL3B.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL3B.PHD-SecretMapping.json @@ -141,6 +141,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 23, 20, @@ -150,6 +151,7 @@ "Texture": 32 }, { + "Type": 4, "Vertices": [ 6, 7, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL4.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL4.PHD-SecretMapping.json index 8a323e9af..3968b8b04 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL4.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL4.PHD-SecretMapping.json @@ -150,6 +150,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 58, 57, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL6.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL6.PHD-SecretMapping.json index fa828f458..7cb736a21 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL6.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL6.PHD-SecretMapping.json @@ -223,6 +223,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 0, 1, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL7A.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL7A.PHD-SecretMapping.json index 7ab4ed7b7..764fbc8b4 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL7A.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL7A.PHD-SecretMapping.json @@ -193,6 +193,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 3, 2, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL8A.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL8A.PHD-SecretMapping.json index 4dd4c3064..9e735accf 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL8A.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL8A.PHD-SecretMapping.json @@ -151,6 +151,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 10, 11, diff --git a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL8B.PHD-SecretMapping.json b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL8B.PHD-SecretMapping.json index 0eb1bb922..5ddd38a64 100644 --- a/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL8B.PHD-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR1/SecretMapping/LEVEL8B.PHD-SecretMapping.json @@ -166,6 +166,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 39, 38, diff --git a/TRRandomizerCore/Resources/TR2/Environment/BOAT.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/BOAT.TR2-Environment.json index 390eec899..ebc499da7 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/BOAT.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/BOAT.TR2-Environment.json @@ -1155,9 +1155,7 @@ 155 ], "CameraAction": { - "Value": 2, - "Timer": 2, - "Continue": true + "Timer": 2 } }, { @@ -1212,9 +1210,7 @@ 116 ], "CameraAction": { - "Value": 2, - "Timer": 2, - "Continue": true + "Timer": 2 } } ] @@ -1550,9 +1546,7 @@ 20 ], "CameraAction": { - "Value": 2, - "Timer": 2, - "Continue": true + "Timer": 2 } } ], diff --git a/TRRandomizerCore/Resources/TR2/Environment/EMPRTOMB.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/EMPRTOMB.TR2-Environment.json index d56cc7a05..821efd705 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/EMPRTOMB.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/EMPRTOMB.TR2-Environment.json @@ -1889,7 +1889,7 @@ }, "FloorClicks": 4, "CeilingClicks": -3, - "SlantType": 1, + "SlantType": 2, "RemoveSlant": true }, { @@ -1923,17 +1923,17 @@ "Comments": "Create a dummy static mesh.", "EMType": 34, "ID": 292, - "Mesh": { - "Centre": {}, - "Vertices": [], - "Normals": [], - "Lights": [], - "TexturedRectangles": [], - "TexturedTriangles": [], - "ColouredRectangles": [], - "ColouredTriangles": [] - }, "Info": { + "Mesh": { + "Centre": {}, + "Vertices": [], + "Normals": [], + "Lights": [], + "TexturedRectangles": [], + "TexturedTriangles": [], + "ColouredRectangles": [], + "ColouredTriangles": [] + }, "VisibilityBox": { "MinX": -3584, "MaxX": 512, @@ -2012,6 +2012,7 @@ "Quads": { "8": [ { + "Type": 4, "Vertices": [ 287, 47, @@ -2023,6 +2024,7 @@ ], "14": [ { + "Type": 4, "Vertices": [ 848, 847, diff --git a/TRRandomizerCore/Resources/TR2/Environment/FLOATING.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/FLOATING.TR2-Environment.json index 297b83848..8f1dad071 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/FLOATING.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/FLOATING.TR2-Environment.json @@ -12,7 +12,7 @@ "Z": 73216, "Room": 40 }, - "SlantType": 1, + "SlantType": 2, "XSlant": 0, "ZSlant": -1 }, @@ -1822,9 +1822,7 @@ 89 ], "CameraAction": { - "Value": 2, - "Timer": 2, - "Continue": true + "Timer": 2 } } ], diff --git a/TRRandomizerCore/Resources/TR2/Environment/ICECAVE.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/ICECAVE.TR2-Environment.json index 6427db9a4..a0b680957 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/ICECAVE.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/ICECAVE.TR2-Environment.json @@ -1450,9 +1450,7 @@ 10 ], "CameraAction": { - "Value": 2, - "Timer": 2, - "Continue": true + "Timer": 2 } }, { diff --git a/TRRandomizerCore/Resources/TR2/Environment/KEEL.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/KEEL.TR2-Environment.json index 9d5c8bde9..ce9c9a15a 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/KEEL.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/KEEL.TR2-Environment.json @@ -73,7 +73,7 @@ "Z": 42496, "Room": 43 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -2 }, { @@ -87,7 +87,7 @@ "Z": 42496, "Room": 43 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": -2 }, { @@ -1588,9 +1588,7 @@ 17 ], "CameraAction": { - "Value": 2, - "Timer": 2, - "Continue": true + "Timer": 2 } } ], diff --git a/TRRandomizerCore/Resources/TR2/Environment/LIVING.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/LIVING.TR2-Environment.json index fbeeafa9c..8fbf403c4 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/LIVING.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/LIVING.TR2-Environment.json @@ -1837,9 +1837,7 @@ 82 ], "CameraAction": { - "Value": 2, - "Timer": 2, - "Continue": true + "Timer": 2 } } ] diff --git a/TRRandomizerCore/Resources/TR2/Environment/MONASTRY.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/MONASTRY.TR2-Environment.json index f13d8342c..98bf788cc 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/MONASTRY.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/MONASTRY.TR2-Environment.json @@ -66,13 +66,11 @@ { "Comments": "Create a water sound source", "EMType": 101, - "Source": { - "X": 25217, - "Y": -4012, - "Z": 22092, - "SoundID": 59, - "Flags": 192 - } + "ID": 59, + "Mode": 192, + "X": 25217, + "Y": -4012, + "Z": 22092 }, { "Comments": "Adjust any secrets.", diff --git a/TRRandomizerCore/Resources/TR2/Environment/OPERA.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/OPERA.TR2-Environment.json index 383bd3e94..d4fdf9aa5 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/OPERA.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/OPERA.TR2-Environment.json @@ -1098,6 +1098,7 @@ "Quads": { "53": [ { + "Type": 4, "Vertices": [ 125, 120, @@ -1107,6 +1108,7 @@ "Texture": 1666 }, { + "Type": 4, "Vertices": [ 59, 124, @@ -1236,17 +1238,17 @@ 11 ], "ID": 292, - "Mesh": { - "Centre": {}, - "Vertices": [], - "Normals": [], - "Lights": [], - "TexturedRectangles": [], - "TexturedTriangles": [], - "ColouredRectangles": [], - "ColouredTriangles": [] - }, "Info": { + "Mesh": { + "Centre": {}, + "Vertices": [], + "Normals": [], + "Lights": [], + "TexturedRectangles": [], + "TexturedTriangles": [], + "ColouredRectangles": [], + "ColouredTriangles": [] + }, "VisibilityBox": { "MinX": -512, "MaxX": 2560, @@ -1351,6 +1353,7 @@ "Quads": { "13": [ { + "Type": 4, "Vertices": [ 108, 98, @@ -1360,6 +1363,7 @@ "Texture": 1233 }, { + "Type": 4, "Vertices": [ 98, 87, @@ -1369,6 +1373,7 @@ "Texture": 1233 }, { + "Type": 4, "Vertices": [ 87, 73, @@ -1380,6 +1385,7 @@ ], "38": [ { + "Type": 4, "Vertices": [ 61, 76, @@ -1389,6 +1395,7 @@ "Texture": 1234 }, { + "Type": 4, "Vertices": [ 41, 61, @@ -1398,6 +1405,7 @@ "Texture": 1234 }, { + "Type": 4, "Vertices": [ 42, 41, diff --git a/TRRandomizerCore/Resources/TR2/Environment/PLATFORM.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/PLATFORM.TR2-Environment.json index 278ed6ea4..d37943234 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/PLATFORM.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/PLATFORM.TR2-Environment.json @@ -920,7 +920,6 @@ } ], "CameraAction": { - "Value": 37123, "Timer": 3, "Once": true, "MoveTimer": 8 @@ -1466,9 +1465,7 @@ 90 ], "CameraAction": { - "Value": 2, - "Timer": 2, - "Continue": true + "Timer": 2 } } ] @@ -2519,9 +2516,7 @@ -1 ], "CameraAction": { - "Value": 2, - "Timer": 2, - "Continue": true + "Timer": 2 } }, { diff --git a/TRRandomizerCore/Resources/TR2/Environment/RIG.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/RIG.TR2-Environment.json index 3bc4e072f..be214a243 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/RIG.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/RIG.TR2-Environment.json @@ -71,19 +71,6 @@ "AttemptWaterCreature": true } ], - [ - { - "Comments": "Add a wind sound effect outside.", - "EMType": 101, - "Source": { - "X": 20015, - "Y": -11008, - "Z": 72161, - "SoundID": 226, - "Flags": 192 - } - } - ], [ { "Comments": "Add some barrels", diff --git a/TRRandomizerCore/Resources/TR2/Environment/SKIDOO.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/SKIDOO.TR2-Environment.json index 19b28a5f6..ff4918fb8 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/SKIDOO.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/SKIDOO.TR2-Environment.json @@ -38,6 +38,7 @@ "Quads": { "143": [ { + "Type": 4, "Vertices": [ 460, 459, @@ -131,7 +132,7 @@ "Room": 53 }, "FloorClicks": -2, - "SlantType": 1, + "SlantType": 2, "ZSlant": -2 }, { @@ -146,7 +147,7 @@ "Room": 53 }, "FloorClicks": -1, - "SlantType": 1, + "SlantType": 2, "ZSlant": -1 }, { @@ -215,6 +216,7 @@ "Quads": { "53": [ { + "Type": 4, "Vertices": [ 211, 214, @@ -224,6 +226,7 @@ "Texture": 1332 }, { + "Type": 4, "Vertices": [ 213, 212, @@ -233,6 +236,7 @@ "Texture": 1332 }, { + "Type": 4, "Vertices": [ 215, 218, @@ -242,6 +246,7 @@ "Texture": 1332 }, { + "Type": 4, "Vertices": [ 217, 216, @@ -255,6 +260,7 @@ "Triangles": { "53": [ { + "Type": 3, "Vertices": [ 219, 106, @@ -263,6 +269,7 @@ "Texture": 1407 }, { + "Type": 3, "Vertices": [ 72, 76, @@ -1100,6 +1107,7 @@ "Quads": { "81": [ { + "Type": 4, "Vertices": [ 107, 104, @@ -1161,6 +1169,7 @@ "Z": 14848, "Room": 81 }, + "SlantType": 3, "RemoveSlant": true }, { @@ -1636,6 +1645,7 @@ "Quads": { "0": [ { + "Type": 4, "Vertices": [ 82, 83, @@ -1645,6 +1655,7 @@ "Texture": 1474 }, { + "Type": 4, "Vertices": [ 85, 82, @@ -1765,6 +1776,7 @@ "Quads": { "37": [ { + "Type": 4, "Vertices": [ 7, 11, @@ -2040,7 +2052,7 @@ "Z": 29184, "Room": 29 }, - "SlantType": 1, + "SlantType": 2, "XSlant": -1 }, { @@ -2101,6 +2113,7 @@ "Triangles": { "29": [ { + "Type": 3, "Vertices": [ 59, 32, @@ -2252,7 +2265,6 @@ } ], "CameraAction": { - "Value": 37123, "Timer": 3, "Once": true, "MoveTimer": 8 @@ -2294,7 +2306,6 @@ } ], "CameraAction": { - "Value": 37123, "Timer": 3, "Once": true, "MoveTimer": 8 @@ -2334,7 +2345,6 @@ } ], "CameraAction": { - "Value": 37123, "Timer": 3, "Once": true, "MoveTimer": 8 diff --git a/TRRandomizerCore/Resources/TR2/Environment/UNWATER.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/UNWATER.TR2-Environment.json index 8e2bdeff7..497cb2493 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/UNWATER.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/UNWATER.TR2-Environment.json @@ -30,6 +30,7 @@ "Quads": { "21": [ { + "Type": 4, "Vertices": [ 226, 225, diff --git a/TRRandomizerCore/Resources/TR2/Environment/VENICE.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/VENICE.TR2-Environment.json index 65906be5b..b544d18fd 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/VENICE.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/VENICE.TR2-Environment.json @@ -404,13 +404,11 @@ { "Comments": "Create a water sound source", "EMType": 101, - "Source": { - "X": 40559, - "Y": -3584, - "Z": 35175, - "SoundID": 59, - "Flags": 192 - } + "ID": 59, + "Mode": 192, + "X": 40559, + "Y": -3584, + "Z": 35175 } ], [ diff --git a/TRRandomizerCore/Resources/TR2/Environment/WALL.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/WALL.TR2-Environment.json index 005ede110..64173b956 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/WALL.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/WALL.TR2-Environment.json @@ -116,23 +116,19 @@ { "Comments": "Create a water sound source", "EMType": 101, - "Source": { - "X": 62976, - "Z": 23040, - "SoundID": 59, - "Flags": 192 - } + "ID": 59, + "Mode": 192, + "X": 62976, + "Z": 23040 }, { "Comments": "Create a water sound source", "EMType": 101, - "Source": { - "X": 59898, - "Y": -1666, - "Z": 34293, - "SoundID": 59, - "Flags": 192 - } + "ID": 59, + "Mode": 192, + "X": 59898, + "Y": -1666, + "Z": 34293 }, { "Comments": "Extends the helicopter/camera trigger in case Lara swims over the one tile that doesn't have it", @@ -367,13 +363,11 @@ { "Comments": "Create a water sound source", "EMType": 101, - "Source": { - "X": 69640, - "Y": 18690, - "Z": 74746, - "SoundID": 59, - "Flags": 192 - } + "ID": 59, + "Mode": 192, + "X": 69640, + "Y": 18690, + "Z": 74746 }, { "Comments": "Move the first T-Rex to spawn on land unless it's a water creature.", diff --git a/TRRandomizerCore/Resources/TR2/Environment/XIAN.TR2-Environment.json b/TRRandomizerCore/Resources/TR2/Environment/XIAN.TR2-Environment.json index d0a81ad0c..bfc44396c 100644 --- a/TRRandomizerCore/Resources/TR2/Environment/XIAN.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR2/Environment/XIAN.TR2-Environment.json @@ -11,7 +11,7 @@ "Z": 59904, "Room": 2 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -24,7 +24,7 @@ "Z": 59904, "Room": 2 }, - "SlantType": 1, + "SlantType": 2, "ZSlant": 2 }, { @@ -93,6 +93,7 @@ "Triangles": { "2": [ { + "Type": 3, "Vertices": [ 18, 109, @@ -101,6 +102,7 @@ "Texture": 1497 }, { + "Type": 3, "Vertices": [ 57, 112, diff --git a/TRRandomizerCore/Resources/TR2/Rooms/XIAN.TR2-Rooms.json b/TRRandomizerCore/Resources/TR2/Rooms/XIAN.TR2-Rooms.json index ade05a11d..637986279 100644 --- a/TRRandomizerCore/Resources/TR2/Rooms/XIAN.TR2-Rooms.json +++ b/TRRandomizerCore/Resources/TR2/Rooms/XIAN.TR2-Rooms.json @@ -1,18311 +1 @@ -{ - "18": { - "Room": { - "Info": { - "X": 58368, - "Z": 65536, - "YBottom": 5376, - "YTop": -512 - }, - "NumDataWords": 11186, - "Mesh": { - "NumVertices": 1022, - "Vertices": [ - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 3072 - }, - "Lighting": 7467, - "Attributes": 16, - "Lighting2": 7467 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 3072 - }, - "Lighting": 7481, - "Attributes": 16, - "Lighting2": 7481 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 4096 - }, - "Lighting": 7417, - "Attributes": 16, - "Lighting2": 7417 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 4096 - }, - "Lighting": 7435, - "Attributes": 16, - "Lighting2": 7435 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 5120 - }, - "Lighting": 7366, - "Attributes": 16, - "Lighting2": 7366 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 5120 - }, - "Lighting": 7388, - "Attributes": 16, - "Lighting2": 7388 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 6144 - }, - "Lighting": 7315, - "Attributes": 16, - "Lighting2": 7315 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 6144 - }, - "Lighting": 7340, - "Attributes": 16, - "Lighting2": 7340 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 7168 - }, - "Lighting": 7267, - "Attributes": 16, - "Lighting2": 7267 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 7168 - }, - "Lighting": 7296, - "Attributes": 16, - "Lighting2": 7296 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 8192 - }, - "Lighting": 7225, - "Attributes": 16, - "Lighting2": 7225 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 8192 - }, - "Lighting": 7259, - "Attributes": 16, - "Lighting2": 7259 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 9216 - }, - "Lighting": 7195, - "Attributes": 16, - "Lighting2": 7195 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 9216 - }, - "Lighting": 7231, - "Attributes": 16, - "Lighting2": 7231 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 10240 - }, - "Lighting": 7178, - "Attributes": 16, - "Lighting2": 7178 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 10240 - }, - "Lighting": 7216, - "Attributes": 16, - "Lighting2": 7216 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 11264 - }, - "Lighting": 7178, - "Attributes": 16, - "Lighting2": 7178 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 11264 - }, - "Lighting": 7216, - "Attributes": 16, - "Lighting2": 7216 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 12288 - }, - "Lighting": 7195, - "Attributes": 16, - "Lighting2": 7195 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 12288 - }, - "Lighting": 7231, - "Attributes": 16, - "Lighting2": 7231 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 13312 - }, - "Lighting": 7225, - "Attributes": 16, - "Lighting2": 7225 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 13312 - }, - "Lighting": 7259, - "Attributes": 16, - "Lighting2": 7259 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 14336 - }, - "Lighting": 7267, - "Attributes": 16, - "Lighting2": 7267 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 14336 - }, - "Lighting": 7296, - "Attributes": 16, - "Lighting2": 7296 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 15360 - }, - "Lighting": 7315, - "Attributes": 16, - "Lighting2": 7315 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 15360 - }, - "Lighting": 7340, - "Attributes": 16, - "Lighting2": 7340 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 16384 - }, - "Lighting": 7366, - "Attributes": 16, - "Lighting2": 7366 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 16384 - }, - "Lighting": 7388, - "Attributes": 16, - "Lighting2": 7388 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 6554, - "Attributes": 16, - "Lighting2": 6554 - }, - { - "Vertex": { - "X": 1024, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7469, - "Attributes": 16, - "Lighting2": 7469 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7507, - "Attributes": 16, - "Lighting2": 7507 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 7420, - "Attributes": 16, - "Lighting2": 7420 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 7345, - "Attributes": 16, - "Lighting2": 7345 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7466, - "Attributes": 16, - "Lighting2": 7466 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7405, - "Attributes": 16, - "Lighting2": 7405 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7369, - "Attributes": 16, - "Lighting2": 7369 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7424, - "Attributes": 16, - "Lighting2": 7424 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7351, - "Attributes": 16, - "Lighting2": 7351 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 7319, - "Attributes": 16, - "Lighting2": 7319 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 7208, - "Attributes": 16, - "Lighting2": 7208 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 6144 - }, - "Lighting": 7383, - "Attributes": 16, - "Lighting2": 7383 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 6144 - }, - "Lighting": 7296, - "Attributes": 16, - "Lighting2": 7296 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 7271, - "Attributes": 16, - "Lighting2": 7271 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 7141, - "Attributes": 16, - "Lighting2": 7141 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 7168 - }, - "Lighting": 7346, - "Attributes": 16, - "Lighting2": 7346 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 7168 - }, - "Lighting": 7245, - "Attributes": 16, - "Lighting2": 7245 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 7231, - "Attributes": 16, - "Lighting2": 7231 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 7082, - "Attributes": 16, - "Lighting2": 7082 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 8192 - }, - "Lighting": 7314, - "Attributes": 16, - "Lighting2": 7314 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 8192 - }, - "Lighting": 7201, - "Attributes": 16, - "Lighting2": 7201 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 7201, - "Attributes": 16, - "Lighting2": 7201 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 7038, - "Attributes": 16, - "Lighting2": 7038 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 9216 - }, - "Lighting": 7290, - "Attributes": 16, - "Lighting2": 7290 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 9216 - }, - "Lighting": 7168, - "Attributes": 16, - "Lighting2": 7168 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 7185, - "Attributes": 16, - "Lighting2": 7185 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 7014, - "Attributes": 16, - "Lighting2": 7014 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 10240 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 10240 - }, - "Lighting": 7151, - "Attributes": 16, - "Lighting2": 7151 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 7185, - "Attributes": 16, - "Lighting2": 7185 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 7014, - "Attributes": 16, - "Lighting2": 7014 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 11264 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 11264 - }, - "Lighting": 7151, - "Attributes": 16, - "Lighting2": 7151 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 7201, - "Attributes": 16, - "Lighting2": 7201 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 7038, - "Attributes": 16, - "Lighting2": 7038 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 12288 - }, - "Lighting": 7290, - "Attributes": 16, - "Lighting2": 7290 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 12288 - }, - "Lighting": 7168, - "Attributes": 16, - "Lighting2": 7168 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 7231, - "Attributes": 16, - "Lighting2": 7231 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 7082, - "Attributes": 16, - "Lighting2": 7082 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 13312 - }, - "Lighting": 7314, - "Attributes": 16, - "Lighting2": 7314 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 13312 - }, - "Lighting": 7201, - "Attributes": 16, - "Lighting2": 7201 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 7271, - "Attributes": 16, - "Lighting2": 7271 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 7141, - "Attributes": 16, - "Lighting2": 7141 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 14336 - }, - "Lighting": 7346, - "Attributes": 16, - "Lighting2": 7346 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 14336 - }, - "Lighting": 7245, - "Attributes": 16, - "Lighting2": 7245 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7319, - "Attributes": 16, - "Lighting2": 7319 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7208, - "Attributes": 16, - "Lighting2": 7208 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7383, - "Attributes": 16, - "Lighting2": 7383 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7296, - "Attributes": 16, - "Lighting2": 7296 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 7369, - "Attributes": 16, - "Lighting2": 7369 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 16384 - }, - "Lighting": 7424, - "Attributes": 16, - "Lighting2": 7424 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 6537, - "Attributes": 16, - "Lighting2": 6537 - }, - { - "Vertex": { - "X": 2048, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 6399, - "Attributes": 16, - "Lighting2": 6399 - }, - { - "Vertex": { - "X": 2048, - "Y": 1024, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 1024, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 1024, - "Y": 1024, - "Z": 19456 - }, - "Lighting": 6727, - "Attributes": 16, - "Lighting2": 6727 - }, - { - "Vertex": { - "X": 2048, - "Y": 1024, - "Z": 19456 - }, - "Lighting": 6634, - "Attributes": 16, - "Lighting2": 6634 - }, - { - "Vertex": { - "X": 2048, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6659, - "Attributes": 16, - "Lighting2": 6659 - }, - { - "Vertex": { - "X": 3072, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7168, - "Attributes": 16, - "Lighting2": 7168 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7265, - "Attributes": 16, - "Lighting2": 7265 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 7072, - "Attributes": 16, - "Lighting2": 7072 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 6144 - }, - "Lighting": 7193, - "Attributes": 16, - "Lighting2": 7193 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 6976, - "Attributes": 16, - "Lighting2": 6976 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 7168 - }, - "Lighting": 7123, - "Attributes": 16, - "Lighting2": 7123 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 6888, - "Attributes": 16, - "Lighting2": 6888 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 8192 - }, - "Lighting": 7062, - "Attributes": 16, - "Lighting2": 7062 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 6821, - "Attributes": 16, - "Lighting2": 6821 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 9216 - }, - "Lighting": 7015, - "Attributes": 16, - "Lighting2": 7015 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 6783, - "Attributes": 16, - "Lighting2": 6783 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 10240 - }, - "Lighting": 6990, - "Attributes": 16, - "Lighting2": 6990 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 6783, - "Attributes": 16, - "Lighting2": 6783 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 11264 - }, - "Lighting": 6990, - "Attributes": 16, - "Lighting2": 6990 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 6821, - "Attributes": 16, - "Lighting2": 6821 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 12288 - }, - "Lighting": 7015, - "Attributes": 16, - "Lighting2": 7015 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 6888, - "Attributes": 16, - "Lighting2": 6888 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 13312 - }, - "Lighting": 7062, - "Attributes": 16, - "Lighting2": 7062 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 6976, - "Attributes": 16, - "Lighting2": 6976 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 14336 - }, - "Lighting": 7123, - "Attributes": 16, - "Lighting2": 7123 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 6272, - "Attributes": 16, - "Lighting2": 6272 - }, - { - "Vertex": { - "X": 3072, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 3072, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6579, - "Attributes": 16, - "Lighting2": 6579 - }, - { - "Vertex": { - "X": 4096, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7429, - "Attributes": 16, - "Lighting2": 7429 - }, - { - "Vertex": { - "X": 4096, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7446, - "Attributes": 16, - "Lighting2": 7446 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7431, - "Attributes": 16, - "Lighting2": 7431 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7475, - "Attributes": 16, - "Lighting2": 7475 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 6904, - "Attributes": 32784, - "Lighting2": 6904 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 6144 - }, - "Lighting": 7072, - "Attributes": 16, - "Lighting2": 7072 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 6764, - "Attributes": 16, - "Lighting2": 6764 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 7168 - }, - "Lighting": 6977, - "Attributes": 16, - "Lighting2": 6977 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 6631, - "Attributes": 16, - "Lighting2": 6631 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 8192 - }, - "Lighting": 6889, - "Attributes": 16, - "Lighting2": 6889 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 6524, - "Attributes": 16, - "Lighting2": 6524 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 9216 - }, - "Lighting": 6822, - "Attributes": 16, - "Lighting2": 6822 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 6464, - "Attributes": 16, - "Lighting2": 6464 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 10240 - }, - "Lighting": 6785, - "Attributes": 16, - "Lighting2": 6785 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 6464, - "Attributes": 16, - "Lighting2": 6464 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 11264 - }, - "Lighting": 6785, - "Attributes": 16, - "Lighting2": 6785 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 6524, - "Attributes": 16, - "Lighting2": 6524 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 12288 - }, - "Lighting": 6822, - "Attributes": 16, - "Lighting2": 6822 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 6631, - "Attributes": 16, - "Lighting2": 6631 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 13312 - }, - "Lighting": 6889, - "Attributes": 16, - "Lighting2": 6889 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 6764, - "Attributes": 32784, - "Lighting2": 6764 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 14336 - }, - "Lighting": 6977, - "Attributes": 16, - "Lighting2": 6977 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7265, - "Attributes": 16, - "Lighting2": 7265 - }, - { - "Vertex": { - "X": 4096, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7340, - "Attributes": 16, - "Lighting2": 7340 - }, - { - "Vertex": { - "X": 4096, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 6172, - "Attributes": 16, - "Lighting2": 6172 - }, - { - "Vertex": { - "X": 4096, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7331, - "Attributes": 16, - "Lighting2": 7331 - }, - { - "Vertex": { - "X": 4096, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6519, - "Attributes": 16, - "Lighting2": 6519 - }, - { - "Vertex": { - "X": 5120, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7384, - "Attributes": 16, - "Lighting2": 7384 - }, - { - "Vertex": { - "X": 5120, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7405, - "Attributes": 16, - "Lighting2": 7405 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7387, - "Attributes": 16, - "Lighting2": 7387 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7296, - "Attributes": 16, - "Lighting2": 7296 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7439, - "Attributes": 16, - "Lighting2": 7439 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7365, - "Attributes": 16, - "Lighting2": 7365 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 6495, - "Attributes": 16, - "Lighting2": 6495 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 7168 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 6288, - "Attributes": 16, - "Lighting2": 6288 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 8192 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 6114, - "Attributes": 16, - "Lighting2": 6114 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 9216 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 6013, - "Attributes": 32784, - "Lighting2": 6013 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 10240 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 6013, - "Attributes": 32784, - "Lighting2": 6013 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 11264 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 6114, - "Attributes": 16, - "Lighting2": 6114 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 12288 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 6288, - "Attributes": 16, - "Lighting2": 6288 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 13312 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 7050, - "Attributes": 16, - "Lighting2": 7050 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7177, - "Attributes": 16, - "Lighting2": 7177 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7185, - "Attributes": 16, - "Lighting2": 7185 - }, - { - "Vertex": { - "X": 5120, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 5120, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 6117, - "Attributes": 16, - "Lighting2": 6117 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7267, - "Attributes": 16, - "Lighting2": 7267 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6487, - "Attributes": 16, - "Lighting2": 6487 - }, - { - "Vertex": { - "X": 6144, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7341, - "Attributes": 16, - "Lighting2": 7341 - }, - { - "Vertex": { - "X": 6144, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7365, - "Attributes": 16, - "Lighting2": 7365 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7345, - "Attributes": 16, - "Lighting2": 7345 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7238, - "Attributes": 16, - "Lighting2": 7238 - }, - { - "Vertex": { - "X": 6144, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7405, - "Attributes": 16, - "Lighting2": 7405 - }, - { - "Vertex": { - "X": 6144, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7319, - "Attributes": 16, - "Lighting2": 7319 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7103, - "Attributes": 16, - "Lighting2": 7103 - }, - { - "Vertex": { - "X": 6144, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7216, - "Attributes": 16, - "Lighting2": 7216 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 6934, - "Attributes": 16, - "Lighting2": 6934 - }, - { - "Vertex": { - "X": 6144, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7094, - "Attributes": 16, - "Lighting2": 7094 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 6517, - "Attributes": 16, - "Lighting2": 6517 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 7168 - }, - "Lighting": 7353, - "Attributes": 16, - "Lighting2": 7353 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 7168 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 5837, - "Attributes": 16, - "Lighting2": 5837 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 8192 - }, - "Lighting": 7287, - "Attributes": 16, - "Lighting2": 7287 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 8192 - }, - "Lighting": 6685, - "Attributes": 16, - "Lighting2": 6685 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 5546, - "Attributes": 16, - "Lighting2": 5546 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 9216 - }, - "Lighting": 7233, - "Attributes": 16, - "Lighting2": 7233 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 9216 - }, - "Lighting": 6216, - "Attributes": 16, - "Lighting2": 6216 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 5369, - "Attributes": 32784, - "Lighting2": 5369 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 10240 - }, - "Lighting": 7204, - "Attributes": 16, - "Lighting2": 7204 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 10240 - }, - "Lighting": 6126, - "Attributes": 16, - "Lighting2": 6126 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 5369, - "Attributes": 32784, - "Lighting2": 5369 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 11264 - }, - "Lighting": 7204, - "Attributes": 16, - "Lighting2": 7204 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 11264 - }, - "Lighting": 6126, - "Attributes": 16, - "Lighting2": 6126 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 5546, - "Attributes": 16, - "Lighting2": 5546 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 12288 - }, - "Lighting": 7233, - "Attributes": 16, - "Lighting2": 7233 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 12288 - }, - "Lighting": 6560, - "Attributes": 16, - "Lighting2": 6560 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 6257, - "Attributes": 16, - "Lighting2": 6257 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 13312 - }, - "Lighting": 7287, - "Attributes": 16, - "Lighting2": 7287 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 13312 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 5120, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 6723, - "Attributes": 16, - "Lighting2": 6723 - }, - { - "Vertex": { - "X": 6144, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 512, - "Z": 16384 - }, - "Lighting": 6949, - "Attributes": 16, - "Lighting2": 6949 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 6934, - "Attributes": 16, - "Lighting2": 6934 - }, - { - "Vertex": { - "X": 6144, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7094, - "Attributes": 16, - "Lighting2": 7094 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7103, - "Attributes": 16, - "Lighting2": 7103 - }, - { - "Vertex": { - "X": 6144, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7216, - "Attributes": 16, - "Lighting2": 7216 - }, - { - "Vertex": { - "X": 6144, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 6117, - "Attributes": 16, - "Lighting2": 6117 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7203, - "Attributes": 16, - "Lighting2": 7203 - }, - { - "Vertex": { - "X": 6144, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6487, - "Attributes": 16, - "Lighting2": 6487 - }, - { - "Vertex": { - "X": 7168, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7303, - "Attributes": 16, - "Lighting2": 7303 - }, - { - "Vertex": { - "X": 7168, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7330, - "Attributes": 16, - "Lighting2": 7330 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7308, - "Attributes": 16, - "Lighting2": 7308 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7185, - "Attributes": 16, - "Lighting2": 7185 - }, - { - "Vertex": { - "X": 7168, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7374, - "Attributes": 16, - "Lighting2": 7374 - }, - { - "Vertex": { - "X": 7168, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7026, - "Attributes": 16, - "Lighting2": 7026 - }, - { - "Vertex": { - "X": 7168, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7160, - "Attributes": 16, - "Lighting2": 7160 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 6821, - "Attributes": 16, - "Lighting2": 6821 - }, - { - "Vertex": { - "X": 7168, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7015, - "Attributes": 16, - "Lighting2": 7015 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 6552, - "Attributes": 16, - "Lighting2": 6552 - }, - { - "Vertex": { - "X": 7168, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 6552, - "Attributes": 16, - "Lighting2": 6552 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7371, - "Attributes": 16, - "Lighting2": 7371 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 7168, - "Y": 3840, - "Z": 6144 - }, - "Lighting": 7054, - "Attributes": 16, - "Lighting2": 7054 - }, - { - "Vertex": { - "X": 6144, - "Y": 3840, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 3840, - "Z": 7168 - }, - "Lighting": 7031, - "Attributes": 16, - "Lighting2": 7031 - }, - { - "Vertex": { - "X": 7168, - "Y": 3840, - "Z": 7168 - }, - "Lighting": 5719, - "Attributes": 16, - "Lighting2": 5719 - }, - { - "Vertex": { - "X": 7168, - "Y": 2048, - "Z": 6144 - }, - "Lighting": 7151, - "Attributes": 16, - "Lighting2": 7151 - }, - { - "Vertex": { - "X": 6144, - "Y": 2048, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 6144, - "Y": 2048, - "Z": 7168 - }, - "Lighting": 7133, - "Attributes": 16, - "Lighting2": 7133 - }, - { - "Vertex": { - "X": 7168, - "Y": 2048, - "Z": 7168 - }, - "Lighting": 6016, - "Attributes": 16, - "Lighting2": 6016 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 5771, - "Attributes": 16, - "Lighting2": 5771 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 5269, - "Attributes": 16, - "Lighting2": 5269 - }, - { - "Vertex": { - "X": 7168, - "Y": 1024, - "Z": 7168 - }, - "Lighting": 6271, - "Attributes": 16, - "Lighting2": 6271 - }, - { - "Vertex": { - "X": 6144, - "Y": 1024, - "Z": 7168 - }, - "Lighting": 6986, - "Attributes": 16, - "Lighting2": 6986 - }, - { - "Vertex": { - "X": 6144, - "Y": 1024, - "Z": 8192 - }, - "Lighting": 6852, - "Attributes": 16, - "Lighting2": 6852 - }, - { - "Vertex": { - "X": 7168, - "Y": 1024, - "Z": 8192 - }, - "Lighting": 5989, - "Attributes": 16, - "Lighting2": 5989 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 4782, - "Attributes": 16, - "Lighting2": 4782 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 8192 - }, - "Lighting": 6077, - "Attributes": 16, - "Lighting2": 6077 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 9216 - }, - "Lighting": 5853, - "Attributes": 16, - "Lighting2": 5853 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 4465, - "Attributes": 16, - "Lighting2": 4465 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 10240 - }, - "Lighting": 5719, - "Attributes": 16, - "Lighting2": 5719 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 4465, - "Attributes": 16, - "Lighting2": 4465 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 11264 - }, - "Lighting": 5719, - "Attributes": 16, - "Lighting2": 5719 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 4782, - "Attributes": 16, - "Lighting2": 4782 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 12288 - }, - "Lighting": 5853, - "Attributes": 16, - "Lighting2": 5853 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 5269, - "Attributes": 16, - "Lighting2": 5269 - }, - { - "Vertex": { - "X": 7168, - "Y": 1024, - "Z": 12288 - }, - "Lighting": 5741, - "Attributes": 16, - "Lighting2": 5741 - }, - { - "Vertex": { - "X": 6144, - "Y": 1024, - "Z": 12288 - }, - "Lighting": 6739, - "Attributes": 16, - "Lighting2": 6739 - }, - { - "Vertex": { - "X": 6144, - "Y": 1024, - "Z": 13312 - }, - "Lighting": 6852, - "Attributes": 16, - "Lighting2": 6852 - }, - { - "Vertex": { - "X": 7168, - "Y": 1024, - "Z": 13312 - }, - "Lighting": 5989, - "Attributes": 16, - "Lighting2": 5989 - }, - { - "Vertex": { - "X": 7168, - "Y": 3840, - "Z": 13312 - }, - "Lighting": 5190, - "Attributes": 16, - "Lighting2": 5190 - }, - { - "Vertex": { - "X": 6144, - "Y": 3840, - "Z": 13312 - }, - "Lighting": 6862, - "Attributes": 16, - "Lighting2": 6862 - }, - { - "Vertex": { - "X": 6144, - "Y": 3840, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 7168, - "Y": 3840, - "Z": 14336 - }, - "Lighting": 6828, - "Attributes": 16, - "Lighting2": 6828 - }, - { - "Vertex": { - "X": 7168, - "Y": 2048, - "Z": 13312 - }, - "Lighting": 5631, - "Attributes": 16, - "Lighting2": 5631 - }, - { - "Vertex": { - "X": 6144, - "Y": 2048, - "Z": 13312 - }, - "Lighting": 7002, - "Attributes": 16, - "Lighting2": 7002 - }, - { - "Vertex": { - "X": 6144, - "Y": 2048, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 7168, - "Y": 2048, - "Z": 14336 - }, - "Lighting": 6976, - "Attributes": 16, - "Lighting2": 6976 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 6205, - "Attributes": 16, - "Lighting2": 6205 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 6205, - "Attributes": 16, - "Lighting2": 6205 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7261, - "Attributes": 16, - "Lighting2": 7261 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 6552, - "Attributes": 16, - "Lighting2": 6552 - }, - { - "Vertex": { - "X": 7168, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 7168, - "Y": 512, - "Z": 16384 - }, - "Lighting": 6839, - "Attributes": 16, - "Lighting2": 6839 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 6821, - "Attributes": 16, - "Lighting2": 6821 - }, - { - "Vertex": { - "X": 7168, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7015, - "Attributes": 16, - "Lighting2": 7015 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7026, - "Attributes": 16, - "Lighting2": 7026 - }, - { - "Vertex": { - "X": 7168, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7160, - "Attributes": 16, - "Lighting2": 7160 - }, - { - "Vertex": { - "X": 7168, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 6172, - "Attributes": 16, - "Lighting2": 6172 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7144, - "Attributes": 16, - "Lighting2": 7144 - }, - { - "Vertex": { - "X": 7168, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6519, - "Attributes": 16, - "Lighting2": 6519 - }, - { - "Vertex": { - "X": 8192, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7273, - "Attributes": 16, - "Lighting2": 7273 - }, - { - "Vertex": { - "X": 8192, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7302, - "Attributes": 16, - "Lighting2": 7302 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7141, - "Attributes": 16, - "Lighting2": 7141 - }, - { - "Vertex": { - "X": 8192, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7351, - "Attributes": 16, - "Lighting2": 7351 - }, - { - "Vertex": { - "X": 8192, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7245, - "Attributes": 16, - "Lighting2": 7245 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 6962, - "Attributes": 16, - "Lighting2": 6962 - }, - { - "Vertex": { - "X": 8192, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7114, - "Attributes": 16, - "Lighting2": 7114 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 6723, - "Attributes": 16, - "Lighting2": 6723 - }, - { - "Vertex": { - "X": 8192, - "Y": 512, - "Z": 4096 - }, - "Lighting": 6949, - "Attributes": 16, - "Lighting2": 6949 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 6398, - "Attributes": 16, - "Lighting2": 6398 - }, - { - "Vertex": { - "X": 8192, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 5957, - "Attributes": 16, - "Lighting2": 5957 - }, - { - "Vertex": { - "X": 8192, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7321, - "Attributes": 16, - "Lighting2": 7321 - }, - { - "Vertex": { - "X": 8192, - "Y": 768, - "Z": 6144 - }, - "Lighting": 6740, - "Attributes": 16, - "Lighting2": 6740 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 5369, - "Attributes": 16, - "Lighting2": 5369 - }, - { - "Vertex": { - "X": 8192, - "Y": 1024, - "Z": 6144 - }, - "Lighting": 6901, - "Attributes": 16, - "Lighting2": 6901 - }, - { - "Vertex": { - "X": 7168, - "Y": 1024, - "Z": 6144 - }, - "Lighting": 7005, - "Attributes": 16, - "Lighting2": 7005 - }, - { - "Vertex": { - "X": 8192, - "Y": 1024, - "Z": 7168 - }, - "Lighting": 6042, - "Attributes": 16, - "Lighting2": 6042 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 4631, - "Attributes": 16, - "Lighting2": 4631 - }, - { - "Vertex": { - "X": 8192, - "Y": -512, - "Z": 7168 - }, - "Lighting": 6511, - "Attributes": 16, - "Lighting2": 6511 - }, - { - "Vertex": { - "X": 7168, - "Y": -512, - "Z": 7168 - }, - "Lighting": 6645, - "Attributes": 16, - "Lighting2": 6645 - }, - { - "Vertex": { - "X": 7168, - "Y": -512, - "Z": 8192 - }, - "Lighting": 6481, - "Attributes": 16, - "Lighting2": 6481 - }, - { - "Vertex": { - "X": 8192, - "Y": -512, - "Z": 8192 - }, - "Lighting": 6310, - "Attributes": 16, - "Lighting2": 6310 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 3848, - "Attributes": 16, - "Lighting2": 3848 - }, - { - "Vertex": { - "X": 7168, - "Y": -512, - "Z": 9216 - }, - "Lighting": 6347, - "Attributes": 16, - "Lighting2": 6347 - }, - { - "Vertex": { - "X": 8192, - "Y": -512, - "Z": 9216 - }, - "Lighting": 6141, - "Attributes": 16, - "Lighting2": 6141 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 3298, - "Attributes": 16, - "Lighting2": 3298 - }, - { - "Vertex": { - "X": 7168, - "Y": -512, - "Z": 10240 - }, - "Lighting": 6271, - "Attributes": 16, - "Lighting2": 6271 - }, - { - "Vertex": { - "X": 8192, - "Y": -512, - "Z": 10240 - }, - "Lighting": 6042, - "Attributes": 16, - "Lighting2": 6042 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 3298, - "Attributes": 16, - "Lighting2": 3298 - }, - { - "Vertex": { - "X": 7168, - "Y": -512, - "Z": 11264 - }, - "Lighting": 6271, - "Attributes": 16, - "Lighting2": 6271 - }, - { - "Vertex": { - "X": 8192, - "Y": -512, - "Z": 11264 - }, - "Lighting": 6042, - "Attributes": 16, - "Lighting2": 6042 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 3848, - "Attributes": 16, - "Lighting2": 3848 - }, - { - "Vertex": { - "X": 7168, - "Y": -512, - "Z": 12288 - }, - "Lighting": 6347, - "Attributes": 16, - "Lighting2": 6347 - }, - { - "Vertex": { - "X": 8192, - "Y": -512, - "Z": 12288 - }, - "Lighting": 6141, - "Attributes": 16, - "Lighting2": 6141 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 4631, - "Attributes": 16, - "Lighting2": 4631 - }, - { - "Vertex": { - "X": 7168, - "Y": -512, - "Z": 13312 - }, - "Lighting": 6481, - "Attributes": 16, - "Lighting2": 6481 - }, - { - "Vertex": { - "X": 8192, - "Y": -512, - "Z": 13312 - }, - "Lighting": 6310, - "Attributes": 16, - "Lighting2": 6310 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 5369, - "Attributes": 16, - "Lighting2": 5369 - }, - { - "Vertex": { - "X": 8192, - "Y": 1024, - "Z": 13312 - }, - "Lighting": 5669, - "Attributes": 16, - "Lighting2": 5669 - }, - { - "Vertex": { - "X": 7168, - "Y": 1024, - "Z": 13312 - }, - "Lighting": 5989, - "Attributes": 16, - "Lighting2": 5989 - }, - { - "Vertex": { - "X": 7168, - "Y": 1024, - "Z": 14336 - }, - "Lighting": 6826, - "Attributes": 16, - "Lighting2": 6826 - }, - { - "Vertex": { - "X": 8192, - "Y": 1024, - "Z": 14336 - }, - "Lighting": 6674, - "Attributes": 16, - "Lighting2": 6674 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 5957, - "Attributes": 16, - "Lighting2": 5957 - }, - { - "Vertex": { - "X": 8192, - "Y": 768, - "Z": 14336 - }, - "Lighting": 6489, - "Attributes": 16, - "Lighting2": 6489 - }, - { - "Vertex": { - "X": 8192, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7188, - "Attributes": 16, - "Lighting2": 7188 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 6398, - "Attributes": 16, - "Lighting2": 6398 - }, - { - "Vertex": { - "X": 8192, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 8192, - "Y": 512, - "Z": 16384 - }, - "Lighting": 6745, - "Attributes": 16, - "Lighting2": 6745 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 6723, - "Attributes": 16, - "Lighting2": 6723 - }, - { - "Vertex": { - "X": 8192, - "Y": 512, - "Z": 17408 - }, - "Lighting": 6949, - "Attributes": 16, - "Lighting2": 6949 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 6962, - "Attributes": 16, - "Lighting2": 6962 - }, - { - "Vertex": { - "X": 8192, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7114, - "Attributes": 16, - "Lighting2": 7114 - }, - { - "Vertex": { - "X": 8192, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 5811, - "Attributes": 16, - "Lighting2": 5811 - }, - { - "Vertex": { - "X": 8192, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7095, - "Attributes": 16, - "Lighting2": 7095 - }, - { - "Vertex": { - "X": 8192, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6030, - "Attributes": 16, - "Lighting2": 6030 - }, - { - "Vertex": { - "X": 9216, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7253, - "Attributes": 16, - "Lighting2": 7253 - }, - { - "Vertex": { - "X": 9216, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7284, - "Attributes": 16, - "Lighting2": 7284 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7258, - "Attributes": 16, - "Lighting2": 7258 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7113, - "Attributes": 16, - "Lighting2": 7113 - }, - { - "Vertex": { - "X": 9216, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7335, - "Attributes": 16, - "Lighting2": 7335 - }, - { - "Vertex": { - "X": 9216, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7224, - "Attributes": 16, - "Lighting2": 7224 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 6919, - "Attributes": 16, - "Lighting2": 6919 - }, - { - "Vertex": { - "X": 9216, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7083, - "Attributes": 16, - "Lighting2": 7083 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 6655, - "Attributes": 16, - "Lighting2": 6655 - }, - { - "Vertex": { - "X": 9216, - "Y": 512, - "Z": 4096 - }, - "Lighting": 6905, - "Attributes": 16, - "Lighting2": 6905 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 6288, - "Attributes": 16, - "Lighting2": 6288 - }, - { - "Vertex": { - "X": 9216, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 5771, - "Attributes": 16, - "Lighting2": 5771 - }, - { - "Vertex": { - "X": 9216, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7287, - "Attributes": 16, - "Lighting2": 7287 - }, - { - "Vertex": { - "X": 9216, - "Y": 768, - "Z": 6144 - }, - "Lighting": 6336, - "Attributes": 16, - "Lighting2": 6336 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 5046, - "Attributes": 16, - "Lighting2": 5046 - }, - { - "Vertex": { - "X": 8192, - "Y": 768, - "Z": 7168 - }, - "Lighting": 6126, - "Attributes": 16, - "Lighting2": 6126 - }, - { - "Vertex": { - "X": 9216, - "Y": 768, - "Z": 7168 - }, - "Lighting": 5971, - "Attributes": 16, - "Lighting2": 5971 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 4076, - "Attributes": 16, - "Lighting2": 4076 - }, - { - "Vertex": { - "X": 9216, - "Y": -512, - "Z": 7168 - }, - "Lighting": 6417, - "Attributes": 16, - "Lighting2": 6417 - }, - { - "Vertex": { - "X": 9216, - "Y": -512, - "Z": 8192 - }, - "Lighting": 6186, - "Attributes": 16, - "Lighting2": 6186 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 9216, - "Y": -512, - "Z": 9216 - }, - "Lighting": 5989, - "Attributes": 16, - "Lighting2": 5989 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 9216, - "Y": -512, - "Z": 10240 - }, - "Lighting": 5872, - "Attributes": 16, - "Lighting2": 5872 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 9216, - "Y": -512, - "Z": 11264 - }, - "Lighting": 5872, - "Attributes": 16, - "Lighting2": 5872 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 2964, - "Attributes": 16, - "Lighting2": 2964 - }, - { - "Vertex": { - "X": 9216, - "Y": -512, - "Z": 12288 - }, - "Lighting": 5989, - "Attributes": 16, - "Lighting2": 5989 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 4076, - "Attributes": 32784, - "Lighting2": 4076 - }, - { - "Vertex": { - "X": 9216, - "Y": -512, - "Z": 13312 - }, - "Lighting": 6186, - "Attributes": 16, - "Lighting2": 6186 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 5046, - "Attributes": 32784, - "Lighting2": 5046 - }, - { - "Vertex": { - "X": 9216, - "Y": 768, - "Z": 13312 - }, - "Lighting": 5567, - "Attributes": 16, - "Lighting2": 5567 - }, - { - "Vertex": { - "X": 8192, - "Y": 768, - "Z": 13312 - }, - "Lighting": 5788, - "Attributes": 16, - "Lighting2": 5788 - }, - { - "Vertex": { - "X": 9216, - "Y": 768, - "Z": 14336 - }, - "Lighting": 5971, - "Attributes": 16, - "Lighting2": 5971 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 5771, - "Attributes": 16, - "Lighting2": 5771 - }, - { - "Vertex": { - "X": 9216, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7137, - "Attributes": 16, - "Lighting2": 7137 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 6288, - "Attributes": 16, - "Lighting2": 6288 - }, - { - "Vertex": { - "X": 9216, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 9216, - "Y": 512, - "Z": 16384 - }, - "Lighting": 6680, - "Attributes": 16, - "Lighting2": 6680 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 6655, - "Attributes": 16, - "Lighting2": 6655 - }, - { - "Vertex": { - "X": 9216, - "Y": 512, - "Z": 17408 - }, - "Lighting": 6905, - "Attributes": 16, - "Lighting2": 6905 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 6919, - "Attributes": 16, - "Lighting2": 6919 - }, - { - "Vertex": { - "X": 9216, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7083, - "Attributes": 16, - "Lighting2": 7083 - }, - { - "Vertex": { - "X": 9216, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 5708, - "Attributes": 16, - "Lighting2": 5708 - }, - { - "Vertex": { - "X": 9216, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7064, - "Attributes": 16, - "Lighting2": 7064 - }, - { - "Vertex": { - "X": 9216, - "Y": 768, - "Z": 19456 - }, - "Lighting": 5946, - "Attributes": 16, - "Lighting2": 5946 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7252, - "Attributes": 16, - "Lighting2": 7252 - }, - { - "Vertex": { - "X": 9216, - "Y": 3328, - "Z": 1024 - }, - "Lighting": 7258, - "Attributes": 16, - "Lighting2": 7258 - }, - { - "Vertex": { - "X": 10240, - "Y": 3328, - "Z": 1024 - }, - "Lighting": 7252, - "Attributes": 16, - "Lighting2": 7252 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7103, - "Attributes": 16, - "Lighting2": 7103 - }, - { - "Vertex": { - "X": 10240, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7330, - "Attributes": 16, - "Lighting2": 7330 - }, - { - "Vertex": { - "X": 10240, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7216, - "Attributes": 16, - "Lighting2": 7216 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 6904, - "Attributes": 16, - "Lighting2": 6904 - }, - { - "Vertex": { - "X": 10240, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7072, - "Attributes": 16, - "Lighting2": 7072 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 6631, - "Attributes": 16, - "Lighting2": 6631 - }, - { - "Vertex": { - "X": 10240, - "Y": 512, - "Z": 4096 - }, - "Lighting": 6889, - "Attributes": 16, - "Lighting2": 6889 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 6248, - "Attributes": 16, - "Lighting2": 6248 - }, - { - "Vertex": { - "X": 10240, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 5701, - "Attributes": 32784, - "Lighting2": 5701 - }, - { - "Vertex": { - "X": 10240, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7275, - "Attributes": 16, - "Lighting2": 7275 - }, - { - "Vertex": { - "X": 10240, - "Y": 768, - "Z": 6144 - }, - "Lighting": 6298, - "Attributes": 16, - "Lighting2": 6298 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 4920, - "Attributes": 32784, - "Lighting2": 4920 - }, - { - "Vertex": { - "X": 10240, - "Y": 768, - "Z": 7168 - }, - "Lighting": 5914, - "Attributes": 16, - "Lighting2": 5914 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 3848, - "Attributes": 16, - "Lighting2": 3848 - }, - { - "Vertex": { - "X": 10240, - "Y": -512, - "Z": 7168 - }, - "Lighting": 6383, - "Attributes": 16, - "Lighting2": 6383 - }, - { - "Vertex": { - "X": 10240, - "Y": -512, - "Z": 8192 - }, - "Lighting": 6141, - "Attributes": 16, - "Lighting2": 6141 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 10240, - "Y": -512, - "Z": 9216 - }, - "Lighting": 5932, - "Attributes": 16, - "Lighting2": 5932 - }, - { - "Vertex": { - "X": 10240, - "Y": 5120, - "Z": 9216 - }, - "Lighting": 5163, - "Attributes": 16, - "Lighting2": 5163 - }, - { - "Vertex": { - "X": 9216, - "Y": 5120, - "Z": 9216 - }, - "Lighting": 6225, - "Attributes": 16, - "Lighting2": 6225 - }, - { - "Vertex": { - "X": 9216, - "Y": 5120, - "Z": 10240 - }, - "Lighting": 4920, - "Attributes": 16, - "Lighting2": 4920 - }, - { - "Vertex": { - "X": 10240, - "Y": 5120, - "Z": 10240 - }, - "Lighting": 1326, - "Attributes": 16, - "Lighting2": 1326 - }, - { - "Vertex": { - "X": 10240, - "Y": -512, - "Z": 10240 - }, - "Lighting": 5809, - "Attributes": 16, - "Lighting2": 5809 - }, - { - "Vertex": { - "X": 9216, - "Y": 5120, - "Z": 11264 - }, - "Lighting": 5925, - "Attributes": 16, - "Lighting2": 5925 - }, - { - "Vertex": { - "X": 10240, - "Y": 5120, - "Z": 11264 - }, - "Lighting": 4632, - "Attributes": 16, - "Lighting2": 4632 - }, - { - "Vertex": { - "X": 10240, - "Y": -512, - "Z": 11264 - }, - "Lighting": 5809, - "Attributes": 16, - "Lighting2": 5809 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 2578, - "Attributes": 16, - "Lighting2": 2578 - }, - { - "Vertex": { - "X": 10240, - "Y": -512, - "Z": 12288 - }, - "Lighting": 5932, - "Attributes": 16, - "Lighting2": 5932 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 3848, - "Attributes": 32784, - "Lighting2": 3848 - }, - { - "Vertex": { - "X": 10240, - "Y": -512, - "Z": 13312 - }, - "Lighting": 6141, - "Attributes": 16, - "Lighting2": 6141 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 4920, - "Attributes": 32784, - "Lighting2": 4920 - }, - { - "Vertex": { - "X": 10240, - "Y": 768, - "Z": 13312 - }, - "Lighting": 5483, - "Attributes": 16, - "Lighting2": 5483 - }, - { - "Vertex": { - "X": 10240, - "Y": 768, - "Z": 14336 - }, - "Lighting": 5914, - "Attributes": 16, - "Lighting2": 5914 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 5701, - "Attributes": 16, - "Lighting2": 5701 - }, - { - "Vertex": { - "X": 10240, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7117, - "Attributes": 16, - "Lighting2": 7117 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 6248, - "Attributes": 16, - "Lighting2": 6248 - }, - { - "Vertex": { - "X": 10240, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 10240, - "Y": 512, - "Z": 16384 - }, - "Lighting": 6656, - "Attributes": 16, - "Lighting2": 6656 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 6631, - "Attributes": 16, - "Lighting2": 6631 - }, - { - "Vertex": { - "X": 10240, - "Y": 512, - "Z": 17408 - }, - "Lighting": 6889, - "Attributes": 16, - "Lighting2": 6889 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 6904, - "Attributes": 16, - "Lighting2": 6904 - }, - { - "Vertex": { - "X": 10240, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7072, - "Attributes": 16, - "Lighting2": 7072 - }, - { - "Vertex": { - "X": 10240, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 5634, - "Attributes": 16, - "Lighting2": 5634 - }, - { - "Vertex": { - "X": 10240, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7052, - "Attributes": 16, - "Lighting2": 7052 - }, - { - "Vertex": { - "X": 10240, - "Y": 768, - "Z": 19456 - }, - "Lighting": 5885, - "Attributes": 16, - "Lighting2": 5885 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7258, - "Attributes": 16, - "Lighting2": 7258 - }, - { - "Vertex": { - "X": 11264, - "Y": 3328, - "Z": 1024 - }, - "Lighting": 7258, - "Attributes": 16, - "Lighting2": 7258 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7113, - "Attributes": 16, - "Lighting2": 7113 - }, - { - "Vertex": { - "X": 11264, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7335, - "Attributes": 16, - "Lighting2": 7335 - }, - { - "Vertex": { - "X": 11264, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7224, - "Attributes": 16, - "Lighting2": 7224 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 6919, - "Attributes": 16, - "Lighting2": 6919 - }, - { - "Vertex": { - "X": 11264, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7083, - "Attributes": 16, - "Lighting2": 7083 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 6655, - "Attributes": 16, - "Lighting2": 6655 - }, - { - "Vertex": { - "X": 11264, - "Y": 512, - "Z": 4096 - }, - "Lighting": 6905, - "Attributes": 16, - "Lighting2": 6905 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 6288, - "Attributes": 16, - "Lighting2": 6288 - }, - { - "Vertex": { - "X": 11264, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 5771, - "Attributes": 32784, - "Lighting2": 5771 - }, - { - "Vertex": { - "X": 11264, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7287, - "Attributes": 16, - "Lighting2": 7287 - }, - { - "Vertex": { - "X": 11264, - "Y": 768, - "Z": 6144 - }, - "Lighting": 6336, - "Attributes": 16, - "Lighting2": 6336 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 5046, - "Attributes": 32784, - "Lighting2": 5046 - }, - { - "Vertex": { - "X": 11264, - "Y": 768, - "Z": 7168 - }, - "Lighting": 5971, - "Attributes": 16, - "Lighting2": 5971 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 4076, - "Attributes": 16, - "Lighting2": 4076 - }, - { - "Vertex": { - "X": 11264, - "Y": -512, - "Z": 7168 - }, - "Lighting": 6417, - "Attributes": 16, - "Lighting2": 6417 - }, - { - "Vertex": { - "X": 11264, - "Y": -512, - "Z": 8192 - }, - "Lighting": 6186, - "Attributes": 16, - "Lighting2": 6186 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 11264, - "Y": -512, - "Z": 9216 - }, - "Lighting": 5989, - "Attributes": 16, - "Lighting2": 5989 - }, - { - "Vertex": { - "X": 11264, - "Y": 5120, - "Z": 9216 - }, - "Lighting": 6225, - "Attributes": 16, - "Lighting2": 6225 - }, - { - "Vertex": { - "X": 11264, - "Y": 5120, - "Z": 10240 - }, - "Lighting": 4920, - "Attributes": 16, - "Lighting2": 4920 - }, - { - "Vertex": { - "X": 11264, - "Y": -512, - "Z": 10240 - }, - "Lighting": 5872, - "Attributes": 16, - "Lighting2": 5872 - }, - { - "Vertex": { - "X": 11264, - "Y": 5120, - "Z": 11264 - }, - "Lighting": 5925, - "Attributes": 16, - "Lighting2": 5925 - }, - { - "Vertex": { - "X": 11264, - "Y": -512, - "Z": 11264 - }, - "Lighting": 5872, - "Attributes": 16, - "Lighting2": 5872 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 2964, - "Attributes": 16, - "Lighting2": 2964 - }, - { - "Vertex": { - "X": 11264, - "Y": -512, - "Z": 12288 - }, - "Lighting": 5989, - "Attributes": 16, - "Lighting2": 5989 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 4076, - "Attributes": 16, - "Lighting2": 4076 - }, - { - "Vertex": { - "X": 11264, - "Y": -512, - "Z": 13312 - }, - "Lighting": 6186, - "Attributes": 16, - "Lighting2": 6186 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 5046, - "Attributes": 16, - "Lighting2": 5046 - }, - { - "Vertex": { - "X": 11264, - "Y": 768, - "Z": 13312 - }, - "Lighting": 5567, - "Attributes": 16, - "Lighting2": 5567 - }, - { - "Vertex": { - "X": 11264, - "Y": 768, - "Z": 14336 - }, - "Lighting": 5971, - "Attributes": 16, - "Lighting2": 5971 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 5771, - "Attributes": 16, - "Lighting2": 5771 - }, - { - "Vertex": { - "X": 11264, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7137, - "Attributes": 16, - "Lighting2": 7137 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 6288, - "Attributes": 16, - "Lighting2": 6288 - }, - { - "Vertex": { - "X": 11264, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 11264, - "Y": 512, - "Z": 16384 - }, - "Lighting": 6680, - "Attributes": 16, - "Lighting2": 6680 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 6655, - "Attributes": 16, - "Lighting2": 6655 - }, - { - "Vertex": { - "X": 11264, - "Y": 512, - "Z": 17408 - }, - "Lighting": 6905, - "Attributes": 16, - "Lighting2": 6905 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 6919, - "Attributes": 16, - "Lighting2": 6919 - }, - { - "Vertex": { - "X": 11264, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7083, - "Attributes": 16, - "Lighting2": 7083 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 5596, - "Attributes": 16, - "Lighting2": 5596 - }, - { - "Vertex": { - "X": 11264, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7064, - "Attributes": 16, - "Lighting2": 7064 - }, - { - "Vertex": { - "X": 11264, - "Y": 768, - "Z": 19456 - }, - "Lighting": 5854, - "Attributes": 16, - "Lighting2": 5854 - }, - { - "Vertex": { - "X": 11264, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7253, - "Attributes": 16, - "Lighting2": 7253 - }, - { - "Vertex": { - "X": 12288, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7273, - "Attributes": 16, - "Lighting2": 7273 - }, - { - "Vertex": { - "X": 11264, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7284, - "Attributes": 16, - "Lighting2": 7284 - }, - { - "Vertex": { - "X": 12288, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7302, - "Attributes": 16, - "Lighting2": 7302 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7141, - "Attributes": 16, - "Lighting2": 7141 - }, - { - "Vertex": { - "X": 12288, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7351, - "Attributes": 16, - "Lighting2": 7351 - }, - { - "Vertex": { - "X": 12288, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7245, - "Attributes": 16, - "Lighting2": 7245 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 6962, - "Attributes": 16, - "Lighting2": 6962 - }, - { - "Vertex": { - "X": 12288, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7114, - "Attributes": 16, - "Lighting2": 7114 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 6723, - "Attributes": 16, - "Lighting2": 6723 - }, - { - "Vertex": { - "X": 12288, - "Y": 512, - "Z": 4096 - }, - "Lighting": 6949, - "Attributes": 16, - "Lighting2": 6949 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 6398, - "Attributes": 16, - "Lighting2": 6398 - }, - { - "Vertex": { - "X": 12288, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 5957, - "Attributes": 16, - "Lighting2": 5957 - }, - { - "Vertex": { - "X": 12288, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7321, - "Attributes": 16, - "Lighting2": 7321 - }, - { - "Vertex": { - "X": 12288, - "Y": 768, - "Z": 6144 - }, - "Lighting": 6739, - "Attributes": 16, - "Lighting2": 6739 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 5369, - "Attributes": 16, - "Lighting2": 5369 - }, - { - "Vertex": { - "X": 12288, - "Y": 768, - "Z": 7168 - }, - "Lighting": 6126, - "Attributes": 16, - "Lighting2": 6126 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 4631, - "Attributes": 16, - "Lighting2": 4631 - }, - { - "Vertex": { - "X": 12288, - "Y": -512, - "Z": 7168 - }, - "Lighting": 6511, - "Attributes": 16, - "Lighting2": 6511 - }, - { - "Vertex": { - "X": 12288, - "Y": -512, - "Z": 8192 - }, - "Lighting": 6310, - "Attributes": 16, - "Lighting2": 6310 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 3848, - "Attributes": 16, - "Lighting2": 3848 - }, - { - "Vertex": { - "X": 12288, - "Y": -512, - "Z": 9216 - }, - "Lighting": 6141, - "Attributes": 16, - "Lighting2": 6141 - }, - { - "Vertex": { - "X": 11264, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 3298, - "Attributes": 16, - "Lighting2": 3298 - }, - { - "Vertex": { - "X": 12288, - "Y": -512, - "Z": 10240 - }, - "Lighting": 6042, - "Attributes": 16, - "Lighting2": 6042 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 3298, - "Attributes": 16, - "Lighting2": 3298 - }, - { - "Vertex": { - "X": 12288, - "Y": -512, - "Z": 11264 - }, - "Lighting": 6042, - "Attributes": 16, - "Lighting2": 6042 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 3848, - "Attributes": 16, - "Lighting2": 3848 - }, - { - "Vertex": { - "X": 12288, - "Y": -512, - "Z": 12288 - }, - "Lighting": 6141, - "Attributes": 16, - "Lighting2": 6141 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 4631, - "Attributes": 16, - "Lighting2": 4631 - }, - { - "Vertex": { - "X": 12288, - "Y": -512, - "Z": 13312 - }, - "Lighting": 6310, - "Attributes": 16, - "Lighting2": 6310 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 5369, - "Attributes": 16, - "Lighting2": 5369 - }, - { - "Vertex": { - "X": 12288, - "Y": 768, - "Z": 13312 - }, - "Lighting": 5788, - "Attributes": 16, - "Lighting2": 5788 - }, - { - "Vertex": { - "X": 12288, - "Y": 768, - "Z": 14336 - }, - "Lighting": 6488, - "Attributes": 16, - "Lighting2": 6488 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 5957, - "Attributes": 16, - "Lighting2": 5957 - }, - { - "Vertex": { - "X": 12288, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7188, - "Attributes": 16, - "Lighting2": 7188 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 6398, - "Attributes": 16, - "Lighting2": 6398 - }, - { - "Vertex": { - "X": 12288, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 12288, - "Y": 512, - "Z": 16384 - }, - "Lighting": 6745, - "Attributes": 16, - "Lighting2": 6745 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 6723, - "Attributes": 16, - "Lighting2": 6723 - }, - { - "Vertex": { - "X": 12288, - "Y": 512, - "Z": 17408 - }, - "Lighting": 6949, - "Attributes": 16, - "Lighting2": 6949 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 6962, - "Attributes": 16, - "Lighting2": 6962 - }, - { - "Vertex": { - "X": 12288, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7114, - "Attributes": 16, - "Lighting2": 7114 - }, - { - "Vertex": { - "X": 12288, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 5596, - "Attributes": 16, - "Lighting2": 5596 - }, - { - "Vertex": { - "X": 12288, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7095, - "Attributes": 16, - "Lighting2": 7095 - }, - { - "Vertex": { - "X": 12288, - "Y": 768, - "Z": 19456 - }, - "Lighting": 5854, - "Attributes": 16, - "Lighting2": 5854 - }, - { - "Vertex": { - "X": 13312, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7303, - "Attributes": 16, - "Lighting2": 7303 - }, - { - "Vertex": { - "X": 13312, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7330, - "Attributes": 16, - "Lighting2": 7330 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7308, - "Attributes": 16, - "Lighting2": 7308 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7185, - "Attributes": 16, - "Lighting2": 7185 - }, - { - "Vertex": { - "X": 13312, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7374, - "Attributes": 16, - "Lighting2": 7374 - }, - { - "Vertex": { - "X": 13312, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7026, - "Attributes": 16, - "Lighting2": 7026 - }, - { - "Vertex": { - "X": 13312, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7160, - "Attributes": 16, - "Lighting2": 7160 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 6821, - "Attributes": 16, - "Lighting2": 6821 - }, - { - "Vertex": { - "X": 13312, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7015, - "Attributes": 16, - "Lighting2": 7015 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 6552, - "Attributes": 16, - "Lighting2": 6552 - }, - { - "Vertex": { - "X": 13312, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 6551, - "Attributes": 16, - "Lighting2": 6551 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7371, - "Attributes": 16, - "Lighting2": 7371 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 5771, - "Attributes": 16, - "Lighting2": 5771 - }, - { - "Vertex": { - "X": 13312, - "Y": 1024, - "Z": 6144 - }, - "Lighting": 7006, - "Attributes": 16, - "Lighting2": 7006 - }, - { - "Vertex": { - "X": 12288, - "Y": 1024, - "Z": 6144 - }, - "Lighting": 6901, - "Attributes": 16, - "Lighting2": 6901 - }, - { - "Vertex": { - "X": 12288, - "Y": 1024, - "Z": 7168 - }, - "Lighting": 6042, - "Attributes": 16, - "Lighting2": 6042 - }, - { - "Vertex": { - "X": 13312, - "Y": 1024, - "Z": 7168 - }, - "Lighting": 6271, - "Attributes": 16, - "Lighting2": 6271 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 5269, - "Attributes": 16, - "Lighting2": 5269 - }, - { - "Vertex": { - "X": 13312, - "Y": -512, - "Z": 7168 - }, - "Lighting": 6645, - "Attributes": 16, - "Lighting2": 6645 - }, - { - "Vertex": { - "X": 13312, - "Y": -512, - "Z": 8192 - }, - "Lighting": 6481, - "Attributes": 16, - "Lighting2": 6481 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 4782, - "Attributes": 16, - "Lighting2": 4782 - }, - { - "Vertex": { - "X": 13312, - "Y": -512, - "Z": 9216 - }, - "Lighting": 6347, - "Attributes": 16, - "Lighting2": 6347 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 4465, - "Attributes": 16, - "Lighting2": 4465 - }, - { - "Vertex": { - "X": 13312, - "Y": -512, - "Z": 10240 - }, - "Lighting": 6271, - "Attributes": 16, - "Lighting2": 6271 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 4465, - "Attributes": 16, - "Lighting2": 4465 - }, - { - "Vertex": { - "X": 13312, - "Y": -512, - "Z": 11264 - }, - "Lighting": 6271, - "Attributes": 16, - "Lighting2": 6271 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 4782, - "Attributes": 16, - "Lighting2": 4782 - }, - { - "Vertex": { - "X": 13312, - "Y": -512, - "Z": 12288 - }, - "Lighting": 6347, - "Attributes": 16, - "Lighting2": 6347 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 5269, - "Attributes": 16, - "Lighting2": 5269 - }, - { - "Vertex": { - "X": 13312, - "Y": -512, - "Z": 13312 - }, - "Lighting": 6481, - "Attributes": 16, - "Lighting2": 6481 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 6204, - "Attributes": 16, - "Lighting2": 6204 - }, - { - "Vertex": { - "X": 13312, - "Y": 1024, - "Z": 13312 - }, - "Lighting": 5989, - "Attributes": 16, - "Lighting2": 5989 - }, - { - "Vertex": { - "X": 12288, - "Y": 1024, - "Z": 13312 - }, - "Lighting": 5669, - "Attributes": 16, - "Lighting2": 5669 - }, - { - "Vertex": { - "X": 12288, - "Y": 1024, - "Z": 14336 - }, - "Lighting": 6673, - "Attributes": 16, - "Lighting2": 6673 - }, - { - "Vertex": { - "X": 13312, - "Y": 1024, - "Z": 14336 - }, - "Lighting": 6826, - "Attributes": 16, - "Lighting2": 6826 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 6205, - "Attributes": 16, - "Lighting2": 6205 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7261, - "Attributes": 16, - "Lighting2": 7261 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 6552, - "Attributes": 16, - "Lighting2": 6552 - }, - { - "Vertex": { - "X": 13312, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 13312, - "Y": 512, - "Z": 16384 - }, - "Lighting": 6839, - "Attributes": 16, - "Lighting2": 6839 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 6821, - "Attributes": 16, - "Lighting2": 6821 - }, - { - "Vertex": { - "X": 13312, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7015, - "Attributes": 16, - "Lighting2": 7015 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7026, - "Attributes": 16, - "Lighting2": 7026 - }, - { - "Vertex": { - "X": 13312, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7160, - "Attributes": 16, - "Lighting2": 7160 - }, - { - "Vertex": { - "X": 13312, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 5634, - "Attributes": 16, - "Lighting2": 5634 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7144, - "Attributes": 16, - "Lighting2": 7144 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 19456 - }, - "Lighting": 5885, - "Attributes": 16, - "Lighting2": 5885 - }, - { - "Vertex": { - "X": 14336, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7341, - "Attributes": 16, - "Lighting2": 7341 - }, - { - "Vertex": { - "X": 14336, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7365, - "Attributes": 16, - "Lighting2": 7365 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7345, - "Attributes": 16, - "Lighting2": 7345 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7238, - "Attributes": 16, - "Lighting2": 7238 - }, - { - "Vertex": { - "X": 14336, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7405, - "Attributes": 16, - "Lighting2": 7405 - }, - { - "Vertex": { - "X": 14336, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7319, - "Attributes": 16, - "Lighting2": 7319 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7103, - "Attributes": 16, - "Lighting2": 7103 - }, - { - "Vertex": { - "X": 14336, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7216, - "Attributes": 16, - "Lighting2": 7216 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 6934, - "Attributes": 16, - "Lighting2": 6934 - }, - { - "Vertex": { - "X": 14336, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7094, - "Attributes": 16, - "Lighting2": 7094 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 3840, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 13312, - "Y": 3840, - "Z": 6144 - }, - "Lighting": 7054, - "Attributes": 16, - "Lighting2": 7054 - }, - { - "Vertex": { - "X": 13312, - "Y": 3840, - "Z": 7168 - }, - "Lighting": 5719, - "Attributes": 16, - "Lighting2": 5719 - }, - { - "Vertex": { - "X": 14336, - "Y": 3840, - "Z": 7168 - }, - "Lighting": 7031, - "Attributes": 16, - "Lighting2": 7031 - }, - { - "Vertex": { - "X": 14336, - "Y": 2048, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 13312, - "Y": 2048, - "Z": 6144 - }, - "Lighting": 7151, - "Attributes": 16, - "Lighting2": 7151 - }, - { - "Vertex": { - "X": 13312, - "Y": 2048, - "Z": 7168 - }, - "Lighting": 6016, - "Attributes": 16, - "Lighting2": 6016 - }, - { - "Vertex": { - "X": 14336, - "Y": 2048, - "Z": 7168 - }, - "Lighting": 7133, - "Attributes": 16, - "Lighting2": 7133 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 6517, - "Attributes": 16, - "Lighting2": 6517 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 5837, - "Attributes": 16, - "Lighting2": 5837 - }, - { - "Vertex": { - "X": 14336, - "Y": 1024, - "Z": 7168 - }, - "Lighting": 6986, - "Attributes": 16, - "Lighting2": 6986 - }, - { - "Vertex": { - "X": 13312, - "Y": 1024, - "Z": 7168 - }, - "Lighting": 6271, - "Attributes": 16, - "Lighting2": 6271 - }, - { - "Vertex": { - "X": 13312, - "Y": 1024, - "Z": 8192 - }, - "Lighting": 5989, - "Attributes": 16, - "Lighting2": 5989 - }, - { - "Vertex": { - "X": 14336, - "Y": 1024, - "Z": 8192 - }, - "Lighting": 6852, - "Attributes": 16, - "Lighting2": 6852 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 5546, - "Attributes": 16, - "Lighting2": 5546 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 8192 - }, - "Lighting": 6685, - "Attributes": 16, - "Lighting2": 6685 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 8192 - }, - "Lighting": 6077, - "Attributes": 16, - "Lighting2": 6077 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 9216 - }, - "Lighting": 5853, - "Attributes": 16, - "Lighting2": 5853 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 9216 - }, - "Lighting": 6216, - "Attributes": 16, - "Lighting2": 6216 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 5369, - "Attributes": 16, - "Lighting2": 5369 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 10240 - }, - "Lighting": 5719, - "Attributes": 16, - "Lighting2": 5719 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 10240 - }, - "Lighting": 6126, - "Attributes": 16, - "Lighting2": 6126 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 5369, - "Attributes": 16, - "Lighting2": 5369 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 11264 - }, - "Lighting": 5719, - "Attributes": 16, - "Lighting2": 5719 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 11264 - }, - "Lighting": 6126, - "Attributes": 16, - "Lighting2": 6126 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 5546, - "Attributes": 16, - "Lighting2": 5546 - }, - { - "Vertex": { - "X": 13312, - "Y": 768, - "Z": 12288 - }, - "Lighting": 5853, - "Attributes": 16, - "Lighting2": 5853 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 12288 - }, - "Lighting": 6560, - "Attributes": 16, - "Lighting2": 6560 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 6257, - "Attributes": 16, - "Lighting2": 6257 - }, - { - "Vertex": { - "X": 14336, - "Y": 1024, - "Z": 12288 - }, - "Lighting": 6739, - "Attributes": 16, - "Lighting2": 6739 - }, - { - "Vertex": { - "X": 13312, - "Y": 1024, - "Z": 12288 - }, - "Lighting": 5741, - "Attributes": 16, - "Lighting2": 5741 - }, - { - "Vertex": { - "X": 14336, - "Y": 1024, - "Z": 13312 - }, - "Lighting": 6852, - "Attributes": 16, - "Lighting2": 6852 - }, - { - "Vertex": { - "X": 14336, - "Y": 3840, - "Z": 13312 - }, - "Lighting": 6862, - "Attributes": 16, - "Lighting2": 6862 - }, - { - "Vertex": { - "X": 13312, - "Y": 3840, - "Z": 13312 - }, - "Lighting": 5190, - "Attributes": 16, - "Lighting2": 5190 - }, - { - "Vertex": { - "X": 13312, - "Y": 3840, - "Z": 14336 - }, - "Lighting": 6828, - "Attributes": 16, - "Lighting2": 6828 - }, - { - "Vertex": { - "X": 14336, - "Y": 3840, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 2048, - "Z": 13312 - }, - "Lighting": 7002, - "Attributes": 16, - "Lighting2": 7002 - }, - { - "Vertex": { - "X": 13312, - "Y": 2048, - "Z": 13312 - }, - "Lighting": 5631, - "Attributes": 16, - "Lighting2": 5631 - }, - { - "Vertex": { - "X": 13312, - "Y": 2048, - "Z": 14336 - }, - "Lighting": 6976, - "Attributes": 16, - "Lighting2": 6976 - }, - { - "Vertex": { - "X": 14336, - "Y": 2048, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 6723, - "Attributes": 16, - "Lighting2": 6723 - }, - { - "Vertex": { - "X": 14336, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 14336, - "Y": 512, - "Z": 16384 - }, - "Lighting": 6949, - "Attributes": 16, - "Lighting2": 6949 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 6934, - "Attributes": 16, - "Lighting2": 6934 - }, - { - "Vertex": { - "X": 14336, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7094, - "Attributes": 16, - "Lighting2": 7094 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7103, - "Attributes": 16, - "Lighting2": 7103 - }, - { - "Vertex": { - "X": 14336, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7216, - "Attributes": 16, - "Lighting2": 7216 - }, - { - "Vertex": { - "X": 14336, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 5708, - "Attributes": 16, - "Lighting2": 5708 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7203, - "Attributes": 16, - "Lighting2": 7203 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 19456 - }, - "Lighting": 5946, - "Attributes": 16, - "Lighting2": 5946 - }, - { - "Vertex": { - "X": 15360, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7384, - "Attributes": 16, - "Lighting2": 7384 - }, - { - "Vertex": { - "X": 15360, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7405, - "Attributes": 16, - "Lighting2": 7405 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7387, - "Attributes": 16, - "Lighting2": 7387 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7296, - "Attributes": 16, - "Lighting2": 7296 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7439, - "Attributes": 16, - "Lighting2": 7439 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7365, - "Attributes": 16, - "Lighting2": 7365 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 6495, - "Attributes": 16, - "Lighting2": 6495 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 7168 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 7168 - }, - "Lighting": 7353, - "Attributes": 16, - "Lighting2": 7353 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 6288, - "Attributes": 16, - "Lighting2": 6288 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 8192 - }, - "Lighting": 7287, - "Attributes": 16, - "Lighting2": 7287 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 6114, - "Attributes": 16, - "Lighting2": 6114 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 9216 - }, - "Lighting": 7233, - "Attributes": 16, - "Lighting2": 7233 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 6013, - "Attributes": 16, - "Lighting2": 6013 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 10240 - }, - "Lighting": 7204, - "Attributes": 16, - "Lighting2": 7204 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 6013, - "Attributes": 16, - "Lighting2": 6013 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 11264 - }, - "Lighting": 7204, - "Attributes": 16, - "Lighting2": 7204 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 6114, - "Attributes": 16, - "Lighting2": 6114 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 12288 - }, - "Lighting": 7233, - "Attributes": 16, - "Lighting2": 7233 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 6288, - "Attributes": 16, - "Lighting2": 6288 - }, - { - "Vertex": { - "X": 14336, - "Y": 768, - "Z": 13312 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 13312 - }, - "Lighting": 7287, - "Attributes": 16, - "Lighting2": 7287 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 7050, - "Attributes": 16, - "Lighting2": 7050 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7177, - "Attributes": 16, - "Lighting2": 7177 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7185, - "Attributes": 16, - "Lighting2": 7185 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 15360, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 5811, - "Attributes": 16, - "Lighting2": 5811 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7267, - "Attributes": 16, - "Lighting2": 7267 - }, - { - "Vertex": { - "X": 15360, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6030, - "Attributes": 16, - "Lighting2": 6030 - }, - { - "Vertex": { - "X": 16384, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7429, - "Attributes": 16, - "Lighting2": 7429 - }, - { - "Vertex": { - "X": 16384, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7446, - "Attributes": 16, - "Lighting2": 7446 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7431, - "Attributes": 16, - "Lighting2": 7431 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7475, - "Attributes": 16, - "Lighting2": 7475 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 6904, - "Attributes": 32784, - "Lighting2": 6904 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 6144 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 6144 - }, - "Lighting": 7072, - "Attributes": 16, - "Lighting2": 7072 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 6764, - "Attributes": 16, - "Lighting2": 6764 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 7168 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 7168 - }, - "Lighting": 6977, - "Attributes": 16, - "Lighting2": 6977 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 6631, - "Attributes": 16, - "Lighting2": 6631 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 8192 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 8192 - }, - "Lighting": 6889, - "Attributes": 16, - "Lighting2": 6889 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 6524, - "Attributes": 16, - "Lighting2": 6524 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 9216 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 9216 - }, - "Lighting": 6822, - "Attributes": 16, - "Lighting2": 6822 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 6464, - "Attributes": 16, - "Lighting2": 6464 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 10240 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 10240 - }, - "Lighting": 6785, - "Attributes": 16, - "Lighting2": 6785 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 6464, - "Attributes": 16, - "Lighting2": 6464 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 11264 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 11264 - }, - "Lighting": 6785, - "Attributes": 16, - "Lighting2": 6785 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 6524, - "Attributes": 16, - "Lighting2": 6524 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 12288 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 12288 - }, - "Lighting": 6822, - "Attributes": 16, - "Lighting2": 6822 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 6631, - "Attributes": 16, - "Lighting2": 6631 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 13312 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 13312 - }, - "Lighting": 6889, - "Attributes": 16, - "Lighting2": 6889 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 6764, - "Attributes": 16, - "Lighting2": 6764 - }, - { - "Vertex": { - "X": 15360, - "Y": 512, - "Z": 14336 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 14336 - }, - "Lighting": 6977, - "Attributes": 16, - "Lighting2": 6977 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7265, - "Attributes": 16, - "Lighting2": 7265 - }, - { - "Vertex": { - "X": 16384, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7340, - "Attributes": 16, - "Lighting2": 7340 - }, - { - "Vertex": { - "X": 16384, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 5936, - "Attributes": 16, - "Lighting2": 5936 - }, - { - "Vertex": { - "X": 16384, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7331, - "Attributes": 16, - "Lighting2": 7331 - }, - { - "Vertex": { - "X": 16384, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6134, - "Attributes": 16, - "Lighting2": 6134 - }, - { - "Vertex": { - "X": 17408, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7168, - "Attributes": 16, - "Lighting2": 7168 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7265, - "Attributes": 16, - "Lighting2": 7265 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 7072, - "Attributes": 16, - "Lighting2": 7072 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 6144 - }, - "Lighting": 7193, - "Attributes": 16, - "Lighting2": 7193 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 6976, - "Attributes": 16, - "Lighting2": 6976 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 7168 - }, - "Lighting": 7123, - "Attributes": 16, - "Lighting2": 7123 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 6888, - "Attributes": 16, - "Lighting2": 6888 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 8192 - }, - "Lighting": 7062, - "Attributes": 16, - "Lighting2": 7062 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 6821, - "Attributes": 16, - "Lighting2": 6821 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 9216 - }, - "Lighting": 7015, - "Attributes": 16, - "Lighting2": 7015 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 6783, - "Attributes": 16, - "Lighting2": 6783 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 10240 - }, - "Lighting": 6990, - "Attributes": 16, - "Lighting2": 6990 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 6783, - "Attributes": 32784, - "Lighting2": 6783 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 11264 - }, - "Lighting": 6990, - "Attributes": 16, - "Lighting2": 6990 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 6821, - "Attributes": 32784, - "Lighting2": 6821 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 12288 - }, - "Lighting": 7015, - "Attributes": 16, - "Lighting2": 7015 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 6888, - "Attributes": 16, - "Lighting2": 6888 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 13312 - }, - "Lighting": 7062, - "Attributes": 16, - "Lighting2": 7062 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 6976, - "Attributes": 16, - "Lighting2": 6976 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 14336 - }, - "Lighting": 7123, - "Attributes": 16, - "Lighting2": 7123 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 6075, - "Attributes": 16, - "Lighting2": 6075 - }, - { - "Vertex": { - "X": 17408, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 17408, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6250, - "Attributes": 16, - "Lighting2": 6250 - }, - { - "Vertex": { - "X": 18432, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 7345, - "Attributes": 16, - "Lighting2": 7345 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7405, - "Attributes": 16, - "Lighting2": 7405 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7351, - "Attributes": 16, - "Lighting2": 7351 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 7208, - "Attributes": 16, - "Lighting2": 7208 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 6144 - }, - "Lighting": 7296, - "Attributes": 16, - "Lighting2": 7296 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 7141, - "Attributes": 16, - "Lighting2": 7141 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 7168 - }, - "Lighting": 7245, - "Attributes": 16, - "Lighting2": 7245 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 7082, - "Attributes": 16, - "Lighting2": 7082 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 8192 - }, - "Lighting": 7201, - "Attributes": 16, - "Lighting2": 7201 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 7038, - "Attributes": 16, - "Lighting2": 7038 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 9216 - }, - "Lighting": 7168, - "Attributes": 16, - "Lighting2": 7168 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 7014, - "Attributes": 16, - "Lighting2": 7014 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 10240 - }, - "Lighting": 7151, - "Attributes": 16, - "Lighting2": 7151 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 7014, - "Attributes": 32784, - "Lighting2": 7014 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 11264 - }, - "Lighting": 7151, - "Attributes": 16, - "Lighting2": 7151 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 7038, - "Attributes": 32784, - "Lighting2": 7038 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 12288 - }, - "Lighting": 7168, - "Attributes": 16, - "Lighting2": 7168 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 7082, - "Attributes": 16, - "Lighting2": 7082 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 13312 - }, - "Lighting": 7201, - "Attributes": 16, - "Lighting2": 7201 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 7141, - "Attributes": 16, - "Lighting2": 7141 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 14336 - }, - "Lighting": 7245, - "Attributes": 16, - "Lighting2": 7245 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7208, - "Attributes": 16, - "Lighting2": 7208 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7296, - "Attributes": 16, - "Lighting2": 7296 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 16384 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 32784, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 6221, - "Attributes": 16, - "Lighting2": 6221 - }, - { - "Vertex": { - "X": 18432, - "Y": 768, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 768, - "Z": 19456 - }, - "Lighting": 6373, - "Attributes": 16, - "Lighting2": 6373 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 3072 - }, - "Lighting": 7469, - "Attributes": 16, - "Lighting2": 7469 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 3072 - }, - "Lighting": 7507, - "Attributes": 16, - "Lighting2": 7507 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 4096 - }, - "Lighting": 7420, - "Attributes": 16, - "Lighting2": 7420 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 4096 - }, - "Lighting": 7466, - "Attributes": 16, - "Lighting2": 7466 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 5120 - }, - "Lighting": 7369, - "Attributes": 16, - "Lighting2": 7369 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 5120 - }, - "Lighting": 7424, - "Attributes": 16, - "Lighting2": 7424 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 6144 - }, - "Lighting": 7319, - "Attributes": 16, - "Lighting2": 7319 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 6144 - }, - "Lighting": 7383, - "Attributes": 16, - "Lighting2": 7383 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 7168 - }, - "Lighting": 7271, - "Attributes": 16, - "Lighting2": 7271 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 7168 - }, - "Lighting": 7346, - "Attributes": 16, - "Lighting2": 7346 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 8192 - }, - "Lighting": 7231, - "Attributes": 16, - "Lighting2": 7231 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 8192 - }, - "Lighting": 7314, - "Attributes": 16, - "Lighting2": 7314 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 9216 - }, - "Lighting": 7201, - "Attributes": 16, - "Lighting2": 7201 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 9216 - }, - "Lighting": 7290, - "Attributes": 16, - "Lighting2": 7290 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 10240 - }, - "Lighting": 7185, - "Attributes": 16, - "Lighting2": 7185 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 10240 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 11264 - }, - "Lighting": 7185, - "Attributes": 16, - "Lighting2": 7185 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 11264 - }, - "Lighting": 7278, - "Attributes": 16, - "Lighting2": 7278 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 12288 - }, - "Lighting": 7201, - "Attributes": 16, - "Lighting2": 7201 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 12288 - }, - "Lighting": 7290, - "Attributes": 16, - "Lighting2": 7290 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 13312 - }, - "Lighting": 7231, - "Attributes": 16, - "Lighting2": 7231 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 13312 - }, - "Lighting": 7314, - "Attributes": 16, - "Lighting2": 7314 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 14336 - }, - "Lighting": 7271, - "Attributes": 16, - "Lighting2": 7271 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 14336 - }, - "Lighting": 7346, - "Attributes": 16, - "Lighting2": 7346 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 15360 - }, - "Lighting": 7319, - "Attributes": 16, - "Lighting2": 7319 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 15360 - }, - "Lighting": 7383, - "Attributes": 16, - "Lighting2": 7383 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 16384 - }, - "Lighting": 7369, - "Attributes": 16, - "Lighting2": 7369 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 16384 - }, - "Lighting": 7424, - "Attributes": 16, - "Lighting2": 7424 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 512, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 5376, - "Z": 19456 - }, - "Lighting": 6367, - "Attributes": 16, - "Lighting2": 6367 - }, - { - "Vertex": { - "X": 19456, - "Y": 1024, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 1024, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 18432, - "Y": 1024, - "Z": 19456 - }, - "Lighting": 6355, - "Attributes": 16, - "Lighting2": 6355 - }, - { - "Vertex": { - "X": 19456, - "Y": 1024, - "Z": 19456 - }, - "Lighting": 6483, - "Attributes": 16, - "Lighting2": 6483 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 1024 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 2048 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 3072 - }, - "Lighting": 7467, - "Attributes": 16, - "Lighting2": 7467 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 3072 - }, - "Lighting": 7481, - "Attributes": 16, - "Lighting2": 7481 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 4096 - }, - "Lighting": 7417, - "Attributes": 16, - "Lighting2": 7417 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 4096 - }, - "Lighting": 7435, - "Attributes": 16, - "Lighting2": 7435 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 5120 - }, - "Lighting": 7366, - "Attributes": 16, - "Lighting2": 7366 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 5120 - }, - "Lighting": 7388, - "Attributes": 16, - "Lighting2": 7388 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 6144 - }, - "Lighting": 7315, - "Attributes": 16, - "Lighting2": 7315 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 6144 - }, - "Lighting": 7340, - "Attributes": 16, - "Lighting2": 7340 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 7168 - }, - "Lighting": 7267, - "Attributes": 16, - "Lighting2": 7267 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 7168 - }, - "Lighting": 7296, - "Attributes": 16, - "Lighting2": 7296 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 8192 - }, - "Lighting": 7225, - "Attributes": 16, - "Lighting2": 7225 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 8192 - }, - "Lighting": 7259, - "Attributes": 16, - "Lighting2": 7259 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 9216 - }, - "Lighting": 7195, - "Attributes": 16, - "Lighting2": 7195 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 9216 - }, - "Lighting": 7231, - "Attributes": 16, - "Lighting2": 7231 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 10240 - }, - "Lighting": 7178, - "Attributes": 16, - "Lighting2": 7178 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 10240 - }, - "Lighting": 7216, - "Attributes": 16, - "Lighting2": 7216 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 11264 - }, - "Lighting": 7178, - "Attributes": 16, - "Lighting2": 7178 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 11264 - }, - "Lighting": 7216, - "Attributes": 16, - "Lighting2": 7216 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 12288 - }, - "Lighting": 7195, - "Attributes": 16, - "Lighting2": 7195 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 12288 - }, - "Lighting": 7231, - "Attributes": 16, - "Lighting2": 7231 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 13312 - }, - "Lighting": 7225, - "Attributes": 16, - "Lighting2": 7225 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 13312 - }, - "Lighting": 7259, - "Attributes": 16, - "Lighting2": 7259 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 14336 - }, - "Lighting": 7267, - "Attributes": 16, - "Lighting2": 7267 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 14336 - }, - "Lighting": 7296, - "Attributes": 16, - "Lighting2": 7296 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 15360 - }, - "Lighting": 7315, - "Attributes": 16, - "Lighting2": 7315 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 15360 - }, - "Lighting": 7340, - "Attributes": 16, - "Lighting2": 7340 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 16384 - }, - "Lighting": 7366, - "Attributes": 16, - "Lighting2": 7366 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 16384 - }, - "Lighting": 7388, - "Attributes": 16, - "Lighting2": 7388 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 17408 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 18432 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 19456, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 6371, - "Attributes": 16, - "Lighting2": 6371 - }, - { - "Vertex": { - "X": 19456, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 7935, - "Attributes": 16, - "Lighting2": 7935 - }, - { - "Vertex": { - "X": 2048, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 6399, - "Attributes": 16, - "Lighting2": 6399 - }, - { - "Vertex": { - "X": 3072, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 6272, - "Attributes": 16, - "Lighting2": 6272 - }, - { - "Vertex": { - "X": 4096, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 6172, - "Attributes": 16, - "Lighting2": 6172 - }, - { - "Vertex": { - "X": 5120, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 6117, - "Attributes": 16, - "Lighting2": 6117 - }, - { - "Vertex": { - "X": 6144, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 6117, - "Attributes": 16, - "Lighting2": 6117 - }, - { - "Vertex": { - "X": 7168, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 6172, - "Attributes": 16, - "Lighting2": 6172 - }, - { - "Vertex": { - "X": 8192, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 5811, - "Attributes": 16, - "Lighting2": 5811 - }, - { - "Vertex": { - "X": 9216, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 5708, - "Attributes": 16, - "Lighting2": 5708 - }, - { - "Vertex": { - "X": 10240, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 5634, - "Attributes": 16, - "Lighting2": 5634 - }, - { - "Vertex": { - "X": 11264, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 5596, - "Attributes": 16, - "Lighting2": 5596 - }, - { - "Vertex": { - "X": 12288, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 5596, - "Attributes": 16, - "Lighting2": 5596 - }, - { - "Vertex": { - "X": 13312, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 5634, - "Attributes": 16, - "Lighting2": 5634 - }, - { - "Vertex": { - "X": 14336, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 5708, - "Attributes": 16, - "Lighting2": 5708 - }, - { - "Vertex": { - "X": 15360, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 5811, - "Attributes": 16, - "Lighting2": 5811 - }, - { - "Vertex": { - "X": 16384, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 5936, - "Attributes": 16, - "Lighting2": 5936 - }, - { - "Vertex": { - "X": 17408, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 6075, - "Attributes": 16, - "Lighting2": 6075 - }, - { - "Vertex": { - "X": 18432, - "Y": 3840, - "Z": 19456 - }, - "Lighting": 6221, - "Attributes": 16, - "Lighting2": 6221 - }, - { - "Vertex": { - "X": 2048, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 6399, - "Attributes": 16, - "Lighting2": 6399 - }, - { - "Vertex": { - "X": 3072, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 6272, - "Attributes": 16, - "Lighting2": 6272 - }, - { - "Vertex": { - "X": 4096, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 6172, - "Attributes": 16, - "Lighting2": 6172 - }, - { - "Vertex": { - "X": 5120, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 6117, - "Attributes": 16, - "Lighting2": 6117 - }, - { - "Vertex": { - "X": 6144, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 6117, - "Attributes": 16, - "Lighting2": 6117 - }, - { - "Vertex": { - "X": 7168, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 6172, - "Attributes": 16, - "Lighting2": 6172 - }, - { - "Vertex": { - "X": 8192, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 5811, - "Attributes": 16, - "Lighting2": 5811 - }, - { - "Vertex": { - "X": 9216, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 5708, - "Attributes": 16, - "Lighting2": 5708 - }, - { - "Vertex": { - "X": 10240, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 5634, - "Attributes": 16, - "Lighting2": 5634 - }, - { - "Vertex": { - "X": 11264, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 5596, - "Attributes": 16, - "Lighting2": 5596 - }, - { - "Vertex": { - "X": 12288, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 5596, - "Attributes": 16, - "Lighting2": 5596 - }, - { - "Vertex": { - "X": 13312, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 5634, - "Attributes": 16, - "Lighting2": 5634 - }, - { - "Vertex": { - "X": 14336, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 5708, - "Attributes": 16, - "Lighting2": 5708 - }, - { - "Vertex": { - "X": 15360, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 5811, - "Attributes": 16, - "Lighting2": 5811 - }, - { - "Vertex": { - "X": 16384, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 5936, - "Attributes": 16, - "Lighting2": 5936 - }, - { - "Vertex": { - "X": 17408, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 6075, - "Attributes": 16, - "Lighting2": 6075 - }, - { - "Vertex": { - "X": 18432, - "Y": 2048, - "Z": 19456 - }, - "Lighting": 6221, - "Attributes": 16, - "Lighting2": 6221 - } - ], - "NumRectangles": 1010, - "Rectangles": [ - { - "Vertices": [ 40, 41, 42, 43 ], - "Texture": 1160 - }, - { - "Vertices": [ 47, 46, 45, 44 ], - "Texture": 1160 - }, - { - "Vertices": [ 0, 1, 42, 41 ], - "Texture": 1160 - }, - { - "Vertices": [ 45, 46, 3, 2 ], - "Texture": 1160 - }, - { - "Vertices": [ 2, 3, 1, 0 ], - "Texture": 1160 - }, - { - "Vertices": [ 38, 0, 41, 40 ], - "Texture": 1160 - }, - { - "Vertices": [ 44, 45, 2, 39 ], - "Texture": 1160 - }, - { - "Vertices": [ 39, 2, 0, 38 ], - "Texture": 1160 - }, - { - "Vertices": [ 43, 42, 48, 49 ], - "Texture": 1160 - }, - { - "Vertices": [ 51, 50, 46, 47 ], - "Texture": 1160 - }, - { - "Vertices": [ 1, 4, 48, 42 ], - "Texture": 1160 - }, - { - "Vertices": [ 46, 50, 5, 3 ], - "Texture": 1160 - }, - { - "Vertices": [ 3, 5, 4, 1 ], - "Texture": 1160 - }, - { - "Vertices": [ 49, 48, 52, 53 ], - "Texture": 1160 - }, - { - "Vertices": [ 55, 54, 50, 51 ], - "Texture": 1160 - }, - { - "Vertices": [ 4, 6, 52, 48 ], - "Texture": 1160 - }, - { - "Vertices": [ 50, 54, 7, 5 ], - "Texture": 1160 - }, - { - "Vertices": [ 5, 7, 6, 4 ], - "Texture": 1160 - }, - { - "Vertices": [ 53, 52, 56, 57 ], - "Texture": 1160 - }, - { - "Vertices": [ 59, 58, 54, 55 ], - "Texture": 1160 - }, - { - "Vertices": [ 6, 8, 56, 52 ], - "Texture": 1160 - }, - { - "Vertices": [ 54, 58, 9, 7 ], - "Texture": 1160 - }, - { - "Vertices": [ 7, 9, 8, 6 ], - "Texture": 1160 - }, - { - "Vertices": [ 57, 56, 60, 61 ], - "Texture": 1160 - }, - { - "Vertices": [ 63, 62, 58, 59 ], - "Texture": 1160 - }, - { - "Vertices": [ 8, 10, 60, 56 ], - "Texture": 1160 - }, - { - "Vertices": [ 58, 62, 11, 9 ], - "Texture": 1160 - }, - { - "Vertices": [ 9, 11, 10, 8 ], - "Texture": 1160 - }, - { - "Vertices": [ 61, 60, 64, 65 ], - "Texture": 1160 - }, - { - "Vertices": [ 67, 66, 62, 63 ], - "Texture": 1160 - }, - { - "Vertices": [ 10, 12, 64, 60 ], - "Texture": 1160 - }, - { - "Vertices": [ 62, 66, 13, 11 ], - "Texture": 1160 - }, - { - "Vertices": [ 11, 13, 12, 10 ], - "Texture": 1160 - }, - { - "Vertices": [ 65, 64, 68, 69 ], - "Texture": 1160 - }, - { - "Vertices": [ 71, 70, 66, 67 ], - "Texture": 1160 - }, - { - "Vertices": [ 12, 14, 68, 64 ], - "Texture": 1160 - }, - { - "Vertices": [ 66, 70, 15, 13 ], - "Texture": 1160 - }, - { - "Vertices": [ 13, 15, 14, 12 ], - "Texture": 1160 - }, - { - "Vertices": [ 69, 68, 72, 73 ], - "Texture": 1160 - }, - { - "Vertices": [ 75, 74, 70, 71 ], - "Texture": 1160 - }, - { - "Vertices": [ 14, 16, 72, 68 ], - "Texture": 1160 - }, - { - "Vertices": [ 70, 74, 17, 15 ], - "Texture": 1160 - }, - { - "Vertices": [ 15, 17, 16, 14 ], - "Texture": 1160 - }, - { - "Vertices": [ 73, 72, 76, 77 ], - "Texture": 1160 - }, - { - "Vertices": [ 79, 78, 74, 75 ], - "Texture": 1160 - }, - { - "Vertices": [ 16, 18, 76, 72 ], - "Texture": 1160 - }, - { - "Vertices": [ 74, 78, 19, 17 ], - "Texture": 1160 - }, - { - "Vertices": [ 17, 19, 18, 16 ], - "Texture": 1160 - }, - { - "Vertices": [ 77, 76, 80, 81 ], - "Texture": 1160 - }, - { - "Vertices": [ 83, 82, 78, 79 ], - "Texture": 1160 - }, - { - "Vertices": [ 18, 20, 80, 76 ], - "Texture": 1160 - }, - { - "Vertices": [ 78, 82, 21, 19 ], - "Texture": 1160 - }, - { - "Vertices": [ 19, 21, 20, 18 ], - "Texture": 1160 - }, - { - "Vertices": [ 81, 80, 84, 85 ], - "Texture": 1160 - }, - { - "Vertices": [ 87, 86, 82, 83 ], - "Texture": 1160 - }, - { - "Vertices": [ 20, 22, 84, 80 ], - "Texture": 1160 - }, - { - "Vertices": [ 82, 86, 23, 21 ], - "Texture": 1160 - }, - { - "Vertices": [ 21, 23, 22, 20 ], - "Texture": 1160 - }, - { - "Vertices": [ 85, 84, 88, 89 ], - "Texture": 1160 - }, - { - "Vertices": [ 91, 90, 86, 87 ], - "Texture": 1160 - }, - { - "Vertices": [ 22, 24, 88, 84 ], - "Texture": 1160 - }, - { - "Vertices": [ 86, 90, 25, 23 ], - "Texture": 1160 - }, - { - "Vertices": [ 23, 25, 24, 22 ], - "Texture": 1160 - }, - { - "Vertices": [ 89, 88, 92, 93 ], - "Texture": 1160 - }, - { - "Vertices": [ 95, 94, 90, 91 ], - "Texture": 1160 - }, - { - "Vertices": [ 24, 26, 92, 88 ], - "Texture": 1160 - }, - { - "Vertices": [ 90, 94, 27, 25 ], - "Texture": 1160 - }, - { - "Vertices": [ 25, 27, 26, 24 ], - "Texture": 1160 - }, - { - "Vertices": [ 93, 92, 96, 97 ], - "Texture": 1160 - }, - { - "Vertices": [ 99, 98, 94, 95 ], - "Texture": 1160 - }, - { - "Vertices": [ 26, 28, 96, 92 ], - "Texture": 1160 - }, - { - "Vertices": [ 94, 98, 29, 27 ], - "Texture": 1160 - }, - { - "Vertices": [ 27, 29, 28, 26 ], - "Texture": 1160 - }, - { - "Vertices": [ 97, 96, 100, 101 ], - "Texture": 1160 - }, - { - "Vertices": [ 103, 102, 98, 99 ], - "Texture": 1160 - }, - { - "Vertices": [ 28, 30, 100, 96 ], - "Texture": 1160 - }, - { - "Vertices": [ 98, 102, 31, 29 ], - "Texture": 1160 - }, - { - "Vertices": [ 29, 31, 30, 28 ], - "Texture": 1160 - }, - { - "Vertices": [ 101, 100, 104, 105 ], - "Texture": 1160 - }, - { - "Vertices": [ 107, 106, 102, 103 ], - "Texture": 1160 - }, - { - "Vertices": [ 30, 32, 104, 100 ], - "Texture": 1160 - }, - { - "Vertices": [ 102, 106, 33, 31 ], - "Texture": 1160 - }, - { - "Vertices": [ 31, 33, 32, 30 ], - "Texture": 1160 - }, - { - "Vertices": [ 105, 104, 108, 109 ], - "Texture": 1160 - }, - { - "Vertices": [ 111, 110, 106, 107 ], - "Texture": 1160 - }, - { - "Vertices": [ 32, 34, 108, 104 ], - "Texture": 1160 - }, - { - "Vertices": [ 106, 110, 35, 33 ], - "Texture": 1160 - }, - { - "Vertices": [ 33, 35, 34, 32 ], - "Texture": 1160 - }, - { - "Vertices": [ 109, 108, 112, 113 ], - "Texture": 1160 - }, - { - "Vertices": [ 117, 116, 115, 114 ], - "Texture": 1160 - }, - { - "Vertices": [ 34, 36, 112, 108 ], - "Texture": 1160 - }, - { - "Vertices": [ 115, 116, 37, 35 ], - "Texture": 1160 - }, - { - "Vertices": [ 35, 37, 36, 34 ], - "Texture": 1160 - }, - { - "Vertices": [ 110, 111, 114, 115 ], - "Texture": 1160 - }, - { - "Vertices": [ 121, 40, 43, 122 ], - "Texture": 1160 - }, - { - "Vertices": [ 124, 47, 44, 123 ], - "Texture": 1160 - }, - { - "Vertices": [ 119, 38, 40, 121 ], - "Texture": 1160 - }, - { - "Vertices": [ 123, 44, 39, 120 ], - "Texture": 1160 - }, - { - "Vertices": [ 120, 39, 38, 119 ], - "Texture": 1160 - }, - { - "Vertices": [ 122, 43, 49, 125 ], - "Texture": 1160 - }, - { - "Vertices": [ 126, 51, 47, 124 ], - "Texture": 1160 - }, - { - "Vertices": [ 125, 49, 53, 127 ], - "Texture": 1160 - }, - { - "Vertices": [ 128, 55, 51, 126 ], - "Texture": 1160 - }, - { - "Vertices": [ 127, 53, 57, 129 ], - "Texture": 1160 - }, - { - "Vertices": [ 130, 59, 55, 128 ], - "Texture": 1160 - }, - { - "Vertices": [ 129, 57, 61, 131 ], - "Texture": 1160 - }, - { - "Vertices": [ 132, 63, 59, 130 ], - "Texture": 1160 - }, - { - "Vertices": [ 131, 61, 65, 133 ], - "Texture": 1160 - }, - { - "Vertices": [ 134, 67, 63, 132 ], - "Texture": 1160 - }, - { - "Vertices": [ 133, 65, 69, 135 ], - "Texture": 1160 - }, - { - "Vertices": [ 136, 71, 67, 134 ], - "Texture": 1160 - }, - { - "Vertices": [ 135, 69, 73, 137 ], - "Texture": 1160 - }, - { - "Vertices": [ 138, 75, 71, 136 ], - "Texture": 1160 - }, - { - "Vertices": [ 137, 73, 77, 139 ], - "Texture": 1160 - }, - { - "Vertices": [ 140, 79, 75, 138 ], - "Texture": 1160 - }, - { - "Vertices": [ 139, 77, 81, 141 ], - "Texture": 1160 - }, - { - "Vertices": [ 142, 83, 79, 140 ], - "Texture": 1160 - }, - { - "Vertices": [ 141, 81, 85, 143 ], - "Texture": 1160 - }, - { - "Vertices": [ 144, 87, 83, 142 ], - "Texture": 1160 - }, - { - "Vertices": [ 143, 85, 89, 145 ], - "Texture": 1160 - }, - { - "Vertices": [ 146, 91, 87, 144 ], - "Texture": 1160 - }, - { - "Vertices": [ 145, 89, 93, 147 ], - "Texture": 1160 - }, - { - "Vertices": [ 148, 95, 91, 146 ], - "Texture": 1160 - }, - { - "Vertices": [ 147, 93, 97, 149 ], - "Texture": 1160 - }, - { - "Vertices": [ 150, 99, 95, 148 ], - "Texture": 1160 - }, - { - "Vertices": [ 149, 97, 101, 151 ], - "Texture": 1160 - }, - { - "Vertices": [ 152, 103, 99, 150 ], - "Texture": 1160 - }, - { - "Vertices": [ 151, 101, 105, 153 ], - "Texture": 1160 - }, - { - "Vertices": [ 154, 107, 103, 152 ], - "Texture": 1160 - }, - { - "Vertices": [ 153, 105, 109, 155 ], - "Texture": 1160 - }, - { - "Vertices": [ 156, 111, 107, 154 ], - "Texture": 1160 - }, - { - "Vertices": [ 155, 109, 113, 157 ], - "Texture": 1160 - }, - { - "Vertices": [ 160, 118, 159, 158 ], - "Texture": 1160 - }, - { - "Vertices": [ 118, 117, 114, 159 ], - "Texture": 1160 - }, - { - "Vertices": [ 156, 158, 159, 111 ], - "Texture": 1160 - }, - { - "Vertices": [ 163, 121, 122, 164 ], - "Texture": 1160 - }, - { - "Vertices": [ 166, 124, 123, 165 ], - "Texture": 1160 - }, - { - "Vertices": [ 161, 119, 121, 163 ], - "Texture": 1160 - }, - { - "Vertices": [ 165, 123, 120, 162 ], - "Texture": 1160 - }, - { - "Vertices": [ 162, 120, 119, 161 ], - "Texture": 1160 - }, - { - "Vertices": [ 164, 122, 125, 167 ], - "Texture": 1160 - }, - { - "Vertices": [ 168, 126, 124, 166 ], - "Texture": 1160 - }, - { - "Vertices": [ 167, 125, 127, 169 ], - "Texture": 1160 - }, - { - "Vertices": [ 170, 128, 126, 168 ], - "Texture": 1160 - }, - { - "Vertices": [ 169, 127, 129, 171 ], - "Texture": 1160 - }, - { - "Vertices": [ 172, 130, 128, 170 ], - "Texture": 1160 - }, - { - "Vertices": [ 171, 129, 131, 173 ], - "Texture": 1160 - }, - { - "Vertices": [ 174, 132, 130, 172 ], - "Texture": 1160 - }, - { - "Vertices": [ 173, 131, 133, 175 ], - "Texture": 1160 - }, - { - "Vertices": [ 176, 134, 132, 174 ], - "Texture": 1160 - }, - { - "Vertices": [ 175, 133, 135, 177 ], - "Texture": 1160 - }, - { - "Vertices": [ 178, 136, 134, 176 ], - "Texture": 1160 - }, - { - "Vertices": [ 177, 135, 137, 179 ], - "Texture": 1160 - }, - { - "Vertices": [ 180, 138, 136, 178 ], - "Texture": 1160 - }, - { - "Vertices": [ 179, 137, 139, 181 ], - "Texture": 1160 - }, - { - "Vertices": [ 182, 140, 138, 180 ], - "Texture": 1160 - }, - { - "Vertices": [ 181, 139, 141, 183 ], - "Texture": 1160 - }, - { - "Vertices": [ 184, 142, 140, 182 ], - "Texture": 1160 - }, - { - "Vertices": [ 183, 141, 143, 185 ], - "Texture": 1160 - }, - { - "Vertices": [ 186, 144, 142, 184 ], - "Texture": 1160 - }, - { - "Vertices": [ 185, 143, 145, 187 ], - "Texture": 1160 - }, - { - "Vertices": [ 188, 146, 144, 186 ], - "Texture": 1160 - }, - { - "Vertices": [ 187, 145, 147, 189 ], - "Texture": 1160 - }, - { - "Vertices": [ 190, 148, 146, 188 ], - "Texture": 1160 - }, - { - "Vertices": [ 189, 147, 149, 191 ], - "Texture": 1160 - }, - { - "Vertices": [ 192, 150, 148, 190 ], - "Texture": 1160 - }, - { - "Vertices": [ 191, 149, 151, 193 ], - "Texture": 1160 - }, - { - "Vertices": [ 194, 152, 150, 192 ], - "Texture": 1160 - }, - { - "Vertices": [ 193, 151, 153, 195 ], - "Texture": 1160 - }, - { - "Vertices": [ 196, 154, 152, 194 ], - "Texture": 1160 - }, - { - "Vertices": [ 195, 153, 155, 197 ], - "Texture": 1160 - }, - { - "Vertices": [ 198, 156, 154, 196 ], - "Texture": 1160 - }, - { - "Vertices": [ 197, 155, 157, 199 ], - "Texture": 1160 - }, - { - "Vertices": [ 201, 160, 158, 200 ], - "Texture": 1160 - }, - { - "Vertices": [ 198, 200, 158, 156 ], - "Texture": 1160 - }, - { - "Vertices": [ 204, 163, 164, 205 ], - "Texture": 1160 - }, - { - "Vertices": [ 207, 166, 165, 206 ], - "Texture": 1160 - }, - { - "Vertices": [ 202, 161, 163, 204 ], - "Texture": 1160 - }, - { - "Vertices": [ 206, 165, 162, 203 ], - "Texture": 1160 - }, - { - "Vertices": [ 203, 162, 161, 202 ], - "Texture": 1160 - }, - { - "Vertices": [ 205, 164, 167, 208 ], - "Texture": 1160 - }, - { - "Vertices": [ 209, 168, 166, 207 ], - "Texture": 1160 - }, - { - "Vertices": [ 208, 167, 169, 210 ], - "Texture": 1160 - }, - { - "Vertices": [ 211, 170, 168, 209 ], - "Texture": 1160 - }, - { - "Vertices": [ 210, 169, 171, 212 ], - "Texture": 1160 - }, - { - "Vertices": [ 213, 172, 170, 211 ], - "Texture": 1160 - }, - { - "Vertices": [ 212, 171, 173, 214 ], - "Texture": 1160 - }, - { - "Vertices": [ 215, 174, 172, 213 ], - "Texture": 1160 - }, - { - "Vertices": [ 214, 173, 175, 216 ], - "Texture": 1160 - }, - { - "Vertices": [ 217, 176, 174, 215 ], - "Texture": 1160 - }, - { - "Vertices": [ 216, 175, 177, 218 ], - "Texture": 1160 - }, - { - "Vertices": [ 219, 178, 176, 217 ], - "Texture": 1160 - }, - { - "Vertices": [ 218, 177, 179, 220 ], - "Texture": 1160 - }, - { - "Vertices": [ 221, 180, 178, 219 ], - "Texture": 1160 - }, - { - "Vertices": [ 220, 179, 181, 222 ], - "Texture": 1160 - }, - { - "Vertices": [ 223, 182, 180, 221 ], - "Texture": 1160 - }, - { - "Vertices": [ 222, 181, 183, 224 ], - "Texture": 1160 - }, - { - "Vertices": [ 225, 184, 182, 223 ], - "Texture": 1160 - }, - { - "Vertices": [ 224, 183, 185, 226 ], - "Texture": 1160 - }, - { - "Vertices": [ 227, 186, 184, 225 ], - "Texture": 1160 - }, - { - "Vertices": [ 226, 185, 187, 228 ], - "Texture": 1160 - }, - { - "Vertices": [ 229, 188, 186, 227 ], - "Texture": 1160 - }, - { - "Vertices": [ 228, 187, 189, 230 ], - "Texture": 1160 - }, - { - "Vertices": [ 231, 190, 188, 229 ], - "Texture": 1160 - }, - { - "Vertices": [ 230, 189, 191, 232 ], - "Texture": 1160 - }, - { - "Vertices": [ 233, 192, 190, 231 ], - "Texture": 1160 - }, - { - "Vertices": [ 232, 191, 193, 234 ], - "Texture": 1160 - }, - { - "Vertices": [ 235, 194, 192, 233 ], - "Texture": 1160 - }, - { - "Vertices": [ 234, 193, 195, 236 ], - "Texture": 1160 - }, - { - "Vertices": [ 237, 196, 194, 235 ], - "Texture": 1160 - }, - { - "Vertices": [ 236, 195, 197, 238 ], - "Texture": 1160 - }, - { - "Vertices": [ 239, 198, 196, 237 ], - "Texture": 1160 - }, - { - "Vertices": [ 238, 197, 199, 240 ], - "Texture": 1160 - }, - { - "Vertices": [ 242, 201, 200, 241 ], - "Texture": 1160 - }, - { - "Vertices": [ 239, 241, 200, 198 ], - "Texture": 1160 - }, - { - "Vertices": [ 245, 204, 205, 246 ], - "Texture": 1160 - }, - { - "Vertices": [ 248, 207, 206, 247 ], - "Texture": 1160 - }, - { - "Vertices": [ 243, 202, 204, 245 ], - "Texture": 1160 - }, - { - "Vertices": [ 247, 206, 203, 244 ], - "Texture": 1160 - }, - { - "Vertices": [ 244, 203, 202, 243 ], - "Texture": 1160 - }, - { - "Vertices": [ 246, 205, 208, 249 ], - "Texture": 1160 - }, - { - "Vertices": [ 250, 209, 207, 248 ], - "Texture": 1160 - }, - { - "Vertices": [ 249, 208, 210, 251 ], - "Texture": 1160 - }, - { - "Vertices": [ 252, 211, 209, 250 ], - "Texture": 1160 - }, - { - "Vertices": [ 251, 210, 212, 253 ], - "Texture": 1160 - }, - { - "Vertices": [ 254, 213, 211, 252 ], - "Texture": 1160 - }, - { - "Vertices": [ 253, 212, 214, 255 ], - "Texture": 1160 - }, - { - "Vertices": [ 257, 256, 259, 258 ], - "Texture": 1160 - }, - { - "Vertices": [ 213, 257, 258, 215 ], - "Texture": 1160 - }, - { - "Vertices": [ 254, 256, 257, 213 ], - "Texture": 1160 - }, - { - "Vertices": [ 255, 214, 216, 260 ], - "Texture": 1160 - }, - { - "Vertices": [ 259, 262, 261, 258 ], - "Texture": 1160 - }, - { - "Vertices": [ 215, 258, 261, 217 ], - "Texture": 1160 - }, - { - "Vertices": [ 260, 216, 218, 263 ], - "Texture": 1160 - }, - { - "Vertices": [ 262, 265, 264, 261 ], - "Texture": 1160 - }, - { - "Vertices": [ 217, 261, 264, 219 ], - "Texture": 1160 - }, - { - "Vertices": [ 263, 218, 220, 266 ], - "Texture": 1160 - }, - { - "Vertices": [ 265, 268, 267, 264 ], - "Texture": 1160 - }, - { - "Vertices": [ 219, 264, 267, 221 ], - "Texture": 1160 - }, - { - "Vertices": [ 266, 220, 222, 269 ], - "Texture": 1160 - }, - { - "Vertices": [ 268, 271, 270, 267 ], - "Texture": 1160 - }, - { - "Vertices": [ 221, 267, 270, 223 ], - "Texture": 1160 - }, - { - "Vertices": [ 269, 222, 224, 272 ], - "Texture": 1160 - }, - { - "Vertices": [ 271, 274, 273, 270 ], - "Texture": 1160 - }, - { - "Vertices": [ 223, 270, 273, 225 ], - "Texture": 1160 - }, - { - "Vertices": [ 272, 224, 226, 275 ], - "Texture": 1160 - }, - { - "Vertices": [ 274, 277, 276, 273 ], - "Texture": 1160 - }, - { - "Vertices": [ 225, 273, 276, 227 ], - "Texture": 1160 - }, - { - "Vertices": [ 275, 226, 228, 278 ], - "Texture": 1160 - }, - { - "Vertices": [ 277, 280, 279, 276 ], - "Texture": 1160 - }, - { - "Vertices": [ 227, 276, 279, 229 ], - "Texture": 1160 - }, - { - "Vertices": [ 278, 228, 230, 281 ], - "Texture": 1160 - }, - { - "Vertices": [ 280, 283, 282, 279 ], - "Texture": 1160 - }, - { - "Vertices": [ 229, 279, 282, 231 ], - "Texture": 1160 - }, - { - "Vertices": [ 281, 230, 232, 284 ], - "Texture": 1160 - }, - { - "Vertices": [ 285, 282, 283, 286 ], - "Texture": 1160 - }, - { - "Vertices": [ 231, 282, 285, 233 ], - "Texture": 1160 - }, - { - "Vertices": [ 284, 232, 234, 287 ], - "Texture": 1160 - }, - { - "Vertices": [ 289, 235, 233, 288 ], - "Texture": 1160 - }, - { - "Vertices": [ 233, 285, 286, 288 ], - "Texture": 1160 - }, - { - "Vertices": [ 287, 234, 236, 290 ], - "Texture": 1160 - }, - { - "Vertices": [ 291, 237, 235, 289 ], - "Texture": 1160 - }, - { - "Vertices": [ 290, 236, 238, 292 ], - "Texture": 1160 - }, - { - "Vertices": [ 293, 239, 237, 291 ], - "Texture": 1160 - }, - { - "Vertices": [ 292, 238, 240, 294 ], - "Texture": 1160 - }, - { - "Vertices": [ 296, 242, 241, 295 ], - "Texture": 1160 - }, - { - "Vertices": [ 293, 295, 241, 239 ], - "Texture": 1160 - }, - { - "Vertices": [ 299, 245, 246, 300 ], - "Texture": 1160 - }, - { - "Vertices": [ 302, 248, 247, 301 ], - "Texture": 1160 - }, - { - "Vertices": [ 297, 243, 245, 299 ], - "Texture": 1160 - }, - { - "Vertices": [ 301, 247, 244, 298 ], - "Texture": 1160 - }, - { - "Vertices": [ 298, 244, 243, 297 ], - "Texture": 1160 - }, - { - "Vertices": [ 300, 246, 249, 303 ], - "Texture": 1160 - }, - { - "Vertices": [ 304, 250, 248, 302 ], - "Texture": 1160 - }, - { - "Vertices": [ 303, 249, 251, 305 ], - "Texture": 1160 - }, - { - "Vertices": [ 306, 252, 250, 304 ], - "Texture": 1160 - }, - { - "Vertices": [ 305, 251, 253, 307 ], - "Texture": 1160 - }, - { - "Vertices": [ 308, 254, 252, 306 ], - "Texture": 1160 - }, - { - "Vertices": [ 307, 253, 255, 309 ], - "Texture": 1160 - }, - { - "Vertices": [ 311, 259, 256, 310 ], - "Texture": 1160 - }, - { - "Vertices": [ 308, 310, 256, 254 ], - "Texture": 1160 - }, - { - "Vertices": [ 314, 313, 255, 260 ], - "Texture": 1160 - }, - { - "Vertices": [ 262, 259, 317, 318 ], - "Texture": 1160 - }, - { - "Vertices": [ 318, 317, 313, 314 ], - "Texture": 1160 - }, - { - "Vertices": [ 313, 312, 309, 255 ], - "Texture": 1160 - }, - { - "Vertices": [ 259, 311, 316, 317 ], - "Texture": 1160 - }, - { - "Vertices": [ 317, 316, 312, 313 ], - "Texture": 1160 - }, - { - "Vertices": [ 320, 260, 263, 321 ], - "Texture": 1160 - }, - { - "Vertices": [ 323, 322, 325, 324 ], - "Texture": 1160 - }, - { - "Vertices": [ 265, 262, 323, 324 ], - "Texture": 1160 - }, - { - "Vertices": [ 315, 314, 260, 320 ], - "Texture": 1160 - }, - { - "Vertices": [ 322, 323, 318, 319 ], - "Texture": 1160 - }, - { - "Vertices": [ 319, 318, 314, 315 ], - "Texture": 1160 - }, - { - "Vertices": [ 321, 263, 266, 326 ], - "Texture": 1160 - }, - { - "Vertices": [ 327, 328, 268, 265 ], - "Texture": 1160 - }, - { - "Vertices": [ 327, 265, 324, 325 ], - "Texture": 1160 - }, - { - "Vertices": [ 326, 266, 269, 329 ], - "Texture": 1160 - }, - { - "Vertices": [ 328, 330, 271, 268 ], - "Texture": 1160 - }, - { - "Vertices": [ 329, 269, 272, 331 ], - "Texture": 1160 - }, - { - "Vertices": [ 330, 332, 274, 271 ], - "Texture": 1160 - }, - { - "Vertices": [ 331, 272, 275, 333 ], - "Texture": 1160 - }, - { - "Vertices": [ 332, 334, 277, 274 ], - "Texture": 1160 - }, - { - "Vertices": [ 333, 275, 278, 335 ], - "Texture": 1160 - }, - { - "Vertices": [ 339, 338, 337, 336 ], - "Texture": 1160 - }, - { - "Vertices": [ 280, 277, 337, 338 ], - "Texture": 1160 - }, - { - "Vertices": [ 277, 334, 336, 337 ], - "Texture": 1160 - }, - { - "Vertices": [ 342, 341, 278, 281 ], - "Texture": 1160 - }, - { - "Vertices": [ 283, 280, 345, 346 ], - "Texture": 1160 - }, - { - "Vertices": [ 346, 345, 341, 342 ], - "Texture": 1160 - }, - { - "Vertices": [ 341, 340, 335, 278 ], - "Texture": 1160 - }, - { - "Vertices": [ 338, 339, 344, 345 ], - "Texture": 1160 - }, - { - "Vertices": [ 345, 344, 340, 341 ], - "Texture": 1160 - }, - { - "Vertices": [ 348, 281, 284, 349 ], - "Texture": 1160 - }, - { - "Vertices": [ 283, 350, 351, 286 ], - "Texture": 1160 - }, - { - "Vertices": [ 343, 342, 281, 348 ], - "Texture": 1160 - }, - { - "Vertices": [ 350, 283, 346, 347 ], - "Texture": 1160 - }, - { - "Vertices": [ 347, 346, 342, 343 ], - "Texture": 1160 - }, - { - "Vertices": [ 349, 284, 287, 352 ], - "Texture": 1160 - }, - { - "Vertices": [ 354, 289, 288, 353 ], - "Texture": 1160 - }, - { - "Vertices": [ 288, 286, 351, 353 ], - "Texture": 1160 - }, - { - "Vertices": [ 352, 287, 290, 355 ], - "Texture": 1160 - }, - { - "Vertices": [ 356, 291, 289, 354 ], - "Texture": 1160 - }, - { - "Vertices": [ 355, 290, 292, 357 ], - "Texture": 1160 - }, - { - "Vertices": [ 358, 293, 291, 356 ], - "Texture": 1160 - }, - { - "Vertices": [ 357, 292, 294, 359 ], - "Texture": 1160 - }, - { - "Vertices": [ 361, 296, 295, 360 ], - "Texture": 1160 - }, - { - "Vertices": [ 358, 360, 295, 293 ], - "Texture": 1160 - }, - { - "Vertices": [ 364, 299, 300, 365 ], - "Texture": 1160 - }, - { - "Vertices": [ 367, 302, 301, 366 ], - "Texture": 1160 - }, - { - "Vertices": [ 362, 297, 299, 364 ], - "Texture": 1160 - }, - { - "Vertices": [ 366, 301, 298, 363 ], - "Texture": 1160 - }, - { - "Vertices": [ 363, 298, 297, 362 ], - "Texture": 1160 - }, - { - "Vertices": [ 365, 300, 303, 368 ], - "Texture": 1160 - }, - { - "Vertices": [ 369, 304, 302, 367 ], - "Texture": 1160 - }, - { - "Vertices": [ 368, 303, 305, 370 ], - "Texture": 1160 - }, - { - "Vertices": [ 371, 306, 304, 369 ], - "Texture": 1160 - }, - { - "Vertices": [ 370, 305, 307, 372 ], - "Texture": 1160 - }, - { - "Vertices": [ 373, 308, 306, 371 ], - "Texture": 1160 - }, - { - "Vertices": [ 372, 307, 309, 374 ], - "Texture": 1160 - }, - { - "Vertices": [ 376, 311, 310, 375 ], - "Texture": 1160 - }, - { - "Vertices": [ 373, 375, 310, 308 ], - "Texture": 1160 - }, - { - "Vertices": [ 374, 309, 320, 377 ], - "Texture": 1160 - }, - { - "Vertices": [ 322, 379, 378, 380 ], - "Texture": 1160 - }, - { - "Vertices": [ 312, 315, 320, 309 ], - "Texture": 1160 - }, - { - "Vertices": [ 379, 322, 319, 316 ], - "Texture": 1160 - }, - { - "Vertices": [ 316, 319, 315, 312 ], - "Texture": 1160 - }, - { - "Vertices": [ 311, 376, 378, 379 ], - "Texture": 1160 - }, - { - "Vertices": [ 377, 320, 321, 381 ], - "Texture": 1160 - }, - { - "Vertices": [ 385, 384, 383, 382 ], - "Texture": 1160 - }, - { - "Vertices": [ 383, 384, 325, 322 ], - "Texture": 1160 - }, - { - "Vertices": [ 382, 383, 322, 380 ], - "Texture": 1160 - }, - { - "Vertices": [ 381, 321, 326, 386 ], - "Texture": 1160 - }, - { - "Vertices": [ 388, 387, 384, 385 ], - "Texture": 1160 - }, - { - "Vertices": [ 384, 387, 328, 327 ], - "Texture": 1160 - }, - { - "Vertices": [ 386, 326, 329, 389 ], - "Texture": 1160 - }, - { - "Vertices": [ 391, 390, 387, 388 ], - "Texture": 1160 - }, - { - "Vertices": [ 387, 390, 330, 328 ], - "Texture": 1160 - }, - { - "Vertices": [ 389, 329, 331, 392 ], - "Texture": 1160 - }, - { - "Vertices": [ 394, 393, 390, 391 ], - "Texture": 1160 - }, - { - "Vertices": [ 390, 393, 332, 330 ], - "Texture": 1160 - }, - { - "Vertices": [ 392, 331, 333, 395 ], - "Texture": 1160 - }, - { - "Vertices": [ 397, 396, 393, 394 ], - "Texture": 1160 - }, - { - "Vertices": [ 393, 396, 334, 332 ], - "Texture": 1160 - }, - { - "Vertices": [ 395, 333, 335, 398 ], - "Texture": 1160 - }, - { - "Vertices": [ 400, 399, 396, 397 ], - "Texture": 1160 - }, - { - "Vertices": [ 396, 399, 339, 336 ], - "Texture": 1160 - }, - { - "Vertices": [ 398, 335, 348, 401 ], - "Texture": 1160 - }, - { - "Vertices": [ 404, 403, 402, 405 ], - "Texture": 1160 - }, - { - "Vertices": [ 340, 343, 348, 335 ], - "Texture": 1160 - }, - { - "Vertices": [ 403, 404, 347, 344 ], - "Texture": 1160 - }, - { - "Vertices": [ 344, 347, 343, 340 ], - "Texture": 1160 - }, - { - "Vertices": [ 399, 400, 402, 403 ], - "Texture": 1160 - }, - { - "Vertices": [ 401, 348, 349, 406 ], - "Texture": 1160 - }, - { - "Vertices": [ 350, 407, 408, 351 ], - "Texture": 1160 - }, - { - "Vertices": [ 407, 350, 404, 405 ], - "Texture": 1160 - }, - { - "Vertices": [ 406, 349, 352, 409 ], - "Texture": 1160 - }, - { - "Vertices": [ 411, 354, 353, 410 ], - "Texture": 1160 - }, - { - "Vertices": [ 353, 351, 408, 410 ], - "Texture": 1160 - }, - { - "Vertices": [ 409, 352, 355, 412 ], - "Texture": 1160 - }, - { - "Vertices": [ 413, 356, 354, 411 ], - "Texture": 1160 - }, - { - "Vertices": [ 412, 355, 357, 414 ], - "Texture": 1160 - }, - { - "Vertices": [ 415, 358, 356, 413 ], - "Texture": 1160 - }, - { - "Vertices": [ 414, 357, 359, 416 ], - "Texture": 1160 - }, - { - "Vertices": [ 418, 361, 360, 417 ], - "Texture": 1160 - }, - { - "Vertices": [ 415, 417, 360, 358 ], - "Texture": 1160 - }, - { - "Vertices": [ 421, 364, 365, 422 ], - "Texture": 1160 - }, - { - "Vertices": [ 424, 367, 366, 423 ], - "Texture": 1160 - }, - { - "Vertices": [ 419, 362, 364, 421 ], - "Texture": 1160 - }, - { - "Vertices": [ 423, 366, 363, 420 ], - "Texture": 1160 - }, - { - "Vertices": [ 420, 363, 362, 419 ], - "Texture": 1160 - }, - { - "Vertices": [ 422, 365, 368, 425 ], - "Texture": 1160 - }, - { - "Vertices": [ 426, 369, 367, 424 ], - "Texture": 1160 - }, - { - "Vertices": [ 425, 368, 370, 427 ], - "Texture": 1160 - }, - { - "Vertices": [ 428, 371, 369, 426 ], - "Texture": 1160 - }, - { - "Vertices": [ 427, 370, 372, 429 ], - "Texture": 1160 - }, - { - "Vertices": [ 430, 373, 371, 428 ], - "Texture": 1160 - }, - { - "Vertices": [ 429, 372, 374, 431 ], - "Texture": 1160 - }, - { - "Vertices": [ 433, 376, 375, 432 ], - "Texture": 1160 - }, - { - "Vertices": [ 430, 432, 375, 373 ], - "Texture": 1160 - }, - { - "Vertices": [ 431, 374, 377, 434 ], - "Texture": 1160 - }, - { - "Vertices": [ 436, 435, 376, 433 ], - "Texture": 1160 - }, - { - "Vertices": [ 376, 435, 380, 378 ], - "Texture": 1160 - }, - { - "Vertices": [ 434, 377, 381, 437 ], - "Texture": 1160 - }, - { - "Vertices": [ 439, 385, 382, 438 ], - "Texture": 1160 - }, - { - "Vertices": [ 438, 382, 435, 436 ], - "Texture": 1160 - }, - { - "Vertices": [ 437, 381, 386, 440 ], - "Texture": 1160 - }, - { - "Vertices": [ 441, 388, 385, 439 ], - "Texture": 1160 - }, - { - "Vertices": [ 440, 386, 389, 442 ], - "Texture": 1160 - }, - { - "Vertices": [ 443, 391, 388, 441 ], - "Texture": 1160 - }, - { - "Vertices": [ 442, 389, 392, 444 ], - "Texture": 1160 - }, - { - "Vertices": [ 445, 394, 391, 443 ], - "Texture": 1160 - }, - { - "Vertices": [ 444, 392, 395, 446 ], - "Texture": 1160 - }, - { - "Vertices": [ 447, 397, 394, 445 ], - "Texture": 1160 - }, - { - "Vertices": [ 446, 395, 398, 448 ], - "Texture": 1160 - }, - { - "Vertices": [ 449, 400, 397, 447 ], - "Texture": 1160 - }, - { - "Vertices": [ 448, 398, 401, 450 ], - "Texture": 1160 - }, - { - "Vertices": [ 452, 451, 453, 407 ], - "Texture": 1160 - }, - { - "Vertices": [ 452, 407, 405, 402 ], - "Texture": 1160 - }, - { - "Vertices": [ 400, 449, 451, 452 ], - "Texture": 1160 - }, - { - "Vertices": [ 450, 401, 406, 454 ], - "Texture": 1160 - }, - { - "Vertices": [ 407, 453, 455, 408 ], - "Texture": 1160 - }, - { - "Vertices": [ 454, 406, 409, 456 ], - "Texture": 1160 - }, - { - "Vertices": [ 458, 411, 410, 457 ], - "Texture": 1160 - }, - { - "Vertices": [ 410, 408, 455, 457 ], - "Texture": 1160 - }, - { - "Vertices": [ 456, 409, 412, 459 ], - "Texture": 1160 - }, - { - "Vertices": [ 460, 413, 411, 458 ], - "Texture": 1160 - }, - { - "Vertices": [ 459, 412, 414, 461 ], - "Texture": 1160 - }, - { - "Vertices": [ 462, 415, 413, 460 ], - "Texture": 1160 - }, - { - "Vertices": [ 461, 414, 416, 463 ], - "Texture": 1160 - }, - { - "Vertices": [ 465, 418, 417, 464 ], - "Texture": 1160 - }, - { - "Vertices": [ 462, 464, 417, 415 ], - "Texture": 1160 - }, - { - "Vertices": [ 466, 421, 422, 469 ], - "Texture": 1160 - }, - { - "Vertices": [ 471, 424, 423, 470 ], - "Texture": 1160 - }, - { - "Vertices": [ 470, 423, 467, 468 ], - "Texture": 1160 - }, - { - "Vertices": [ 469, 422, 425, 472 ], - "Texture": 1160 - }, - { - "Vertices": [ 473, 426, 424, 471 ], - "Texture": 1160 - }, - { - "Vertices": [ 472, 425, 427, 474 ], - "Texture": 1160 - }, - { - "Vertices": [ 475, 428, 426, 473 ], - "Texture": 1160 - }, - { - "Vertices": [ 474, 427, 429, 476 ], - "Texture": 1160 - }, - { - "Vertices": [ 477, 430, 428, 475 ], - "Texture": 1160 - }, - { - "Vertices": [ 476, 429, 431, 478 ], - "Texture": 1160 - }, - { - "Vertices": [ 480, 433, 432, 479 ], - "Texture": 1160 - }, - { - "Vertices": [ 477, 479, 432, 430 ], - "Texture": 1160 - }, - { - "Vertices": [ 478, 431, 434, 481 ], - "Texture": 1160 - }, - { - "Vertices": [ 482, 436, 433, 480 ], - "Texture": 1160 - }, - { - "Vertices": [ 481, 434, 437, 483 ], - "Texture": 1160 - }, - { - "Vertices": [ 485, 439, 438, 484 ], - "Texture": 1160 - }, - { - "Vertices": [ 484, 438, 436, 482 ], - "Texture": 1160 - }, - { - "Vertices": [ 483, 437, 440, 486 ], - "Texture": 1160 - }, - { - "Vertices": [ 487, 441, 439, 485 ], - "Texture": 1160 - }, - { - "Vertices": [ 488, 489, 490, 491 ], - "Texture": 1160 - }, - { - "Vertices": [ 492, 443, 441, 487 ], - "Texture": 1160 - }, - { - "Vertices": [ 490, 489, 440, 442 ], - "Texture": 1160 - }, - { - "Vertices": [ 489, 488, 486, 440 ], - "Texture": 1160 - }, - { - "Vertices": [ 491, 490, 493, 494 ], - "Texture": 1160 - }, - { - "Vertices": [ 495, 445, 443, 492 ], - "Texture": 1160 - }, - { - "Vertices": [ 493, 490, 442, 444 ], - "Texture": 1160 - }, - { - "Vertices": [ 496, 444, 446, 497 ], - "Texture": 1160 - }, - { - "Vertices": [ 498, 447, 445, 495 ], - "Texture": 1160 - }, - { - "Vertices": [ 494, 493, 444, 496 ], - "Texture": 1160 - }, - { - "Vertices": [ 497, 446, 448, 499 ], - "Texture": 1160 - }, - { - "Vertices": [ 500, 449, 447, 498 ], - "Texture": 1160 - }, - { - "Vertices": [ 448, 450, 501, 499 ], - "Texture": 1160 - }, - { - "Vertices": [ 451, 502, 503, 453 ], - "Texture": 1160 - }, - { - "Vertices": [ 449, 500, 502, 451 ], - "Texture": 1160 - }, - { - "Vertices": [ 501, 450, 454, 504 ], - "Texture": 1160 - }, - { - "Vertices": [ 453, 503, 505, 455 ], - "Texture": 1160 - }, - { - "Vertices": [ 504, 454, 456, 506 ], - "Texture": 1160 - }, - { - "Vertices": [ 508, 458, 457, 507 ], - "Texture": 1160 - }, - { - "Vertices": [ 457, 455, 505, 507 ], - "Texture": 1160 - }, - { - "Vertices": [ 506, 456, 459, 509 ], - "Texture": 1160 - }, - { - "Vertices": [ 510, 460, 458, 508 ], - "Texture": 1160 - }, - { - "Vertices": [ 509, 459, 461, 511 ], - "Texture": 1160 - }, - { - "Vertices": [ 512, 462, 460, 510 ], - "Texture": 1160 - }, - { - "Vertices": [ 511, 461, 463, 513 ], - "Texture": 1160 - }, - { - "Vertices": [ 515, 465, 464, 514 ], - "Texture": 1160 - }, - { - "Vertices": [ 512, 514, 464, 462 ], - "Texture": 1160 - }, - { - "Vertices": [ 516, 466, 469, 518 ], - "Texture": 1160 - }, - { - "Vertices": [ 520, 471, 470, 519 ], - "Texture": 1160 - }, - { - "Vertices": [ 519, 470, 468, 517 ], - "Texture": 1160 - }, - { - "Vertices": [ 518, 469, 472, 521 ], - "Texture": 1160 - }, - { - "Vertices": [ 522, 473, 471, 520 ], - "Texture": 1160 - }, - { - "Vertices": [ 521, 472, 474, 523 ], - "Texture": 1160 - }, - { - "Vertices": [ 524, 475, 473, 522 ], - "Texture": 1160 - }, - { - "Vertices": [ 523, 474, 476, 525 ], - "Texture": 1160 - }, - { - "Vertices": [ 526, 477, 475, 524 ], - "Texture": 1160 - }, - { - "Vertices": [ 525, 476, 478, 527 ], - "Texture": 1160 - }, - { - "Vertices": [ 529, 480, 479, 528 ], - "Texture": 1160 - }, - { - "Vertices": [ 526, 528, 479, 477 ], - "Texture": 1160 - }, - { - "Vertices": [ 527, 478, 481, 530 ], - "Texture": 1160 - }, - { - "Vertices": [ 531, 482, 480, 529 ], - "Texture": 1160 - }, - { - "Vertices": [ 530, 481, 483, 532 ], - "Texture": 1160 - }, - { - "Vertices": [ 534, 485, 484, 533 ], - "Texture": 1160 - }, - { - "Vertices": [ 533, 484, 482, 531 ], - "Texture": 1160 - }, - { - "Vertices": [ 532, 483, 486, 535 ], - "Texture": 1160 - }, - { - "Vertices": [ 536, 487, 485, 534 ], - "Texture": 1160 - }, - { - "Vertices": [ 491, 538, 537, 488 ], - "Texture": 1160 - }, - { - "Vertices": [ 539, 492, 487, 536 ], - "Texture": 1160 - }, - { - "Vertices": [ 488, 537, 535, 486 ], - "Texture": 1160 - }, - { - "Vertices": [ 540, 538, 491, 494 ], - "Texture": 1160 - }, - { - "Vertices": [ 541, 495, 492, 539 ], - "Texture": 1160 - }, - { - "Vertices": [ 542, 496, 497, 543 ], - "Texture": 1160 - }, - { - "Vertices": [ 544, 498, 495, 541 ], - "Texture": 1160 - }, - { - "Vertices": [ 540, 494, 496, 542 ], - "Texture": 1160 - }, - { - "Vertices": [ 543, 497, 499, 545 ], - "Texture": 1160 - }, - { - "Vertices": [ 546, 500, 498, 544 ], - "Texture": 1160 - }, - { - "Vertices": [ 545, 499, 501, 547 ], - "Texture": 1160 - }, - { - "Vertices": [ 502, 548, 549, 503 ], - "Texture": 1160 - }, - { - "Vertices": [ 500, 546, 548, 502 ], - "Texture": 1160 - }, - { - "Vertices": [ 547, 501, 504, 550 ], - "Texture": 1160 - }, - { - "Vertices": [ 503, 549, 551, 505 ], - "Texture": 1160 - }, - { - "Vertices": [ 550, 504, 506, 552 ], - "Texture": 1160 - }, - { - "Vertices": [ 554, 508, 507, 553 ], - "Texture": 1160 - }, - { - "Vertices": [ 507, 505, 551, 553 ], - "Texture": 1160 - }, - { - "Vertices": [ 552, 506, 509, 555 ], - "Texture": 1160 - }, - { - "Vertices": [ 556, 510, 508, 554 ], - "Texture": 1160 - }, - { - "Vertices": [ 555, 509, 511, 557 ], - "Texture": 1160 - }, - { - "Vertices": [ 558, 512, 510, 556 ], - "Texture": 1160 - }, - { - "Vertices": [ 557, 511, 513, 559 ], - "Texture": 1160 - }, - { - "Vertices": [ 561, 515, 514, 560 ], - "Texture": 1160 - }, - { - "Vertices": [ 558, 560, 514, 512 ], - "Texture": 1160 - }, - { - "Vertices": [ 566, 516, 518, 567 ], - "Texture": 1160 - }, - { - "Vertices": [ 569, 520, 519, 568 ], - "Texture": 1160 - }, - { - "Vertices": [ 563, 562, 516, 566 ], - "Texture": 1160 - }, - { - "Vertices": [ 568, 519, 564, 565 ], - "Texture": 1160 - }, - { - "Vertices": [ 565, 564, 562, 563 ], - "Texture": 1160 - }, - { - "Vertices": [ 567, 518, 521, 570 ], - "Texture": 1160 - }, - { - "Vertices": [ 571, 522, 520, 569 ], - "Texture": 1160 - }, - { - "Vertices": [ 570, 521, 523, 572 ], - "Texture": 1160 - }, - { - "Vertices": [ 573, 524, 522, 571 ], - "Texture": 1160 - }, - { - "Vertices": [ 572, 523, 525, 574 ], - "Texture": 1160 - }, - { - "Vertices": [ 575, 526, 524, 573 ], - "Texture": 1160 - }, - { - "Vertices": [ 574, 525, 527, 576 ], - "Texture": 1160 - }, - { - "Vertices": [ 578, 529, 528, 577 ], - "Texture": 1160 - }, - { - "Vertices": [ 575, 577, 528, 526 ], - "Texture": 1160 - }, - { - "Vertices": [ 576, 527, 530, 579 ], - "Texture": 1160 - }, - { - "Vertices": [ 580, 531, 529, 578 ], - "Texture": 1160 - }, - { - "Vertices": [ 579, 530, 532, 581 ], - "Texture": 1160 - }, - { - "Vertices": [ 583, 534, 533, 582 ], - "Texture": 1160 - }, - { - "Vertices": [ 582, 533, 531, 580 ], - "Texture": 1160 - }, - { - "Vertices": [ 581, 532, 535, 584 ], - "Texture": 1160 - }, - { - "Vertices": [ 585, 536, 534, 583 ], - "Texture": 1160 - }, - { - "Vertices": [ 584, 535, 586, 587 ], - "Texture": 1160 - }, - { - "Vertices": [ 588, 539, 536, 585 ], - "Texture": 1160 - }, - { - "Vertices": [ 537, 538, 586, 535 ], - "Texture": 1160 - }, - { - "Vertices": [ 587, 586, 542, 589 ], - "Texture": 1160 - }, - { - "Vertices": [ 590, 541, 539, 588 ], - "Texture": 1160 - }, - { - "Vertices": [ 538, 540, 542, 586 ], - "Texture": 1160 - }, - { - "Vertices": [ 589, 542, 543, 591 ], - "Texture": 1160 - }, - { - "Vertices": [ 592, 544, 541, 590 ], - "Texture": 1160 - }, - { - "Vertices": [ 591, 543, 545, 593 ], - "Texture": 1160 - }, - { - "Vertices": [ 594, 546, 544, 592 ], - "Texture": 1160 - }, - { - "Vertices": [ 593, 545, 547, 595 ], - "Texture": 1160 - }, - { - "Vertices": [ 548, 596, 597, 549 ], - "Texture": 1160 - }, - { - "Vertices": [ 546, 594, 596, 548 ], - "Texture": 1160 - }, - { - "Vertices": [ 595, 547, 550, 598 ], - "Texture": 1160 - }, - { - "Vertices": [ 549, 597, 599, 551 ], - "Texture": 1160 - }, - { - "Vertices": [ 598, 550, 552, 600 ], - "Texture": 1160 - }, - { - "Vertices": [ 602, 554, 553, 601 ], - "Texture": 1160 - }, - { - "Vertices": [ 553, 551, 599, 601 ], - "Texture": 1160 - }, - { - "Vertices": [ 600, 552, 555, 603 ], - "Texture": 1160 - }, - { - "Vertices": [ 604, 556, 554, 602 ], - "Texture": 1160 - }, - { - "Vertices": [ 603, 555, 557, 605 ], - "Texture": 1160 - }, - { - "Vertices": [ 606, 558, 556, 604 ], - "Texture": 1160 - }, - { - "Vertices": [ 605, 557, 559, 607 ], - "Texture": 1160 - }, - { - "Vertices": [ 609, 561, 560, 608 ], - "Texture": 1160 - }, - { - "Vertices": [ 606, 608, 560, 558 ], - "Texture": 1160 - }, - { - "Vertices": [ 612, 566, 567, 613 ], - "Texture": 1160 - }, - { - "Vertices": [ 615, 569, 568, 614 ], - "Texture": 1160 - }, - { - "Vertices": [ 610, 563, 566, 612 ], - "Texture": 1160 - }, - { - "Vertices": [ 614, 568, 565, 611 ], - "Texture": 1160 - }, - { - "Vertices": [ 611, 565, 563, 610 ], - "Texture": 1160 - }, - { - "Vertices": [ 613, 567, 570, 616 ], - "Texture": 1160 - }, - { - "Vertices": [ 617, 571, 569, 615 ], - "Texture": 1160 - }, - { - "Vertices": [ 616, 570, 572, 618 ], - "Texture": 1160 - }, - { - "Vertices": [ 619, 573, 571, 617 ], - "Texture": 1160 - }, - { - "Vertices": [ 618, 572, 574, 620 ], - "Texture": 1160 - }, - { - "Vertices": [ 621, 575, 573, 619 ], - "Texture": 1160 - }, - { - "Vertices": [ 620, 574, 576, 622 ], - "Texture": 1160 - }, - { - "Vertices": [ 624, 578, 577, 623 ], - "Texture": 1160 - }, - { - "Vertices": [ 621, 623, 577, 575 ], - "Texture": 1160 - }, - { - "Vertices": [ 622, 576, 579, 625 ], - "Texture": 1160 - }, - { - "Vertices": [ 626, 629, 628, 627 ], - "Texture": 1160 - }, - { - "Vertices": [ 580, 578, 627, 628 ], - "Texture": 1160 - }, - { - "Vertices": [ 578, 624, 626, 627 ], - "Texture": 1160 - }, - { - "Vertices": [ 625, 579, 581, 630 ], - "Texture": 1160 - }, - { - "Vertices": [ 632, 583, 582, 631 ], - "Texture": 1160 - }, - { - "Vertices": [ 631, 582, 628, 629 ], - "Texture": 1160 - }, - { - "Vertices": [ 630, 581, 584, 633 ], - "Texture": 1160 - }, - { - "Vertices": [ 634, 585, 583, 632 ], - "Texture": 1160 - }, - { - "Vertices": [ 633, 584, 587, 635 ], - "Texture": 1160 - }, - { - "Vertices": [ 636, 588, 585, 634 ], - "Texture": 1160 - }, - { - "Vertices": [ 635, 587, 589, 637 ], - "Texture": 1160 - }, - { - "Vertices": [ 638, 590, 588, 636 ], - "Texture": 1160 - }, - { - "Vertices": [ 637, 589, 591, 639 ], - "Texture": 1160 - }, - { - "Vertices": [ 640, 592, 590, 638 ], - "Texture": 1160 - }, - { - "Vertices": [ 639, 591, 593, 641 ], - "Texture": 1160 - }, - { - "Vertices": [ 642, 594, 592, 640 ], - "Texture": 1160 - }, - { - "Vertices": [ 641, 593, 595, 643 ], - "Texture": 1160 - }, - { - "Vertices": [ 644, 647, 646, 645 ], - "Texture": 1160 - }, - { - "Vertices": [ 597, 596, 645, 646 ], - "Texture": 1160 - }, - { - "Vertices": [ 594, 642, 644, 645 ], - "Texture": 1160 - }, - { - "Vertices": [ 643, 595, 598, 648 ], - "Texture": 1160 - }, - { - "Vertices": [ 597, 649, 650, 599 ], - "Texture": 1160 - }, - { - "Vertices": [ 649, 597, 646, 647 ], - "Texture": 1160 - }, - { - "Vertices": [ 648, 598, 600, 651 ], - "Texture": 1160 - }, - { - "Vertices": [ 653, 602, 601, 652 ], - "Texture": 1160 - }, - { - "Vertices": [ 601, 599, 650, 652 ], - "Texture": 1160 - }, - { - "Vertices": [ 651, 600, 603, 654 ], - "Texture": 1160 - }, - { - "Vertices": [ 655, 604, 602, 653 ], - "Texture": 1160 - }, - { - "Vertices": [ 654, 603, 605, 656 ], - "Texture": 1160 - }, - { - "Vertices": [ 657, 606, 604, 655 ], - "Texture": 1160 - }, - { - "Vertices": [ 656, 605, 607, 658 ], - "Texture": 1160 - }, - { - "Vertices": [ 660, 609, 608, 659 ], - "Texture": 1160 - }, - { - "Vertices": [ 657, 659, 608, 606 ], - "Texture": 1160 - }, - { - "Vertices": [ 663, 612, 613, 664 ], - "Texture": 1160 - }, - { - "Vertices": [ 666, 615, 614, 665 ], - "Texture": 1160 - }, - { - "Vertices": [ 661, 610, 612, 663 ], - "Texture": 1160 - }, - { - "Vertices": [ 665, 614, 611, 662 ], - "Texture": 1160 - }, - { - "Vertices": [ 662, 611, 610, 661 ], - "Texture": 1160 - }, - { - "Vertices": [ 664, 613, 616, 667 ], - "Texture": 1160 - }, - { - "Vertices": [ 668, 617, 615, 666 ], - "Texture": 1160 - }, - { - "Vertices": [ 667, 616, 618, 669 ], - "Texture": 1160 - }, - { - "Vertices": [ 670, 619, 617, 668 ], - "Texture": 1160 - }, - { - "Vertices": [ 669, 618, 620, 671 ], - "Texture": 1160 - }, - { - "Vertices": [ 672, 621, 619, 670 ], - "Texture": 1160 - }, - { - "Vertices": [ 671, 620, 622, 673 ], - "Texture": 1160 - }, - { - "Vertices": [ 675, 624, 623, 674 ], - "Texture": 1160 - }, - { - "Vertices": [ 672, 674, 623, 621 ], - "Texture": 1160 - }, - { - "Vertices": [ 678, 677, 622, 625 ], - "Texture": 1160 - }, - { - "Vertices": [ 629, 626, 681, 682 ], - "Texture": 1160 - }, - { - "Vertices": [ 682, 681, 677, 678 ], - "Texture": 1160 - }, - { - "Vertices": [ 677, 676, 673, 622 ], - "Texture": 1160 - }, - { - "Vertices": [ 624, 675, 680, 681 ], - "Texture": 1160 - }, - { - "Vertices": [ 681, 680, 676, 677 ], - "Texture": 1160 - }, - { - "Vertices": [ 684, 625, 630, 685 ], - "Texture": 1160 - }, - { - "Vertices": [ 687, 686, 689, 688 ], - "Texture": 1160 - }, - { - "Vertices": [ 632, 631, 687, 688 ], - "Texture": 1160 - }, - { - "Vertices": [ 679, 678, 625, 684 ], - "Texture": 1160 - }, - { - "Vertices": [ 686, 687, 682, 683 ], - "Texture": 1160 - }, - { - "Vertices": [ 683, 682, 678, 679 ], - "Texture": 1160 - }, - { - "Vertices": [ 685, 630, 633, 690 ], - "Texture": 1160 - }, - { - "Vertices": [ 693, 692, 691, 694 ], - "Texture": 1160 - }, - { - "Vertices": [ 634, 632, 692, 693 ], - "Texture": 1160 - }, - { - "Vertices": [ 691, 692, 688, 689 ], - "Texture": 1160 - }, - { - "Vertices": [ 690, 633, 635, 695 ], - "Texture": 1160 - }, - { - "Vertices": [ 696, 693, 694, 697 ], - "Texture": 1160 - }, - { - "Vertices": [ 636, 634, 693, 696 ], - "Texture": 1160 - }, - { - "Vertices": [ 695, 635, 637, 698 ], - "Texture": 1160 - }, - { - "Vertices": [ 699, 696, 697, 700 ], - "Texture": 1160 - }, - { - "Vertices": [ 638, 636, 696, 699 ], - "Texture": 1160 - }, - { - "Vertices": [ 698, 637, 639, 701 ], - "Texture": 1160 - }, - { - "Vertices": [ 702, 699, 700, 703 ], - "Texture": 1160 - }, - { - "Vertices": [ 640, 638, 699, 702 ], - "Texture": 1160 - }, - { - "Vertices": [ 701, 639, 641, 704 ], - "Texture": 1160 - }, - { - "Vertices": [ 707, 644, 706, 705 ], - "Texture": 1160 - }, - { - "Vertices": [ 642, 640, 706, 644 ], - "Texture": 1160 - }, - { - "Vertices": [ 702, 703, 705, 706 ], - "Texture": 1160 - }, - { - "Vertices": [ 710, 709, 641, 643 ], - "Texture": 1160 - }, - { - "Vertices": [ 647, 644, 713, 714 ], - "Texture": 1160 - }, - { - "Vertices": [ 714, 713, 709, 710 ], - "Texture": 1160 - }, - { - "Vertices": [ 709, 708, 704, 641 ], - "Texture": 1160 - }, - { - "Vertices": [ 644, 707, 712, 713 ], - "Texture": 1160 - }, - { - "Vertices": [ 713, 712, 708, 709 ], - "Texture": 1160 - }, - { - "Vertices": [ 716, 643, 648, 717 ], - "Texture": 1160 - }, - { - "Vertices": [ 649, 718, 719, 650 ], - "Texture": 1160 - }, - { - "Vertices": [ 711, 710, 643, 716 ], - "Texture": 1160 - }, - { - "Vertices": [ 718, 649, 714, 715 ], - "Texture": 1160 - }, - { - "Vertices": [ 715, 714, 710, 711 ], - "Texture": 1160 - }, - { - "Vertices": [ 717, 648, 651, 720 ], - "Texture": 1160 - }, - { - "Vertices": [ 722, 653, 652, 721 ], - "Texture": 1160 - }, - { - "Vertices": [ 652, 650, 719, 721 ], - "Texture": 1160 - }, - { - "Vertices": [ 720, 651, 654, 723 ], - "Texture": 1160 - }, - { - "Vertices": [ 724, 655, 653, 722 ], - "Texture": 1160 - }, - { - "Vertices": [ 723, 654, 656, 725 ], - "Texture": 1160 - }, - { - "Vertices": [ 726, 657, 655, 724 ], - "Texture": 1160 - }, - { - "Vertices": [ 725, 656, 658, 727 ], - "Texture": 1160 - }, - { - "Vertices": [ 729, 660, 659, 728 ], - "Texture": 1160 - }, - { - "Vertices": [ 726, 728, 659, 657 ], - "Texture": 1160 - }, - { - "Vertices": [ 732, 663, 664, 733 ], - "Texture": 1160 - }, - { - "Vertices": [ 735, 666, 665, 734 ], - "Texture": 1160 - }, - { - "Vertices": [ 730, 661, 663, 732 ], - "Texture": 1160 - }, - { - "Vertices": [ 734, 665, 662, 731 ], - "Texture": 1160 - }, - { - "Vertices": [ 731, 662, 661, 730 ], - "Texture": 1160 - }, - { - "Vertices": [ 733, 664, 667, 736 ], - "Texture": 1160 - }, - { - "Vertices": [ 737, 668, 666, 735 ], - "Texture": 1160 - }, - { - "Vertices": [ 736, 667, 669, 738 ], - "Texture": 1160 - }, - { - "Vertices": [ 739, 670, 668, 737 ], - "Texture": 1160 - }, - { - "Vertices": [ 738, 669, 671, 740 ], - "Texture": 1160 - }, - { - "Vertices": [ 741, 672, 670, 739 ], - "Texture": 1160 - }, - { - "Vertices": [ 740, 671, 673, 742 ], - "Texture": 1160 - }, - { - "Vertices": [ 743, 744, 675, 674 ], - "Texture": 1160 - }, - { - "Vertices": [ 741, 743, 674, 672 ], - "Texture": 1160 - }, - { - "Vertices": [ 742, 673, 684, 745 ], - "Texture": 1160 - }, - { - "Vertices": [ 746, 675, 744, 747 ], - "Texture": 1160 - }, - { - "Vertices": [ 676, 679, 684, 673 ], - "Texture": 1160 - }, - { - "Vertices": [ 675, 746, 683, 680 ], - "Texture": 1160 - }, - { - "Vertices": [ 680, 683, 679, 676 ], - "Texture": 1160 - }, - { - "Vertices": [ 745, 684, 685, 748 ], - "Texture": 1160 - }, - { - "Vertices": [ 691, 746, 747, 749 ], - "Texture": 1160 - }, - { - "Vertices": [ 746, 691, 689, 686 ], - "Texture": 1160 - }, - { - "Vertices": [ 748, 685, 690, 750 ], - "Texture": 1160 - }, - { - "Vertices": [ 694, 691, 749, 751 ], - "Texture": 1160 - }, - { - "Vertices": [ 750, 690, 695, 752 ], - "Texture": 1160 - }, - { - "Vertices": [ 697, 694, 751, 753 ], - "Texture": 1160 - }, - { - "Vertices": [ 752, 695, 698, 754 ], - "Texture": 1160 - }, - { - "Vertices": [ 700, 697, 753, 755 ], - "Texture": 1160 - }, - { - "Vertices": [ 754, 698, 701, 756 ], - "Texture": 1160 - }, - { - "Vertices": [ 703, 700, 755, 757 ], - "Texture": 1160 - }, - { - "Vertices": [ 756, 701, 704, 758 ], - "Texture": 1160 - }, - { - "Vertices": [ 759, 703, 757, 760 ], - "Texture": 1160 - }, - { - "Vertices": [ 703, 759, 707, 705 ], - "Texture": 1160 - }, - { - "Vertices": [ 758, 704, 716, 761 ], - "Texture": 1160 - }, - { - "Vertices": [ 718, 759, 760, 762 ], - "Texture": 1160 - }, - { - "Vertices": [ 708, 711, 716, 704 ], - "Texture": 1160 - }, - { - "Vertices": [ 759, 718, 715, 712 ], - "Texture": 1160 - }, - { - "Vertices": [ 712, 715, 711, 708 ], - "Texture": 1160 - }, - { - "Vertices": [ 761, 716, 717, 763 ], - "Texture": 1160 - }, - { - "Vertices": [ 764, 719, 718, 762 ], - "Texture": 1160 - }, - { - "Vertices": [ 763, 717, 720, 765 ], - "Texture": 1160 - }, - { - "Vertices": [ 767, 722, 721, 766 ], - "Texture": 1160 - }, - { - "Vertices": [ 721, 719, 764, 766 ], - "Texture": 1160 - }, - { - "Vertices": [ 765, 720, 723, 768 ], - "Texture": 1160 - }, - { - "Vertices": [ 769, 724, 722, 767 ], - "Texture": 1160 - }, - { - "Vertices": [ 768, 723, 725, 770 ], - "Texture": 1160 - }, - { - "Vertices": [ 771, 726, 724, 769 ], - "Texture": 1160 - }, - { - "Vertices": [ 770, 725, 727, 772 ], - "Texture": 1160 - }, - { - "Vertices": [ 774, 729, 728, 773 ], - "Texture": 1160 - }, - { - "Vertices": [ 771, 773, 728, 726 ], - "Texture": 1160 - }, - { - "Vertices": [ 777, 732, 733, 778 ], - "Texture": 1160 - }, - { - "Vertices": [ 780, 735, 734, 779 ], - "Texture": 1160 - }, - { - "Vertices": [ 775, 730, 732, 777 ], - "Texture": 1160 - }, - { - "Vertices": [ 779, 734, 731, 776 ], - "Texture": 1160 - }, - { - "Vertices": [ 776, 731, 730, 775 ], - "Texture": 1160 - }, - { - "Vertices": [ 778, 733, 736, 781 ], - "Texture": 1160 - }, - { - "Vertices": [ 782, 737, 735, 780 ], - "Texture": 1160 - }, - { - "Vertices": [ 781, 736, 738, 783 ], - "Texture": 1160 - }, - { - "Vertices": [ 784, 739, 737, 782 ], - "Texture": 1160 - }, - { - "Vertices": [ 783, 738, 740, 785 ], - "Texture": 1160 - }, - { - "Vertices": [ 786, 741, 739, 784 ], - "Texture": 1160 - }, - { - "Vertices": [ 785, 740, 742, 787 ], - "Texture": 1160 - }, - { - "Vertices": [ 789, 788, 741, 786 ], - "Texture": 1160 - }, - { - "Vertices": [ 788, 744, 743, 741 ], - "Texture": 1160 - }, - { - "Vertices": [ 787, 742, 745, 790 ], - "Texture": 1160 - }, - { - "Vertices": [ 792, 791, 788, 789 ], - "Texture": 1160 - }, - { - "Vertices": [ 791, 747, 744, 788 ], - "Texture": 1160 - }, - { - "Vertices": [ 790, 745, 748, 793 ], - "Texture": 1160 - }, - { - "Vertices": [ 795, 794, 791, 792 ], - "Texture": 1160 - }, - { - "Vertices": [ 794, 749, 747, 791 ], - "Texture": 1160 - }, - { - "Vertices": [ 793, 748, 750, 796 ], - "Texture": 1160 - }, - { - "Vertices": [ 798, 797, 794, 795 ], - "Texture": 1160 - }, - { - "Vertices": [ 797, 751, 749, 794 ], - "Texture": 1160 - }, - { - "Vertices": [ 796, 750, 752, 799 ], - "Texture": 1160 - }, - { - "Vertices": [ 801, 800, 797, 798 ], - "Texture": 1160 - }, - { - "Vertices": [ 800, 753, 751, 797 ], - "Texture": 1160 - }, - { - "Vertices": [ 799, 752, 754, 802 ], - "Texture": 1160 - }, - { - "Vertices": [ 804, 803, 800, 801 ], - "Texture": 1160 - }, - { - "Vertices": [ 803, 755, 753, 800 ], - "Texture": 1160 - }, - { - "Vertices": [ 802, 754, 756, 805 ], - "Texture": 1160 - }, - { - "Vertices": [ 807, 806, 803, 804 ], - "Texture": 1160 - }, - { - "Vertices": [ 806, 757, 755, 803 ], - "Texture": 1160 - }, - { - "Vertices": [ 805, 756, 758, 808 ], - "Texture": 1160 - }, - { - "Vertices": [ 810, 809, 806, 807 ], - "Texture": 1160 - }, - { - "Vertices": [ 809, 760, 757, 806 ], - "Texture": 1160 - }, - { - "Vertices": [ 808, 758, 761, 811 ], - "Texture": 1160 - }, - { - "Vertices": [ 813, 812, 809, 810 ], - "Texture": 1160 - }, - { - "Vertices": [ 812, 762, 760, 809 ], - "Texture": 1160 - }, - { - "Vertices": [ 811, 761, 763, 814 ], - "Texture": 1160 - }, - { - "Vertices": [ 815, 766, 812, 813 ], - "Texture": 1160 - }, - { - "Vertices": [ 766, 764, 762, 812 ], - "Texture": 1160 - }, - { - "Vertices": [ 814, 763, 765, 816 ], - "Texture": 1160 - }, - { - "Vertices": [ 817, 767, 766, 815 ], - "Texture": 1160 - }, - { - "Vertices": [ 816, 765, 768, 818 ], - "Texture": 1160 - }, - { - "Vertices": [ 819, 769, 767, 817 ], - "Texture": 1160 - }, - { - "Vertices": [ 818, 768, 770, 820 ], - "Texture": 1160 - }, - { - "Vertices": [ 821, 771, 769, 819 ], - "Texture": 1160 - }, - { - "Vertices": [ 820, 770, 772, 822 ], - "Texture": 1160 - }, - { - "Vertices": [ 824, 774, 773, 823 ], - "Texture": 1160 - }, - { - "Vertices": [ 821, 823, 773, 771 ], - "Texture": 1160 - }, - { - "Vertices": [ 827, 777, 778, 828 ], - "Texture": 1160 - }, - { - "Vertices": [ 830, 780, 779, 829 ], - "Texture": 1160 - }, - { - "Vertices": [ 825, 775, 777, 827 ], - "Texture": 1160 - }, - { - "Vertices": [ 829, 779, 776, 826 ], - "Texture": 1160 - }, - { - "Vertices": [ 826, 776, 775, 825 ], - "Texture": 1160 - }, - { - "Vertices": [ 828, 778, 781, 831 ], - "Texture": 1160 - }, - { - "Vertices": [ 832, 782, 780, 830 ], - "Texture": 1160 - }, - { - "Vertices": [ 831, 781, 783, 833 ], - "Texture": 1160 - }, - { - "Vertices": [ 834, 784, 782, 832 ], - "Texture": 1160 - }, - { - "Vertices": [ 833, 783, 785, 835 ], - "Texture": 1160 - }, - { - "Vertices": [ 836, 786, 784, 834 ], - "Texture": 1160 - }, - { - "Vertices": [ 835, 785, 787, 837 ], - "Texture": 1160 - }, - { - "Vertices": [ 838, 789, 786, 836 ], - "Texture": 1160 - }, - { - "Vertices": [ 837, 787, 790, 839 ], - "Texture": 1160 - }, - { - "Vertices": [ 840, 792, 789, 838 ], - "Texture": 1160 - }, - { - "Vertices": [ 839, 790, 793, 841 ], - "Texture": 1160 - }, - { - "Vertices": [ 842, 795, 792, 840 ], - "Texture": 1160 - }, - { - "Vertices": [ 841, 793, 796, 843 ], - "Texture": 1160 - }, - { - "Vertices": [ 844, 798, 795, 842 ], - "Texture": 1160 - }, - { - "Vertices": [ 843, 796, 799, 845 ], - "Texture": 1160 - }, - { - "Vertices": [ 846, 801, 798, 844 ], - "Texture": 1160 - }, - { - "Vertices": [ 845, 799, 802, 847 ], - "Texture": 1160 - }, - { - "Vertices": [ 848, 804, 801, 846 ], - "Texture": 1160 - }, - { - "Vertices": [ 847, 802, 805, 849 ], - "Texture": 1160 - }, - { - "Vertices": [ 850, 807, 804, 848 ], - "Texture": 1160 - }, - { - "Vertices": [ 849, 805, 808, 851 ], - "Texture": 1160 - }, - { - "Vertices": [ 852, 810, 807, 850 ], - "Texture": 1160 - }, - { - "Vertices": [ 851, 808, 811, 853 ], - "Texture": 1160 - }, - { - "Vertices": [ 854, 813, 810, 852 ], - "Texture": 1160 - }, - { - "Vertices": [ 853, 811, 814, 855 ], - "Texture": 1160 - }, - { - "Vertices": [ 856, 815, 813, 854 ], - "Texture": 1160 - }, - { - "Vertices": [ 855, 814, 816, 857 ], - "Texture": 1160 - }, - { - "Vertices": [ 858, 817, 815, 856 ], - "Texture": 1160 - }, - { - "Vertices": [ 857, 816, 818, 859 ], - "Texture": 1160 - }, - { - "Vertices": [ 860, 819, 817, 858 ], - "Texture": 1160 - }, - { - "Vertices": [ 859, 818, 820, 861 ], - "Texture": 1160 - }, - { - "Vertices": [ 862, 821, 819, 860 ], - "Texture": 1160 - }, - { - "Vertices": [ 861, 820, 822, 863 ], - "Texture": 1160 - }, - { - "Vertices": [ 865, 824, 823, 864 ], - "Texture": 1160 - }, - { - "Vertices": [ 862, 864, 823, 821 ], - "Texture": 1160 - }, - { - "Vertices": [ 868, 827, 828, 869 ], - "Texture": 1160 - }, - { - "Vertices": [ 871, 830, 829, 870 ], - "Texture": 1160 - }, - { - "Vertices": [ 866, 825, 827, 868 ], - "Texture": 1160 - }, - { - "Vertices": [ 870, 829, 826, 867 ], - "Texture": 1160 - }, - { - "Vertices": [ 867, 826, 825, 866 ], - "Texture": 1160 - }, - { - "Vertices": [ 869, 828, 831, 872 ], - "Texture": 1160 - }, - { - "Vertices": [ 873, 832, 830, 871 ], - "Texture": 1160 - }, - { - "Vertices": [ 872, 831, 833, 874 ], - "Texture": 1160 - }, - { - "Vertices": [ 875, 834, 832, 873 ], - "Texture": 1160 - }, - { - "Vertices": [ 874, 833, 835, 876 ], - "Texture": 1160 - }, - { - "Vertices": [ 877, 836, 834, 875 ], - "Texture": 1160 - }, - { - "Vertices": [ 876, 835, 837, 878 ], - "Texture": 1160 - }, - { - "Vertices": [ 879, 838, 836, 877 ], - "Texture": 1160 - }, - { - "Vertices": [ 878, 837, 839, 880 ], - "Texture": 1160 - }, - { - "Vertices": [ 881, 840, 838, 879 ], - "Texture": 1160 - }, - { - "Vertices": [ 880, 839, 841, 882 ], - "Texture": 1160 - }, - { - "Vertices": [ 883, 842, 840, 881 ], - "Texture": 1160 - }, - { - "Vertices": [ 882, 841, 843, 884 ], - "Texture": 1160 - }, - { - "Vertices": [ 885, 844, 842, 883 ], - "Texture": 1160 - }, - { - "Vertices": [ 884, 843, 845, 886 ], - "Texture": 1160 - }, - { - "Vertices": [ 887, 846, 844, 885 ], - "Texture": 1160 - }, - { - "Vertices": [ 886, 845, 847, 888 ], - "Texture": 1160 - }, - { - "Vertices": [ 889, 848, 846, 887 ], - "Texture": 1160 - }, - { - "Vertices": [ 888, 847, 849, 890 ], - "Texture": 1160 - }, - { - "Vertices": [ 891, 850, 848, 889 ], - "Texture": 1160 - }, - { - "Vertices": [ 890, 849, 851, 892 ], - "Texture": 1160 - }, - { - "Vertices": [ 893, 852, 850, 891 ], - "Texture": 1160 - }, - { - "Vertices": [ 892, 851, 853, 894 ], - "Texture": 1160 - }, - { - "Vertices": [ 895, 854, 852, 893 ], - "Texture": 1160 - }, - { - "Vertices": [ 894, 853, 855, 896 ], - "Texture": 1160 - }, - { - "Vertices": [ 897, 856, 854, 895 ], - "Texture": 1160 - }, - { - "Vertices": [ 896, 855, 857, 898 ], - "Texture": 1160 - }, - { - "Vertices": [ 899, 858, 856, 897 ], - "Texture": 1160 - }, - { - "Vertices": [ 898, 857, 859, 900 ], - "Texture": 1160 - }, - { - "Vertices": [ 901, 860, 858, 899 ], - "Texture": 1160 - }, - { - "Vertices": [ 900, 859, 861, 902 ], - "Texture": 1160 - }, - { - "Vertices": [ 903, 862, 860, 901 ], - "Texture": 1160 - }, - { - "Vertices": [ 902, 861, 863, 904 ], - "Texture": 1160 - }, - { - "Vertices": [ 906, 865, 864, 905 ], - "Texture": 1160 - }, - { - "Vertices": [ 903, 905, 864, 862 ], - "Texture": 1160 - }, - { - "Vertices": [ 909, 868, 869, 910 ], - "Texture": 1160 - }, - { - "Vertices": [ 912, 871, 870, 911 ], - "Texture": 1160 - }, - { - "Vertices": [ 907, 866, 868, 909 ], - "Texture": 1160 - }, - { - "Vertices": [ 911, 870, 867, 908 ], - "Texture": 1160 - }, - { - "Vertices": [ 908, 867, 866, 907 ], - "Texture": 1160 - }, - { - "Vertices": [ 910, 869, 872, 913 ], - "Texture": 1160 - }, - { - "Vertices": [ 914, 873, 871, 912 ], - "Texture": 1160 - }, - { - "Vertices": [ 913, 872, 874, 915 ], - "Texture": 1160 - }, - { - "Vertices": [ 916, 875, 873, 914 ], - "Texture": 1160 - }, - { - "Vertices": [ 915, 874, 876, 917 ], - "Texture": 1160 - }, - { - "Vertices": [ 918, 877, 875, 916 ], - "Texture": 1160 - }, - { - "Vertices": [ 917, 876, 878, 919 ], - "Texture": 1160 - }, - { - "Vertices": [ 920, 879, 877, 918 ], - "Texture": 1160 - }, - { - "Vertices": [ 919, 878, 880, 921 ], - "Texture": 1160 - }, - { - "Vertices": [ 922, 881, 879, 920 ], - "Texture": 1160 - }, - { - "Vertices": [ 921, 880, 882, 923 ], - "Texture": 1160 - }, - { - "Vertices": [ 924, 883, 881, 922 ], - "Texture": 1160 - }, - { - "Vertices": [ 923, 882, 884, 925 ], - "Texture": 1160 - }, - { - "Vertices": [ 926, 885, 883, 924 ], - "Texture": 1160 - }, - { - "Vertices": [ 925, 884, 886, 927 ], - "Texture": 1160 - }, - { - "Vertices": [ 928, 887, 885, 926 ], - "Texture": 1160 - }, - { - "Vertices": [ 927, 886, 888, 929 ], - "Texture": 1160 - }, - { - "Vertices": [ 930, 889, 887, 928 ], - "Texture": 1160 - }, - { - "Vertices": [ 929, 888, 890, 931 ], - "Texture": 1160 - }, - { - "Vertices": [ 932, 891, 889, 930 ], - "Texture": 1160 - }, - { - "Vertices": [ 890, 892, 933, 931 ], - "Texture": 1160 - }, - { - "Vertices": [ 934, 893, 891, 932 ], - "Texture": 1160 - }, - { - "Vertices": [ 933, 892, 894, 935 ], - "Texture": 1160 - }, - { - "Vertices": [ 936, 895, 893, 934 ], - "Texture": 1160 - }, - { - "Vertices": [ 935, 894, 896, 937 ], - "Texture": 1160 - }, - { - "Vertices": [ 938, 897, 895, 936 ], - "Texture": 1160 - }, - { - "Vertices": [ 937, 896, 898, 939 ], - "Texture": 1160 - }, - { - "Vertices": [ 940, 899, 897, 938 ], - "Texture": 1160 - }, - { - "Vertices": [ 939, 898, 900, 941 ], - "Texture": 1160 - }, - { - "Vertices": [ 942, 901, 899, 940 ], - "Texture": 1160 - }, - { - "Vertices": [ 941, 900, 902, 943 ], - "Texture": 1160 - }, - { - "Vertices": [ 944, 903, 901, 942 ], - "Texture": 1160 - }, - { - "Vertices": [ 943, 902, 904, 945 ], - "Texture": 1160 - }, - { - "Vertices": [ 949, 948, 947, 946 ], - "Texture": 1160 - }, - { - "Vertices": [ 905, 947, 948, 906 ], - "Texture": 1160 - }, - { - "Vertices": [ 903, 944, 946, 947 ], - "Texture": 1160 - }, - { - "Vertices": [ 951, 950, 909, 910 ], - "Texture": 1160 - }, - { - "Vertices": [ 912, 911, 952, 953 ], - "Texture": 1160 - }, - { - "Vertices": [ 953, 952, 950, 951 ], - "Texture": 1160 - }, - { - "Vertices": [ 954, 951, 910, 913 ], - "Texture": 1160 - }, - { - "Vertices": [ 914, 912, 953, 955 ], - "Texture": 1160 - }, - { - "Vertices": [ 955, 953, 951, 954 ], - "Texture": 1160 - }, - { - "Vertices": [ 956, 954, 913, 915 ], - "Texture": 1160 - }, - { - "Vertices": [ 916, 914, 955, 957 ], - "Texture": 1160 - }, - { - "Vertices": [ 957, 955, 954, 956 ], - "Texture": 1160 - }, - { - "Vertices": [ 958, 956, 915, 917 ], - "Texture": 1160 - }, - { - "Vertices": [ 918, 916, 957, 959 ], - "Texture": 1160 - }, - { - "Vertices": [ 959, 957, 956, 958 ], - "Texture": 1160 - }, - { - "Vertices": [ 960, 958, 917, 919 ], - "Texture": 1160 - }, - { - "Vertices": [ 920, 918, 959, 961 ], - "Texture": 1160 - }, - { - "Vertices": [ 961, 959, 958, 960 ], - "Texture": 1160 - }, - { - "Vertices": [ 962, 960, 919, 921 ], - "Texture": 1160 - }, - { - "Vertices": [ 922, 920, 961, 963 ], - "Texture": 1160 - }, - { - "Vertices": [ 963, 961, 960, 962 ], - "Texture": 1160 - }, - { - "Vertices": [ 964, 962, 921, 923 ], - "Texture": 1160 - }, - { - "Vertices": [ 924, 922, 963, 965 ], - "Texture": 1160 - }, - { - "Vertices": [ 965, 963, 962, 964 ], - "Texture": 1160 - }, - { - "Vertices": [ 966, 964, 923, 925 ], - "Texture": 1160 - }, - { - "Vertices": [ 926, 924, 965, 967 ], - "Texture": 1160 - }, - { - "Vertices": [ 967, 965, 964, 966 ], - "Texture": 1160 - }, - { - "Vertices": [ 968, 966, 925, 927 ], - "Texture": 1160 - }, - { - "Vertices": [ 928, 926, 967, 969 ], - "Texture": 1160 - }, - { - "Vertices": [ 969, 967, 966, 968 ], - "Texture": 1160 - }, - { - "Vertices": [ 970, 968, 927, 929 ], - "Texture": 1160 - }, - { - "Vertices": [ 930, 928, 969, 971 ], - "Texture": 1160 - }, - { - "Vertices": [ 971, 969, 968, 970 ], - "Texture": 1160 - }, - { - "Vertices": [ 972, 970, 929, 931 ], - "Texture": 1160 - }, - { - "Vertices": [ 932, 930, 971, 973 ], - "Texture": 1160 - }, - { - "Vertices": [ 973, 971, 970, 972 ], - "Texture": 1160 - }, - { - "Vertices": [ 974, 972, 931, 933 ], - "Texture": 1160 - }, - { - "Vertices": [ 934, 932, 973, 975 ], - "Texture": 1160 - }, - { - "Vertices": [ 975, 973, 972, 974 ], - "Texture": 1160 - }, - { - "Vertices": [ 976, 974, 933, 935 ], - "Texture": 1160 - }, - { - "Vertices": [ 936, 934, 975, 977 ], - "Texture": 1160 - }, - { - "Vertices": [ 977, 975, 974, 976 ], - "Texture": 1160 - }, - { - "Vertices": [ 978, 976, 935, 937 ], - "Texture": 1160 - }, - { - "Vertices": [ 938, 936, 977, 979 ], - "Texture": 1160 - }, - { - "Vertices": [ 979, 977, 976, 978 ], - "Texture": 1160 - }, - { - "Vertices": [ 980, 978, 937, 939 ], - "Texture": 1160 - }, - { - "Vertices": [ 940, 938, 979, 981 ], - "Texture": 1160 - }, - { - "Vertices": [ 981, 979, 978, 980 ], - "Texture": 1160 - }, - { - "Vertices": [ 982, 980, 939, 941 ], - "Texture": 1160 - }, - { - "Vertices": [ 942, 940, 981, 983 ], - "Texture": 1160 - }, - { - "Vertices": [ 983, 981, 980, 982 ], - "Texture": 1160 - }, - { - "Vertices": [ 984, 982, 941, 943 ], - "Texture": 1160 - }, - { - "Vertices": [ 944, 942, 983, 985 ], - "Texture": 1160 - }, - { - "Vertices": [ 985, 983, 982, 984 ], - "Texture": 1160 - }, - { - "Vertices": [ 986, 984, 943, 945 ], - "Texture": 1160 - }, - { - "Vertices": [ 949, 946, 985, 987 ], - "Texture": 1160 - }, - { - "Vertices": [ 987, 985, 984, 986 ], - "Texture": 1160 - }, - { - "Vertices": [ 36, 988, 113, 112 ], - "Texture": 1160 - }, - { - "Vertices": [ 988, 989, 157, 113 ], - "Texture": 1160 - }, - { - "Vertices": [ 989, 990, 199, 157 ], - "Texture": 1160 - }, - { - "Vertices": [ 990, 991, 240, 199 ], - "Texture": 1160 - }, - { - "Vertices": [ 991, 992, 294, 240 ], - "Texture": 1160 - }, - { - "Vertices": [ 992, 993, 359, 294 ], - "Texture": 1160 - }, - { - "Vertices": [ 993, 994, 416, 359 ], - "Texture": 1160 - }, - { - "Vertices": [ 994, 995, 463, 416 ], - "Texture": 1160 - }, - { - "Vertices": [ 995, 996, 513, 463 ], - "Texture": 1160 - }, - { - "Vertices": [ 996, 997, 559, 513 ], - "Texture": 1160 - }, - { - "Vertices": [ 997, 998, 607, 559 ], - "Texture": 1160 - }, - { - "Vertices": [ 998, 999, 658, 607 ], - "Texture": 1160 - }, - { - "Vertices": [ 999, 1000, 727, 658 ], - "Texture": 1160 - }, - { - "Vertices": [ 1000, 1001, 772, 727 ], - "Texture": 1160 - }, - { - "Vertices": [ 1001, 1002, 822, 772 ], - "Texture": 1160 - }, - { - "Vertices": [ 1002, 1003, 863, 822 ], - "Texture": 1160 - }, - { - "Vertices": [ 1003, 1004, 904, 863 ], - "Texture": 1160 - }, - { - "Vertices": [ 1004, 986, 945, 904 ], - "Texture": 1160 - }, - { - "Vertices": [ 37, 1005, 988, 36 ], - "Texture": 1160 - }, - { - "Vertices": [ 1005, 1006, 989, 988 ], - "Texture": 1160 - }, - { - "Vertices": [ 1006, 1007, 990, 989 ], - "Texture": 1160 - }, - { - "Vertices": [ 1007, 1008, 991, 990 ], - "Texture": 1160 - }, - { - "Vertices": [ 1008, 1009, 992, 991 ], - "Texture": 1160 - }, - { - "Vertices": [ 1009, 1010, 993, 992 ], - "Texture": 1160 - }, - { - "Vertices": [ 1010, 1011, 994, 993 ], - "Texture": 1160 - }, - { - "Vertices": [ 1011, 1012, 995, 994 ], - "Texture": 1160 - }, - { - "Vertices": [ 1012, 1013, 996, 995 ], - "Texture": 1160 - }, - { - "Vertices": [ 1013, 1014, 997, 996 ], - "Texture": 1160 - }, - { - "Vertices": [ 1014, 1015, 998, 997 ], - "Texture": 1160 - }, - { - "Vertices": [ 1015, 1016, 999, 998 ], - "Texture": 1160 - }, - { - "Vertices": [ 1016, 1017, 1000, 999 ], - "Texture": 1160 - }, - { - "Vertices": [ 1017, 1018, 1001, 1000 ], - "Texture": 1160 - }, - { - "Vertices": [ 1018, 1019, 1002, 1001 ], - "Texture": 1160 - }, - { - "Vertices": [ 1019, 1020, 1003, 1002 ], - "Texture": 1160 - }, - { - "Vertices": [ 1020, 1021, 1004, 1003 ], - "Texture": 1160 - }, - { - "Vertices": [ 1021, 987, 986, 1004 ], - "Texture": 1160 - }, - { - "Vertices": [ 116, 117, 1005, 37 ], - "Texture": 1160 - }, - { - "Vertices": [ 118, 160, 1006, 1005 ], - "Texture": 1160 - }, - { - "Vertices": [ 160, 201, 1007, 1006 ], - "Texture": 1160 - }, - { - "Vertices": [ 201, 242, 1008, 1007 ], - "Texture": 1160 - }, - { - "Vertices": [ 242, 296, 1009, 1008 ], - "Texture": 1160 - }, - { - "Vertices": [ 296, 361, 1010, 1009 ], - "Texture": 1160 - }, - { - "Vertices": [ 361, 418, 1011, 1010 ], - "Texture": 1160 - }, - { - "Vertices": [ 418, 465, 1012, 1011 ], - "Texture": 1160 - }, - { - "Vertices": [ 465, 515, 1013, 1012 ], - "Texture": 1160 - }, - { - "Vertices": [ 515, 561, 1014, 1013 ], - "Texture": 1160 - }, - { - "Vertices": [ 561, 609, 1015, 1014 ], - "Texture": 1160 - }, - { - "Vertices": [ 609, 660, 1016, 1015 ], - "Texture": 1160 - }, - { - "Vertices": [ 660, 729, 1017, 1016 ], - "Texture": 1160 - }, - { - "Vertices": [ 729, 774, 1018, 1017 ], - "Texture": 1160 - }, - { - "Vertices": [ 774, 824, 1019, 1018 ], - "Texture": 1160 - }, - { - "Vertices": [ 824, 865, 1020, 1019 ], - "Texture": 1160 - }, - { - "Vertices": [ 865, 906, 1021, 1020 ], - "Texture": 1160 - }, - { - "Vertices": [ 948, 949, 987, 1021 ], - "Texture": 1160 - }, - { - "Vertices": [ 517, 468, 466, 516 ], - "Texture": 1147 - }, - { - "Vertices": [ 468, 467, 421, 466 ], - "Texture": 1151 - } - ], - "NumTriangles": 0, - "Triangles": [], - "NumSprites": 0, - "Sprites": [] - }, - "NumPortals": 0, - "Portals": [], - "NumZSectors": 20, - "NumXSectors": 20, - "SectorList": [ - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 4 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 4 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 4 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 4 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 4 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 20, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 20, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 20, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 20, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 4 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": -2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 4 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 4 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 4 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 3 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 2 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": 21, - "RoomAbove": 255, - "Ceiling": 4 - - - }, - { - "FDIndex": 0, - "BoxIndex": 625, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - }, - { - "FDIndex": 0, - "BoxIndex": 65535, - "RoomBelow": 255, - "Floor": -127, - "RoomAbove": 255, - "Ceiling": -127 - - - } - ], - "AmbientIntensity": 7935, - "AmbientIntensity2": 7935, - "LightMode": 0, - "NumLights": 1, - "Lights": [ - { - "X": 68608, - "Y": 4352, - "Z": 76288, - "Intensity1": 7167, - "Intensity2": 7167, - "Fade1": 3177, - "Fade2": 3177 - } - ], - "NumStaticMeshes": 0, - "StaticMeshes": [], - "AlternateRoom": -1, - "Flags": 64 - }, - "FloorData": {} - } -} \ No newline at end of file +{"18":{"Room":{"Info":{"X":58368,"Z":65536,"YBottom":5376,"YTop":-512},"Portals":[],"NumZSectors":20,"NumXSectors":20,"Sectors":[{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":4},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":4},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":4},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":4},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":4},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":20,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":20,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":20,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":20,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":4},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":-2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":4},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":4},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":4},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":3},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":2},{"BoxIndex":625,"RoomBelow":255,"Floor":21,"RoomAbove":255,"Ceiling":4},{"BoxIndex":625,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127},{"BoxIndex":65535,"RoomBelow":255,"Floor":-127,"RoomAbove":255,"Ceiling":-127}],"AlternateRoom":-1,"Flags":64,"Mesh":{"Vertices":[{"Vertex":{"X":1024,"Y":3840,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":3840,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":2048,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":2048,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":3840,"Z":3072},"Lighting":7467,"Attributes":16,"Lighting2":7467},{"Vertex":{"X":1024,"Y":2048,"Z":3072},"Lighting":7481,"Attributes":16,"Lighting2":7481},{"Vertex":{"X":1024,"Y":3840,"Z":4096},"Lighting":7417,"Attributes":16,"Lighting2":7417},{"Vertex":{"X":1024,"Y":2048,"Z":4096},"Lighting":7435,"Attributes":16,"Lighting2":7435},{"Vertex":{"X":1024,"Y":3840,"Z":5120},"Lighting":7366,"Attributes":16,"Lighting2":7366},{"Vertex":{"X":1024,"Y":2048,"Z":5120},"Lighting":7388,"Attributes":16,"Lighting2":7388},{"Vertex":{"X":1024,"Y":3840,"Z":6144},"Lighting":7315,"Attributes":16,"Lighting2":7315},{"Vertex":{"X":1024,"Y":2048,"Z":6144},"Lighting":7340,"Attributes":16,"Lighting2":7340},{"Vertex":{"X":1024,"Y":3840,"Z":7168},"Lighting":7267,"Attributes":16,"Lighting2":7267},{"Vertex":{"X":1024,"Y":2048,"Z":7168},"Lighting":7296,"Attributes":16,"Lighting2":7296},{"Vertex":{"X":1024,"Y":3840,"Z":8192},"Lighting":7225,"Attributes":16,"Lighting2":7225},{"Vertex":{"X":1024,"Y":2048,"Z":8192},"Lighting":7259,"Attributes":16,"Lighting2":7259},{"Vertex":{"X":1024,"Y":3840,"Z":9216},"Lighting":7195,"Attributes":16,"Lighting2":7195},{"Vertex":{"X":1024,"Y":2048,"Z":9216},"Lighting":7231,"Attributes":16,"Lighting2":7231},{"Vertex":{"X":1024,"Y":3840,"Z":10240},"Lighting":7178,"Attributes":16,"Lighting2":7178},{"Vertex":{"X":1024,"Y":2048,"Z":10240},"Lighting":7216,"Attributes":16,"Lighting2":7216},{"Vertex":{"X":1024,"Y":3840,"Z":11264},"Lighting":7178,"Attributes":16,"Lighting2":7178},{"Vertex":{"X":1024,"Y":2048,"Z":11264},"Lighting":7216,"Attributes":16,"Lighting2":7216},{"Vertex":{"X":1024,"Y":3840,"Z":12288},"Lighting":7195,"Attributes":16,"Lighting2":7195},{"Vertex":{"X":1024,"Y":2048,"Z":12288},"Lighting":7231,"Attributes":16,"Lighting2":7231},{"Vertex":{"X":1024,"Y":3840,"Z":13312},"Lighting":7225,"Attributes":16,"Lighting2":7225},{"Vertex":{"X":1024,"Y":2048,"Z":13312},"Lighting":7259,"Attributes":16,"Lighting2":7259},{"Vertex":{"X":1024,"Y":3840,"Z":14336},"Lighting":7267,"Attributes":16,"Lighting2":7267},{"Vertex":{"X":1024,"Y":2048,"Z":14336},"Lighting":7296,"Attributes":16,"Lighting2":7296},{"Vertex":{"X":1024,"Y":3840,"Z":15360},"Lighting":7315,"Attributes":16,"Lighting2":7315},{"Vertex":{"X":1024,"Y":2048,"Z":15360},"Lighting":7340,"Attributes":16,"Lighting2":7340},{"Vertex":{"X":1024,"Y":3840,"Z":16384},"Lighting":7366,"Attributes":16,"Lighting2":7366},{"Vertex":{"X":1024,"Y":2048,"Z":16384},"Lighting":7388,"Attributes":16,"Lighting2":7388},{"Vertex":{"X":1024,"Y":3840,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":2048,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":3840,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":2048,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":3840,"Z":19456},"Lighting":6554,"Attributes":16,"Lighting2":6554},{"Vertex":{"X":1024,"Y":2048,"Z":19456},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":3840,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":2048,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":5376,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":5376,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":5376,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":5376,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":512,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":512,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":512,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":512,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":5376,"Z":3072},"Lighting":7469,"Attributes":16,"Lighting2":7469},{"Vertex":{"X":2048,"Y":5376,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":512,"Z":3072},"Lighting":7507,"Attributes":16,"Lighting2":7507},{"Vertex":{"X":2048,"Y":512,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":5376,"Z":4096},"Lighting":7420,"Attributes":16,"Lighting2":7420},{"Vertex":{"X":2048,"Y":5376,"Z":4096},"Lighting":7345,"Attributes":16,"Lighting2":7345},{"Vertex":{"X":1024,"Y":512,"Z":4096},"Lighting":7466,"Attributes":16,"Lighting2":7466},{"Vertex":{"X":2048,"Y":512,"Z":4096},"Lighting":7405,"Attributes":16,"Lighting2":7405},{"Vertex":{"X":1024,"Y":5376,"Z":5120},"Lighting":7369,"Attributes":16,"Lighting2":7369},{"Vertex":{"X":2048,"Y":5376,"Z":5120},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":1024,"Y":512,"Z":5120},"Lighting":7424,"Attributes":16,"Lighting2":7424},{"Vertex":{"X":2048,"Y":512,"Z":5120},"Lighting":7351,"Attributes":16,"Lighting2":7351},{"Vertex":{"X":1024,"Y":5376,"Z":6144},"Lighting":7319,"Attributes":16,"Lighting2":7319},{"Vertex":{"X":2048,"Y":5376,"Z":6144},"Lighting":7208,"Attributes":16,"Lighting2":7208},{"Vertex":{"X":1024,"Y":512,"Z":6144},"Lighting":7383,"Attributes":16,"Lighting2":7383},{"Vertex":{"X":2048,"Y":512,"Z":6144},"Lighting":7296,"Attributes":16,"Lighting2":7296},{"Vertex":{"X":1024,"Y":5376,"Z":7168},"Lighting":7271,"Attributes":16,"Lighting2":7271},{"Vertex":{"X":2048,"Y":5376,"Z":7168},"Lighting":7141,"Attributes":16,"Lighting2":7141},{"Vertex":{"X":1024,"Y":512,"Z":7168},"Lighting":7346,"Attributes":16,"Lighting2":7346},{"Vertex":{"X":2048,"Y":512,"Z":7168},"Lighting":7245,"Attributes":16,"Lighting2":7245},{"Vertex":{"X":1024,"Y":5376,"Z":8192},"Lighting":7231,"Attributes":16,"Lighting2":7231},{"Vertex":{"X":2048,"Y":5376,"Z":8192},"Lighting":7082,"Attributes":16,"Lighting2":7082},{"Vertex":{"X":1024,"Y":512,"Z":8192},"Lighting":7314,"Attributes":16,"Lighting2":7314},{"Vertex":{"X":2048,"Y":512,"Z":8192},"Lighting":7201,"Attributes":16,"Lighting2":7201},{"Vertex":{"X":1024,"Y":5376,"Z":9216},"Lighting":7201,"Attributes":16,"Lighting2":7201},{"Vertex":{"X":2048,"Y":5376,"Z":9216},"Lighting":7038,"Attributes":16,"Lighting2":7038},{"Vertex":{"X":1024,"Y":512,"Z":9216},"Lighting":7290,"Attributes":16,"Lighting2":7290},{"Vertex":{"X":2048,"Y":512,"Z":9216},"Lighting":7168,"Attributes":16,"Lighting2":7168},{"Vertex":{"X":1024,"Y":5376,"Z":10240},"Lighting":7185,"Attributes":16,"Lighting2":7185},{"Vertex":{"X":2048,"Y":5376,"Z":10240},"Lighting":7014,"Attributes":16,"Lighting2":7014},{"Vertex":{"X":1024,"Y":512,"Z":10240},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":2048,"Y":512,"Z":10240},"Lighting":7151,"Attributes":16,"Lighting2":7151},{"Vertex":{"X":1024,"Y":5376,"Z":11264},"Lighting":7185,"Attributes":16,"Lighting2":7185},{"Vertex":{"X":2048,"Y":5376,"Z":11264},"Lighting":7014,"Attributes":16,"Lighting2":7014},{"Vertex":{"X":1024,"Y":512,"Z":11264},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":2048,"Y":512,"Z":11264},"Lighting":7151,"Attributes":16,"Lighting2":7151},{"Vertex":{"X":1024,"Y":5376,"Z":12288},"Lighting":7201,"Attributes":16,"Lighting2":7201},{"Vertex":{"X":2048,"Y":5376,"Z":12288},"Lighting":7038,"Attributes":16,"Lighting2":7038},{"Vertex":{"X":1024,"Y":512,"Z":12288},"Lighting":7290,"Attributes":16,"Lighting2":7290},{"Vertex":{"X":2048,"Y":512,"Z":12288},"Lighting":7168,"Attributes":16,"Lighting2":7168},{"Vertex":{"X":1024,"Y":5376,"Z":13312},"Lighting":7231,"Attributes":16,"Lighting2":7231},{"Vertex":{"X":2048,"Y":5376,"Z":13312},"Lighting":7082,"Attributes":16,"Lighting2":7082},{"Vertex":{"X":1024,"Y":512,"Z":13312},"Lighting":7314,"Attributes":16,"Lighting2":7314},{"Vertex":{"X":2048,"Y":512,"Z":13312},"Lighting":7201,"Attributes":16,"Lighting2":7201},{"Vertex":{"X":1024,"Y":5376,"Z":14336},"Lighting":7271,"Attributes":16,"Lighting2":7271},{"Vertex":{"X":2048,"Y":5376,"Z":14336},"Lighting":7141,"Attributes":16,"Lighting2":7141},{"Vertex":{"X":1024,"Y":512,"Z":14336},"Lighting":7346,"Attributes":16,"Lighting2":7346},{"Vertex":{"X":2048,"Y":512,"Z":14336},"Lighting":7245,"Attributes":16,"Lighting2":7245},{"Vertex":{"X":1024,"Y":5376,"Z":15360},"Lighting":7319,"Attributes":16,"Lighting2":7319},{"Vertex":{"X":2048,"Y":5376,"Z":15360},"Lighting":7208,"Attributes":16,"Lighting2":7208},{"Vertex":{"X":1024,"Y":512,"Z":15360},"Lighting":7383,"Attributes":16,"Lighting2":7383},{"Vertex":{"X":2048,"Y":512,"Z":15360},"Lighting":7296,"Attributes":16,"Lighting2":7296},{"Vertex":{"X":1024,"Y":5376,"Z":16384},"Lighting":7369,"Attributes":16,"Lighting2":7369},{"Vertex":{"X":2048,"Y":5376,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":512,"Z":16384},"Lighting":7424,"Attributes":16,"Lighting2":7424},{"Vertex":{"X":2048,"Y":512,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":5376,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":5376,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":512,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":512,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":5376,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":5376,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":512,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":512,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":5376,"Z":19456},"Lighting":6537,"Attributes":16,"Lighting2":6537},{"Vertex":{"X":2048,"Y":5376,"Z":19456},"Lighting":6399,"Attributes":16,"Lighting2":6399},{"Vertex":{"X":2048,"Y":1024,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":1024,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":1024,"Y":1024,"Z":19456},"Lighting":6727,"Attributes":16,"Lighting2":6727},{"Vertex":{"X":2048,"Y":1024,"Z":19456},"Lighting":6634,"Attributes":16,"Lighting2":6634},{"Vertex":{"X":2048,"Y":768,"Z":19456},"Lighting":6659,"Attributes":16,"Lighting2":6659},{"Vertex":{"X":3072,"Y":3840,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":2048,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":5376,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":5376,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":512,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":512,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":5376,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":512,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":5376,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":512,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":5376,"Z":5120},"Lighting":7168,"Attributes":16,"Lighting2":7168},{"Vertex":{"X":3072,"Y":512,"Z":5120},"Lighting":7265,"Attributes":16,"Lighting2":7265},{"Vertex":{"X":3072,"Y":5376,"Z":6144},"Lighting":7072,"Attributes":16,"Lighting2":7072},{"Vertex":{"X":3072,"Y":512,"Z":6144},"Lighting":7193,"Attributes":16,"Lighting2":7193},{"Vertex":{"X":3072,"Y":5376,"Z":7168},"Lighting":6976,"Attributes":16,"Lighting2":6976},{"Vertex":{"X":3072,"Y":512,"Z":7168},"Lighting":7123,"Attributes":16,"Lighting2":7123},{"Vertex":{"X":3072,"Y":5376,"Z":8192},"Lighting":6888,"Attributes":16,"Lighting2":6888},{"Vertex":{"X":3072,"Y":512,"Z":8192},"Lighting":7062,"Attributes":16,"Lighting2":7062},{"Vertex":{"X":3072,"Y":5376,"Z":9216},"Lighting":6821,"Attributes":16,"Lighting2":6821},{"Vertex":{"X":3072,"Y":512,"Z":9216},"Lighting":7015,"Attributes":16,"Lighting2":7015},{"Vertex":{"X":3072,"Y":5376,"Z":10240},"Lighting":6783,"Attributes":16,"Lighting2":6783},{"Vertex":{"X":3072,"Y":512,"Z":10240},"Lighting":6990,"Attributes":16,"Lighting2":6990},{"Vertex":{"X":3072,"Y":5376,"Z":11264},"Lighting":6783,"Attributes":16,"Lighting2":6783},{"Vertex":{"X":3072,"Y":512,"Z":11264},"Lighting":6990,"Attributes":16,"Lighting2":6990},{"Vertex":{"X":3072,"Y":5376,"Z":12288},"Lighting":6821,"Attributes":16,"Lighting2":6821},{"Vertex":{"X":3072,"Y":512,"Z":12288},"Lighting":7015,"Attributes":16,"Lighting2":7015},{"Vertex":{"X":3072,"Y":5376,"Z":13312},"Lighting":6888,"Attributes":16,"Lighting2":6888},{"Vertex":{"X":3072,"Y":512,"Z":13312},"Lighting":7062,"Attributes":16,"Lighting2":7062},{"Vertex":{"X":3072,"Y":5376,"Z":14336},"Lighting":6976,"Attributes":16,"Lighting2":6976},{"Vertex":{"X":3072,"Y":512,"Z":14336},"Lighting":7123,"Attributes":16,"Lighting2":7123},{"Vertex":{"X":3072,"Y":5376,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":5376,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":512,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":5376,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":512,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":5376,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":512,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":5376,"Z":19456},"Lighting":6272,"Attributes":16,"Lighting2":6272},{"Vertex":{"X":3072,"Y":768,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":768,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":3072,"Y":768,"Z":19456},"Lighting":6579,"Attributes":16,"Lighting2":6579},{"Vertex":{"X":4096,"Y":3840,"Z":1024},"Lighting":7429,"Attributes":16,"Lighting2":7429},{"Vertex":{"X":4096,"Y":2048,"Z":1024},"Lighting":7446,"Attributes":16,"Lighting2":7446},{"Vertex":{"X":4096,"Y":5376,"Z":1024},"Lighting":7431,"Attributes":16,"Lighting2":7431},{"Vertex":{"X":4096,"Y":5376,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":512,"Z":1024},"Lighting":7475,"Attributes":16,"Lighting2":7475},{"Vertex":{"X":4096,"Y":512,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":5376,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":512,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":5376,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":512,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":5376,"Z":5120},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":4096,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":5376,"Z":6144},"Lighting":6904,"Attributes":32784,"Lighting2":6904},{"Vertex":{"X":4096,"Y":512,"Z":6144},"Lighting":7072,"Attributes":16,"Lighting2":7072},{"Vertex":{"X":4096,"Y":5376,"Z":7168},"Lighting":6764,"Attributes":16,"Lighting2":6764},{"Vertex":{"X":4096,"Y":512,"Z":7168},"Lighting":6977,"Attributes":16,"Lighting2":6977},{"Vertex":{"X":4096,"Y":5376,"Z":8192},"Lighting":6631,"Attributes":16,"Lighting2":6631},{"Vertex":{"X":4096,"Y":512,"Z":8192},"Lighting":6889,"Attributes":16,"Lighting2":6889},{"Vertex":{"X":4096,"Y":5376,"Z":9216},"Lighting":6524,"Attributes":16,"Lighting2":6524},{"Vertex":{"X":4096,"Y":512,"Z":9216},"Lighting":6822,"Attributes":16,"Lighting2":6822},{"Vertex":{"X":4096,"Y":5376,"Z":10240},"Lighting":6464,"Attributes":16,"Lighting2":6464},{"Vertex":{"X":4096,"Y":512,"Z":10240},"Lighting":6785,"Attributes":16,"Lighting2":6785},{"Vertex":{"X":4096,"Y":5376,"Z":11264},"Lighting":6464,"Attributes":16,"Lighting2":6464},{"Vertex":{"X":4096,"Y":512,"Z":11264},"Lighting":6785,"Attributes":16,"Lighting2":6785},{"Vertex":{"X":4096,"Y":5376,"Z":12288},"Lighting":6524,"Attributes":16,"Lighting2":6524},{"Vertex":{"X":4096,"Y":512,"Z":12288},"Lighting":6822,"Attributes":16,"Lighting2":6822},{"Vertex":{"X":4096,"Y":5376,"Z":13312},"Lighting":6631,"Attributes":16,"Lighting2":6631},{"Vertex":{"X":4096,"Y":512,"Z":13312},"Lighting":6889,"Attributes":16,"Lighting2":6889},{"Vertex":{"X":4096,"Y":5376,"Z":14336},"Lighting":6764,"Attributes":32784,"Lighting2":6764},{"Vertex":{"X":4096,"Y":512,"Z":14336},"Lighting":6977,"Attributes":16,"Lighting2":6977},{"Vertex":{"X":4096,"Y":5376,"Z":15360},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":4096,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":5376,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":512,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":5376,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":512,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":4096,"Y":5376,"Z":18432},"Lighting":7265,"Attributes":16,"Lighting2":7265},{"Vertex":{"X":4096,"Y":512,"Z":18432},"Lighting":7340,"Attributes":16,"Lighting2":7340},{"Vertex":{"X":4096,"Y":5376,"Z":19456},"Lighting":6172,"Attributes":16,"Lighting2":6172},{"Vertex":{"X":4096,"Y":768,"Z":18432},"Lighting":7331,"Attributes":16,"Lighting2":7331},{"Vertex":{"X":4096,"Y":768,"Z":19456},"Lighting":6519,"Attributes":16,"Lighting2":6519},{"Vertex":{"X":5120,"Y":3840,"Z":1024},"Lighting":7384,"Attributes":16,"Lighting2":7384},{"Vertex":{"X":5120,"Y":2048,"Z":1024},"Lighting":7405,"Attributes":16,"Lighting2":7405},{"Vertex":{"X":5120,"Y":5376,"Z":1024},"Lighting":7387,"Attributes":16,"Lighting2":7387},{"Vertex":{"X":5120,"Y":5376,"Z":2048},"Lighting":7296,"Attributes":16,"Lighting2":7296},{"Vertex":{"X":5120,"Y":512,"Z":1024},"Lighting":7439,"Attributes":16,"Lighting2":7439},{"Vertex":{"X":5120,"Y":512,"Z":2048},"Lighting":7365,"Attributes":16,"Lighting2":7365},{"Vertex":{"X":5120,"Y":5376,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":512,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":512,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":5120},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":5120,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":6144},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":5120,"Y":512,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":7168},"Lighting":6495,"Attributes":16,"Lighting2":6495},{"Vertex":{"X":5120,"Y":512,"Z":7168},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":8192},"Lighting":6288,"Attributes":16,"Lighting2":6288},{"Vertex":{"X":5120,"Y":512,"Z":8192},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":9216},"Lighting":6114,"Attributes":16,"Lighting2":6114},{"Vertex":{"X":5120,"Y":512,"Z":9216},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":10240},"Lighting":6013,"Attributes":32784,"Lighting2":6013},{"Vertex":{"X":5120,"Y":512,"Z":10240},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":11264},"Lighting":6013,"Attributes":32784,"Lighting2":6013},{"Vertex":{"X":5120,"Y":512,"Z":11264},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":12288},"Lighting":6114,"Attributes":16,"Lighting2":6114},{"Vertex":{"X":5120,"Y":512,"Z":12288},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":13312},"Lighting":6288,"Attributes":16,"Lighting2":6288},{"Vertex":{"X":5120,"Y":512,"Z":13312},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":14336},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":5120,"Y":512,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":15360},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":5120,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":512,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":5376,"Z":17408},"Lighting":7050,"Attributes":16,"Lighting2":7050},{"Vertex":{"X":5120,"Y":512,"Z":17408},"Lighting":7177,"Attributes":16,"Lighting2":7177},{"Vertex":{"X":5120,"Y":5376,"Z":18432},"Lighting":7185,"Attributes":16,"Lighting2":7185},{"Vertex":{"X":5120,"Y":512,"Z":18432},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":5120,"Y":5376,"Z":19456},"Lighting":6117,"Attributes":16,"Lighting2":6117},{"Vertex":{"X":5120,"Y":768,"Z":18432},"Lighting":7267,"Attributes":16,"Lighting2":7267},{"Vertex":{"X":5120,"Y":768,"Z":19456},"Lighting":6487,"Attributes":16,"Lighting2":6487},{"Vertex":{"X":6144,"Y":3840,"Z":1024},"Lighting":7341,"Attributes":16,"Lighting2":7341},{"Vertex":{"X":6144,"Y":2048,"Z":1024},"Lighting":7365,"Attributes":16,"Lighting2":7365},{"Vertex":{"X":6144,"Y":5376,"Z":1024},"Lighting":7345,"Attributes":16,"Lighting2":7345},{"Vertex":{"X":6144,"Y":5376,"Z":2048},"Lighting":7238,"Attributes":16,"Lighting2":7238},{"Vertex":{"X":6144,"Y":512,"Z":1024},"Lighting":7405,"Attributes":16,"Lighting2":7405},{"Vertex":{"X":6144,"Y":512,"Z":2048},"Lighting":7319,"Attributes":16,"Lighting2":7319},{"Vertex":{"X":6144,"Y":5376,"Z":3072},"Lighting":7103,"Attributes":16,"Lighting2":7103},{"Vertex":{"X":6144,"Y":512,"Z":3072},"Lighting":7216,"Attributes":16,"Lighting2":7216},{"Vertex":{"X":6144,"Y":5376,"Z":4096},"Lighting":6934,"Attributes":16,"Lighting2":6934},{"Vertex":{"X":6144,"Y":512,"Z":4096},"Lighting":7094,"Attributes":16,"Lighting2":7094},{"Vertex":{"X":6144,"Y":5376,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":5376,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":768,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":768,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":768,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":768,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":5376,"Z":7168},"Lighting":6517,"Attributes":16,"Lighting2":6517},{"Vertex":{"X":5120,"Y":768,"Z":7168},"Lighting":7353,"Attributes":16,"Lighting2":7353},{"Vertex":{"X":6144,"Y":768,"Z":7168},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":5376,"Z":8192},"Lighting":5837,"Attributes":16,"Lighting2":5837},{"Vertex":{"X":5120,"Y":768,"Z":8192},"Lighting":7287,"Attributes":16,"Lighting2":7287},{"Vertex":{"X":6144,"Y":768,"Z":8192},"Lighting":6685,"Attributes":16,"Lighting2":6685},{"Vertex":{"X":6144,"Y":5376,"Z":9216},"Lighting":5546,"Attributes":16,"Lighting2":5546},{"Vertex":{"X":5120,"Y":768,"Z":9216},"Lighting":7233,"Attributes":16,"Lighting2":7233},{"Vertex":{"X":6144,"Y":768,"Z":9216},"Lighting":6216,"Attributes":16,"Lighting2":6216},{"Vertex":{"X":6144,"Y":5376,"Z":10240},"Lighting":5369,"Attributes":32784,"Lighting2":5369},{"Vertex":{"X":5120,"Y":768,"Z":10240},"Lighting":7204,"Attributes":16,"Lighting2":7204},{"Vertex":{"X":6144,"Y":768,"Z":10240},"Lighting":6126,"Attributes":16,"Lighting2":6126},{"Vertex":{"X":6144,"Y":5376,"Z":11264},"Lighting":5369,"Attributes":32784,"Lighting2":5369},{"Vertex":{"X":5120,"Y":768,"Z":11264},"Lighting":7204,"Attributes":16,"Lighting2":7204},{"Vertex":{"X":6144,"Y":768,"Z":11264},"Lighting":6126,"Attributes":16,"Lighting2":6126},{"Vertex":{"X":6144,"Y":5376,"Z":12288},"Lighting":5546,"Attributes":16,"Lighting2":5546},{"Vertex":{"X":5120,"Y":768,"Z":12288},"Lighting":7233,"Attributes":16,"Lighting2":7233},{"Vertex":{"X":6144,"Y":768,"Z":12288},"Lighting":6560,"Attributes":16,"Lighting2":6560},{"Vertex":{"X":6144,"Y":5376,"Z":13312},"Lighting":6257,"Attributes":16,"Lighting2":6257},{"Vertex":{"X":5120,"Y":768,"Z":13312},"Lighting":7287,"Attributes":16,"Lighting2":7287},{"Vertex":{"X":6144,"Y":768,"Z":13312},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":5376,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":768,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":768,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":5376,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":5120,"Y":768,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":768,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":5376,"Z":16384},"Lighting":6723,"Attributes":16,"Lighting2":6723},{"Vertex":{"X":6144,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":512,"Z":16384},"Lighting":6949,"Attributes":16,"Lighting2":6949},{"Vertex":{"X":6144,"Y":5376,"Z":17408},"Lighting":6934,"Attributes":16,"Lighting2":6934},{"Vertex":{"X":6144,"Y":512,"Z":17408},"Lighting":7094,"Attributes":16,"Lighting2":7094},{"Vertex":{"X":6144,"Y":5376,"Z":18432},"Lighting":7103,"Attributes":16,"Lighting2":7103},{"Vertex":{"X":6144,"Y":512,"Z":18432},"Lighting":7216,"Attributes":16,"Lighting2":7216},{"Vertex":{"X":6144,"Y":5376,"Z":19456},"Lighting":6117,"Attributes":16,"Lighting2":6117},{"Vertex":{"X":6144,"Y":768,"Z":18432},"Lighting":7203,"Attributes":16,"Lighting2":7203},{"Vertex":{"X":6144,"Y":768,"Z":19456},"Lighting":6487,"Attributes":16,"Lighting2":6487},{"Vertex":{"X":7168,"Y":3840,"Z":1024},"Lighting":7303,"Attributes":16,"Lighting2":7303},{"Vertex":{"X":7168,"Y":2048,"Z":1024},"Lighting":7330,"Attributes":16,"Lighting2":7330},{"Vertex":{"X":7168,"Y":5376,"Z":1024},"Lighting":7308,"Attributes":16,"Lighting2":7308},{"Vertex":{"X":7168,"Y":5376,"Z":2048},"Lighting":7185,"Attributes":16,"Lighting2":7185},{"Vertex":{"X":7168,"Y":512,"Z":1024},"Lighting":7374,"Attributes":16,"Lighting2":7374},{"Vertex":{"X":7168,"Y":512,"Z":2048},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":7168,"Y":5376,"Z":3072},"Lighting":7026,"Attributes":16,"Lighting2":7026},{"Vertex":{"X":7168,"Y":512,"Z":3072},"Lighting":7160,"Attributes":16,"Lighting2":7160},{"Vertex":{"X":7168,"Y":5376,"Z":4096},"Lighting":6821,"Attributes":16,"Lighting2":6821},{"Vertex":{"X":7168,"Y":512,"Z":4096},"Lighting":7015,"Attributes":16,"Lighting2":7015},{"Vertex":{"X":7168,"Y":5376,"Z":5120},"Lighting":6552,"Attributes":16,"Lighting2":6552},{"Vertex":{"X":7168,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":7168,"Y":5376,"Z":6144},"Lighting":6552,"Attributes":16,"Lighting2":6552},{"Vertex":{"X":7168,"Y":768,"Z":5120},"Lighting":7371,"Attributes":16,"Lighting2":7371},{"Vertex":{"X":7168,"Y":768,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":7168,"Y":3840,"Z":6144},"Lighting":7054,"Attributes":16,"Lighting2":7054},{"Vertex":{"X":6144,"Y":3840,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":3840,"Z":7168},"Lighting":7031,"Attributes":16,"Lighting2":7031},{"Vertex":{"X":7168,"Y":3840,"Z":7168},"Lighting":5719,"Attributes":16,"Lighting2":5719},{"Vertex":{"X":7168,"Y":2048,"Z":6144},"Lighting":7151,"Attributes":16,"Lighting2":7151},{"Vertex":{"X":6144,"Y":2048,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":6144,"Y":2048,"Z":7168},"Lighting":7133,"Attributes":16,"Lighting2":7133},{"Vertex":{"X":7168,"Y":2048,"Z":7168},"Lighting":6016,"Attributes":16,"Lighting2":6016},{"Vertex":{"X":7168,"Y":5376,"Z":7168},"Lighting":5771,"Attributes":16,"Lighting2":5771},{"Vertex":{"X":7168,"Y":5376,"Z":8192},"Lighting":5269,"Attributes":16,"Lighting2":5269},{"Vertex":{"X":7168,"Y":1024,"Z":7168},"Lighting":6271,"Attributes":16,"Lighting2":6271},{"Vertex":{"X":6144,"Y":1024,"Z":7168},"Lighting":6986,"Attributes":16,"Lighting2":6986},{"Vertex":{"X":6144,"Y":1024,"Z":8192},"Lighting":6852,"Attributes":16,"Lighting2":6852},{"Vertex":{"X":7168,"Y":1024,"Z":8192},"Lighting":5989,"Attributes":16,"Lighting2":5989},{"Vertex":{"X":7168,"Y":5376,"Z":9216},"Lighting":4782,"Attributes":16,"Lighting2":4782},{"Vertex":{"X":7168,"Y":768,"Z":8192},"Lighting":6077,"Attributes":16,"Lighting2":6077},{"Vertex":{"X":7168,"Y":768,"Z":9216},"Lighting":5853,"Attributes":16,"Lighting2":5853},{"Vertex":{"X":7168,"Y":5376,"Z":10240},"Lighting":4465,"Attributes":16,"Lighting2":4465},{"Vertex":{"X":7168,"Y":768,"Z":10240},"Lighting":5719,"Attributes":16,"Lighting2":5719},{"Vertex":{"X":7168,"Y":5376,"Z":11264},"Lighting":4465,"Attributes":16,"Lighting2":4465},{"Vertex":{"X":7168,"Y":768,"Z":11264},"Lighting":5719,"Attributes":16,"Lighting2":5719},{"Vertex":{"X":7168,"Y":5376,"Z":12288},"Lighting":4782,"Attributes":16,"Lighting2":4782},{"Vertex":{"X":7168,"Y":768,"Z":12288},"Lighting":5853,"Attributes":16,"Lighting2":5853},{"Vertex":{"X":7168,"Y":5376,"Z":13312},"Lighting":5269,"Attributes":16,"Lighting2":5269},{"Vertex":{"X":7168,"Y":1024,"Z":12288},"Lighting":5741,"Attributes":16,"Lighting2":5741},{"Vertex":{"X":6144,"Y":1024,"Z":12288},"Lighting":6739,"Attributes":16,"Lighting2":6739},{"Vertex":{"X":6144,"Y":1024,"Z":13312},"Lighting":6852,"Attributes":16,"Lighting2":6852},{"Vertex":{"X":7168,"Y":1024,"Z":13312},"Lighting":5989,"Attributes":16,"Lighting2":5989},{"Vertex":{"X":7168,"Y":3840,"Z":13312},"Lighting":5190,"Attributes":16,"Lighting2":5190},{"Vertex":{"X":6144,"Y":3840,"Z":13312},"Lighting":6862,"Attributes":16,"Lighting2":6862},{"Vertex":{"X":6144,"Y":3840,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":7168,"Y":3840,"Z":14336},"Lighting":6828,"Attributes":16,"Lighting2":6828},{"Vertex":{"X":7168,"Y":2048,"Z":13312},"Lighting":5631,"Attributes":16,"Lighting2":5631},{"Vertex":{"X":6144,"Y":2048,"Z":13312},"Lighting":7002,"Attributes":16,"Lighting2":7002},{"Vertex":{"X":6144,"Y":2048,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":7168,"Y":2048,"Z":14336},"Lighting":6976,"Attributes":16,"Lighting2":6976},{"Vertex":{"X":7168,"Y":5376,"Z":14336},"Lighting":6205,"Attributes":16,"Lighting2":6205},{"Vertex":{"X":7168,"Y":5376,"Z":15360},"Lighting":6205,"Attributes":16,"Lighting2":6205},{"Vertex":{"X":7168,"Y":768,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":7168,"Y":768,"Z":15360},"Lighting":7261,"Attributes":16,"Lighting2":7261},{"Vertex":{"X":7168,"Y":5376,"Z":16384},"Lighting":6552,"Attributes":16,"Lighting2":6552},{"Vertex":{"X":7168,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":7168,"Y":512,"Z":16384},"Lighting":6839,"Attributes":16,"Lighting2":6839},{"Vertex":{"X":7168,"Y":5376,"Z":17408},"Lighting":6821,"Attributes":16,"Lighting2":6821},{"Vertex":{"X":7168,"Y":512,"Z":17408},"Lighting":7015,"Attributes":16,"Lighting2":7015},{"Vertex":{"X":7168,"Y":5376,"Z":18432},"Lighting":7026,"Attributes":16,"Lighting2":7026},{"Vertex":{"X":7168,"Y":512,"Z":18432},"Lighting":7160,"Attributes":16,"Lighting2":7160},{"Vertex":{"X":7168,"Y":5376,"Z":19456},"Lighting":6172,"Attributes":16,"Lighting2":6172},{"Vertex":{"X":7168,"Y":768,"Z":18432},"Lighting":7144,"Attributes":16,"Lighting2":7144},{"Vertex":{"X":7168,"Y":768,"Z":19456},"Lighting":6519,"Attributes":16,"Lighting2":6519},{"Vertex":{"X":8192,"Y":3840,"Z":1024},"Lighting":7273,"Attributes":16,"Lighting2":7273},{"Vertex":{"X":8192,"Y":2048,"Z":1024},"Lighting":7302,"Attributes":16,"Lighting2":7302},{"Vertex":{"X":8192,"Y":5376,"Z":1024},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":8192,"Y":5376,"Z":2048},"Lighting":7141,"Attributes":16,"Lighting2":7141},{"Vertex":{"X":8192,"Y":512,"Z":1024},"Lighting":7351,"Attributes":16,"Lighting2":7351},{"Vertex":{"X":8192,"Y":512,"Z":2048},"Lighting":7245,"Attributes":16,"Lighting2":7245},{"Vertex":{"X":8192,"Y":5376,"Z":3072},"Lighting":6962,"Attributes":16,"Lighting2":6962},{"Vertex":{"X":8192,"Y":512,"Z":3072},"Lighting":7114,"Attributes":16,"Lighting2":7114},{"Vertex":{"X":8192,"Y":5376,"Z":4096},"Lighting":6723,"Attributes":16,"Lighting2":6723},{"Vertex":{"X":8192,"Y":512,"Z":4096},"Lighting":6949,"Attributes":16,"Lighting2":6949},{"Vertex":{"X":8192,"Y":5376,"Z":5120},"Lighting":6398,"Attributes":16,"Lighting2":6398},{"Vertex":{"X":8192,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":8192,"Y":5376,"Z":6144},"Lighting":5957,"Attributes":16,"Lighting2":5957},{"Vertex":{"X":8192,"Y":768,"Z":5120},"Lighting":7321,"Attributes":16,"Lighting2":7321},{"Vertex":{"X":8192,"Y":768,"Z":6144},"Lighting":6740,"Attributes":16,"Lighting2":6740},{"Vertex":{"X":8192,"Y":5376,"Z":7168},"Lighting":5369,"Attributes":16,"Lighting2":5369},{"Vertex":{"X":8192,"Y":1024,"Z":6144},"Lighting":6901,"Attributes":16,"Lighting2":6901},{"Vertex":{"X":7168,"Y":1024,"Z":6144},"Lighting":7005,"Attributes":16,"Lighting2":7005},{"Vertex":{"X":8192,"Y":1024,"Z":7168},"Lighting":6042,"Attributes":16,"Lighting2":6042},{"Vertex":{"X":8192,"Y":5376,"Z":8192},"Lighting":4631,"Attributes":16,"Lighting2":4631},{"Vertex":{"X":8192,"Y":-512,"Z":7168},"Lighting":6511,"Attributes":16,"Lighting2":6511},{"Vertex":{"X":7168,"Y":-512,"Z":7168},"Lighting":6645,"Attributes":16,"Lighting2":6645},{"Vertex":{"X":7168,"Y":-512,"Z":8192},"Lighting":6481,"Attributes":16,"Lighting2":6481},{"Vertex":{"X":8192,"Y":-512,"Z":8192},"Lighting":6310,"Attributes":16,"Lighting2":6310},{"Vertex":{"X":8192,"Y":5376,"Z":9216},"Lighting":3848,"Attributes":16,"Lighting2":3848},{"Vertex":{"X":7168,"Y":-512,"Z":9216},"Lighting":6347,"Attributes":16,"Lighting2":6347},{"Vertex":{"X":8192,"Y":-512,"Z":9216},"Lighting":6141,"Attributes":16,"Lighting2":6141},{"Vertex":{"X":8192,"Y":5376,"Z":10240},"Lighting":3298,"Attributes":16,"Lighting2":3298},{"Vertex":{"X":7168,"Y":-512,"Z":10240},"Lighting":6271,"Attributes":16,"Lighting2":6271},{"Vertex":{"X":8192,"Y":-512,"Z":10240},"Lighting":6042,"Attributes":16,"Lighting2":6042},{"Vertex":{"X":8192,"Y":5376,"Z":11264},"Lighting":3298,"Attributes":16,"Lighting2":3298},{"Vertex":{"X":7168,"Y":-512,"Z":11264},"Lighting":6271,"Attributes":16,"Lighting2":6271},{"Vertex":{"X":8192,"Y":-512,"Z":11264},"Lighting":6042,"Attributes":16,"Lighting2":6042},{"Vertex":{"X":8192,"Y":5376,"Z":12288},"Lighting":3848,"Attributes":16,"Lighting2":3848},{"Vertex":{"X":7168,"Y":-512,"Z":12288},"Lighting":6347,"Attributes":16,"Lighting2":6347},{"Vertex":{"X":8192,"Y":-512,"Z":12288},"Lighting":6141,"Attributes":16,"Lighting2":6141},{"Vertex":{"X":8192,"Y":5376,"Z":13312},"Lighting":4631,"Attributes":16,"Lighting2":4631},{"Vertex":{"X":7168,"Y":-512,"Z":13312},"Lighting":6481,"Attributes":16,"Lighting2":6481},{"Vertex":{"X":8192,"Y":-512,"Z":13312},"Lighting":6310,"Attributes":16,"Lighting2":6310},{"Vertex":{"X":8192,"Y":5376,"Z":14336},"Lighting":5369,"Attributes":16,"Lighting2":5369},{"Vertex":{"X":8192,"Y":1024,"Z":13312},"Lighting":5669,"Attributes":16,"Lighting2":5669},{"Vertex":{"X":7168,"Y":1024,"Z":13312},"Lighting":5989,"Attributes":16,"Lighting2":5989},{"Vertex":{"X":7168,"Y":1024,"Z":14336},"Lighting":6826,"Attributes":16,"Lighting2":6826},{"Vertex":{"X":8192,"Y":1024,"Z":14336},"Lighting":6674,"Attributes":16,"Lighting2":6674},{"Vertex":{"X":8192,"Y":5376,"Z":15360},"Lighting":5957,"Attributes":16,"Lighting2":5957},{"Vertex":{"X":8192,"Y":768,"Z":14336},"Lighting":6489,"Attributes":16,"Lighting2":6489},{"Vertex":{"X":8192,"Y":768,"Z":15360},"Lighting":7188,"Attributes":16,"Lighting2":7188},{"Vertex":{"X":8192,"Y":5376,"Z":16384},"Lighting":6398,"Attributes":16,"Lighting2":6398},{"Vertex":{"X":8192,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":8192,"Y":512,"Z":16384},"Lighting":6745,"Attributes":16,"Lighting2":6745},{"Vertex":{"X":8192,"Y":5376,"Z":17408},"Lighting":6723,"Attributes":16,"Lighting2":6723},{"Vertex":{"X":8192,"Y":512,"Z":17408},"Lighting":6949,"Attributes":16,"Lighting2":6949},{"Vertex":{"X":8192,"Y":5376,"Z":18432},"Lighting":6962,"Attributes":16,"Lighting2":6962},{"Vertex":{"X":8192,"Y":512,"Z":18432},"Lighting":7114,"Attributes":16,"Lighting2":7114},{"Vertex":{"X":8192,"Y":5376,"Z":19456},"Lighting":5811,"Attributes":16,"Lighting2":5811},{"Vertex":{"X":8192,"Y":768,"Z":18432},"Lighting":7095,"Attributes":16,"Lighting2":7095},{"Vertex":{"X":8192,"Y":768,"Z":19456},"Lighting":6030,"Attributes":16,"Lighting2":6030},{"Vertex":{"X":9216,"Y":3840,"Z":1024},"Lighting":7253,"Attributes":16,"Lighting2":7253},{"Vertex":{"X":9216,"Y":2048,"Z":1024},"Lighting":7284,"Attributes":16,"Lighting2":7284},{"Vertex":{"X":9216,"Y":5376,"Z":1024},"Lighting":7258,"Attributes":16,"Lighting2":7258},{"Vertex":{"X":9216,"Y":5376,"Z":2048},"Lighting":7113,"Attributes":16,"Lighting2":7113},{"Vertex":{"X":9216,"Y":512,"Z":1024},"Lighting":7335,"Attributes":16,"Lighting2":7335},{"Vertex":{"X":9216,"Y":512,"Z":2048},"Lighting":7224,"Attributes":16,"Lighting2":7224},{"Vertex":{"X":9216,"Y":5376,"Z":3072},"Lighting":6919,"Attributes":16,"Lighting2":6919},{"Vertex":{"X":9216,"Y":512,"Z":3072},"Lighting":7083,"Attributes":16,"Lighting2":7083},{"Vertex":{"X":9216,"Y":5376,"Z":4096},"Lighting":6655,"Attributes":16,"Lighting2":6655},{"Vertex":{"X":9216,"Y":512,"Z":4096},"Lighting":6905,"Attributes":16,"Lighting2":6905},{"Vertex":{"X":9216,"Y":5376,"Z":5120},"Lighting":6288,"Attributes":16,"Lighting2":6288},{"Vertex":{"X":9216,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":9216,"Y":5376,"Z":6144},"Lighting":5771,"Attributes":16,"Lighting2":5771},{"Vertex":{"X":9216,"Y":768,"Z":5120},"Lighting":7287,"Attributes":16,"Lighting2":7287},{"Vertex":{"X":9216,"Y":768,"Z":6144},"Lighting":6336,"Attributes":16,"Lighting2":6336},{"Vertex":{"X":9216,"Y":5376,"Z":7168},"Lighting":5046,"Attributes":16,"Lighting2":5046},{"Vertex":{"X":8192,"Y":768,"Z":7168},"Lighting":6126,"Attributes":16,"Lighting2":6126},{"Vertex":{"X":9216,"Y":768,"Z":7168},"Lighting":5971,"Attributes":16,"Lighting2":5971},{"Vertex":{"X":9216,"Y":5376,"Z":8192},"Lighting":4076,"Attributes":16,"Lighting2":4076},{"Vertex":{"X":9216,"Y":-512,"Z":7168},"Lighting":6417,"Attributes":16,"Lighting2":6417},{"Vertex":{"X":9216,"Y":-512,"Z":8192},"Lighting":6186,"Attributes":16,"Lighting2":6186},{"Vertex":{"X":9216,"Y":5376,"Z":9216},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":9216,"Y":-512,"Z":9216},"Lighting":5989,"Attributes":16,"Lighting2":5989},{"Vertex":{"X":9216,"Y":5376,"Z":10240},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":9216,"Y":-512,"Z":10240},"Lighting":5872,"Attributes":16,"Lighting2":5872},{"Vertex":{"X":9216,"Y":5376,"Z":11264},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":9216,"Y":-512,"Z":11264},"Lighting":5872,"Attributes":16,"Lighting2":5872},{"Vertex":{"X":9216,"Y":5376,"Z":12288},"Lighting":2964,"Attributes":16,"Lighting2":2964},{"Vertex":{"X":9216,"Y":-512,"Z":12288},"Lighting":5989,"Attributes":16,"Lighting2":5989},{"Vertex":{"X":9216,"Y":5376,"Z":13312},"Lighting":4076,"Attributes":32784,"Lighting2":4076},{"Vertex":{"X":9216,"Y":-512,"Z":13312},"Lighting":6186,"Attributes":16,"Lighting2":6186},{"Vertex":{"X":9216,"Y":5376,"Z":14336},"Lighting":5046,"Attributes":32784,"Lighting2":5046},{"Vertex":{"X":9216,"Y":768,"Z":13312},"Lighting":5567,"Attributes":16,"Lighting2":5567},{"Vertex":{"X":8192,"Y":768,"Z":13312},"Lighting":5788,"Attributes":16,"Lighting2":5788},{"Vertex":{"X":9216,"Y":768,"Z":14336},"Lighting":5971,"Attributes":16,"Lighting2":5971},{"Vertex":{"X":9216,"Y":5376,"Z":15360},"Lighting":5771,"Attributes":16,"Lighting2":5771},{"Vertex":{"X":9216,"Y":768,"Z":15360},"Lighting":7137,"Attributes":16,"Lighting2":7137},{"Vertex":{"X":9216,"Y":5376,"Z":16384},"Lighting":6288,"Attributes":16,"Lighting2":6288},{"Vertex":{"X":9216,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":9216,"Y":512,"Z":16384},"Lighting":6680,"Attributes":16,"Lighting2":6680},{"Vertex":{"X":9216,"Y":5376,"Z":17408},"Lighting":6655,"Attributes":16,"Lighting2":6655},{"Vertex":{"X":9216,"Y":512,"Z":17408},"Lighting":6905,"Attributes":16,"Lighting2":6905},{"Vertex":{"X":9216,"Y":5376,"Z":18432},"Lighting":6919,"Attributes":16,"Lighting2":6919},{"Vertex":{"X":9216,"Y":512,"Z":18432},"Lighting":7083,"Attributes":16,"Lighting2":7083},{"Vertex":{"X":9216,"Y":5376,"Z":19456},"Lighting":5708,"Attributes":16,"Lighting2":5708},{"Vertex":{"X":9216,"Y":768,"Z":18432},"Lighting":7064,"Attributes":16,"Lighting2":7064},{"Vertex":{"X":9216,"Y":768,"Z":19456},"Lighting":5946,"Attributes":16,"Lighting2":5946},{"Vertex":{"X":10240,"Y":5376,"Z":1024},"Lighting":7252,"Attributes":16,"Lighting2":7252},{"Vertex":{"X":9216,"Y":3328,"Z":1024},"Lighting":7258,"Attributes":16,"Lighting2":7258},{"Vertex":{"X":10240,"Y":3328,"Z":1024},"Lighting":7252,"Attributes":16,"Lighting2":7252},{"Vertex":{"X":10240,"Y":5376,"Z":2048},"Lighting":7103,"Attributes":16,"Lighting2":7103},{"Vertex":{"X":10240,"Y":512,"Z":1024},"Lighting":7330,"Attributes":16,"Lighting2":7330},{"Vertex":{"X":10240,"Y":512,"Z":2048},"Lighting":7216,"Attributes":16,"Lighting2":7216},{"Vertex":{"X":10240,"Y":5376,"Z":3072},"Lighting":6904,"Attributes":16,"Lighting2":6904},{"Vertex":{"X":10240,"Y":512,"Z":3072},"Lighting":7072,"Attributes":16,"Lighting2":7072},{"Vertex":{"X":10240,"Y":5376,"Z":4096},"Lighting":6631,"Attributes":16,"Lighting2":6631},{"Vertex":{"X":10240,"Y":512,"Z":4096},"Lighting":6889,"Attributes":16,"Lighting2":6889},{"Vertex":{"X":10240,"Y":5376,"Z":5120},"Lighting":6248,"Attributes":16,"Lighting2":6248},{"Vertex":{"X":10240,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":10240,"Y":5376,"Z":6144},"Lighting":5701,"Attributes":32784,"Lighting2":5701},{"Vertex":{"X":10240,"Y":768,"Z":5120},"Lighting":7275,"Attributes":16,"Lighting2":7275},{"Vertex":{"X":10240,"Y":768,"Z":6144},"Lighting":6298,"Attributes":16,"Lighting2":6298},{"Vertex":{"X":10240,"Y":5376,"Z":7168},"Lighting":4920,"Attributes":32784,"Lighting2":4920},{"Vertex":{"X":10240,"Y":768,"Z":7168},"Lighting":5914,"Attributes":16,"Lighting2":5914},{"Vertex":{"X":10240,"Y":5376,"Z":8192},"Lighting":3848,"Attributes":16,"Lighting2":3848},{"Vertex":{"X":10240,"Y":-512,"Z":7168},"Lighting":6383,"Attributes":16,"Lighting2":6383},{"Vertex":{"X":10240,"Y":-512,"Z":8192},"Lighting":6141,"Attributes":16,"Lighting2":6141},{"Vertex":{"X":10240,"Y":5376,"Z":9216},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":10240,"Y":-512,"Z":9216},"Lighting":5932,"Attributes":16,"Lighting2":5932},{"Vertex":{"X":10240,"Y":5120,"Z":9216},"Lighting":5163,"Attributes":16,"Lighting2":5163},{"Vertex":{"X":9216,"Y":5120,"Z":9216},"Lighting":6225,"Attributes":16,"Lighting2":6225},{"Vertex":{"X":9216,"Y":5120,"Z":10240},"Lighting":4920,"Attributes":16,"Lighting2":4920},{"Vertex":{"X":10240,"Y":5120,"Z":10240},"Lighting":1326,"Attributes":16,"Lighting2":1326},{"Vertex":{"X":10240,"Y":-512,"Z":10240},"Lighting":5809,"Attributes":16,"Lighting2":5809},{"Vertex":{"X":9216,"Y":5120,"Z":11264},"Lighting":5925,"Attributes":16,"Lighting2":5925},{"Vertex":{"X":10240,"Y":5120,"Z":11264},"Lighting":4632,"Attributes":16,"Lighting2":4632},{"Vertex":{"X":10240,"Y":-512,"Z":11264},"Lighting":5809,"Attributes":16,"Lighting2":5809},{"Vertex":{"X":10240,"Y":5376,"Z":11264},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":10240,"Y":5376,"Z":12288},"Lighting":2578,"Attributes":16,"Lighting2":2578},{"Vertex":{"X":10240,"Y":-512,"Z":12288},"Lighting":5932,"Attributes":16,"Lighting2":5932},{"Vertex":{"X":10240,"Y":5376,"Z":13312},"Lighting":3848,"Attributes":32784,"Lighting2":3848},{"Vertex":{"X":10240,"Y":-512,"Z":13312},"Lighting":6141,"Attributes":16,"Lighting2":6141},{"Vertex":{"X":10240,"Y":5376,"Z":14336},"Lighting":4920,"Attributes":32784,"Lighting2":4920},{"Vertex":{"X":10240,"Y":768,"Z":13312},"Lighting":5483,"Attributes":16,"Lighting2":5483},{"Vertex":{"X":10240,"Y":768,"Z":14336},"Lighting":5914,"Attributes":16,"Lighting2":5914},{"Vertex":{"X":10240,"Y":5376,"Z":15360},"Lighting":5701,"Attributes":16,"Lighting2":5701},{"Vertex":{"X":10240,"Y":768,"Z":15360},"Lighting":7117,"Attributes":16,"Lighting2":7117},{"Vertex":{"X":10240,"Y":5376,"Z":16384},"Lighting":6248,"Attributes":16,"Lighting2":6248},{"Vertex":{"X":10240,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":10240,"Y":512,"Z":16384},"Lighting":6656,"Attributes":16,"Lighting2":6656},{"Vertex":{"X":10240,"Y":5376,"Z":17408},"Lighting":6631,"Attributes":16,"Lighting2":6631},{"Vertex":{"X":10240,"Y":512,"Z":17408},"Lighting":6889,"Attributes":16,"Lighting2":6889},{"Vertex":{"X":10240,"Y":5376,"Z":18432},"Lighting":6904,"Attributes":16,"Lighting2":6904},{"Vertex":{"X":10240,"Y":512,"Z":18432},"Lighting":7072,"Attributes":16,"Lighting2":7072},{"Vertex":{"X":10240,"Y":5376,"Z":19456},"Lighting":5634,"Attributes":16,"Lighting2":5634},{"Vertex":{"X":10240,"Y":768,"Z":18432},"Lighting":7052,"Attributes":16,"Lighting2":7052},{"Vertex":{"X":10240,"Y":768,"Z":19456},"Lighting":5885,"Attributes":16,"Lighting2":5885},{"Vertex":{"X":11264,"Y":5376,"Z":1024},"Lighting":7258,"Attributes":16,"Lighting2":7258},{"Vertex":{"X":11264,"Y":3328,"Z":1024},"Lighting":7258,"Attributes":16,"Lighting2":7258},{"Vertex":{"X":11264,"Y":5376,"Z":2048},"Lighting":7113,"Attributes":16,"Lighting2":7113},{"Vertex":{"X":11264,"Y":512,"Z":1024},"Lighting":7335,"Attributes":16,"Lighting2":7335},{"Vertex":{"X":11264,"Y":512,"Z":2048},"Lighting":7224,"Attributes":16,"Lighting2":7224},{"Vertex":{"X":11264,"Y":5376,"Z":3072},"Lighting":6919,"Attributes":16,"Lighting2":6919},{"Vertex":{"X":11264,"Y":512,"Z":3072},"Lighting":7083,"Attributes":16,"Lighting2":7083},{"Vertex":{"X":11264,"Y":5376,"Z":4096},"Lighting":6655,"Attributes":16,"Lighting2":6655},{"Vertex":{"X":11264,"Y":512,"Z":4096},"Lighting":6905,"Attributes":16,"Lighting2":6905},{"Vertex":{"X":11264,"Y":5376,"Z":5120},"Lighting":6288,"Attributes":16,"Lighting2":6288},{"Vertex":{"X":11264,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":11264,"Y":5376,"Z":6144},"Lighting":5771,"Attributes":32784,"Lighting2":5771},{"Vertex":{"X":11264,"Y":768,"Z":5120},"Lighting":7287,"Attributes":16,"Lighting2":7287},{"Vertex":{"X":11264,"Y":768,"Z":6144},"Lighting":6336,"Attributes":16,"Lighting2":6336},{"Vertex":{"X":11264,"Y":5376,"Z":7168},"Lighting":5046,"Attributes":32784,"Lighting2":5046},{"Vertex":{"X":11264,"Y":768,"Z":7168},"Lighting":5971,"Attributes":16,"Lighting2":5971},{"Vertex":{"X":11264,"Y":5376,"Z":8192},"Lighting":4076,"Attributes":16,"Lighting2":4076},{"Vertex":{"X":11264,"Y":-512,"Z":7168},"Lighting":6417,"Attributes":16,"Lighting2":6417},{"Vertex":{"X":11264,"Y":-512,"Z":8192},"Lighting":6186,"Attributes":16,"Lighting2":6186},{"Vertex":{"X":11264,"Y":5376,"Z":9216},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":11264,"Y":-512,"Z":9216},"Lighting":5989,"Attributes":16,"Lighting2":5989},{"Vertex":{"X":11264,"Y":5120,"Z":9216},"Lighting":6225,"Attributes":16,"Lighting2":6225},{"Vertex":{"X":11264,"Y":5120,"Z":10240},"Lighting":4920,"Attributes":16,"Lighting2":4920},{"Vertex":{"X":11264,"Y":-512,"Z":10240},"Lighting":5872,"Attributes":16,"Lighting2":5872},{"Vertex":{"X":11264,"Y":5120,"Z":11264},"Lighting":5925,"Attributes":16,"Lighting2":5925},{"Vertex":{"X":11264,"Y":-512,"Z":11264},"Lighting":5872,"Attributes":16,"Lighting2":5872},{"Vertex":{"X":11264,"Y":5376,"Z":11264},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":11264,"Y":5376,"Z":12288},"Lighting":2964,"Attributes":16,"Lighting2":2964},{"Vertex":{"X":11264,"Y":-512,"Z":12288},"Lighting":5989,"Attributes":16,"Lighting2":5989},{"Vertex":{"X":11264,"Y":5376,"Z":13312},"Lighting":4076,"Attributes":16,"Lighting2":4076},{"Vertex":{"X":11264,"Y":-512,"Z":13312},"Lighting":6186,"Attributes":16,"Lighting2":6186},{"Vertex":{"X":11264,"Y":5376,"Z":14336},"Lighting":5046,"Attributes":16,"Lighting2":5046},{"Vertex":{"X":11264,"Y":768,"Z":13312},"Lighting":5567,"Attributes":16,"Lighting2":5567},{"Vertex":{"X":11264,"Y":768,"Z":14336},"Lighting":5971,"Attributes":16,"Lighting2":5971},{"Vertex":{"X":11264,"Y":5376,"Z":15360},"Lighting":5771,"Attributes":16,"Lighting2":5771},{"Vertex":{"X":11264,"Y":768,"Z":15360},"Lighting":7137,"Attributes":16,"Lighting2":7137},{"Vertex":{"X":11264,"Y":5376,"Z":16384},"Lighting":6288,"Attributes":16,"Lighting2":6288},{"Vertex":{"X":11264,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":11264,"Y":512,"Z":16384},"Lighting":6680,"Attributes":16,"Lighting2":6680},{"Vertex":{"X":11264,"Y":5376,"Z":17408},"Lighting":6655,"Attributes":16,"Lighting2":6655},{"Vertex":{"X":11264,"Y":512,"Z":17408},"Lighting":6905,"Attributes":16,"Lighting2":6905},{"Vertex":{"X":11264,"Y":5376,"Z":18432},"Lighting":6919,"Attributes":16,"Lighting2":6919},{"Vertex":{"X":11264,"Y":512,"Z":18432},"Lighting":7083,"Attributes":16,"Lighting2":7083},{"Vertex":{"X":11264,"Y":5376,"Z":19456},"Lighting":5596,"Attributes":16,"Lighting2":5596},{"Vertex":{"X":11264,"Y":768,"Z":18432},"Lighting":7064,"Attributes":16,"Lighting2":7064},{"Vertex":{"X":11264,"Y":768,"Z":19456},"Lighting":5854,"Attributes":16,"Lighting2":5854},{"Vertex":{"X":11264,"Y":3840,"Z":1024},"Lighting":7253,"Attributes":16,"Lighting2":7253},{"Vertex":{"X":12288,"Y":3840,"Z":1024},"Lighting":7273,"Attributes":16,"Lighting2":7273},{"Vertex":{"X":11264,"Y":2048,"Z":1024},"Lighting":7284,"Attributes":16,"Lighting2":7284},{"Vertex":{"X":12288,"Y":2048,"Z":1024},"Lighting":7302,"Attributes":16,"Lighting2":7302},{"Vertex":{"X":12288,"Y":5376,"Z":1024},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":12288,"Y":5376,"Z":2048},"Lighting":7141,"Attributes":16,"Lighting2":7141},{"Vertex":{"X":12288,"Y":512,"Z":1024},"Lighting":7351,"Attributes":16,"Lighting2":7351},{"Vertex":{"X":12288,"Y":512,"Z":2048},"Lighting":7245,"Attributes":16,"Lighting2":7245},{"Vertex":{"X":12288,"Y":5376,"Z":3072},"Lighting":6962,"Attributes":16,"Lighting2":6962},{"Vertex":{"X":12288,"Y":512,"Z":3072},"Lighting":7114,"Attributes":16,"Lighting2":7114},{"Vertex":{"X":12288,"Y":5376,"Z":4096},"Lighting":6723,"Attributes":16,"Lighting2":6723},{"Vertex":{"X":12288,"Y":512,"Z":4096},"Lighting":6949,"Attributes":16,"Lighting2":6949},{"Vertex":{"X":12288,"Y":5376,"Z":5120},"Lighting":6398,"Attributes":16,"Lighting2":6398},{"Vertex":{"X":12288,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":12288,"Y":5376,"Z":6144},"Lighting":5957,"Attributes":16,"Lighting2":5957},{"Vertex":{"X":12288,"Y":768,"Z":5120},"Lighting":7321,"Attributes":16,"Lighting2":7321},{"Vertex":{"X":12288,"Y":768,"Z":6144},"Lighting":6739,"Attributes":16,"Lighting2":6739},{"Vertex":{"X":12288,"Y":5376,"Z":7168},"Lighting":5369,"Attributes":16,"Lighting2":5369},{"Vertex":{"X":12288,"Y":768,"Z":7168},"Lighting":6126,"Attributes":16,"Lighting2":6126},{"Vertex":{"X":12288,"Y":5376,"Z":8192},"Lighting":4631,"Attributes":16,"Lighting2":4631},{"Vertex":{"X":12288,"Y":-512,"Z":7168},"Lighting":6511,"Attributes":16,"Lighting2":6511},{"Vertex":{"X":12288,"Y":-512,"Z":8192},"Lighting":6310,"Attributes":16,"Lighting2":6310},{"Vertex":{"X":12288,"Y":5376,"Z":9216},"Lighting":3848,"Attributes":16,"Lighting2":3848},{"Vertex":{"X":12288,"Y":-512,"Z":9216},"Lighting":6141,"Attributes":16,"Lighting2":6141},{"Vertex":{"X":11264,"Y":5376,"Z":10240},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":12288,"Y":5376,"Z":10240},"Lighting":3298,"Attributes":16,"Lighting2":3298},{"Vertex":{"X":12288,"Y":-512,"Z":10240},"Lighting":6042,"Attributes":16,"Lighting2":6042},{"Vertex":{"X":12288,"Y":5376,"Z":11264},"Lighting":3298,"Attributes":16,"Lighting2":3298},{"Vertex":{"X":12288,"Y":-512,"Z":11264},"Lighting":6042,"Attributes":16,"Lighting2":6042},{"Vertex":{"X":12288,"Y":5376,"Z":12288},"Lighting":3848,"Attributes":16,"Lighting2":3848},{"Vertex":{"X":12288,"Y":-512,"Z":12288},"Lighting":6141,"Attributes":16,"Lighting2":6141},{"Vertex":{"X":12288,"Y":5376,"Z":13312},"Lighting":4631,"Attributes":16,"Lighting2":4631},{"Vertex":{"X":12288,"Y":-512,"Z":13312},"Lighting":6310,"Attributes":16,"Lighting2":6310},{"Vertex":{"X":12288,"Y":5376,"Z":14336},"Lighting":5369,"Attributes":16,"Lighting2":5369},{"Vertex":{"X":12288,"Y":768,"Z":13312},"Lighting":5788,"Attributes":16,"Lighting2":5788},{"Vertex":{"X":12288,"Y":768,"Z":14336},"Lighting":6488,"Attributes":16,"Lighting2":6488},{"Vertex":{"X":12288,"Y":5376,"Z":15360},"Lighting":5957,"Attributes":16,"Lighting2":5957},{"Vertex":{"X":12288,"Y":768,"Z":15360},"Lighting":7188,"Attributes":16,"Lighting2":7188},{"Vertex":{"X":12288,"Y":5376,"Z":16384},"Lighting":6398,"Attributes":16,"Lighting2":6398},{"Vertex":{"X":12288,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":12288,"Y":512,"Z":16384},"Lighting":6745,"Attributes":16,"Lighting2":6745},{"Vertex":{"X":12288,"Y":5376,"Z":17408},"Lighting":6723,"Attributes":16,"Lighting2":6723},{"Vertex":{"X":12288,"Y":512,"Z":17408},"Lighting":6949,"Attributes":16,"Lighting2":6949},{"Vertex":{"X":12288,"Y":5376,"Z":18432},"Lighting":6962,"Attributes":16,"Lighting2":6962},{"Vertex":{"X":12288,"Y":512,"Z":18432},"Lighting":7114,"Attributes":16,"Lighting2":7114},{"Vertex":{"X":12288,"Y":5376,"Z":19456},"Lighting":5596,"Attributes":16,"Lighting2":5596},{"Vertex":{"X":12288,"Y":768,"Z":18432},"Lighting":7095,"Attributes":16,"Lighting2":7095},{"Vertex":{"X":12288,"Y":768,"Z":19456},"Lighting":5854,"Attributes":16,"Lighting2":5854},{"Vertex":{"X":13312,"Y":3840,"Z":1024},"Lighting":7303,"Attributes":16,"Lighting2":7303},{"Vertex":{"X":13312,"Y":2048,"Z":1024},"Lighting":7330,"Attributes":16,"Lighting2":7330},{"Vertex":{"X":13312,"Y":5376,"Z":1024},"Lighting":7308,"Attributes":16,"Lighting2":7308},{"Vertex":{"X":13312,"Y":5376,"Z":2048},"Lighting":7185,"Attributes":16,"Lighting2":7185},{"Vertex":{"X":13312,"Y":512,"Z":1024},"Lighting":7374,"Attributes":16,"Lighting2":7374},{"Vertex":{"X":13312,"Y":512,"Z":2048},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":13312,"Y":5376,"Z":3072},"Lighting":7026,"Attributes":16,"Lighting2":7026},{"Vertex":{"X":13312,"Y":512,"Z":3072},"Lighting":7160,"Attributes":16,"Lighting2":7160},{"Vertex":{"X":13312,"Y":5376,"Z":4096},"Lighting":6821,"Attributes":16,"Lighting2":6821},{"Vertex":{"X":13312,"Y":512,"Z":4096},"Lighting":7015,"Attributes":16,"Lighting2":7015},{"Vertex":{"X":13312,"Y":5376,"Z":5120},"Lighting":6552,"Attributes":16,"Lighting2":6552},{"Vertex":{"X":13312,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":13312,"Y":5376,"Z":6144},"Lighting":6551,"Attributes":16,"Lighting2":6551},{"Vertex":{"X":13312,"Y":768,"Z":5120},"Lighting":7371,"Attributes":16,"Lighting2":7371},{"Vertex":{"X":13312,"Y":768,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":13312,"Y":5376,"Z":7168},"Lighting":5771,"Attributes":16,"Lighting2":5771},{"Vertex":{"X":13312,"Y":1024,"Z":6144},"Lighting":7006,"Attributes":16,"Lighting2":7006},{"Vertex":{"X":12288,"Y":1024,"Z":6144},"Lighting":6901,"Attributes":16,"Lighting2":6901},{"Vertex":{"X":12288,"Y":1024,"Z":7168},"Lighting":6042,"Attributes":16,"Lighting2":6042},{"Vertex":{"X":13312,"Y":1024,"Z":7168},"Lighting":6271,"Attributes":16,"Lighting2":6271},{"Vertex":{"X":13312,"Y":5376,"Z":8192},"Lighting":5269,"Attributes":16,"Lighting2":5269},{"Vertex":{"X":13312,"Y":-512,"Z":7168},"Lighting":6645,"Attributes":16,"Lighting2":6645},{"Vertex":{"X":13312,"Y":-512,"Z":8192},"Lighting":6481,"Attributes":16,"Lighting2":6481},{"Vertex":{"X":13312,"Y":5376,"Z":9216},"Lighting":4782,"Attributes":16,"Lighting2":4782},{"Vertex":{"X":13312,"Y":-512,"Z":9216},"Lighting":6347,"Attributes":16,"Lighting2":6347},{"Vertex":{"X":13312,"Y":5376,"Z":10240},"Lighting":4465,"Attributes":16,"Lighting2":4465},{"Vertex":{"X":13312,"Y":-512,"Z":10240},"Lighting":6271,"Attributes":16,"Lighting2":6271},{"Vertex":{"X":13312,"Y":5376,"Z":11264},"Lighting":4465,"Attributes":16,"Lighting2":4465},{"Vertex":{"X":13312,"Y":-512,"Z":11264},"Lighting":6271,"Attributes":16,"Lighting2":6271},{"Vertex":{"X":13312,"Y":5376,"Z":12288},"Lighting":4782,"Attributes":16,"Lighting2":4782},{"Vertex":{"X":13312,"Y":-512,"Z":12288},"Lighting":6347,"Attributes":16,"Lighting2":6347},{"Vertex":{"X":13312,"Y":5376,"Z":13312},"Lighting":5269,"Attributes":16,"Lighting2":5269},{"Vertex":{"X":13312,"Y":-512,"Z":13312},"Lighting":6481,"Attributes":16,"Lighting2":6481},{"Vertex":{"X":13312,"Y":5376,"Z":14336},"Lighting":6204,"Attributes":16,"Lighting2":6204},{"Vertex":{"X":13312,"Y":1024,"Z":13312},"Lighting":5989,"Attributes":16,"Lighting2":5989},{"Vertex":{"X":12288,"Y":1024,"Z":13312},"Lighting":5669,"Attributes":16,"Lighting2":5669},{"Vertex":{"X":12288,"Y":1024,"Z":14336},"Lighting":6673,"Attributes":16,"Lighting2":6673},{"Vertex":{"X":13312,"Y":1024,"Z":14336},"Lighting":6826,"Attributes":16,"Lighting2":6826},{"Vertex":{"X":13312,"Y":5376,"Z":15360},"Lighting":6205,"Attributes":16,"Lighting2":6205},{"Vertex":{"X":13312,"Y":768,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":13312,"Y":768,"Z":15360},"Lighting":7261,"Attributes":16,"Lighting2":7261},{"Vertex":{"X":13312,"Y":5376,"Z":16384},"Lighting":6552,"Attributes":16,"Lighting2":6552},{"Vertex":{"X":13312,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":13312,"Y":512,"Z":16384},"Lighting":6839,"Attributes":16,"Lighting2":6839},{"Vertex":{"X":13312,"Y":5376,"Z":17408},"Lighting":6821,"Attributes":16,"Lighting2":6821},{"Vertex":{"X":13312,"Y":512,"Z":17408},"Lighting":7015,"Attributes":16,"Lighting2":7015},{"Vertex":{"X":13312,"Y":5376,"Z":18432},"Lighting":7026,"Attributes":16,"Lighting2":7026},{"Vertex":{"X":13312,"Y":512,"Z":18432},"Lighting":7160,"Attributes":16,"Lighting2":7160},{"Vertex":{"X":13312,"Y":5376,"Z":19456},"Lighting":5634,"Attributes":16,"Lighting2":5634},{"Vertex":{"X":13312,"Y":768,"Z":18432},"Lighting":7144,"Attributes":16,"Lighting2":7144},{"Vertex":{"X":13312,"Y":768,"Z":19456},"Lighting":5885,"Attributes":16,"Lighting2":5885},{"Vertex":{"X":14336,"Y":3840,"Z":1024},"Lighting":7341,"Attributes":16,"Lighting2":7341},{"Vertex":{"X":14336,"Y":2048,"Z":1024},"Lighting":7365,"Attributes":16,"Lighting2":7365},{"Vertex":{"X":14336,"Y":5376,"Z":1024},"Lighting":7345,"Attributes":16,"Lighting2":7345},{"Vertex":{"X":14336,"Y":5376,"Z":2048},"Lighting":7238,"Attributes":16,"Lighting2":7238},{"Vertex":{"X":14336,"Y":512,"Z":1024},"Lighting":7405,"Attributes":16,"Lighting2":7405},{"Vertex":{"X":14336,"Y":512,"Z":2048},"Lighting":7319,"Attributes":16,"Lighting2":7319},{"Vertex":{"X":14336,"Y":5376,"Z":3072},"Lighting":7103,"Attributes":16,"Lighting2":7103},{"Vertex":{"X":14336,"Y":512,"Z":3072},"Lighting":7216,"Attributes":16,"Lighting2":7216},{"Vertex":{"X":14336,"Y":5376,"Z":4096},"Lighting":6934,"Attributes":16,"Lighting2":6934},{"Vertex":{"X":14336,"Y":512,"Z":4096},"Lighting":7094,"Attributes":16,"Lighting2":7094},{"Vertex":{"X":14336,"Y":5376,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":5376,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":768,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":768,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":3840,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":13312,"Y":3840,"Z":6144},"Lighting":7054,"Attributes":16,"Lighting2":7054},{"Vertex":{"X":13312,"Y":3840,"Z":7168},"Lighting":5719,"Attributes":16,"Lighting2":5719},{"Vertex":{"X":14336,"Y":3840,"Z":7168},"Lighting":7031,"Attributes":16,"Lighting2":7031},{"Vertex":{"X":14336,"Y":2048,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":13312,"Y":2048,"Z":6144},"Lighting":7151,"Attributes":16,"Lighting2":7151},{"Vertex":{"X":13312,"Y":2048,"Z":7168},"Lighting":6016,"Attributes":16,"Lighting2":6016},{"Vertex":{"X":14336,"Y":2048,"Z":7168},"Lighting":7133,"Attributes":16,"Lighting2":7133},{"Vertex":{"X":14336,"Y":5376,"Z":7168},"Lighting":6517,"Attributes":16,"Lighting2":6517},{"Vertex":{"X":14336,"Y":5376,"Z":8192},"Lighting":5837,"Attributes":16,"Lighting2":5837},{"Vertex":{"X":14336,"Y":1024,"Z":7168},"Lighting":6986,"Attributes":16,"Lighting2":6986},{"Vertex":{"X":13312,"Y":1024,"Z":7168},"Lighting":6271,"Attributes":16,"Lighting2":6271},{"Vertex":{"X":13312,"Y":1024,"Z":8192},"Lighting":5989,"Attributes":16,"Lighting2":5989},{"Vertex":{"X":14336,"Y":1024,"Z":8192},"Lighting":6852,"Attributes":16,"Lighting2":6852},{"Vertex":{"X":14336,"Y":5376,"Z":9216},"Lighting":5546,"Attributes":16,"Lighting2":5546},{"Vertex":{"X":14336,"Y":768,"Z":8192},"Lighting":6685,"Attributes":16,"Lighting2":6685},{"Vertex":{"X":13312,"Y":768,"Z":8192},"Lighting":6077,"Attributes":16,"Lighting2":6077},{"Vertex":{"X":13312,"Y":768,"Z":9216},"Lighting":5853,"Attributes":16,"Lighting2":5853},{"Vertex":{"X":14336,"Y":768,"Z":9216},"Lighting":6216,"Attributes":16,"Lighting2":6216},{"Vertex":{"X":14336,"Y":5376,"Z":10240},"Lighting":5369,"Attributes":16,"Lighting2":5369},{"Vertex":{"X":13312,"Y":768,"Z":10240},"Lighting":5719,"Attributes":16,"Lighting2":5719},{"Vertex":{"X":14336,"Y":768,"Z":10240},"Lighting":6126,"Attributes":16,"Lighting2":6126},{"Vertex":{"X":14336,"Y":5376,"Z":11264},"Lighting":5369,"Attributes":16,"Lighting2":5369},{"Vertex":{"X":13312,"Y":768,"Z":11264},"Lighting":5719,"Attributes":16,"Lighting2":5719},{"Vertex":{"X":14336,"Y":768,"Z":11264},"Lighting":6126,"Attributes":16,"Lighting2":6126},{"Vertex":{"X":14336,"Y":5376,"Z":12288},"Lighting":5546,"Attributes":16,"Lighting2":5546},{"Vertex":{"X":13312,"Y":768,"Z":12288},"Lighting":5853,"Attributes":16,"Lighting2":5853},{"Vertex":{"X":14336,"Y":768,"Z":12288},"Lighting":6560,"Attributes":16,"Lighting2":6560},{"Vertex":{"X":14336,"Y":5376,"Z":13312},"Lighting":6257,"Attributes":16,"Lighting2":6257},{"Vertex":{"X":14336,"Y":1024,"Z":12288},"Lighting":6739,"Attributes":16,"Lighting2":6739},{"Vertex":{"X":13312,"Y":1024,"Z":12288},"Lighting":5741,"Attributes":16,"Lighting2":5741},{"Vertex":{"X":14336,"Y":1024,"Z":13312},"Lighting":6852,"Attributes":16,"Lighting2":6852},{"Vertex":{"X":14336,"Y":3840,"Z":13312},"Lighting":6862,"Attributes":16,"Lighting2":6862},{"Vertex":{"X":13312,"Y":3840,"Z":13312},"Lighting":5190,"Attributes":16,"Lighting2":5190},{"Vertex":{"X":13312,"Y":3840,"Z":14336},"Lighting":6828,"Attributes":16,"Lighting2":6828},{"Vertex":{"X":14336,"Y":3840,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":2048,"Z":13312},"Lighting":7002,"Attributes":16,"Lighting2":7002},{"Vertex":{"X":13312,"Y":2048,"Z":13312},"Lighting":5631,"Attributes":16,"Lighting2":5631},{"Vertex":{"X":13312,"Y":2048,"Z":14336},"Lighting":6976,"Attributes":16,"Lighting2":6976},{"Vertex":{"X":14336,"Y":2048,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":5376,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":5376,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":768,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":768,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":5376,"Z":16384},"Lighting":6723,"Attributes":16,"Lighting2":6723},{"Vertex":{"X":14336,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":14336,"Y":512,"Z":16384},"Lighting":6949,"Attributes":16,"Lighting2":6949},{"Vertex":{"X":14336,"Y":5376,"Z":17408},"Lighting":6934,"Attributes":16,"Lighting2":6934},{"Vertex":{"X":14336,"Y":512,"Z":17408},"Lighting":7094,"Attributes":16,"Lighting2":7094},{"Vertex":{"X":14336,"Y":5376,"Z":18432},"Lighting":7103,"Attributes":16,"Lighting2":7103},{"Vertex":{"X":14336,"Y":512,"Z":18432},"Lighting":7216,"Attributes":16,"Lighting2":7216},{"Vertex":{"X":14336,"Y":5376,"Z":19456},"Lighting":5708,"Attributes":16,"Lighting2":5708},{"Vertex":{"X":14336,"Y":768,"Z":18432},"Lighting":7203,"Attributes":16,"Lighting2":7203},{"Vertex":{"X":14336,"Y":768,"Z":19456},"Lighting":5946,"Attributes":16,"Lighting2":5946},{"Vertex":{"X":15360,"Y":3840,"Z":1024},"Lighting":7384,"Attributes":16,"Lighting2":7384},{"Vertex":{"X":15360,"Y":2048,"Z":1024},"Lighting":7405,"Attributes":16,"Lighting2":7405},{"Vertex":{"X":15360,"Y":5376,"Z":1024},"Lighting":7387,"Attributes":16,"Lighting2":7387},{"Vertex":{"X":15360,"Y":5376,"Z":2048},"Lighting":7296,"Attributes":16,"Lighting2":7296},{"Vertex":{"X":15360,"Y":512,"Z":1024},"Lighting":7439,"Attributes":16,"Lighting2":7439},{"Vertex":{"X":15360,"Y":512,"Z":2048},"Lighting":7365,"Attributes":16,"Lighting2":7365},{"Vertex":{"X":15360,"Y":5376,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":512,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":5376,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":512,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":5376,"Z":5120},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":15360,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":5376,"Z":6144},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":15360,"Y":768,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":768,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":5376,"Z":7168},"Lighting":6495,"Attributes":16,"Lighting2":6495},{"Vertex":{"X":14336,"Y":768,"Z":7168},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":768,"Z":7168},"Lighting":7353,"Attributes":16,"Lighting2":7353},{"Vertex":{"X":15360,"Y":5376,"Z":8192},"Lighting":6288,"Attributes":16,"Lighting2":6288},{"Vertex":{"X":15360,"Y":768,"Z":8192},"Lighting":7287,"Attributes":16,"Lighting2":7287},{"Vertex":{"X":15360,"Y":5376,"Z":9216},"Lighting":6114,"Attributes":16,"Lighting2":6114},{"Vertex":{"X":15360,"Y":768,"Z":9216},"Lighting":7233,"Attributes":16,"Lighting2":7233},{"Vertex":{"X":15360,"Y":5376,"Z":10240},"Lighting":6013,"Attributes":16,"Lighting2":6013},{"Vertex":{"X":15360,"Y":768,"Z":10240},"Lighting":7204,"Attributes":16,"Lighting2":7204},{"Vertex":{"X":15360,"Y":5376,"Z":11264},"Lighting":6013,"Attributes":16,"Lighting2":6013},{"Vertex":{"X":15360,"Y":768,"Z":11264},"Lighting":7204,"Attributes":16,"Lighting2":7204},{"Vertex":{"X":15360,"Y":5376,"Z":12288},"Lighting":6114,"Attributes":16,"Lighting2":6114},{"Vertex":{"X":15360,"Y":768,"Z":12288},"Lighting":7233,"Attributes":16,"Lighting2":7233},{"Vertex":{"X":15360,"Y":5376,"Z":13312},"Lighting":6288,"Attributes":16,"Lighting2":6288},{"Vertex":{"X":14336,"Y":768,"Z":13312},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":768,"Z":13312},"Lighting":7287,"Attributes":16,"Lighting2":7287},{"Vertex":{"X":15360,"Y":5376,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":768,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":5376,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":768,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":5376,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":512,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":15360,"Y":5376,"Z":17408},"Lighting":7050,"Attributes":16,"Lighting2":7050},{"Vertex":{"X":15360,"Y":512,"Z":17408},"Lighting":7177,"Attributes":16,"Lighting2":7177},{"Vertex":{"X":15360,"Y":5376,"Z":18432},"Lighting":7185,"Attributes":16,"Lighting2":7185},{"Vertex":{"X":15360,"Y":512,"Z":18432},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":15360,"Y":5376,"Z":19456},"Lighting":5811,"Attributes":16,"Lighting2":5811},{"Vertex":{"X":15360,"Y":768,"Z":18432},"Lighting":7267,"Attributes":16,"Lighting2":7267},{"Vertex":{"X":15360,"Y":768,"Z":19456},"Lighting":6030,"Attributes":16,"Lighting2":6030},{"Vertex":{"X":16384,"Y":3840,"Z":1024},"Lighting":7429,"Attributes":16,"Lighting2":7429},{"Vertex":{"X":16384,"Y":2048,"Z":1024},"Lighting":7446,"Attributes":16,"Lighting2":7446},{"Vertex":{"X":16384,"Y":5376,"Z":1024},"Lighting":7431,"Attributes":16,"Lighting2":7431},{"Vertex":{"X":16384,"Y":5376,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":1024},"Lighting":7475,"Attributes":16,"Lighting2":7475},{"Vertex":{"X":16384,"Y":512,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":5376,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":5376,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":5376,"Z":5120},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":5120},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":5376,"Z":6144},"Lighting":6904,"Attributes":32784,"Lighting2":6904},{"Vertex":{"X":15360,"Y":512,"Z":6144},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":6144},"Lighting":7072,"Attributes":16,"Lighting2":7072},{"Vertex":{"X":16384,"Y":5376,"Z":7168},"Lighting":6764,"Attributes":16,"Lighting2":6764},{"Vertex":{"X":15360,"Y":512,"Z":7168},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":7168},"Lighting":6977,"Attributes":16,"Lighting2":6977},{"Vertex":{"X":16384,"Y":5376,"Z":8192},"Lighting":6631,"Attributes":16,"Lighting2":6631},{"Vertex":{"X":15360,"Y":512,"Z":8192},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":8192},"Lighting":6889,"Attributes":16,"Lighting2":6889},{"Vertex":{"X":16384,"Y":5376,"Z":9216},"Lighting":6524,"Attributes":16,"Lighting2":6524},{"Vertex":{"X":15360,"Y":512,"Z":9216},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":9216},"Lighting":6822,"Attributes":16,"Lighting2":6822},{"Vertex":{"X":16384,"Y":5376,"Z":10240},"Lighting":6464,"Attributes":16,"Lighting2":6464},{"Vertex":{"X":15360,"Y":512,"Z":10240},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":10240},"Lighting":6785,"Attributes":16,"Lighting2":6785},{"Vertex":{"X":16384,"Y":5376,"Z":11264},"Lighting":6464,"Attributes":16,"Lighting2":6464},{"Vertex":{"X":15360,"Y":512,"Z":11264},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":11264},"Lighting":6785,"Attributes":16,"Lighting2":6785},{"Vertex":{"X":16384,"Y":5376,"Z":12288},"Lighting":6524,"Attributes":16,"Lighting2":6524},{"Vertex":{"X":15360,"Y":512,"Z":12288},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":12288},"Lighting":6822,"Attributes":16,"Lighting2":6822},{"Vertex":{"X":16384,"Y":5376,"Z":13312},"Lighting":6631,"Attributes":16,"Lighting2":6631},{"Vertex":{"X":15360,"Y":512,"Z":13312},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":13312},"Lighting":6889,"Attributes":16,"Lighting2":6889},{"Vertex":{"X":16384,"Y":5376,"Z":14336},"Lighting":6764,"Attributes":16,"Lighting2":6764},{"Vertex":{"X":15360,"Y":512,"Z":14336},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":14336},"Lighting":6977,"Attributes":16,"Lighting2":6977},{"Vertex":{"X":16384,"Y":5376,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":5376,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":5376,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":512,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":16384,"Y":5376,"Z":18432},"Lighting":7265,"Attributes":16,"Lighting2":7265},{"Vertex":{"X":16384,"Y":512,"Z":18432},"Lighting":7340,"Attributes":16,"Lighting2":7340},{"Vertex":{"X":16384,"Y":5376,"Z":19456},"Lighting":5936,"Attributes":16,"Lighting2":5936},{"Vertex":{"X":16384,"Y":768,"Z":18432},"Lighting":7331,"Attributes":16,"Lighting2":7331},{"Vertex":{"X":16384,"Y":768,"Z":19456},"Lighting":6134,"Attributes":16,"Lighting2":6134},{"Vertex":{"X":17408,"Y":3840,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":2048,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":5376,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":5376,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":512,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":512,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":5376,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":512,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":5376,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":512,"Z":4096},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":5376,"Z":5120},"Lighting":7168,"Attributes":16,"Lighting2":7168},{"Vertex":{"X":17408,"Y":512,"Z":5120},"Lighting":7265,"Attributes":16,"Lighting2":7265},{"Vertex":{"X":17408,"Y":5376,"Z":6144},"Lighting":7072,"Attributes":16,"Lighting2":7072},{"Vertex":{"X":17408,"Y":512,"Z":6144},"Lighting":7193,"Attributes":16,"Lighting2":7193},{"Vertex":{"X":17408,"Y":5376,"Z":7168},"Lighting":6976,"Attributes":16,"Lighting2":6976},{"Vertex":{"X":17408,"Y":512,"Z":7168},"Lighting":7123,"Attributes":16,"Lighting2":7123},{"Vertex":{"X":17408,"Y":5376,"Z":8192},"Lighting":6888,"Attributes":16,"Lighting2":6888},{"Vertex":{"X":17408,"Y":512,"Z":8192},"Lighting":7062,"Attributes":16,"Lighting2":7062},{"Vertex":{"X":17408,"Y":5376,"Z":9216},"Lighting":6821,"Attributes":16,"Lighting2":6821},{"Vertex":{"X":17408,"Y":512,"Z":9216},"Lighting":7015,"Attributes":16,"Lighting2":7015},{"Vertex":{"X":17408,"Y":5376,"Z":10240},"Lighting":6783,"Attributes":16,"Lighting2":6783},{"Vertex":{"X":17408,"Y":512,"Z":10240},"Lighting":6990,"Attributes":16,"Lighting2":6990},{"Vertex":{"X":17408,"Y":5376,"Z":11264},"Lighting":6783,"Attributes":32784,"Lighting2":6783},{"Vertex":{"X":17408,"Y":512,"Z":11264},"Lighting":6990,"Attributes":16,"Lighting2":6990},{"Vertex":{"X":17408,"Y":5376,"Z":12288},"Lighting":6821,"Attributes":32784,"Lighting2":6821},{"Vertex":{"X":17408,"Y":512,"Z":12288},"Lighting":7015,"Attributes":16,"Lighting2":7015},{"Vertex":{"X":17408,"Y":5376,"Z":13312},"Lighting":6888,"Attributes":16,"Lighting2":6888},{"Vertex":{"X":17408,"Y":512,"Z":13312},"Lighting":7062,"Attributes":16,"Lighting2":7062},{"Vertex":{"X":17408,"Y":5376,"Z":14336},"Lighting":6976,"Attributes":16,"Lighting2":6976},{"Vertex":{"X":17408,"Y":512,"Z":14336},"Lighting":7123,"Attributes":16,"Lighting2":7123},{"Vertex":{"X":17408,"Y":5376,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":512,"Z":15360},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":5376,"Z":16384},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":17408,"Y":512,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":5376,"Z":17408},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":17408,"Y":512,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":5376,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":512,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":5376,"Z":19456},"Lighting":6075,"Attributes":16,"Lighting2":6075},{"Vertex":{"X":17408,"Y":768,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":17408,"Y":768,"Z":19456},"Lighting":6250,"Attributes":16,"Lighting2":6250},{"Vertex":{"X":18432,"Y":3840,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":2048,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":5376,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":5376,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":512,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":512,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":5376,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":512,"Z":3072},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":5376,"Z":4096},"Lighting":7345,"Attributes":16,"Lighting2":7345},{"Vertex":{"X":18432,"Y":512,"Z":4096},"Lighting":7405,"Attributes":16,"Lighting2":7405},{"Vertex":{"X":18432,"Y":5376,"Z":5120},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":18432,"Y":512,"Z":5120},"Lighting":7351,"Attributes":16,"Lighting2":7351},{"Vertex":{"X":18432,"Y":5376,"Z":6144},"Lighting":7208,"Attributes":16,"Lighting2":7208},{"Vertex":{"X":18432,"Y":512,"Z":6144},"Lighting":7296,"Attributes":16,"Lighting2":7296},{"Vertex":{"X":18432,"Y":5376,"Z":7168},"Lighting":7141,"Attributes":16,"Lighting2":7141},{"Vertex":{"X":18432,"Y":512,"Z":7168},"Lighting":7245,"Attributes":16,"Lighting2":7245},{"Vertex":{"X":18432,"Y":5376,"Z":8192},"Lighting":7082,"Attributes":16,"Lighting2":7082},{"Vertex":{"X":18432,"Y":512,"Z":8192},"Lighting":7201,"Attributes":16,"Lighting2":7201},{"Vertex":{"X":18432,"Y":5376,"Z":9216},"Lighting":7038,"Attributes":16,"Lighting2":7038},{"Vertex":{"X":18432,"Y":512,"Z":9216},"Lighting":7168,"Attributes":16,"Lighting2":7168},{"Vertex":{"X":18432,"Y":5376,"Z":10240},"Lighting":7014,"Attributes":16,"Lighting2":7014},{"Vertex":{"X":18432,"Y":512,"Z":10240},"Lighting":7151,"Attributes":16,"Lighting2":7151},{"Vertex":{"X":18432,"Y":5376,"Z":11264},"Lighting":7014,"Attributes":32784,"Lighting2":7014},{"Vertex":{"X":18432,"Y":512,"Z":11264},"Lighting":7151,"Attributes":16,"Lighting2":7151},{"Vertex":{"X":18432,"Y":5376,"Z":12288},"Lighting":7038,"Attributes":32784,"Lighting2":7038},{"Vertex":{"X":18432,"Y":512,"Z":12288},"Lighting":7168,"Attributes":16,"Lighting2":7168},{"Vertex":{"X":18432,"Y":5376,"Z":13312},"Lighting":7082,"Attributes":16,"Lighting2":7082},{"Vertex":{"X":18432,"Y":512,"Z":13312},"Lighting":7201,"Attributes":16,"Lighting2":7201},{"Vertex":{"X":18432,"Y":5376,"Z":14336},"Lighting":7141,"Attributes":16,"Lighting2":7141},{"Vertex":{"X":18432,"Y":512,"Z":14336},"Lighting":7245,"Attributes":16,"Lighting2":7245},{"Vertex":{"X":18432,"Y":5376,"Z":15360},"Lighting":7208,"Attributes":16,"Lighting2":7208},{"Vertex":{"X":18432,"Y":512,"Z":15360},"Lighting":7296,"Attributes":16,"Lighting2":7296},{"Vertex":{"X":18432,"Y":5376,"Z":16384},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":18432,"Y":512,"Z":16384},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":5376,"Z":17408},"Lighting":7935,"Attributes":32784,"Lighting2":7935},{"Vertex":{"X":18432,"Y":512,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":5376,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":512,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":5376,"Z":19456},"Lighting":6221,"Attributes":16,"Lighting2":6221},{"Vertex":{"X":18432,"Y":768,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":768,"Z":19456},"Lighting":6373,"Attributes":16,"Lighting2":6373},{"Vertex":{"X":19456,"Y":3840,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":2048,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":5376,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":5376,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":512,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":512,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":5376,"Z":3072},"Lighting":7469,"Attributes":16,"Lighting2":7469},{"Vertex":{"X":19456,"Y":512,"Z":3072},"Lighting":7507,"Attributes":16,"Lighting2":7507},{"Vertex":{"X":19456,"Y":5376,"Z":4096},"Lighting":7420,"Attributes":16,"Lighting2":7420},{"Vertex":{"X":19456,"Y":512,"Z":4096},"Lighting":7466,"Attributes":16,"Lighting2":7466},{"Vertex":{"X":19456,"Y":5376,"Z":5120},"Lighting":7369,"Attributes":16,"Lighting2":7369},{"Vertex":{"X":19456,"Y":512,"Z":5120},"Lighting":7424,"Attributes":16,"Lighting2":7424},{"Vertex":{"X":19456,"Y":5376,"Z":6144},"Lighting":7319,"Attributes":16,"Lighting2":7319},{"Vertex":{"X":19456,"Y":512,"Z":6144},"Lighting":7383,"Attributes":16,"Lighting2":7383},{"Vertex":{"X":19456,"Y":5376,"Z":7168},"Lighting":7271,"Attributes":16,"Lighting2":7271},{"Vertex":{"X":19456,"Y":512,"Z":7168},"Lighting":7346,"Attributes":16,"Lighting2":7346},{"Vertex":{"X":19456,"Y":5376,"Z":8192},"Lighting":7231,"Attributes":16,"Lighting2":7231},{"Vertex":{"X":19456,"Y":512,"Z":8192},"Lighting":7314,"Attributes":16,"Lighting2":7314},{"Vertex":{"X":19456,"Y":5376,"Z":9216},"Lighting":7201,"Attributes":16,"Lighting2":7201},{"Vertex":{"X":19456,"Y":512,"Z":9216},"Lighting":7290,"Attributes":16,"Lighting2":7290},{"Vertex":{"X":19456,"Y":5376,"Z":10240},"Lighting":7185,"Attributes":16,"Lighting2":7185},{"Vertex":{"X":19456,"Y":512,"Z":10240},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":19456,"Y":5376,"Z":11264},"Lighting":7185,"Attributes":16,"Lighting2":7185},{"Vertex":{"X":19456,"Y":512,"Z":11264},"Lighting":7278,"Attributes":16,"Lighting2":7278},{"Vertex":{"X":19456,"Y":5376,"Z":12288},"Lighting":7201,"Attributes":16,"Lighting2":7201},{"Vertex":{"X":19456,"Y":512,"Z":12288},"Lighting":7290,"Attributes":16,"Lighting2":7290},{"Vertex":{"X":19456,"Y":5376,"Z":13312},"Lighting":7231,"Attributes":16,"Lighting2":7231},{"Vertex":{"X":19456,"Y":512,"Z":13312},"Lighting":7314,"Attributes":16,"Lighting2":7314},{"Vertex":{"X":19456,"Y":5376,"Z":14336},"Lighting":7271,"Attributes":16,"Lighting2":7271},{"Vertex":{"X":19456,"Y":512,"Z":14336},"Lighting":7346,"Attributes":16,"Lighting2":7346},{"Vertex":{"X":19456,"Y":5376,"Z":15360},"Lighting":7319,"Attributes":16,"Lighting2":7319},{"Vertex":{"X":19456,"Y":512,"Z":15360},"Lighting":7383,"Attributes":16,"Lighting2":7383},{"Vertex":{"X":19456,"Y":5376,"Z":16384},"Lighting":7369,"Attributes":16,"Lighting2":7369},{"Vertex":{"X":19456,"Y":512,"Z":16384},"Lighting":7424,"Attributes":16,"Lighting2":7424},{"Vertex":{"X":19456,"Y":5376,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":512,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":5376,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":512,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":5376,"Z":19456},"Lighting":6367,"Attributes":16,"Lighting2":6367},{"Vertex":{"X":19456,"Y":1024,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":1024,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":18432,"Y":1024,"Z":19456},"Lighting":6355,"Attributes":16,"Lighting2":6355},{"Vertex":{"X":19456,"Y":1024,"Z":19456},"Lighting":6483,"Attributes":16,"Lighting2":6483},{"Vertex":{"X":19456,"Y":3840,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":3840,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":2048,"Z":1024},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":2048,"Z":2048},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":3840,"Z":3072},"Lighting":7467,"Attributes":16,"Lighting2":7467},{"Vertex":{"X":19456,"Y":2048,"Z":3072},"Lighting":7481,"Attributes":16,"Lighting2":7481},{"Vertex":{"X":19456,"Y":3840,"Z":4096},"Lighting":7417,"Attributes":16,"Lighting2":7417},{"Vertex":{"X":19456,"Y":2048,"Z":4096},"Lighting":7435,"Attributes":16,"Lighting2":7435},{"Vertex":{"X":19456,"Y":3840,"Z":5120},"Lighting":7366,"Attributes":16,"Lighting2":7366},{"Vertex":{"X":19456,"Y":2048,"Z":5120},"Lighting":7388,"Attributes":16,"Lighting2":7388},{"Vertex":{"X":19456,"Y":3840,"Z":6144},"Lighting":7315,"Attributes":16,"Lighting2":7315},{"Vertex":{"X":19456,"Y":2048,"Z":6144},"Lighting":7340,"Attributes":16,"Lighting2":7340},{"Vertex":{"X":19456,"Y":3840,"Z":7168},"Lighting":7267,"Attributes":16,"Lighting2":7267},{"Vertex":{"X":19456,"Y":2048,"Z":7168},"Lighting":7296,"Attributes":16,"Lighting2":7296},{"Vertex":{"X":19456,"Y":3840,"Z":8192},"Lighting":7225,"Attributes":16,"Lighting2":7225},{"Vertex":{"X":19456,"Y":2048,"Z":8192},"Lighting":7259,"Attributes":16,"Lighting2":7259},{"Vertex":{"X":19456,"Y":3840,"Z":9216},"Lighting":7195,"Attributes":16,"Lighting2":7195},{"Vertex":{"X":19456,"Y":2048,"Z":9216},"Lighting":7231,"Attributes":16,"Lighting2":7231},{"Vertex":{"X":19456,"Y":3840,"Z":10240},"Lighting":7178,"Attributes":16,"Lighting2":7178},{"Vertex":{"X":19456,"Y":2048,"Z":10240},"Lighting":7216,"Attributes":16,"Lighting2":7216},{"Vertex":{"X":19456,"Y":3840,"Z":11264},"Lighting":7178,"Attributes":16,"Lighting2":7178},{"Vertex":{"X":19456,"Y":2048,"Z":11264},"Lighting":7216,"Attributes":16,"Lighting2":7216},{"Vertex":{"X":19456,"Y":3840,"Z":12288},"Lighting":7195,"Attributes":16,"Lighting2":7195},{"Vertex":{"X":19456,"Y":2048,"Z":12288},"Lighting":7231,"Attributes":16,"Lighting2":7231},{"Vertex":{"X":19456,"Y":3840,"Z":13312},"Lighting":7225,"Attributes":16,"Lighting2":7225},{"Vertex":{"X":19456,"Y":2048,"Z":13312},"Lighting":7259,"Attributes":16,"Lighting2":7259},{"Vertex":{"X":19456,"Y":3840,"Z":14336},"Lighting":7267,"Attributes":16,"Lighting2":7267},{"Vertex":{"X":19456,"Y":2048,"Z":14336},"Lighting":7296,"Attributes":16,"Lighting2":7296},{"Vertex":{"X":19456,"Y":3840,"Z":15360},"Lighting":7315,"Attributes":16,"Lighting2":7315},{"Vertex":{"X":19456,"Y":2048,"Z":15360},"Lighting":7340,"Attributes":16,"Lighting2":7340},{"Vertex":{"X":19456,"Y":3840,"Z":16384},"Lighting":7366,"Attributes":16,"Lighting2":7366},{"Vertex":{"X":19456,"Y":2048,"Z":16384},"Lighting":7388,"Attributes":16,"Lighting2":7388},{"Vertex":{"X":19456,"Y":3840,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":2048,"Z":17408},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":3840,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":2048,"Z":18432},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":19456,"Y":3840,"Z":19456},"Lighting":6371,"Attributes":16,"Lighting2":6371},{"Vertex":{"X":19456,"Y":2048,"Z":19456},"Lighting":7935,"Attributes":16,"Lighting2":7935},{"Vertex":{"X":2048,"Y":3840,"Z":19456},"Lighting":6399,"Attributes":16,"Lighting2":6399},{"Vertex":{"X":3072,"Y":3840,"Z":19456},"Lighting":6272,"Attributes":16,"Lighting2":6272},{"Vertex":{"X":4096,"Y":3840,"Z":19456},"Lighting":6172,"Attributes":16,"Lighting2":6172},{"Vertex":{"X":5120,"Y":3840,"Z":19456},"Lighting":6117,"Attributes":16,"Lighting2":6117},{"Vertex":{"X":6144,"Y":3840,"Z":19456},"Lighting":6117,"Attributes":16,"Lighting2":6117},{"Vertex":{"X":7168,"Y":3840,"Z":19456},"Lighting":6172,"Attributes":16,"Lighting2":6172},{"Vertex":{"X":8192,"Y":3840,"Z":19456},"Lighting":5811,"Attributes":16,"Lighting2":5811},{"Vertex":{"X":9216,"Y":3840,"Z":19456},"Lighting":5708,"Attributes":16,"Lighting2":5708},{"Vertex":{"X":10240,"Y":3840,"Z":19456},"Lighting":5634,"Attributes":16,"Lighting2":5634},{"Vertex":{"X":11264,"Y":3840,"Z":19456},"Lighting":5596,"Attributes":16,"Lighting2":5596},{"Vertex":{"X":12288,"Y":3840,"Z":19456},"Lighting":5596,"Attributes":16,"Lighting2":5596},{"Vertex":{"X":13312,"Y":3840,"Z":19456},"Lighting":5634,"Attributes":16,"Lighting2":5634},{"Vertex":{"X":14336,"Y":3840,"Z":19456},"Lighting":5708,"Attributes":16,"Lighting2":5708},{"Vertex":{"X":15360,"Y":3840,"Z":19456},"Lighting":5811,"Attributes":16,"Lighting2":5811},{"Vertex":{"X":16384,"Y":3840,"Z":19456},"Lighting":5936,"Attributes":16,"Lighting2":5936},{"Vertex":{"X":17408,"Y":3840,"Z":19456},"Lighting":6075,"Attributes":16,"Lighting2":6075},{"Vertex":{"X":18432,"Y":3840,"Z":19456},"Lighting":6221,"Attributes":16,"Lighting2":6221},{"Vertex":{"X":2048,"Y":2048,"Z":19456},"Lighting":6399,"Attributes":16,"Lighting2":6399},{"Vertex":{"X":3072,"Y":2048,"Z":19456},"Lighting":6272,"Attributes":16,"Lighting2":6272},{"Vertex":{"X":4096,"Y":2048,"Z":19456},"Lighting":6172,"Attributes":16,"Lighting2":6172},{"Vertex":{"X":5120,"Y":2048,"Z":19456},"Lighting":6117,"Attributes":16,"Lighting2":6117},{"Vertex":{"X":6144,"Y":2048,"Z":19456},"Lighting":6117,"Attributes":16,"Lighting2":6117},{"Vertex":{"X":7168,"Y":2048,"Z":19456},"Lighting":6172,"Attributes":16,"Lighting2":6172},{"Vertex":{"X":8192,"Y":2048,"Z":19456},"Lighting":5811,"Attributes":16,"Lighting2":5811},{"Vertex":{"X":9216,"Y":2048,"Z":19456},"Lighting":5708,"Attributes":16,"Lighting2":5708},{"Vertex":{"X":10240,"Y":2048,"Z":19456},"Lighting":5634,"Attributes":16,"Lighting2":5634},{"Vertex":{"X":11264,"Y":2048,"Z":19456},"Lighting":5596,"Attributes":16,"Lighting2":5596},{"Vertex":{"X":12288,"Y":2048,"Z":19456},"Lighting":5596,"Attributes":16,"Lighting2":5596},{"Vertex":{"X":13312,"Y":2048,"Z":19456},"Lighting":5634,"Attributes":16,"Lighting2":5634},{"Vertex":{"X":14336,"Y":2048,"Z":19456},"Lighting":5708,"Attributes":16,"Lighting2":5708},{"Vertex":{"X":15360,"Y":2048,"Z":19456},"Lighting":5811,"Attributes":16,"Lighting2":5811},{"Vertex":{"X":16384,"Y":2048,"Z":19456},"Lighting":5936,"Attributes":16,"Lighting2":5936},{"Vertex":{"X":17408,"Y":2048,"Z":19456},"Lighting":6075,"Attributes":16,"Lighting2":6075},{"Vertex":{"X":18432,"Y":2048,"Z":19456},"Lighting":6221,"Attributes":16,"Lighting2":6221}],"Rectangles":[{"Type":4,"Vertices":[40,41,42,43],"Texture":1160},{"Type":4,"Vertices":[47,46,45,44],"Texture":1160},{"Type":4,"Vertices":[0,1,42,41],"Texture":1160},{"Type":4,"Vertices":[45,46,3,2],"Texture":1160},{"Type":4,"Vertices":[2,3,1,0],"Texture":1160},{"Type":4,"Vertices":[38,0,41,40],"Texture":1160},{"Type":4,"Vertices":[44,45,2,39],"Texture":1160},{"Type":4,"Vertices":[39,2,0,38],"Texture":1160},{"Type":4,"Vertices":[43,42,48,49],"Texture":1160},{"Type":4,"Vertices":[51,50,46,47],"Texture":1160},{"Type":4,"Vertices":[1,4,48,42],"Texture":1160},{"Type":4,"Vertices":[46,50,5,3],"Texture":1160},{"Type":4,"Vertices":[3,5,4,1],"Texture":1160},{"Type":4,"Vertices":[49,48,52,53],"Texture":1160},{"Type":4,"Vertices":[55,54,50,51],"Texture":1160},{"Type":4,"Vertices":[4,6,52,48],"Texture":1160},{"Type":4,"Vertices":[50,54,7,5],"Texture":1160},{"Type":4,"Vertices":[5,7,6,4],"Texture":1160},{"Type":4,"Vertices":[53,52,56,57],"Texture":1160},{"Type":4,"Vertices":[59,58,54,55],"Texture":1160},{"Type":4,"Vertices":[6,8,56,52],"Texture":1160},{"Type":4,"Vertices":[54,58,9,7],"Texture":1160},{"Type":4,"Vertices":[7,9,8,6],"Texture":1160},{"Type":4,"Vertices":[57,56,60,61],"Texture":1160},{"Type":4,"Vertices":[63,62,58,59],"Texture":1160},{"Type":4,"Vertices":[8,10,60,56],"Texture":1160},{"Type":4,"Vertices":[58,62,11,9],"Texture":1160},{"Type":4,"Vertices":[9,11,10,8],"Texture":1160},{"Type":4,"Vertices":[61,60,64,65],"Texture":1160},{"Type":4,"Vertices":[67,66,62,63],"Texture":1160},{"Type":4,"Vertices":[10,12,64,60],"Texture":1160},{"Type":4,"Vertices":[62,66,13,11],"Texture":1160},{"Type":4,"Vertices":[11,13,12,10],"Texture":1160},{"Type":4,"Vertices":[65,64,68,69],"Texture":1160},{"Type":4,"Vertices":[71,70,66,67],"Texture":1160},{"Type":4,"Vertices":[12,14,68,64],"Texture":1160},{"Type":4,"Vertices":[66,70,15,13],"Texture":1160},{"Type":4,"Vertices":[13,15,14,12],"Texture":1160},{"Type":4,"Vertices":[69,68,72,73],"Texture":1160},{"Type":4,"Vertices":[75,74,70,71],"Texture":1160},{"Type":4,"Vertices":[14,16,72,68],"Texture":1160},{"Type":4,"Vertices":[70,74,17,15],"Texture":1160},{"Type":4,"Vertices":[15,17,16,14],"Texture":1160},{"Type":4,"Vertices":[73,72,76,77],"Texture":1160},{"Type":4,"Vertices":[79,78,74,75],"Texture":1160},{"Type":4,"Vertices":[16,18,76,72],"Texture":1160},{"Type":4,"Vertices":[74,78,19,17],"Texture":1160},{"Type":4,"Vertices":[17,19,18,16],"Texture":1160},{"Type":4,"Vertices":[77,76,80,81],"Texture":1160},{"Type":4,"Vertices":[83,82,78,79],"Texture":1160},{"Type":4,"Vertices":[18,20,80,76],"Texture":1160},{"Type":4,"Vertices":[78,82,21,19],"Texture":1160},{"Type":4,"Vertices":[19,21,20,18],"Texture":1160},{"Type":4,"Vertices":[81,80,84,85],"Texture":1160},{"Type":4,"Vertices":[87,86,82,83],"Texture":1160},{"Type":4,"Vertices":[20,22,84,80],"Texture":1160},{"Type":4,"Vertices":[82,86,23,21],"Texture":1160},{"Type":4,"Vertices":[21,23,22,20],"Texture":1160},{"Type":4,"Vertices":[85,84,88,89],"Texture":1160},{"Type":4,"Vertices":[91,90,86,87],"Texture":1160},{"Type":4,"Vertices":[22,24,88,84],"Texture":1160},{"Type":4,"Vertices":[86,90,25,23],"Texture":1160},{"Type":4,"Vertices":[23,25,24,22],"Texture":1160},{"Type":4,"Vertices":[89,88,92,93],"Texture":1160},{"Type":4,"Vertices":[95,94,90,91],"Texture":1160},{"Type":4,"Vertices":[24,26,92,88],"Texture":1160},{"Type":4,"Vertices":[90,94,27,25],"Texture":1160},{"Type":4,"Vertices":[25,27,26,24],"Texture":1160},{"Type":4,"Vertices":[93,92,96,97],"Texture":1160},{"Type":4,"Vertices":[99,98,94,95],"Texture":1160},{"Type":4,"Vertices":[26,28,96,92],"Texture":1160},{"Type":4,"Vertices":[94,98,29,27],"Texture":1160},{"Type":4,"Vertices":[27,29,28,26],"Texture":1160},{"Type":4,"Vertices":[97,96,100,101],"Texture":1160},{"Type":4,"Vertices":[103,102,98,99],"Texture":1160},{"Type":4,"Vertices":[28,30,100,96],"Texture":1160},{"Type":4,"Vertices":[98,102,31,29],"Texture":1160},{"Type":4,"Vertices":[29,31,30,28],"Texture":1160},{"Type":4,"Vertices":[101,100,104,105],"Texture":1160},{"Type":4,"Vertices":[107,106,102,103],"Texture":1160},{"Type":4,"Vertices":[30,32,104,100],"Texture":1160},{"Type":4,"Vertices":[102,106,33,31],"Texture":1160},{"Type":4,"Vertices":[31,33,32,30],"Texture":1160},{"Type":4,"Vertices":[105,104,108,109],"Texture":1160},{"Type":4,"Vertices":[111,110,106,107],"Texture":1160},{"Type":4,"Vertices":[32,34,108,104],"Texture":1160},{"Type":4,"Vertices":[106,110,35,33],"Texture":1160},{"Type":4,"Vertices":[33,35,34,32],"Texture":1160},{"Type":4,"Vertices":[109,108,112,113],"Texture":1160},{"Type":4,"Vertices":[117,116,115,114],"Texture":1160},{"Type":4,"Vertices":[34,36,112,108],"Texture":1160},{"Type":4,"Vertices":[115,116,37,35],"Texture":1160},{"Type":4,"Vertices":[35,37,36,34],"Texture":1160},{"Type":4,"Vertices":[110,111,114,115],"Texture":1160},{"Type":4,"Vertices":[121,40,43,122],"Texture":1160},{"Type":4,"Vertices":[124,47,44,123],"Texture":1160},{"Type":4,"Vertices":[119,38,40,121],"Texture":1160},{"Type":4,"Vertices":[123,44,39,120],"Texture":1160},{"Type":4,"Vertices":[120,39,38,119],"Texture":1160},{"Type":4,"Vertices":[122,43,49,125],"Texture":1160},{"Type":4,"Vertices":[126,51,47,124],"Texture":1160},{"Type":4,"Vertices":[125,49,53,127],"Texture":1160},{"Type":4,"Vertices":[128,55,51,126],"Texture":1160},{"Type":4,"Vertices":[127,53,57,129],"Texture":1160},{"Type":4,"Vertices":[130,59,55,128],"Texture":1160},{"Type":4,"Vertices":[129,57,61,131],"Texture":1160},{"Type":4,"Vertices":[132,63,59,130],"Texture":1160},{"Type":4,"Vertices":[131,61,65,133],"Texture":1160},{"Type":4,"Vertices":[134,67,63,132],"Texture":1160},{"Type":4,"Vertices":[133,65,69,135],"Texture":1160},{"Type":4,"Vertices":[136,71,67,134],"Texture":1160},{"Type":4,"Vertices":[135,69,73,137],"Texture":1160},{"Type":4,"Vertices":[138,75,71,136],"Texture":1160},{"Type":4,"Vertices":[137,73,77,139],"Texture":1160},{"Type":4,"Vertices":[140,79,75,138],"Texture":1160},{"Type":4,"Vertices":[139,77,81,141],"Texture":1160},{"Type":4,"Vertices":[142,83,79,140],"Texture":1160},{"Type":4,"Vertices":[141,81,85,143],"Texture":1160},{"Type":4,"Vertices":[144,87,83,142],"Texture":1160},{"Type":4,"Vertices":[143,85,89,145],"Texture":1160},{"Type":4,"Vertices":[146,91,87,144],"Texture":1160},{"Type":4,"Vertices":[145,89,93,147],"Texture":1160},{"Type":4,"Vertices":[148,95,91,146],"Texture":1160},{"Type":4,"Vertices":[147,93,97,149],"Texture":1160},{"Type":4,"Vertices":[150,99,95,148],"Texture":1160},{"Type":4,"Vertices":[149,97,101,151],"Texture":1160},{"Type":4,"Vertices":[152,103,99,150],"Texture":1160},{"Type":4,"Vertices":[151,101,105,153],"Texture":1160},{"Type":4,"Vertices":[154,107,103,152],"Texture":1160},{"Type":4,"Vertices":[153,105,109,155],"Texture":1160},{"Type":4,"Vertices":[156,111,107,154],"Texture":1160},{"Type":4,"Vertices":[155,109,113,157],"Texture":1160},{"Type":4,"Vertices":[160,118,159,158],"Texture":1160},{"Type":4,"Vertices":[118,117,114,159],"Texture":1160},{"Type":4,"Vertices":[156,158,159,111],"Texture":1160},{"Type":4,"Vertices":[163,121,122,164],"Texture":1160},{"Type":4,"Vertices":[166,124,123,165],"Texture":1160},{"Type":4,"Vertices":[161,119,121,163],"Texture":1160},{"Type":4,"Vertices":[165,123,120,162],"Texture":1160},{"Type":4,"Vertices":[162,120,119,161],"Texture":1160},{"Type":4,"Vertices":[164,122,125,167],"Texture":1160},{"Type":4,"Vertices":[168,126,124,166],"Texture":1160},{"Type":4,"Vertices":[167,125,127,169],"Texture":1160},{"Type":4,"Vertices":[170,128,126,168],"Texture":1160},{"Type":4,"Vertices":[169,127,129,171],"Texture":1160},{"Type":4,"Vertices":[172,130,128,170],"Texture":1160},{"Type":4,"Vertices":[171,129,131,173],"Texture":1160},{"Type":4,"Vertices":[174,132,130,172],"Texture":1160},{"Type":4,"Vertices":[173,131,133,175],"Texture":1160},{"Type":4,"Vertices":[176,134,132,174],"Texture":1160},{"Type":4,"Vertices":[175,133,135,177],"Texture":1160},{"Type":4,"Vertices":[178,136,134,176],"Texture":1160},{"Type":4,"Vertices":[177,135,137,179],"Texture":1160},{"Type":4,"Vertices":[180,138,136,178],"Texture":1160},{"Type":4,"Vertices":[179,137,139,181],"Texture":1160},{"Type":4,"Vertices":[182,140,138,180],"Texture":1160},{"Type":4,"Vertices":[181,139,141,183],"Texture":1160},{"Type":4,"Vertices":[184,142,140,182],"Texture":1160},{"Type":4,"Vertices":[183,141,143,185],"Texture":1160},{"Type":4,"Vertices":[186,144,142,184],"Texture":1160},{"Type":4,"Vertices":[185,143,145,187],"Texture":1160},{"Type":4,"Vertices":[188,146,144,186],"Texture":1160},{"Type":4,"Vertices":[187,145,147,189],"Texture":1160},{"Type":4,"Vertices":[190,148,146,188],"Texture":1160},{"Type":4,"Vertices":[189,147,149,191],"Texture":1160},{"Type":4,"Vertices":[192,150,148,190],"Texture":1160},{"Type":4,"Vertices":[191,149,151,193],"Texture":1160},{"Type":4,"Vertices":[194,152,150,192],"Texture":1160},{"Type":4,"Vertices":[193,151,153,195],"Texture":1160},{"Type":4,"Vertices":[196,154,152,194],"Texture":1160},{"Type":4,"Vertices":[195,153,155,197],"Texture":1160},{"Type":4,"Vertices":[198,156,154,196],"Texture":1160},{"Type":4,"Vertices":[197,155,157,199],"Texture":1160},{"Type":4,"Vertices":[201,160,158,200],"Texture":1160},{"Type":4,"Vertices":[198,200,158,156],"Texture":1160},{"Type":4,"Vertices":[204,163,164,205],"Texture":1160},{"Type":4,"Vertices":[207,166,165,206],"Texture":1160},{"Type":4,"Vertices":[202,161,163,204],"Texture":1160},{"Type":4,"Vertices":[206,165,162,203],"Texture":1160},{"Type":4,"Vertices":[203,162,161,202],"Texture":1160},{"Type":4,"Vertices":[205,164,167,208],"Texture":1160},{"Type":4,"Vertices":[209,168,166,207],"Texture":1160},{"Type":4,"Vertices":[208,167,169,210],"Texture":1160},{"Type":4,"Vertices":[211,170,168,209],"Texture":1160},{"Type":4,"Vertices":[210,169,171,212],"Texture":1160},{"Type":4,"Vertices":[213,172,170,211],"Texture":1160},{"Type":4,"Vertices":[212,171,173,214],"Texture":1160},{"Type":4,"Vertices":[215,174,172,213],"Texture":1160},{"Type":4,"Vertices":[214,173,175,216],"Texture":1160},{"Type":4,"Vertices":[217,176,174,215],"Texture":1160},{"Type":4,"Vertices":[216,175,177,218],"Texture":1160},{"Type":4,"Vertices":[219,178,176,217],"Texture":1160},{"Type":4,"Vertices":[218,177,179,220],"Texture":1160},{"Type":4,"Vertices":[221,180,178,219],"Texture":1160},{"Type":4,"Vertices":[220,179,181,222],"Texture":1160},{"Type":4,"Vertices":[223,182,180,221],"Texture":1160},{"Type":4,"Vertices":[222,181,183,224],"Texture":1160},{"Type":4,"Vertices":[225,184,182,223],"Texture":1160},{"Type":4,"Vertices":[224,183,185,226],"Texture":1160},{"Type":4,"Vertices":[227,186,184,225],"Texture":1160},{"Type":4,"Vertices":[226,185,187,228],"Texture":1160},{"Type":4,"Vertices":[229,188,186,227],"Texture":1160},{"Type":4,"Vertices":[228,187,189,230],"Texture":1160},{"Type":4,"Vertices":[231,190,188,229],"Texture":1160},{"Type":4,"Vertices":[230,189,191,232],"Texture":1160},{"Type":4,"Vertices":[233,192,190,231],"Texture":1160},{"Type":4,"Vertices":[232,191,193,234],"Texture":1160},{"Type":4,"Vertices":[235,194,192,233],"Texture":1160},{"Type":4,"Vertices":[234,193,195,236],"Texture":1160},{"Type":4,"Vertices":[237,196,194,235],"Texture":1160},{"Type":4,"Vertices":[236,195,197,238],"Texture":1160},{"Type":4,"Vertices":[239,198,196,237],"Texture":1160},{"Type":4,"Vertices":[238,197,199,240],"Texture":1160},{"Type":4,"Vertices":[242,201,200,241],"Texture":1160},{"Type":4,"Vertices":[239,241,200,198],"Texture":1160},{"Type":4,"Vertices":[245,204,205,246],"Texture":1160},{"Type":4,"Vertices":[248,207,206,247],"Texture":1160},{"Type":4,"Vertices":[243,202,204,245],"Texture":1160},{"Type":4,"Vertices":[247,206,203,244],"Texture":1160},{"Type":4,"Vertices":[244,203,202,243],"Texture":1160},{"Type":4,"Vertices":[246,205,208,249],"Texture":1160},{"Type":4,"Vertices":[250,209,207,248],"Texture":1160},{"Type":4,"Vertices":[249,208,210,251],"Texture":1160},{"Type":4,"Vertices":[252,211,209,250],"Texture":1160},{"Type":4,"Vertices":[251,210,212,253],"Texture":1160},{"Type":4,"Vertices":[254,213,211,252],"Texture":1160},{"Type":4,"Vertices":[253,212,214,255],"Texture":1160},{"Type":4,"Vertices":[257,256,259,258],"Texture":1160},{"Type":4,"Vertices":[213,257,258,215],"Texture":1160},{"Type":4,"Vertices":[254,256,257,213],"Texture":1160},{"Type":4,"Vertices":[255,214,216,260],"Texture":1160},{"Type":4,"Vertices":[259,262,261,258],"Texture":1160},{"Type":4,"Vertices":[215,258,261,217],"Texture":1160},{"Type":4,"Vertices":[260,216,218,263],"Texture":1160},{"Type":4,"Vertices":[262,265,264,261],"Texture":1160},{"Type":4,"Vertices":[217,261,264,219],"Texture":1160},{"Type":4,"Vertices":[263,218,220,266],"Texture":1160},{"Type":4,"Vertices":[265,268,267,264],"Texture":1160},{"Type":4,"Vertices":[219,264,267,221],"Texture":1160},{"Type":4,"Vertices":[266,220,222,269],"Texture":1160},{"Type":4,"Vertices":[268,271,270,267],"Texture":1160},{"Type":4,"Vertices":[221,267,270,223],"Texture":1160},{"Type":4,"Vertices":[269,222,224,272],"Texture":1160},{"Type":4,"Vertices":[271,274,273,270],"Texture":1160},{"Type":4,"Vertices":[223,270,273,225],"Texture":1160},{"Type":4,"Vertices":[272,224,226,275],"Texture":1160},{"Type":4,"Vertices":[274,277,276,273],"Texture":1160},{"Type":4,"Vertices":[225,273,276,227],"Texture":1160},{"Type":4,"Vertices":[275,226,228,278],"Texture":1160},{"Type":4,"Vertices":[277,280,279,276],"Texture":1160},{"Type":4,"Vertices":[227,276,279,229],"Texture":1160},{"Type":4,"Vertices":[278,228,230,281],"Texture":1160},{"Type":4,"Vertices":[280,283,282,279],"Texture":1160},{"Type":4,"Vertices":[229,279,282,231],"Texture":1160},{"Type":4,"Vertices":[281,230,232,284],"Texture":1160},{"Type":4,"Vertices":[285,282,283,286],"Texture":1160},{"Type":4,"Vertices":[231,282,285,233],"Texture":1160},{"Type":4,"Vertices":[284,232,234,287],"Texture":1160},{"Type":4,"Vertices":[289,235,233,288],"Texture":1160},{"Type":4,"Vertices":[233,285,286,288],"Texture":1160},{"Type":4,"Vertices":[287,234,236,290],"Texture":1160},{"Type":4,"Vertices":[291,237,235,289],"Texture":1160},{"Type":4,"Vertices":[290,236,238,292],"Texture":1160},{"Type":4,"Vertices":[293,239,237,291],"Texture":1160},{"Type":4,"Vertices":[292,238,240,294],"Texture":1160},{"Type":4,"Vertices":[296,242,241,295],"Texture":1160},{"Type":4,"Vertices":[293,295,241,239],"Texture":1160},{"Type":4,"Vertices":[299,245,246,300],"Texture":1160},{"Type":4,"Vertices":[302,248,247,301],"Texture":1160},{"Type":4,"Vertices":[297,243,245,299],"Texture":1160},{"Type":4,"Vertices":[301,247,244,298],"Texture":1160},{"Type":4,"Vertices":[298,244,243,297],"Texture":1160},{"Type":4,"Vertices":[300,246,249,303],"Texture":1160},{"Type":4,"Vertices":[304,250,248,302],"Texture":1160},{"Type":4,"Vertices":[303,249,251,305],"Texture":1160},{"Type":4,"Vertices":[306,252,250,304],"Texture":1160},{"Type":4,"Vertices":[305,251,253,307],"Texture":1160},{"Type":4,"Vertices":[308,254,252,306],"Texture":1160},{"Type":4,"Vertices":[307,253,255,309],"Texture":1160},{"Type":4,"Vertices":[311,259,256,310],"Texture":1160},{"Type":4,"Vertices":[308,310,256,254],"Texture":1160},{"Type":4,"Vertices":[314,313,255,260],"Texture":1160},{"Type":4,"Vertices":[262,259,317,318],"Texture":1160},{"Type":4,"Vertices":[318,317,313,314],"Texture":1160},{"Type":4,"Vertices":[313,312,309,255],"Texture":1160},{"Type":4,"Vertices":[259,311,316,317],"Texture":1160},{"Type":4,"Vertices":[317,316,312,313],"Texture":1160},{"Type":4,"Vertices":[320,260,263,321],"Texture":1160},{"Type":4,"Vertices":[323,322,325,324],"Texture":1160},{"Type":4,"Vertices":[265,262,323,324],"Texture":1160},{"Type":4,"Vertices":[315,314,260,320],"Texture":1160},{"Type":4,"Vertices":[322,323,318,319],"Texture":1160},{"Type":4,"Vertices":[319,318,314,315],"Texture":1160},{"Type":4,"Vertices":[321,263,266,326],"Texture":1160},{"Type":4,"Vertices":[327,328,268,265],"Texture":1160},{"Type":4,"Vertices":[327,265,324,325],"Texture":1160},{"Type":4,"Vertices":[326,266,269,329],"Texture":1160},{"Type":4,"Vertices":[328,330,271,268],"Texture":1160},{"Type":4,"Vertices":[329,269,272,331],"Texture":1160},{"Type":4,"Vertices":[330,332,274,271],"Texture":1160},{"Type":4,"Vertices":[331,272,275,333],"Texture":1160},{"Type":4,"Vertices":[332,334,277,274],"Texture":1160},{"Type":4,"Vertices":[333,275,278,335],"Texture":1160},{"Type":4,"Vertices":[339,338,337,336],"Texture":1160},{"Type":4,"Vertices":[280,277,337,338],"Texture":1160},{"Type":4,"Vertices":[277,334,336,337],"Texture":1160},{"Type":4,"Vertices":[342,341,278,281],"Texture":1160},{"Type":4,"Vertices":[283,280,345,346],"Texture":1160},{"Type":4,"Vertices":[346,345,341,342],"Texture":1160},{"Type":4,"Vertices":[341,340,335,278],"Texture":1160},{"Type":4,"Vertices":[338,339,344,345],"Texture":1160},{"Type":4,"Vertices":[345,344,340,341],"Texture":1160},{"Type":4,"Vertices":[348,281,284,349],"Texture":1160},{"Type":4,"Vertices":[283,350,351,286],"Texture":1160},{"Type":4,"Vertices":[343,342,281,348],"Texture":1160},{"Type":4,"Vertices":[350,283,346,347],"Texture":1160},{"Type":4,"Vertices":[347,346,342,343],"Texture":1160},{"Type":4,"Vertices":[349,284,287,352],"Texture":1160},{"Type":4,"Vertices":[354,289,288,353],"Texture":1160},{"Type":4,"Vertices":[288,286,351,353],"Texture":1160},{"Type":4,"Vertices":[352,287,290,355],"Texture":1160},{"Type":4,"Vertices":[356,291,289,354],"Texture":1160},{"Type":4,"Vertices":[355,290,292,357],"Texture":1160},{"Type":4,"Vertices":[358,293,291,356],"Texture":1160},{"Type":4,"Vertices":[357,292,294,359],"Texture":1160},{"Type":4,"Vertices":[361,296,295,360],"Texture":1160},{"Type":4,"Vertices":[358,360,295,293],"Texture":1160},{"Type":4,"Vertices":[364,299,300,365],"Texture":1160},{"Type":4,"Vertices":[367,302,301,366],"Texture":1160},{"Type":4,"Vertices":[362,297,299,364],"Texture":1160},{"Type":4,"Vertices":[366,301,298,363],"Texture":1160},{"Type":4,"Vertices":[363,298,297,362],"Texture":1160},{"Type":4,"Vertices":[365,300,303,368],"Texture":1160},{"Type":4,"Vertices":[369,304,302,367],"Texture":1160},{"Type":4,"Vertices":[368,303,305,370],"Texture":1160},{"Type":4,"Vertices":[371,306,304,369],"Texture":1160},{"Type":4,"Vertices":[370,305,307,372],"Texture":1160},{"Type":4,"Vertices":[373,308,306,371],"Texture":1160},{"Type":4,"Vertices":[372,307,309,374],"Texture":1160},{"Type":4,"Vertices":[376,311,310,375],"Texture":1160},{"Type":4,"Vertices":[373,375,310,308],"Texture":1160},{"Type":4,"Vertices":[374,309,320,377],"Texture":1160},{"Type":4,"Vertices":[322,379,378,380],"Texture":1160},{"Type":4,"Vertices":[312,315,320,309],"Texture":1160},{"Type":4,"Vertices":[379,322,319,316],"Texture":1160},{"Type":4,"Vertices":[316,319,315,312],"Texture":1160},{"Type":4,"Vertices":[311,376,378,379],"Texture":1160},{"Type":4,"Vertices":[377,320,321,381],"Texture":1160},{"Type":4,"Vertices":[385,384,383,382],"Texture":1160},{"Type":4,"Vertices":[383,384,325,322],"Texture":1160},{"Type":4,"Vertices":[382,383,322,380],"Texture":1160},{"Type":4,"Vertices":[381,321,326,386],"Texture":1160},{"Type":4,"Vertices":[388,387,384,385],"Texture":1160},{"Type":4,"Vertices":[384,387,328,327],"Texture":1160},{"Type":4,"Vertices":[386,326,329,389],"Texture":1160},{"Type":4,"Vertices":[391,390,387,388],"Texture":1160},{"Type":4,"Vertices":[387,390,330,328],"Texture":1160},{"Type":4,"Vertices":[389,329,331,392],"Texture":1160},{"Type":4,"Vertices":[394,393,390,391],"Texture":1160},{"Type":4,"Vertices":[390,393,332,330],"Texture":1160},{"Type":4,"Vertices":[392,331,333,395],"Texture":1160},{"Type":4,"Vertices":[397,396,393,394],"Texture":1160},{"Type":4,"Vertices":[393,396,334,332],"Texture":1160},{"Type":4,"Vertices":[395,333,335,398],"Texture":1160},{"Type":4,"Vertices":[400,399,396,397],"Texture":1160},{"Type":4,"Vertices":[396,399,339,336],"Texture":1160},{"Type":4,"Vertices":[398,335,348,401],"Texture":1160},{"Type":4,"Vertices":[404,403,402,405],"Texture":1160},{"Type":4,"Vertices":[340,343,348,335],"Texture":1160},{"Type":4,"Vertices":[403,404,347,344],"Texture":1160},{"Type":4,"Vertices":[344,347,343,340],"Texture":1160},{"Type":4,"Vertices":[399,400,402,403],"Texture":1160},{"Type":4,"Vertices":[401,348,349,406],"Texture":1160},{"Type":4,"Vertices":[350,407,408,351],"Texture":1160},{"Type":4,"Vertices":[407,350,404,405],"Texture":1160},{"Type":4,"Vertices":[406,349,352,409],"Texture":1160},{"Type":4,"Vertices":[411,354,353,410],"Texture":1160},{"Type":4,"Vertices":[353,351,408,410],"Texture":1160},{"Type":4,"Vertices":[409,352,355,412],"Texture":1160},{"Type":4,"Vertices":[413,356,354,411],"Texture":1160},{"Type":4,"Vertices":[412,355,357,414],"Texture":1160},{"Type":4,"Vertices":[415,358,356,413],"Texture":1160},{"Type":4,"Vertices":[414,357,359,416],"Texture":1160},{"Type":4,"Vertices":[418,361,360,417],"Texture":1160},{"Type":4,"Vertices":[415,417,360,358],"Texture":1160},{"Type":4,"Vertices":[421,364,365,422],"Texture":1160},{"Type":4,"Vertices":[424,367,366,423],"Texture":1160},{"Type":4,"Vertices":[419,362,364,421],"Texture":1160},{"Type":4,"Vertices":[423,366,363,420],"Texture":1160},{"Type":4,"Vertices":[420,363,362,419],"Texture":1160},{"Type":4,"Vertices":[422,365,368,425],"Texture":1160},{"Type":4,"Vertices":[426,369,367,424],"Texture":1160},{"Type":4,"Vertices":[425,368,370,427],"Texture":1160},{"Type":4,"Vertices":[428,371,369,426],"Texture":1160},{"Type":4,"Vertices":[427,370,372,429],"Texture":1160},{"Type":4,"Vertices":[430,373,371,428],"Texture":1160},{"Type":4,"Vertices":[429,372,374,431],"Texture":1160},{"Type":4,"Vertices":[433,376,375,432],"Texture":1160},{"Type":4,"Vertices":[430,432,375,373],"Texture":1160},{"Type":4,"Vertices":[431,374,377,434],"Texture":1160},{"Type":4,"Vertices":[436,435,376,433],"Texture":1160},{"Type":4,"Vertices":[376,435,380,378],"Texture":1160},{"Type":4,"Vertices":[434,377,381,437],"Texture":1160},{"Type":4,"Vertices":[439,385,382,438],"Texture":1160},{"Type":4,"Vertices":[438,382,435,436],"Texture":1160},{"Type":4,"Vertices":[437,381,386,440],"Texture":1160},{"Type":4,"Vertices":[441,388,385,439],"Texture":1160},{"Type":4,"Vertices":[440,386,389,442],"Texture":1160},{"Type":4,"Vertices":[443,391,388,441],"Texture":1160},{"Type":4,"Vertices":[442,389,392,444],"Texture":1160},{"Type":4,"Vertices":[445,394,391,443],"Texture":1160},{"Type":4,"Vertices":[444,392,395,446],"Texture":1160},{"Type":4,"Vertices":[447,397,394,445],"Texture":1160},{"Type":4,"Vertices":[446,395,398,448],"Texture":1160},{"Type":4,"Vertices":[449,400,397,447],"Texture":1160},{"Type":4,"Vertices":[448,398,401,450],"Texture":1160},{"Type":4,"Vertices":[452,451,453,407],"Texture":1160},{"Type":4,"Vertices":[452,407,405,402],"Texture":1160},{"Type":4,"Vertices":[400,449,451,452],"Texture":1160},{"Type":4,"Vertices":[450,401,406,454],"Texture":1160},{"Type":4,"Vertices":[407,453,455,408],"Texture":1160},{"Type":4,"Vertices":[454,406,409,456],"Texture":1160},{"Type":4,"Vertices":[458,411,410,457],"Texture":1160},{"Type":4,"Vertices":[410,408,455,457],"Texture":1160},{"Type":4,"Vertices":[456,409,412,459],"Texture":1160},{"Type":4,"Vertices":[460,413,411,458],"Texture":1160},{"Type":4,"Vertices":[459,412,414,461],"Texture":1160},{"Type":4,"Vertices":[462,415,413,460],"Texture":1160},{"Type":4,"Vertices":[461,414,416,463],"Texture":1160},{"Type":4,"Vertices":[465,418,417,464],"Texture":1160},{"Type":4,"Vertices":[462,464,417,415],"Texture":1160},{"Type":4,"Vertices":[466,421,422,469],"Texture":1160},{"Type":4,"Vertices":[471,424,423,470],"Texture":1160},{"Type":4,"Vertices":[470,423,467,468],"Texture":1160},{"Type":4,"Vertices":[469,422,425,472],"Texture":1160},{"Type":4,"Vertices":[473,426,424,471],"Texture":1160},{"Type":4,"Vertices":[472,425,427,474],"Texture":1160},{"Type":4,"Vertices":[475,428,426,473],"Texture":1160},{"Type":4,"Vertices":[474,427,429,476],"Texture":1160},{"Type":4,"Vertices":[477,430,428,475],"Texture":1160},{"Type":4,"Vertices":[476,429,431,478],"Texture":1160},{"Type":4,"Vertices":[480,433,432,479],"Texture":1160},{"Type":4,"Vertices":[477,479,432,430],"Texture":1160},{"Type":4,"Vertices":[478,431,434,481],"Texture":1160},{"Type":4,"Vertices":[482,436,433,480],"Texture":1160},{"Type":4,"Vertices":[481,434,437,483],"Texture":1160},{"Type":4,"Vertices":[485,439,438,484],"Texture":1160},{"Type":4,"Vertices":[484,438,436,482],"Texture":1160},{"Type":4,"Vertices":[483,437,440,486],"Texture":1160},{"Type":4,"Vertices":[487,441,439,485],"Texture":1160},{"Type":4,"Vertices":[488,489,490,491],"Texture":1160},{"Type":4,"Vertices":[492,443,441,487],"Texture":1160},{"Type":4,"Vertices":[490,489,440,442],"Texture":1160},{"Type":4,"Vertices":[489,488,486,440],"Texture":1160},{"Type":4,"Vertices":[491,490,493,494],"Texture":1160},{"Type":4,"Vertices":[495,445,443,492],"Texture":1160},{"Type":4,"Vertices":[493,490,442,444],"Texture":1160},{"Type":4,"Vertices":[496,444,446,497],"Texture":1160},{"Type":4,"Vertices":[498,447,445,495],"Texture":1160},{"Type":4,"Vertices":[494,493,444,496],"Texture":1160},{"Type":4,"Vertices":[497,446,448,499],"Texture":1160},{"Type":4,"Vertices":[500,449,447,498],"Texture":1160},{"Type":4,"Vertices":[448,450,501,499],"Texture":1160},{"Type":4,"Vertices":[451,502,503,453],"Texture":1160},{"Type":4,"Vertices":[449,500,502,451],"Texture":1160},{"Type":4,"Vertices":[501,450,454,504],"Texture":1160},{"Type":4,"Vertices":[453,503,505,455],"Texture":1160},{"Type":4,"Vertices":[504,454,456,506],"Texture":1160},{"Type":4,"Vertices":[508,458,457,507],"Texture":1160},{"Type":4,"Vertices":[457,455,505,507],"Texture":1160},{"Type":4,"Vertices":[506,456,459,509],"Texture":1160},{"Type":4,"Vertices":[510,460,458,508],"Texture":1160},{"Type":4,"Vertices":[509,459,461,511],"Texture":1160},{"Type":4,"Vertices":[512,462,460,510],"Texture":1160},{"Type":4,"Vertices":[511,461,463,513],"Texture":1160},{"Type":4,"Vertices":[515,465,464,514],"Texture":1160},{"Type":4,"Vertices":[512,514,464,462],"Texture":1160},{"Type":4,"Vertices":[516,466,469,518],"Texture":1160},{"Type":4,"Vertices":[520,471,470,519],"Texture":1160},{"Type":4,"Vertices":[519,470,468,517],"Texture":1160},{"Type":4,"Vertices":[518,469,472,521],"Texture":1160},{"Type":4,"Vertices":[522,473,471,520],"Texture":1160},{"Type":4,"Vertices":[521,472,474,523],"Texture":1160},{"Type":4,"Vertices":[524,475,473,522],"Texture":1160},{"Type":4,"Vertices":[523,474,476,525],"Texture":1160},{"Type":4,"Vertices":[526,477,475,524],"Texture":1160},{"Type":4,"Vertices":[525,476,478,527],"Texture":1160},{"Type":4,"Vertices":[529,480,479,528],"Texture":1160},{"Type":4,"Vertices":[526,528,479,477],"Texture":1160},{"Type":4,"Vertices":[527,478,481,530],"Texture":1160},{"Type":4,"Vertices":[531,482,480,529],"Texture":1160},{"Type":4,"Vertices":[530,481,483,532],"Texture":1160},{"Type":4,"Vertices":[534,485,484,533],"Texture":1160},{"Type":4,"Vertices":[533,484,482,531],"Texture":1160},{"Type":4,"Vertices":[532,483,486,535],"Texture":1160},{"Type":4,"Vertices":[536,487,485,534],"Texture":1160},{"Type":4,"Vertices":[491,538,537,488],"Texture":1160},{"Type":4,"Vertices":[539,492,487,536],"Texture":1160},{"Type":4,"Vertices":[488,537,535,486],"Texture":1160},{"Type":4,"Vertices":[540,538,491,494],"Texture":1160},{"Type":4,"Vertices":[541,495,492,539],"Texture":1160},{"Type":4,"Vertices":[542,496,497,543],"Texture":1160},{"Type":4,"Vertices":[544,498,495,541],"Texture":1160},{"Type":4,"Vertices":[540,494,496,542],"Texture":1160},{"Type":4,"Vertices":[543,497,499,545],"Texture":1160},{"Type":4,"Vertices":[546,500,498,544],"Texture":1160},{"Type":4,"Vertices":[545,499,501,547],"Texture":1160},{"Type":4,"Vertices":[502,548,549,503],"Texture":1160},{"Type":4,"Vertices":[500,546,548,502],"Texture":1160},{"Type":4,"Vertices":[547,501,504,550],"Texture":1160},{"Type":4,"Vertices":[503,549,551,505],"Texture":1160},{"Type":4,"Vertices":[550,504,506,552],"Texture":1160},{"Type":4,"Vertices":[554,508,507,553],"Texture":1160},{"Type":4,"Vertices":[507,505,551,553],"Texture":1160},{"Type":4,"Vertices":[552,506,509,555],"Texture":1160},{"Type":4,"Vertices":[556,510,508,554],"Texture":1160},{"Type":4,"Vertices":[555,509,511,557],"Texture":1160},{"Type":4,"Vertices":[558,512,510,556],"Texture":1160},{"Type":4,"Vertices":[557,511,513,559],"Texture":1160},{"Type":4,"Vertices":[561,515,514,560],"Texture":1160},{"Type":4,"Vertices":[558,560,514,512],"Texture":1160},{"Type":4,"Vertices":[566,516,518,567],"Texture":1160},{"Type":4,"Vertices":[569,520,519,568],"Texture":1160},{"Type":4,"Vertices":[563,562,516,566],"Texture":1160},{"Type":4,"Vertices":[568,519,564,565],"Texture":1160},{"Type":4,"Vertices":[565,564,562,563],"Texture":1160},{"Type":4,"Vertices":[567,518,521,570],"Texture":1160},{"Type":4,"Vertices":[571,522,520,569],"Texture":1160},{"Type":4,"Vertices":[570,521,523,572],"Texture":1160},{"Type":4,"Vertices":[573,524,522,571],"Texture":1160},{"Type":4,"Vertices":[572,523,525,574],"Texture":1160},{"Type":4,"Vertices":[575,526,524,573],"Texture":1160},{"Type":4,"Vertices":[574,525,527,576],"Texture":1160},{"Type":4,"Vertices":[578,529,528,577],"Texture":1160},{"Type":4,"Vertices":[575,577,528,526],"Texture":1160},{"Type":4,"Vertices":[576,527,530,579],"Texture":1160},{"Type":4,"Vertices":[580,531,529,578],"Texture":1160},{"Type":4,"Vertices":[579,530,532,581],"Texture":1160},{"Type":4,"Vertices":[583,534,533,582],"Texture":1160},{"Type":4,"Vertices":[582,533,531,580],"Texture":1160},{"Type":4,"Vertices":[581,532,535,584],"Texture":1160},{"Type":4,"Vertices":[585,536,534,583],"Texture":1160},{"Type":4,"Vertices":[584,535,586,587],"Texture":1160},{"Type":4,"Vertices":[588,539,536,585],"Texture":1160},{"Type":4,"Vertices":[537,538,586,535],"Texture":1160},{"Type":4,"Vertices":[587,586,542,589],"Texture":1160},{"Type":4,"Vertices":[590,541,539,588],"Texture":1160},{"Type":4,"Vertices":[538,540,542,586],"Texture":1160},{"Type":4,"Vertices":[589,542,543,591],"Texture":1160},{"Type":4,"Vertices":[592,544,541,590],"Texture":1160},{"Type":4,"Vertices":[591,543,545,593],"Texture":1160},{"Type":4,"Vertices":[594,546,544,592],"Texture":1160},{"Type":4,"Vertices":[593,545,547,595],"Texture":1160},{"Type":4,"Vertices":[548,596,597,549],"Texture":1160},{"Type":4,"Vertices":[546,594,596,548],"Texture":1160},{"Type":4,"Vertices":[595,547,550,598],"Texture":1160},{"Type":4,"Vertices":[549,597,599,551],"Texture":1160},{"Type":4,"Vertices":[598,550,552,600],"Texture":1160},{"Type":4,"Vertices":[602,554,553,601],"Texture":1160},{"Type":4,"Vertices":[553,551,599,601],"Texture":1160},{"Type":4,"Vertices":[600,552,555,603],"Texture":1160},{"Type":4,"Vertices":[604,556,554,602],"Texture":1160},{"Type":4,"Vertices":[603,555,557,605],"Texture":1160},{"Type":4,"Vertices":[606,558,556,604],"Texture":1160},{"Type":4,"Vertices":[605,557,559,607],"Texture":1160},{"Type":4,"Vertices":[609,561,560,608],"Texture":1160},{"Type":4,"Vertices":[606,608,560,558],"Texture":1160},{"Type":4,"Vertices":[612,566,567,613],"Texture":1160},{"Type":4,"Vertices":[615,569,568,614],"Texture":1160},{"Type":4,"Vertices":[610,563,566,612],"Texture":1160},{"Type":4,"Vertices":[614,568,565,611],"Texture":1160},{"Type":4,"Vertices":[611,565,563,610],"Texture":1160},{"Type":4,"Vertices":[613,567,570,616],"Texture":1160},{"Type":4,"Vertices":[617,571,569,615],"Texture":1160},{"Type":4,"Vertices":[616,570,572,618],"Texture":1160},{"Type":4,"Vertices":[619,573,571,617],"Texture":1160},{"Type":4,"Vertices":[618,572,574,620],"Texture":1160},{"Type":4,"Vertices":[621,575,573,619],"Texture":1160},{"Type":4,"Vertices":[620,574,576,622],"Texture":1160},{"Type":4,"Vertices":[624,578,577,623],"Texture":1160},{"Type":4,"Vertices":[621,623,577,575],"Texture":1160},{"Type":4,"Vertices":[622,576,579,625],"Texture":1160},{"Type":4,"Vertices":[626,629,628,627],"Texture":1160},{"Type":4,"Vertices":[580,578,627,628],"Texture":1160},{"Type":4,"Vertices":[578,624,626,627],"Texture":1160},{"Type":4,"Vertices":[625,579,581,630],"Texture":1160},{"Type":4,"Vertices":[632,583,582,631],"Texture":1160},{"Type":4,"Vertices":[631,582,628,629],"Texture":1160},{"Type":4,"Vertices":[630,581,584,633],"Texture":1160},{"Type":4,"Vertices":[634,585,583,632],"Texture":1160},{"Type":4,"Vertices":[633,584,587,635],"Texture":1160},{"Type":4,"Vertices":[636,588,585,634],"Texture":1160},{"Type":4,"Vertices":[635,587,589,637],"Texture":1160},{"Type":4,"Vertices":[638,590,588,636],"Texture":1160},{"Type":4,"Vertices":[637,589,591,639],"Texture":1160},{"Type":4,"Vertices":[640,592,590,638],"Texture":1160},{"Type":4,"Vertices":[639,591,593,641],"Texture":1160},{"Type":4,"Vertices":[642,594,592,640],"Texture":1160},{"Type":4,"Vertices":[641,593,595,643],"Texture":1160},{"Type":4,"Vertices":[644,647,646,645],"Texture":1160},{"Type":4,"Vertices":[597,596,645,646],"Texture":1160},{"Type":4,"Vertices":[594,642,644,645],"Texture":1160},{"Type":4,"Vertices":[643,595,598,648],"Texture":1160},{"Type":4,"Vertices":[597,649,650,599],"Texture":1160},{"Type":4,"Vertices":[649,597,646,647],"Texture":1160},{"Type":4,"Vertices":[648,598,600,651],"Texture":1160},{"Type":4,"Vertices":[653,602,601,652],"Texture":1160},{"Type":4,"Vertices":[601,599,650,652],"Texture":1160},{"Type":4,"Vertices":[651,600,603,654],"Texture":1160},{"Type":4,"Vertices":[655,604,602,653],"Texture":1160},{"Type":4,"Vertices":[654,603,605,656],"Texture":1160},{"Type":4,"Vertices":[657,606,604,655],"Texture":1160},{"Type":4,"Vertices":[656,605,607,658],"Texture":1160},{"Type":4,"Vertices":[660,609,608,659],"Texture":1160},{"Type":4,"Vertices":[657,659,608,606],"Texture":1160},{"Type":4,"Vertices":[663,612,613,664],"Texture":1160},{"Type":4,"Vertices":[666,615,614,665],"Texture":1160},{"Type":4,"Vertices":[661,610,612,663],"Texture":1160},{"Type":4,"Vertices":[665,614,611,662],"Texture":1160},{"Type":4,"Vertices":[662,611,610,661],"Texture":1160},{"Type":4,"Vertices":[664,613,616,667],"Texture":1160},{"Type":4,"Vertices":[668,617,615,666],"Texture":1160},{"Type":4,"Vertices":[667,616,618,669],"Texture":1160},{"Type":4,"Vertices":[670,619,617,668],"Texture":1160},{"Type":4,"Vertices":[669,618,620,671],"Texture":1160},{"Type":4,"Vertices":[672,621,619,670],"Texture":1160},{"Type":4,"Vertices":[671,620,622,673],"Texture":1160},{"Type":4,"Vertices":[675,624,623,674],"Texture":1160},{"Type":4,"Vertices":[672,674,623,621],"Texture":1160},{"Type":4,"Vertices":[678,677,622,625],"Texture":1160},{"Type":4,"Vertices":[629,626,681,682],"Texture":1160},{"Type":4,"Vertices":[682,681,677,678],"Texture":1160},{"Type":4,"Vertices":[677,676,673,622],"Texture":1160},{"Type":4,"Vertices":[624,675,680,681],"Texture":1160},{"Type":4,"Vertices":[681,680,676,677],"Texture":1160},{"Type":4,"Vertices":[684,625,630,685],"Texture":1160},{"Type":4,"Vertices":[687,686,689,688],"Texture":1160},{"Type":4,"Vertices":[632,631,687,688],"Texture":1160},{"Type":4,"Vertices":[679,678,625,684],"Texture":1160},{"Type":4,"Vertices":[686,687,682,683],"Texture":1160},{"Type":4,"Vertices":[683,682,678,679],"Texture":1160},{"Type":4,"Vertices":[685,630,633,690],"Texture":1160},{"Type":4,"Vertices":[693,692,691,694],"Texture":1160},{"Type":4,"Vertices":[634,632,692,693],"Texture":1160},{"Type":4,"Vertices":[691,692,688,689],"Texture":1160},{"Type":4,"Vertices":[690,633,635,695],"Texture":1160},{"Type":4,"Vertices":[696,693,694,697],"Texture":1160},{"Type":4,"Vertices":[636,634,693,696],"Texture":1160},{"Type":4,"Vertices":[695,635,637,698],"Texture":1160},{"Type":4,"Vertices":[699,696,697,700],"Texture":1160},{"Type":4,"Vertices":[638,636,696,699],"Texture":1160},{"Type":4,"Vertices":[698,637,639,701],"Texture":1160},{"Type":4,"Vertices":[702,699,700,703],"Texture":1160},{"Type":4,"Vertices":[640,638,699,702],"Texture":1160},{"Type":4,"Vertices":[701,639,641,704],"Texture":1160},{"Type":4,"Vertices":[707,644,706,705],"Texture":1160},{"Type":4,"Vertices":[642,640,706,644],"Texture":1160},{"Type":4,"Vertices":[702,703,705,706],"Texture":1160},{"Type":4,"Vertices":[710,709,641,643],"Texture":1160},{"Type":4,"Vertices":[647,644,713,714],"Texture":1160},{"Type":4,"Vertices":[714,713,709,710],"Texture":1160},{"Type":4,"Vertices":[709,708,704,641],"Texture":1160},{"Type":4,"Vertices":[644,707,712,713],"Texture":1160},{"Type":4,"Vertices":[713,712,708,709],"Texture":1160},{"Type":4,"Vertices":[716,643,648,717],"Texture":1160},{"Type":4,"Vertices":[649,718,719,650],"Texture":1160},{"Type":4,"Vertices":[711,710,643,716],"Texture":1160},{"Type":4,"Vertices":[718,649,714,715],"Texture":1160},{"Type":4,"Vertices":[715,714,710,711],"Texture":1160},{"Type":4,"Vertices":[717,648,651,720],"Texture":1160},{"Type":4,"Vertices":[722,653,652,721],"Texture":1160},{"Type":4,"Vertices":[652,650,719,721],"Texture":1160},{"Type":4,"Vertices":[720,651,654,723],"Texture":1160},{"Type":4,"Vertices":[724,655,653,722],"Texture":1160},{"Type":4,"Vertices":[723,654,656,725],"Texture":1160},{"Type":4,"Vertices":[726,657,655,724],"Texture":1160},{"Type":4,"Vertices":[725,656,658,727],"Texture":1160},{"Type":4,"Vertices":[729,660,659,728],"Texture":1160},{"Type":4,"Vertices":[726,728,659,657],"Texture":1160},{"Type":4,"Vertices":[732,663,664,733],"Texture":1160},{"Type":4,"Vertices":[735,666,665,734],"Texture":1160},{"Type":4,"Vertices":[730,661,663,732],"Texture":1160},{"Type":4,"Vertices":[734,665,662,731],"Texture":1160},{"Type":4,"Vertices":[731,662,661,730],"Texture":1160},{"Type":4,"Vertices":[733,664,667,736],"Texture":1160},{"Type":4,"Vertices":[737,668,666,735],"Texture":1160},{"Type":4,"Vertices":[736,667,669,738],"Texture":1160},{"Type":4,"Vertices":[739,670,668,737],"Texture":1160},{"Type":4,"Vertices":[738,669,671,740],"Texture":1160},{"Type":4,"Vertices":[741,672,670,739],"Texture":1160},{"Type":4,"Vertices":[740,671,673,742],"Texture":1160},{"Type":4,"Vertices":[743,744,675,674],"Texture":1160},{"Type":4,"Vertices":[741,743,674,672],"Texture":1160},{"Type":4,"Vertices":[742,673,684,745],"Texture":1160},{"Type":4,"Vertices":[746,675,744,747],"Texture":1160},{"Type":4,"Vertices":[676,679,684,673],"Texture":1160},{"Type":4,"Vertices":[675,746,683,680],"Texture":1160},{"Type":4,"Vertices":[680,683,679,676],"Texture":1160},{"Type":4,"Vertices":[745,684,685,748],"Texture":1160},{"Type":4,"Vertices":[691,746,747,749],"Texture":1160},{"Type":4,"Vertices":[746,691,689,686],"Texture":1160},{"Type":4,"Vertices":[748,685,690,750],"Texture":1160},{"Type":4,"Vertices":[694,691,749,751],"Texture":1160},{"Type":4,"Vertices":[750,690,695,752],"Texture":1160},{"Type":4,"Vertices":[697,694,751,753],"Texture":1160},{"Type":4,"Vertices":[752,695,698,754],"Texture":1160},{"Type":4,"Vertices":[700,697,753,755],"Texture":1160},{"Type":4,"Vertices":[754,698,701,756],"Texture":1160},{"Type":4,"Vertices":[703,700,755,757],"Texture":1160},{"Type":4,"Vertices":[756,701,704,758],"Texture":1160},{"Type":4,"Vertices":[759,703,757,760],"Texture":1160},{"Type":4,"Vertices":[703,759,707,705],"Texture":1160},{"Type":4,"Vertices":[758,704,716,761],"Texture":1160},{"Type":4,"Vertices":[718,759,760,762],"Texture":1160},{"Type":4,"Vertices":[708,711,716,704],"Texture":1160},{"Type":4,"Vertices":[759,718,715,712],"Texture":1160},{"Type":4,"Vertices":[712,715,711,708],"Texture":1160},{"Type":4,"Vertices":[761,716,717,763],"Texture":1160},{"Type":4,"Vertices":[764,719,718,762],"Texture":1160},{"Type":4,"Vertices":[763,717,720,765],"Texture":1160},{"Type":4,"Vertices":[767,722,721,766],"Texture":1160},{"Type":4,"Vertices":[721,719,764,766],"Texture":1160},{"Type":4,"Vertices":[765,720,723,768],"Texture":1160},{"Type":4,"Vertices":[769,724,722,767],"Texture":1160},{"Type":4,"Vertices":[768,723,725,770],"Texture":1160},{"Type":4,"Vertices":[771,726,724,769],"Texture":1160},{"Type":4,"Vertices":[770,725,727,772],"Texture":1160},{"Type":4,"Vertices":[774,729,728,773],"Texture":1160},{"Type":4,"Vertices":[771,773,728,726],"Texture":1160},{"Type":4,"Vertices":[777,732,733,778],"Texture":1160},{"Type":4,"Vertices":[780,735,734,779],"Texture":1160},{"Type":4,"Vertices":[775,730,732,777],"Texture":1160},{"Type":4,"Vertices":[779,734,731,776],"Texture":1160},{"Type":4,"Vertices":[776,731,730,775],"Texture":1160},{"Type":4,"Vertices":[778,733,736,781],"Texture":1160},{"Type":4,"Vertices":[782,737,735,780],"Texture":1160},{"Type":4,"Vertices":[781,736,738,783],"Texture":1160},{"Type":4,"Vertices":[784,739,737,782],"Texture":1160},{"Type":4,"Vertices":[783,738,740,785],"Texture":1160},{"Type":4,"Vertices":[786,741,739,784],"Texture":1160},{"Type":4,"Vertices":[785,740,742,787],"Texture":1160},{"Type":4,"Vertices":[789,788,741,786],"Texture":1160},{"Type":4,"Vertices":[788,744,743,741],"Texture":1160},{"Type":4,"Vertices":[787,742,745,790],"Texture":1160},{"Type":4,"Vertices":[792,791,788,789],"Texture":1160},{"Type":4,"Vertices":[791,747,744,788],"Texture":1160},{"Type":4,"Vertices":[790,745,748,793],"Texture":1160},{"Type":4,"Vertices":[795,794,791,792],"Texture":1160},{"Type":4,"Vertices":[794,749,747,791],"Texture":1160},{"Type":4,"Vertices":[793,748,750,796],"Texture":1160},{"Type":4,"Vertices":[798,797,794,795],"Texture":1160},{"Type":4,"Vertices":[797,751,749,794],"Texture":1160},{"Type":4,"Vertices":[796,750,752,799],"Texture":1160},{"Type":4,"Vertices":[801,800,797,798],"Texture":1160},{"Type":4,"Vertices":[800,753,751,797],"Texture":1160},{"Type":4,"Vertices":[799,752,754,802],"Texture":1160},{"Type":4,"Vertices":[804,803,800,801],"Texture":1160},{"Type":4,"Vertices":[803,755,753,800],"Texture":1160},{"Type":4,"Vertices":[802,754,756,805],"Texture":1160},{"Type":4,"Vertices":[807,806,803,804],"Texture":1160},{"Type":4,"Vertices":[806,757,755,803],"Texture":1160},{"Type":4,"Vertices":[805,756,758,808],"Texture":1160},{"Type":4,"Vertices":[810,809,806,807],"Texture":1160},{"Type":4,"Vertices":[809,760,757,806],"Texture":1160},{"Type":4,"Vertices":[808,758,761,811],"Texture":1160},{"Type":4,"Vertices":[813,812,809,810],"Texture":1160},{"Type":4,"Vertices":[812,762,760,809],"Texture":1160},{"Type":4,"Vertices":[811,761,763,814],"Texture":1160},{"Type":4,"Vertices":[815,766,812,813],"Texture":1160},{"Type":4,"Vertices":[766,764,762,812],"Texture":1160},{"Type":4,"Vertices":[814,763,765,816],"Texture":1160},{"Type":4,"Vertices":[817,767,766,815],"Texture":1160},{"Type":4,"Vertices":[816,765,768,818],"Texture":1160},{"Type":4,"Vertices":[819,769,767,817],"Texture":1160},{"Type":4,"Vertices":[818,768,770,820],"Texture":1160},{"Type":4,"Vertices":[821,771,769,819],"Texture":1160},{"Type":4,"Vertices":[820,770,772,822],"Texture":1160},{"Type":4,"Vertices":[824,774,773,823],"Texture":1160},{"Type":4,"Vertices":[821,823,773,771],"Texture":1160},{"Type":4,"Vertices":[827,777,778,828],"Texture":1160},{"Type":4,"Vertices":[830,780,779,829],"Texture":1160},{"Type":4,"Vertices":[825,775,777,827],"Texture":1160},{"Type":4,"Vertices":[829,779,776,826],"Texture":1160},{"Type":4,"Vertices":[826,776,775,825],"Texture":1160},{"Type":4,"Vertices":[828,778,781,831],"Texture":1160},{"Type":4,"Vertices":[832,782,780,830],"Texture":1160},{"Type":4,"Vertices":[831,781,783,833],"Texture":1160},{"Type":4,"Vertices":[834,784,782,832],"Texture":1160},{"Type":4,"Vertices":[833,783,785,835],"Texture":1160},{"Type":4,"Vertices":[836,786,784,834],"Texture":1160},{"Type":4,"Vertices":[835,785,787,837],"Texture":1160},{"Type":4,"Vertices":[838,789,786,836],"Texture":1160},{"Type":4,"Vertices":[837,787,790,839],"Texture":1160},{"Type":4,"Vertices":[840,792,789,838],"Texture":1160},{"Type":4,"Vertices":[839,790,793,841],"Texture":1160},{"Type":4,"Vertices":[842,795,792,840],"Texture":1160},{"Type":4,"Vertices":[841,793,796,843],"Texture":1160},{"Type":4,"Vertices":[844,798,795,842],"Texture":1160},{"Type":4,"Vertices":[843,796,799,845],"Texture":1160},{"Type":4,"Vertices":[846,801,798,844],"Texture":1160},{"Type":4,"Vertices":[845,799,802,847],"Texture":1160},{"Type":4,"Vertices":[848,804,801,846],"Texture":1160},{"Type":4,"Vertices":[847,802,805,849],"Texture":1160},{"Type":4,"Vertices":[850,807,804,848],"Texture":1160},{"Type":4,"Vertices":[849,805,808,851],"Texture":1160},{"Type":4,"Vertices":[852,810,807,850],"Texture":1160},{"Type":4,"Vertices":[851,808,811,853],"Texture":1160},{"Type":4,"Vertices":[854,813,810,852],"Texture":1160},{"Type":4,"Vertices":[853,811,814,855],"Texture":1160},{"Type":4,"Vertices":[856,815,813,854],"Texture":1160},{"Type":4,"Vertices":[855,814,816,857],"Texture":1160},{"Type":4,"Vertices":[858,817,815,856],"Texture":1160},{"Type":4,"Vertices":[857,816,818,859],"Texture":1160},{"Type":4,"Vertices":[860,819,817,858],"Texture":1160},{"Type":4,"Vertices":[859,818,820,861],"Texture":1160},{"Type":4,"Vertices":[862,821,819,860],"Texture":1160},{"Type":4,"Vertices":[861,820,822,863],"Texture":1160},{"Type":4,"Vertices":[865,824,823,864],"Texture":1160},{"Type":4,"Vertices":[862,864,823,821],"Texture":1160},{"Type":4,"Vertices":[868,827,828,869],"Texture":1160},{"Type":4,"Vertices":[871,830,829,870],"Texture":1160},{"Type":4,"Vertices":[866,825,827,868],"Texture":1160},{"Type":4,"Vertices":[870,829,826,867],"Texture":1160},{"Type":4,"Vertices":[867,826,825,866],"Texture":1160},{"Type":4,"Vertices":[869,828,831,872],"Texture":1160},{"Type":4,"Vertices":[873,832,830,871],"Texture":1160},{"Type":4,"Vertices":[872,831,833,874],"Texture":1160},{"Type":4,"Vertices":[875,834,832,873],"Texture":1160},{"Type":4,"Vertices":[874,833,835,876],"Texture":1160},{"Type":4,"Vertices":[877,836,834,875],"Texture":1160},{"Type":4,"Vertices":[876,835,837,878],"Texture":1160},{"Type":4,"Vertices":[879,838,836,877],"Texture":1160},{"Type":4,"Vertices":[878,837,839,880],"Texture":1160},{"Type":4,"Vertices":[881,840,838,879],"Texture":1160},{"Type":4,"Vertices":[880,839,841,882],"Texture":1160},{"Type":4,"Vertices":[883,842,840,881],"Texture":1160},{"Type":4,"Vertices":[882,841,843,884],"Texture":1160},{"Type":4,"Vertices":[885,844,842,883],"Texture":1160},{"Type":4,"Vertices":[884,843,845,886],"Texture":1160},{"Type":4,"Vertices":[887,846,844,885],"Texture":1160},{"Type":4,"Vertices":[886,845,847,888],"Texture":1160},{"Type":4,"Vertices":[889,848,846,887],"Texture":1160},{"Type":4,"Vertices":[888,847,849,890],"Texture":1160},{"Type":4,"Vertices":[891,850,848,889],"Texture":1160},{"Type":4,"Vertices":[890,849,851,892],"Texture":1160},{"Type":4,"Vertices":[893,852,850,891],"Texture":1160},{"Type":4,"Vertices":[892,851,853,894],"Texture":1160},{"Type":4,"Vertices":[895,854,852,893],"Texture":1160},{"Type":4,"Vertices":[894,853,855,896],"Texture":1160},{"Type":4,"Vertices":[897,856,854,895],"Texture":1160},{"Type":4,"Vertices":[896,855,857,898],"Texture":1160},{"Type":4,"Vertices":[899,858,856,897],"Texture":1160},{"Type":4,"Vertices":[898,857,859,900],"Texture":1160},{"Type":4,"Vertices":[901,860,858,899],"Texture":1160},{"Type":4,"Vertices":[900,859,861,902],"Texture":1160},{"Type":4,"Vertices":[903,862,860,901],"Texture":1160},{"Type":4,"Vertices":[902,861,863,904],"Texture":1160},{"Type":4,"Vertices":[906,865,864,905],"Texture":1160},{"Type":4,"Vertices":[903,905,864,862],"Texture":1160},{"Type":4,"Vertices":[909,868,869,910],"Texture":1160},{"Type":4,"Vertices":[912,871,870,911],"Texture":1160},{"Type":4,"Vertices":[907,866,868,909],"Texture":1160},{"Type":4,"Vertices":[911,870,867,908],"Texture":1160},{"Type":4,"Vertices":[908,867,866,907],"Texture":1160},{"Type":4,"Vertices":[910,869,872,913],"Texture":1160},{"Type":4,"Vertices":[914,873,871,912],"Texture":1160},{"Type":4,"Vertices":[913,872,874,915],"Texture":1160},{"Type":4,"Vertices":[916,875,873,914],"Texture":1160},{"Type":4,"Vertices":[915,874,876,917],"Texture":1160},{"Type":4,"Vertices":[918,877,875,916],"Texture":1160},{"Type":4,"Vertices":[917,876,878,919],"Texture":1160},{"Type":4,"Vertices":[920,879,877,918],"Texture":1160},{"Type":4,"Vertices":[919,878,880,921],"Texture":1160},{"Type":4,"Vertices":[922,881,879,920],"Texture":1160},{"Type":4,"Vertices":[921,880,882,923],"Texture":1160},{"Type":4,"Vertices":[924,883,881,922],"Texture":1160},{"Type":4,"Vertices":[923,882,884,925],"Texture":1160},{"Type":4,"Vertices":[926,885,883,924],"Texture":1160},{"Type":4,"Vertices":[925,884,886,927],"Texture":1160},{"Type":4,"Vertices":[928,887,885,926],"Texture":1160},{"Type":4,"Vertices":[927,886,888,929],"Texture":1160},{"Type":4,"Vertices":[930,889,887,928],"Texture":1160},{"Type":4,"Vertices":[929,888,890,931],"Texture":1160},{"Type":4,"Vertices":[932,891,889,930],"Texture":1160},{"Type":4,"Vertices":[890,892,933,931],"Texture":1160},{"Type":4,"Vertices":[934,893,891,932],"Texture":1160},{"Type":4,"Vertices":[933,892,894,935],"Texture":1160},{"Type":4,"Vertices":[936,895,893,934],"Texture":1160},{"Type":4,"Vertices":[935,894,896,937],"Texture":1160},{"Type":4,"Vertices":[938,897,895,936],"Texture":1160},{"Type":4,"Vertices":[937,896,898,939],"Texture":1160},{"Type":4,"Vertices":[940,899,897,938],"Texture":1160},{"Type":4,"Vertices":[939,898,900,941],"Texture":1160},{"Type":4,"Vertices":[942,901,899,940],"Texture":1160},{"Type":4,"Vertices":[941,900,902,943],"Texture":1160},{"Type":4,"Vertices":[944,903,901,942],"Texture":1160},{"Type":4,"Vertices":[943,902,904,945],"Texture":1160},{"Type":4,"Vertices":[949,948,947,946],"Texture":1160},{"Type":4,"Vertices":[905,947,948,906],"Texture":1160},{"Type":4,"Vertices":[903,944,946,947],"Texture":1160},{"Type":4,"Vertices":[951,950,909,910],"Texture":1160},{"Type":4,"Vertices":[912,911,952,953],"Texture":1160},{"Type":4,"Vertices":[953,952,950,951],"Texture":1160},{"Type":4,"Vertices":[954,951,910,913],"Texture":1160},{"Type":4,"Vertices":[914,912,953,955],"Texture":1160},{"Type":4,"Vertices":[955,953,951,954],"Texture":1160},{"Type":4,"Vertices":[956,954,913,915],"Texture":1160},{"Type":4,"Vertices":[916,914,955,957],"Texture":1160},{"Type":4,"Vertices":[957,955,954,956],"Texture":1160},{"Type":4,"Vertices":[958,956,915,917],"Texture":1160},{"Type":4,"Vertices":[918,916,957,959],"Texture":1160},{"Type":4,"Vertices":[959,957,956,958],"Texture":1160},{"Type":4,"Vertices":[960,958,917,919],"Texture":1160},{"Type":4,"Vertices":[920,918,959,961],"Texture":1160},{"Type":4,"Vertices":[961,959,958,960],"Texture":1160},{"Type":4,"Vertices":[962,960,919,921],"Texture":1160},{"Type":4,"Vertices":[922,920,961,963],"Texture":1160},{"Type":4,"Vertices":[963,961,960,962],"Texture":1160},{"Type":4,"Vertices":[964,962,921,923],"Texture":1160},{"Type":4,"Vertices":[924,922,963,965],"Texture":1160},{"Type":4,"Vertices":[965,963,962,964],"Texture":1160},{"Type":4,"Vertices":[966,964,923,925],"Texture":1160},{"Type":4,"Vertices":[926,924,965,967],"Texture":1160},{"Type":4,"Vertices":[967,965,964,966],"Texture":1160},{"Type":4,"Vertices":[968,966,925,927],"Texture":1160},{"Type":4,"Vertices":[928,926,967,969],"Texture":1160},{"Type":4,"Vertices":[969,967,966,968],"Texture":1160},{"Type":4,"Vertices":[970,968,927,929],"Texture":1160},{"Type":4,"Vertices":[930,928,969,971],"Texture":1160},{"Type":4,"Vertices":[971,969,968,970],"Texture":1160},{"Type":4,"Vertices":[972,970,929,931],"Texture":1160},{"Type":4,"Vertices":[932,930,971,973],"Texture":1160},{"Type":4,"Vertices":[973,971,970,972],"Texture":1160},{"Type":4,"Vertices":[974,972,931,933],"Texture":1160},{"Type":4,"Vertices":[934,932,973,975],"Texture":1160},{"Type":4,"Vertices":[975,973,972,974],"Texture":1160},{"Type":4,"Vertices":[976,974,933,935],"Texture":1160},{"Type":4,"Vertices":[936,934,975,977],"Texture":1160},{"Type":4,"Vertices":[977,975,974,976],"Texture":1160},{"Type":4,"Vertices":[978,976,935,937],"Texture":1160},{"Type":4,"Vertices":[938,936,977,979],"Texture":1160},{"Type":4,"Vertices":[979,977,976,978],"Texture":1160},{"Type":4,"Vertices":[980,978,937,939],"Texture":1160},{"Type":4,"Vertices":[940,938,979,981],"Texture":1160},{"Type":4,"Vertices":[981,979,978,980],"Texture":1160},{"Type":4,"Vertices":[982,980,939,941],"Texture":1160},{"Type":4,"Vertices":[942,940,981,983],"Texture":1160},{"Type":4,"Vertices":[983,981,980,982],"Texture":1160},{"Type":4,"Vertices":[984,982,941,943],"Texture":1160},{"Type":4,"Vertices":[944,942,983,985],"Texture":1160},{"Type":4,"Vertices":[985,983,982,984],"Texture":1160},{"Type":4,"Vertices":[986,984,943,945],"Texture":1160},{"Type":4,"Vertices":[949,946,985,987],"Texture":1160},{"Type":4,"Vertices":[987,985,984,986],"Texture":1160},{"Type":4,"Vertices":[36,988,113,112],"Texture":1160},{"Type":4,"Vertices":[988,989,157,113],"Texture":1160},{"Type":4,"Vertices":[989,990,199,157],"Texture":1160},{"Type":4,"Vertices":[990,991,240,199],"Texture":1160},{"Type":4,"Vertices":[991,992,294,240],"Texture":1160},{"Type":4,"Vertices":[992,993,359,294],"Texture":1160},{"Type":4,"Vertices":[993,994,416,359],"Texture":1160},{"Type":4,"Vertices":[994,995,463,416],"Texture":1160},{"Type":4,"Vertices":[995,996,513,463],"Texture":1160},{"Type":4,"Vertices":[996,997,559,513],"Texture":1160},{"Type":4,"Vertices":[997,998,607,559],"Texture":1160},{"Type":4,"Vertices":[998,999,658,607],"Texture":1160},{"Type":4,"Vertices":[999,1000,727,658],"Texture":1160},{"Type":4,"Vertices":[1000,1001,772,727],"Texture":1160},{"Type":4,"Vertices":[1001,1002,822,772],"Texture":1160},{"Type":4,"Vertices":[1002,1003,863,822],"Texture":1160},{"Type":4,"Vertices":[1003,1004,904,863],"Texture":1160},{"Type":4,"Vertices":[1004,986,945,904],"Texture":1160},{"Type":4,"Vertices":[37,1005,988,36],"Texture":1160},{"Type":4,"Vertices":[1005,1006,989,988],"Texture":1160},{"Type":4,"Vertices":[1006,1007,990,989],"Texture":1160},{"Type":4,"Vertices":[1007,1008,991,990],"Texture":1160},{"Type":4,"Vertices":[1008,1009,992,991],"Texture":1160},{"Type":4,"Vertices":[1009,1010,993,992],"Texture":1160},{"Type":4,"Vertices":[1010,1011,994,993],"Texture":1160},{"Type":4,"Vertices":[1011,1012,995,994],"Texture":1160},{"Type":4,"Vertices":[1012,1013,996,995],"Texture":1160},{"Type":4,"Vertices":[1013,1014,997,996],"Texture":1160},{"Type":4,"Vertices":[1014,1015,998,997],"Texture":1160},{"Type":4,"Vertices":[1015,1016,999,998],"Texture":1160},{"Type":4,"Vertices":[1016,1017,1000,999],"Texture":1160},{"Type":4,"Vertices":[1017,1018,1001,1000],"Texture":1160},{"Type":4,"Vertices":[1018,1019,1002,1001],"Texture":1160},{"Type":4,"Vertices":[1019,1020,1003,1002],"Texture":1160},{"Type":4,"Vertices":[1020,1021,1004,1003],"Texture":1160},{"Type":4,"Vertices":[1021,987,986,1004],"Texture":1160},{"Type":4,"Vertices":[116,117,1005,37],"Texture":1160},{"Type":4,"Vertices":[118,160,1006,1005],"Texture":1160},{"Type":4,"Vertices":[160,201,1007,1006],"Texture":1160},{"Type":4,"Vertices":[201,242,1008,1007],"Texture":1160},{"Type":4,"Vertices":[242,296,1009,1008],"Texture":1160},{"Type":4,"Vertices":[296,361,1010,1009],"Texture":1160},{"Type":4,"Vertices":[361,418,1011,1010],"Texture":1160},{"Type":4,"Vertices":[418,465,1012,1011],"Texture":1160},{"Type":4,"Vertices":[465,515,1013,1012],"Texture":1160},{"Type":4,"Vertices":[515,561,1014,1013],"Texture":1160},{"Type":4,"Vertices":[561,609,1015,1014],"Texture":1160},{"Type":4,"Vertices":[609,660,1016,1015],"Texture":1160},{"Type":4,"Vertices":[660,729,1017,1016],"Texture":1160},{"Type":4,"Vertices":[729,774,1018,1017],"Texture":1160},{"Type":4,"Vertices":[774,824,1019,1018],"Texture":1160},{"Type":4,"Vertices":[824,865,1020,1019],"Texture":1160},{"Type":4,"Vertices":[865,906,1021,1020],"Texture":1160},{"Type":4,"Vertices":[948,949,987,1021],"Texture":1160},{"Type":4,"Vertices":[517,468,466,516],"Texture":1147},{"Type":4,"Vertices":[468,467,421,466],"Texture":1151}],"Triangles":[],"Sprites":[]},"AmbientIntensity":7935,"AmbientIntensity2":7935,"Lights":[{"X":68608,"Y":4352,"Z":76288,"Intensity1":7167,"Intensity2":7167,"Fade1":3177,"Fade2":3177}],"StaticMeshes":[]},"FloorData":{}}} \ No newline at end of file diff --git a/TRRandomizerCore/Resources/TR3/Environment/AREA51.TR2-Environment.json b/TRRandomizerCore/Resources/TR3/Environment/AREA51.TR2-Environment.json index a7d6b3dc0..f1c4069ff 100644 --- a/TRRandomizerCore/Resources/TR3/Environment/AREA51.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR3/Environment/AREA51.TR2-Environment.json @@ -11,7 +11,7 @@ "Y": -1152, "Z": 66048 }, - "SlantType": 1, + "SlantType": 2, "RemoveSlant": true }, { @@ -24,7 +24,7 @@ "Y": -1152, "Z": 66048 }, - "SlantType": 1, + "SlantType": 2, "RemoveSlant": true }, { diff --git a/TRRandomizerCore/Resources/TR3/Environment/CRASH.TR2-Environment.json b/TRRandomizerCore/Resources/TR3/Environment/CRASH.TR2-Environment.json index 5eeef2fe0..3dbc3cce0 100644 --- a/TRRandomizerCore/Resources/TR3/Environment/CRASH.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR3/Environment/CRASH.TR2-Environment.json @@ -12,7 +12,7 @@ "Z": 80384, "Room": 44 }, - "SlantType": 1, + "SlantType": 2, "XSlant": -1 }, { @@ -54,6 +54,7 @@ "Quads": { "44": [ { + "Type": 4, "Vertices": [ 391, 392, @@ -67,6 +68,7 @@ "Triangles": { "44": [ { + "Type": 3, "Vertices": [ 62, 391, diff --git a/TRRandomizerCore/Resources/TR3/Environment/NEVADA.TR2-Environment.json b/TRRandomizerCore/Resources/TR3/Environment/NEVADA.TR2-Environment.json index 47489811c..ff6caf819 100644 --- a/TRRandomizerCore/Resources/TR3/Environment/NEVADA.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR3/Environment/NEVADA.TR2-Environment.json @@ -452,9 +452,7 @@ } ], "CameraAction": { - "Value": 10, - "Timer": 10, - "Continue": true + "Timer": 10 } }, { diff --git a/TRRandomizerCore/Resources/TR3/Environment/QUADCHAS.TR2-Environment.json b/TRRandomizerCore/Resources/TR3/Environment/QUADCHAS.TR2-Environment.json index 0e4d2aacb..a650af3f4 100644 --- a/TRRandomizerCore/Resources/TR3/Environment/QUADCHAS.TR2-Environment.json +++ b/TRRandomizerCore/Resources/TR3/Environment/QUADCHAS.TR2-Environment.json @@ -386,7 +386,7 @@ "Room": 10 }, "FloorClicks": 3, - "SlantType": 1, + "SlantType": 2, "XSlant": 2 }, { diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/ANTARC.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/ANTARC.TR2-SecretMapping.json index fe2615b0c..79b8343bc 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/ANTARC.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/ANTARC.TR2-SecretMapping.json @@ -13,64 +13,52 @@ "RewardPositions": [ { "X": 39424, - "Z": 70144, "Y": -7680, - "Angle": 16384, - "Validated": true + "Z": 70144 }, { "X": 39424, - "Z": 69120, "Y": -7680, - "Angle": 16384, - "Validated": true + "Z": 69120 }, { "X": 39424, - "Z": 68096, "Y": -7680, - "Angle": 16384, - "Validated": true + "Z": 68096 }, { "X": 39424, - "Z": 67072, "Y": -7680, - "Angle": 16384, - "Validated": true + "Z": 67072 }, { "X": 39424, - "Z": 66048, "Y": -7680, - "Angle": 16384, - "Validated": true + "Z": 66048 }, { "X": 39424, - "Z": 65024, "Y": -7680, - "Angle": 16384, - "Validated": true + "Z": 65024 } ], "Doors": [ { "TypeID": 133, - "Room": -1, "X": 39424, "Y": -7680, "Z": 60928, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 133, - "Room": -1, "X": 39424, "Y": -7680, "Z": 61952, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 @@ -213,6 +201,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 39, 35, @@ -306,64 +295,52 @@ "RewardPositions": [ { "X": 45568, - "Z": 40448, "Y": -8960, - "Angle": 16384, - "Validated": true + "Z": 40448 }, { "X": 45568, - "Z": 41472, "Y": -8960, - "Angle": 16384, - "Validated": true + "Z": 41472 }, { "X": 45568, - "Z": 42496, "Y": -8960, - "Angle": 16384, - "Validated": true + "Z": 42496 }, { "X": 45568, - "Z": 43520, "Y": -8960, - "Angle": 16384, - "Validated": true + "Z": 43520 }, { "X": 45568, - "Z": 44544, "Y": -8960, - "Angle": 16384, - "Validated": true + "Z": 44544 }, { "X": 45568, - "Z": 45568, "Y": -8960, - "Angle": 16384, - "Validated": true + "Z": 45568 } ], "Doors": [ { "TypeID": 133, - "Room": 44, "X": 44544, "Y": -8960, "Z": 48640, + "Room": 44, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 133, - "Room": -1, "X": 45568, "Y": -8960, "Z": 47616, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 } @@ -515,6 +492,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 4, 5, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/AREA51.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/AREA51.TR2-SecretMapping.json index 402295627..d6c4aa979 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/AREA51.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/AREA51.TR2-SecretMapping.json @@ -10,39 +10,33 @@ "RewardPositions": [ { "X": 49664, - "Z": 32256, - "Angle": 16384, - "Validated": true + "Z": 32256 }, { "X": 48640, - "Z": 32256, - "Angle": 16384, - "Validated": true + "Z": 32256 }, { "X": 52736, - "Z": 32256, "Y": 512, - "Angle": 16384, - "Validated": true + "Z": 32256 } ], "Doors": [ { "TypeID": 139, - "Room": -1, "X": 46592, "Y": -2048, "Z": 32256, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 46592, "Z": 32256, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 @@ -251,6 +245,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 44, 41, @@ -303,64 +298,52 @@ "RewardPositions": [ { "X": 37376, - "Z": 36352, "Y": -3328, - "Angle": 16384, - "Validated": true + "Z": 36352 }, { "X": 36352, - "Z": 35328, "Y": -3328, - "Angle": 16384, - "Validated": true + "Z": 35328 }, { "X": 37376, - "Z": 34304, "Y": -3328, - "Angle": 16384, - "Validated": true + "Z": 34304 }, { "X": 35328, - "Z": 36352, "Y": -3328, - "Angle": 16384, - "Validated": true + "Z": 36352 }, { "X": 35328, - "Z": 35328, "Y": -3328, - "Angle": 16384, - "Validated": true + "Z": 35328 }, { "X": 35328, - "Z": 34304, "Y": -3072, - "Angle": 16384, - "Validated": true + "Z": 34304 } ], "Doors": [ { "TypeID": 138, - "Room": -1, "X": 39424, "Y": -3328, "Z": 35328, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 138, - "Room": -1, "X": 38400, "Y": -3328, "Z": 35328, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 @@ -521,6 +504,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 5, 6, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/CHAMBER.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/CHAMBER.TR2-SecretMapping.json index ab509242b..e1df0c23f 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/CHAMBER.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/CHAMBER.TR2-SecretMapping.json @@ -8,42 +8,36 @@ "RewardPositions": [ { "X": 34304, - "Z": 32256, "Y": 256, - "Angle": 16384, - "Validated": true + "Z": 32256 }, { "X": 35328, - "Z": 32256, "Y": 256, - "Angle": 16384, - "Validated": true + "Z": 32256 }, { "X": 36352, - "Z": 32256, "Y": 256, - "Angle": 16384, - "Validated": true + "Z": 32256 } ], "Doors": [ { "TypeID": 132, - "Room": -1, "X": 39424, "Z": 32256, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 38400, "Y": 256, "Z": 32256, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 @@ -195,6 +189,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 17, 23, @@ -204,6 +199,7 @@ "Texture": 1681 }, { + "Type": 4, "Vertices": [ 0, 3, @@ -213,6 +209,7 @@ "Texture": 1681 }, { + "Type": 4, "Vertices": [ 27, 20, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/CITY.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/CITY.TR2-SecretMapping.json index ceab36357..aa69205c7 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/CITY.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/CITY.TR2-SecretMapping.json @@ -14,49 +14,41 @@ "RewardPositions": [ { "X": 26112, - "Z": 59904, "Y": -3328, - "Angle": 16384, - "Validated": true + "Z": 59904 }, { "X": 26112, - "Z": 58880, "Y": -3328, - "Angle": 16384, - "Validated": true + "Z": 58880 }, { "X": 27136, - "Z": 58880, "Y": -3328, - "Angle": 16384, - "Validated": true + "Z": 58880 }, { "X": 27136, - "Z": 59904, "Y": -3328, - "Angle": 16384, - "Validated": true + "Z": 59904 } ], "Doors": [ { "TypeID": 134, - "Room": -1, "X": 26112, "Y": -3328, "Z": 61952, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 134, - "Room": -1, "X": 26112, "Y": -3328, "Z": 60928, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 } @@ -231,64 +223,52 @@ "RewardPositions": [ { "X": 19968, - "Z": 75264, "Y": -2304, - "Angle": 16384, - "Validated": true + "Z": 75264 }, { "X": 19968, - "Z": 74240, "Y": -2432, - "Angle": 16384, - "Validated": true + "Z": 74240 }, { "X": 19968, - "Z": 73216, "Y": -2688, - "Angle": 16384, - "Validated": true + "Z": 73216 }, { "X": 19968, - "Z": 72192, "Y": -2944, - "Angle": 16384, - "Validated": true + "Z": 72192 }, { "X": 19968, - "Z": 71168, "Y": -3200, - "Angle": 16384, - "Validated": true + "Z": 71168 }, { "X": 19968, - "Z": 70144, "Y": -3328, - "Angle": 16384, - "Validated": true + "Z": 70144 } ], "Doors": [ { "TypeID": 133, - "Room": -1, "X": 19968, "Y": -3328, "Z": 68096, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 133, - "Room": -1, "X": 19968, "Y": -3328, "Z": 69120, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 @@ -462,6 +442,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 30, 31, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/COMPOUND.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/COMPOUND.TR2-SecretMapping.json index 631abaa4f..a03267a02 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/COMPOUND.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/COMPOUND.TR2-SecretMapping.json @@ -8,29 +8,27 @@ "RewardPositions": [ { "X": 50688, - "Z": 47616, "Y": 6144, - "Angle": 16384, - "Validated": true + "Z": 47616 } ], "Doors": [ { "TypeID": 139, - "Room": -1, "X": 50688, "Y": 512, "Z": 57856, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 133, - "Room": -1, "X": 50688, "Y": 2048, "Z": 57856, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 } @@ -164,6 +162,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 3, 2, @@ -203,50 +202,42 @@ "RewardPositions": [ { "X": 68096, - "Z": 77312, "Y": -512, - "Angle": 16384, - "Validated": true + "Z": 77312 }, { "X": 68096, - "Z": 76288, "Y": -512, - "Angle": 16384, - "Validated": true + "Z": 76288 }, { "X": 68096, - "Z": 75264, "Y": -512, - "Angle": 16384, - "Validated": true + "Z": 75264 }, { "X": 68096, - "Z": 74240, "Y": -512, - "Angle": 16384, - "Validated": true + "Z": 74240 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 68096, "Y": -512, "Z": 70144, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 68096, "Y": -512, "Z": 71168, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 @@ -402,6 +393,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 11, 14, @@ -452,35 +444,31 @@ "RewardPositions": [ { "X": 61952, - "Z": 60928, "Y": -2560, - "Angle": 16384, - "Validated": true + "Z": 60928 }, { "X": 60928, - "Z": 60928, "Y": -2560, - "Angle": 16384, - "Validated": true + "Z": 60928 } ], "Doors": [ { "TypeID": 139, - "Room": 94, "X": 61952, "Y": -2560, "Z": 62976, + "Room": 94, "Angle": -16384, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 61952, "Y": -2560, "Z": 62976, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 } @@ -588,6 +576,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 4, 8, @@ -597,6 +586,7 @@ "Texture": 1786 }, { + "Type": 4, "Vertices": [ 33, 18, @@ -606,6 +596,7 @@ "Texture": 1786 }, { + "Type": 4, "Vertices": [ 15, 30, @@ -615,6 +606,7 @@ "Texture": 1786 }, { + "Type": 4, "Vertices": [ 2, 11, @@ -624,6 +616,7 @@ "Texture": 1805 }, { + "Type": 4, "Vertices": [ 31, 17, @@ -633,6 +626,7 @@ "Texture": 1805 }, { + "Type": 4, "Vertices": [ 14, 34, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/CRASH.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/CRASH.TR2-SecretMapping.json index 62de0a046..3aba1ad67 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/CRASH.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/CRASH.TR2-SecretMapping.json @@ -11,57 +11,47 @@ "RewardPositions": [ { "X": 75264, - "Z": 60928, "Y": -512, - "Angle": 16384, - "Validated": true + "Z": 60928 }, { "X": 74240, - "Z": 60928, "Y": -512, - "Angle": 16384, - "Validated": true + "Z": 60928 }, { "X": 73216, - "Z": 60928, "Y": -512, - "Angle": 16384, - "Validated": true + "Z": 60928 }, { "X": 72192, - "Z": 60928, "Y": -512, - "Angle": 16384, - "Validated": true + "Z": 60928 }, { "X": 71168, - "Z": 60928, "Y": -512, - "Angle": 16384, - "Validated": true + "Z": 60928 } ], "Doors": [ { "TypeID": 132, - "Room": -1, "X": 76288, "Y": -512, "Z": 60928, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 132, - "Room": 41, "X": 77312, "Y": -1792, "Z": 60928, + "Room": 41, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 @@ -235,6 +225,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 6, 0, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/JUNGLE.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/JUNGLE.TR2-SecretMapping.json index 4dfefa5a2..4e719b8d7 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/JUNGLE.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/JUNGLE.TR2-SecretMapping.json @@ -18,43 +18,37 @@ "RewardPositions": [ { "X": 12800, - "Z": 85504, "Y": 24320, - "Angle": 16384, - "Validated": true + "Z": 85504 }, { "X": 12800, - "Z": 86528, "Y": 24320, - "Angle": 16384, - "Validated": true + "Z": 86528 }, { "X": 12800, - "Z": 87552, "Y": 24320, - "Angle": 16384, - "Validated": true + "Z": 87552 } ], "Doors": [ { "TypeID": 131, - "Room": 127, "X": 12800, "Y": 25600, "Z": 77312, + "Room": 127, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 12800, "Y": 24320, "Z": 84523, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 @@ -275,57 +269,47 @@ "RewardPositions": [ { "X": 12800, - "Z": 79360, "Y": 25600, - "Angle": 16384, - "Validated": true + "Z": 79360 }, { "X": 12800, - "Z": 80384, "Y": 25600, - "Angle": 16384, - "Validated": true + "Z": 80384 }, { "X": 13824, - "Z": 80384, "Y": 25600, - "Angle": 16384, - "Validated": true + "Z": 80384 }, { "X": 14848, - "Z": 80384, "Y": 25600, - "Angle": 16384, - "Validated": true + "Z": 80384 }, { "X": 15872, - "Z": 80384, "Y": 25600, - "Angle": 16384, - "Validated": true + "Z": 80384 } ], "Doors": [ { "TypeID": 131, - "Room": 127, "X": 12800, "Y": 25600, "Z": 77312, + "Room": 127, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 12800, "Y": 25600, "Z": 78336, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 @@ -514,57 +498,47 @@ "RewardPositions": [ { "X": 9728, - "Z": 70144, "Y": 25856, - "Angle": 16384, - "Validated": true + "Z": 70144 }, { "X": 8712, - "Z": 70144, "Y": 25856, - "Angle": 16384, - "Validated": true + "Z": 70144 }, { "X": 7688, - "Z": 70144, "Y": 25856, - "Angle": 16384, - "Validated": true + "Z": 70144 }, { "X": 7688, - "Z": 69120, "Y": 25856, - "Angle": 16384, - "Validated": true + "Z": 69120 }, { "X": 7688, - "Z": 68096, "Y": 25856, - "Angle": 16384, - "Validated": true + "Z": 68096 } ], "Doors": [ { "TypeID": 131, - "Room": 127, "X": 11776, "Y": 25856, "Z": 70144, + "Room": 127, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 10752, "Y": 25856, "Z": 70144, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/MINES.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/MINES.TR2-SecretMapping.json index 22e31a072..06c2dc914 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/MINES.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/MINES.TR2-SecretMapping.json @@ -13,50 +13,42 @@ "RewardPositions": [ { "X": 5632, - "Z": 16896, "Y": -2304, - "Angle": 16384, - "Validated": true + "Z": 16896 }, { "X": 4608, - "Z": 16896, "Y": -2304, - "Angle": 16384, - "Validated": true + "Z": 16896 }, { "X": 4608, - "Z": 15872, "Y": -2304, - "Angle": 16384, - "Validated": true + "Z": 15872 }, { "X": 4608, - "Z": 14848, "Y": -2304, - "Angle": 16384, - "Validated": true + "Z": 14848 } ], "Doors": [ { "TypeID": 133, - "Room": -1, "X": 6656, "Y": -2304, "Z": 14848, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 133, - "Room": -1, "X": 5632, "Y": -2304, "Z": 14848, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 @@ -275,6 +267,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 23, 21, @@ -286,6 +279,7 @@ ], "6": [ { + "Type": 4, "Vertices": [ 562, 561, @@ -325,43 +319,37 @@ "RewardPositions": [ { "X": 2560, - "Z": 27136, "Y": -1792, - "Angle": 16384, - "Validated": true + "Z": 27136 }, { "X": 3584, - "Z": 27136, "Y": -1792, - "Angle": 16384, - "Validated": true + "Z": 27136 }, { "X": 4608, - "Z": 27136, "Y": -1792, - "Angle": 16384, - "Validated": true + "Z": 27136 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 6656, "Y": -1792, "Z": 27136, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 5632, "Y": -1792, "Z": 27136, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/NEVADA.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/NEVADA.TR2-SecretMapping.json index 94d93a063..182384b54 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/NEVADA.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/NEVADA.TR2-SecretMapping.json @@ -11,43 +11,37 @@ "RewardPositions": [ { "X": 61952, - "Z": 70144, "Y": -3584, - "Angle": 16384, - "Validated": true + "Z": 70144 }, { "X": 60928, - "Z": 70144, "Y": -3584, - "Angle": 16384, - "Validated": true + "Z": 70144 }, { "X": 59904, - "Z": 70144, "Y": -3584, - "Angle": 16384, - "Validated": true + "Z": 70144 } ], "Doors": [ { "TypeID": 134, - "Room": -1, "X": 64000, "Y": -3584, "Z": 70144, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 134, - "Room": -1, "X": 62976, "Y": -3584, "Z": 70144, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 @@ -225,6 +219,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 5, 6, @@ -289,49 +284,41 @@ "RewardPositions": [ { "X": 74240, - "Z": 68096, - "Angle": 16384, - "Validated": true + "Z": 68096 }, { "X": 73216, - "Z": 68096, "Y": -256, - "Angle": 16384, - "Validated": true + "Z": 68096 }, { "X": 75264, - "Z": 68096, "Y": -256, - "Angle": 16384, - "Validated": true + "Z": 68096 }, { "X": 76288, - "Z": 68096, "Y": -256, - "Angle": 16384, - "Validated": true + "Z": 68096 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 71168, "Y": -256, "Z": 68096, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 72192, "Y": -256, "Z": 68096, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 @@ -544,6 +531,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 21, 16, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/OFFICE.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/OFFICE.TR2-SecretMapping.json index 8cafac472..4a21657dc 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/OFFICE.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/OFFICE.TR2-SecretMapping.json @@ -8,29 +8,27 @@ "RewardPositions": [ { "X": 42496, - "Z": 53760, "Y": -13312, - "Angle": 16384, - "Validated": true + "Z": 53760 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 40448, "Y": -13312, "Z": 53760, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 41472, "Y": -13312, "Z": 53760, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 @@ -256,6 +254,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 28, 27, @@ -295,36 +294,32 @@ "RewardPositions": [ { "X": 29184, - "Z": 53760, "Y": -15104, - "Angle": 16384, - "Validated": true + "Z": 53760 }, { "X": 28160, - "Z": 53760, "Y": -15104, - "Angle": 16384, - "Validated": true + "Z": 53760 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 31232, "Y": -15104, "Z": 53760, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 30208, "Y": -15104, "Z": 53760, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 @@ -496,6 +491,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 9, 10, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/QUADCHAS.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/QUADCHAS.TR2-SecretMapping.json index aa4b1bff4..dd54b92e5 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/QUADCHAS.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/QUADCHAS.TR2-SecretMapping.json @@ -18,64 +18,52 @@ "RewardPositions": [ { "X": 40448, - "Z": 84480, "Y": 8192, - "Angle": 16384, - "Validated": true + "Z": 84480 }, { "X": 39424, - "Z": 84480, "Y": 8192, - "Angle": 16384, - "Validated": true + "Z": 84480 }, { "X": 38400, - "Z": 84480, "Y": 8192, - "Angle": 16384, - "Validated": true + "Z": 84480 }, { "X": 37376, - "Z": 84480, "Y": 8192, - "Angle": 16384, - "Validated": true + "Z": 84480 }, { "X": 37376, - "Z": 83456, "Y": 8192, - "Angle": 16384, - "Validated": true + "Z": 83456 }, { "X": 37376, - "Z": 80384, "Y": 8192, - "Angle": 16384, - "Validated": true + "Z": 80384 } ], "Doors": [ { "TypeID": 132, - "Room": 163, "X": 43520, "Y": 8192, "Z": 79360, + "Room": 163, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 132, - "Room": -1, "X": 42496, "Y": 8192, "Z": 84480, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 @@ -280,43 +268,37 @@ "RewardPositions": [ { "X": 37376, - "Z": 71168, "Y": 5888, - "Angle": 16384, - "Validated": true + "Z": 71168 }, { "X": 36352, - "Z": 71168, "Y": 5888, - "Angle": 16384, - "Validated": true + "Z": 71168 }, { "X": 35328, - "Z": 71168, "Y": 5888, - "Angle": 16384, - "Validated": true + "Z": 71168 } ], "Doors": [ { "TypeID": 132, - "Room": -1, "X": 40448, "Y": 5888, "Z": 71195, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 132, - "Room": -1, "X": 39424, "Y": 5888, "Z": 71195, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 @@ -467,6 +449,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 15, 14, @@ -476,6 +459,7 @@ "Texture": 1390 }, { + "Type": 4, "Vertices": [ 2, 3, @@ -515,50 +499,42 @@ "RewardPositions": [ { "X": 49664, - "Z": 71168, "Y": 5632, - "Angle": 16384, - "Validated": true + "Z": 71168 }, { "X": 49664, - "Z": 70144, "Y": 5632, - "Angle": 16384, - "Validated": true + "Z": 70144 }, { "X": 49664, - "Z": 69120, "Y": 5632, - "Angle": 16384, - "Validated": true + "Z": 69120 }, { "X": 49664, - "Z": 68096, "Y": 5632, - "Angle": 16384, - "Validated": true + "Z": 68096 } ], "Doors": [ { "TypeID": 132, - "Room": -1, "X": 46592, "Y": 5632, "Z": 71168, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 132, - "Room": -1, "X": 47616, "Y": 5632, "Z": 71168, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 @@ -712,6 +688,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 28, 29, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/RAPIDS.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/RAPIDS.TR2-SecretMapping.json index 4c1fe19dc..809067aed 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/RAPIDS.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/RAPIDS.TR2-SecretMapping.json @@ -10,43 +10,37 @@ "RewardPositions": [ { "X": 60928, - "Z": 76288, "Y": 17408, - "Angle": 16384, - "Validated": true + "Z": 76288 }, { "X": 59904, - "Z": 76288, "Y": 17408, - "Angle": 16384, - "Validated": true + "Z": 76288 }, { "X": 58880, - "Z": 76288, "Y": 17408, - "Angle": 16384, - "Validated": true + "Z": 76288 } ], "Doors": [ { "TypeID": 139, - "Room": -1, "X": 56832, "Y": 14336, "Z": 76288, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 57856, "Y": 17408, "Z": 76288, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 @@ -198,6 +192,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 37, 43, @@ -207,6 +202,7 @@ "Texture": 1393 }, { + "Type": 4, "Vertices": [ 43, 40, @@ -306,49 +302,41 @@ "RewardPositions": [ { "X": 48640, - "Z": 61952, "Y": 13056, - "Angle": 16384, - "Validated": true + "Z": 61952 }, { "X": 48640, - "Z": 62976, "Y": 13056, - "Angle": 16384, - "Validated": true + "Z": 62976 }, { "X": 48640, - "Z": 64000, "Y": 13056, - "Angle": 16384, - "Validated": true + "Z": 64000 }, { "X": 48640, - "Z": 65024, "Y": 13056, - "Angle": 16384, - "Validated": true + "Z": 65024 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 48640, "Y": 13056, "Z": 68096, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 48640, "Y": 13056, "Z": 67072, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 } @@ -539,6 +527,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 9, 10, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/ROOFS.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/ROOFS.TR2-SecretMapping.json index 43254e47d..4fb6ba4d6 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/ROOFS.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/ROOFS.TR2-SecretMapping.json @@ -20,43 +20,37 @@ "RewardPositions": [ { "X": 49664, - "Z": 60928, "Y": -12800, - "Angle": 16384, - "Validated": true + "Z": 60928 }, { "X": 49664, - "Z": 59904, "Y": -12800, - "Angle": 16384, - "Validated": true + "Z": 59904 }, { "X": 49664, - "Z": 58880, "Y": -12800, - "Angle": 16384, - "Validated": true + "Z": 58880 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 49664, "Y": -12800, "Z": 56832, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 49664, "Y": -12800, "Z": 57856, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 @@ -199,6 +193,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 20, 21, @@ -238,57 +233,47 @@ "RewardPositions": [ { "X": 70144, - "Z": 48640, "Y": -19200, - "Angle": 16384, - "Validated": true + "Z": 48640 }, { "X": 71168, - "Z": 48640, "Y": -19200, - "Angle": 16384, - "Validated": true + "Z": 48640 }, { "X": 72192, - "Z": 48640, "Y": -19200, - "Angle": 16384, - "Validated": true + "Z": 48640 }, { "X": 73216, - "Z": 48640, "Y": -19200, - "Angle": 16384, - "Validated": true + "Z": 48640 }, { "X": 74240, - "Z": 48640, "Y": -19200, - "Angle": 16384, - "Validated": true + "Z": 48640 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 67072, "Y": -19200, "Z": 48640, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 68096, "Y": -19200, "Z": 48640, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 @@ -431,6 +416,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 74, 71, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/SEWER.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/SEWER.TR2-SecretMapping.json index 633743e03..facce0b9a 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/SEWER.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/SEWER.TR2-SecretMapping.json @@ -12,42 +12,36 @@ "RewardPositions": [ { "X": 48640, - "Z": 36352, "Y": 2560, - "Angle": 16384, - "Validated": true + "Z": 36352 }, { "X": 48640, - "Z": 37376, "Y": 2560, - "Angle": 16384, - "Validated": true + "Z": 37376 }, { "X": 48640, - "Z": 38400, "Y": 2560, - "Angle": 16384, - "Validated": true + "Z": 38400 } ], "Doors": [ { "TypeID": 136, - "Room": 104, "X": 48640, "Y": 2560, "Z": 40448, + "Room": 104, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 132, - "Room": -1, "X": 48640, "Y": 2560, "Z": 39424, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 } @@ -203,6 +197,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 12, 11, @@ -242,50 +237,42 @@ "RewardPositions": [ { "X": 54784, - "Z": 43520, "Y": 2560, - "Angle": 16384, - "Validated": true + "Z": 43520 }, { "X": 54784, - "Z": 44544, "Y": 2304, - "Angle": 16384, - "Validated": true + "Z": 44544 }, { "X": 53760, - "Z": 44544, "Y": 2304, - "Angle": 16384, - "Validated": true + "Z": 44544 }, { "X": 53760, - "Z": 43520, "Y": 2560, - "Angle": 16384, - "Validated": true + "Z": 43520 } ], "Doors": [ { "TypeID": 132, - "Room": 104, "X": 54784, "Y": 2560, "Z": 41472, + "Room": 104, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 132, - "Room": -1, "X": 54784, "Y": 2560, "Z": 42496, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 @@ -422,6 +409,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 17, 32, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/SHORE.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/SHORE.TR2-SecretMapping.json index 5160c623a..266301e53 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/SHORE.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/SHORE.TR2-SecretMapping.json @@ -12,43 +12,37 @@ "RewardPositions": [ { "X": 73216, - "Z": 82432, "Y": -4608, - "Angle": 16384, - "Validated": true + "Z": 82432 }, { "X": 72192, - "Z": 82432, "Y": -4608, - "Angle": 16384, - "Validated": true + "Z": 82432 }, { "X": 73216, - "Z": 83456, "Y": -4608, - "Angle": 16384, - "Validated": true + "Z": 83456 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 73216, "Y": -4608, "Z": 79360, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 73216, "Y": -4608, "Z": 80384, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 @@ -197,6 +191,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 41, 47, @@ -206,6 +201,7 @@ "Texture": 1435 }, { + "Type": 4, "Vertices": [ 31, 28, @@ -271,57 +267,47 @@ "RewardPositions": [ { "X": 73216, - "Z": 82432, "Y": -4608, - "Angle": 16384, - "Validated": true + "Z": 82432 }, { "X": 74240, - "Z": 82432, "Y": -4608, - "Angle": 16384, - "Validated": true + "Z": 82432 }, { "X": 75264, - "Z": 82432, "Y": -4608, - "Angle": 16384, - "Validated": true + "Z": 82432 }, { "X": 76288, - "Z": 82432, "Y": -4608, - "Angle": 16384, - "Validated": true + "Z": 82432 }, { "X": 77312, - "Z": 82432, "Y": -4608, - "Angle": 16384, - "Validated": true + "Z": 82432 } ], "Doors": [ { "TypeID": 134, - "Room": -1, "X": 69120, "Y": -4608, "Z": 82432, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 134, - "Room": -1, "X": 70144, "Y": -4608, "Z": 82432, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 @@ -520,6 +506,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 4, 37, @@ -529,6 +516,7 @@ "Texture": 1208 }, { + "Type": 4, "Vertices": [ 10, 7, @@ -538,6 +526,7 @@ "Texture": 1216 }, { + "Type": 4, "Vertices": [ 42, 36, @@ -547,6 +536,7 @@ "Texture": 1216 }, { + "Type": 4, "Vertices": [ 32, 27, @@ -556,6 +546,7 @@ "Texture": 1208 }, { + "Type": 4, "Vertices": [ 4, 2, @@ -565,6 +556,7 @@ "Texture": 1208 }, { + "Type": 4, "Vertices": [ 37, 7, @@ -574,6 +566,7 @@ "Texture": 1208 }, { + "Type": 4, "Vertices": [ 41, 27, @@ -583,6 +576,7 @@ "Texture": 1208 }, { + "Type": 4, "Vertices": [ 42, 32, @@ -646,42 +640,36 @@ "RewardPositions": [ { "X": 62976, - "Z": 75264, "Y": -1536, - "Angle": 16384, - "Validated": true + "Z": 75264 }, { "X": 61952, - "Z": 75264, "Y": -1536, - "Angle": 16384, - "Validated": true + "Z": 75264 }, { "X": 61952, - "Z": 76288, "Y": -1536, - "Angle": 16384, - "Validated": true + "Z": 76288 } ], "Doors": [ { "TypeID": 134, - "Room": -1, "X": 64000, "Y": -1536, "Z": 77312, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 134, - "Room": -1, "X": 64000, "Y": -1536, "Z": 75264, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 @@ -840,6 +828,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 10, 11, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/STPAUL.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/STPAUL.TR2-SecretMapping.json index 8465af075..8ec84292a 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/STPAUL.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/STPAUL.TR2-SecretMapping.json @@ -15,50 +15,42 @@ "RewardPositions": [ { "X": 40448, - "Z": 36352, "Y": 2816, - "Angle": 16384, - "Validated": true + "Z": 36352 }, { "X": 39424, - "Z": 36352, "Y": 2816, - "Angle": 16384, - "Validated": true + "Z": 36352 }, { "X": 38400, - "Z": 36352, "Y": 2816, - "Angle": 16384, - "Validated": true + "Z": 36352 }, { "X": 37376, - "Z": 36352, "Y": 2816, - "Angle": 16384, - "Validated": true + "Z": 36352 } ], "Doors": [ { "TypeID": 134, - "Room": -1, "X": 35328, "Y": 2816, "Z": 36352, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 134, - "Room": -1, "X": 36352, "Y": 2816, "Z": 36352, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 @@ -220,6 +212,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 42, 38, @@ -270,53 +263,43 @@ "RewardPositions": [ { "X": 42496, - "Z": 39424, - "Angle": 16384, - "Validated": true + "Z": 39424 }, { "X": 41472, - "Z": 39424, - "Angle": 16384, - "Validated": true + "Z": 39424 }, { "X": 40448, - "Z": 39424, "Y": 1536, - "Angle": 16384, - "Validated": true + "Z": 39424 }, { "X": 39424, - "Z": 39424, "Y": 1536, - "Angle": 16384, - "Validated": true + "Z": 39424 }, { "X": 38400, - "Z": 39424, "Y": 2304, - "Angle": 16384, - "Validated": true + "Z": 39424 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 36352, "Z": 39424, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 37376, "Z": 39424, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/TEMPLE.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/TEMPLE.TR2-SecretMapping.json index 69606a246..70bee476d 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/TEMPLE.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/TEMPLE.TR2-SecretMapping.json @@ -14,49 +14,41 @@ "RewardPositions": [ { "X": 12800, - "Z": 48640, "Y": 2816, - "Angle": 16384, - "Validated": true + "Z": 48640 }, { "X": 12800, - "Z": 47616, "Y": 2816, - "Angle": 16384, - "Validated": true + "Z": 47616 }, { "X": 12800, - "Z": 46592, "Y": 2816, - "Angle": 16384, - "Validated": true + "Z": 46592 }, { "X": 12800, - "Z": 45568, "Y": 2816, - "Angle": 16384, - "Validated": true + "Z": 45568 } ], "Doors": [ { "TypeID": 132, - "Room": 211, "X": 12800, "Y": 2816, "Z": 51712, + "Room": 211, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 132, - "Room": -1, "X": 12800, "Y": 2816, "Z": 50688, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 } @@ -222,6 +214,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 36, 0, @@ -231,6 +224,7 @@ "Texture": 1643 }, { + "Type": 4, "Vertices": [ 12, 13, @@ -270,50 +264,42 @@ "RewardPositions": [ { "X": 6656, - "Z": 62976, "Y": 3072, - "Angle": 16384, - "Validated": true + "Z": 62976 }, { "X": 6656, - "Z": 61952, "Y": 3072, - "Angle": 16384, - "Validated": true + "Z": 61952 }, { "X": 6656, - "Z": 60928, "Y": 3072, - "Angle": 16384, - "Validated": true + "Z": 60928 }, { "X": 6656, - "Z": 59904, "Y": 3072, - "Angle": 16384, - "Validated": true + "Z": 59904 } ], "Doors": [ { "TypeID": 132, - "Room": 212, "X": 9728, "Y": 3072, "Z": 65024, + "Room": 212, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 132, - "Room": -1, "X": 6656, "Y": 3072, "Z": 65024, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 } diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/TONYBOSS.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/TONYBOSS.TR2-SecretMapping.json index 9ab8acac7..49252b291 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/TONYBOSS.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/TONYBOSS.TR2-SecretMapping.json @@ -9,35 +9,31 @@ "RewardPositions": [ { "X": 43520, - "Z": 50688, "Y": -7424, - "Angle": 16384, - "Validated": true + "Z": 50688 }, { "X": 42496, - "Z": 50688, "Y": -5888, - "Angle": 16384, - "Validated": true + "Z": 50688 } ], "Doors": [ { "TypeID": 131, - "Room": 24, "X": 40448, "Y": -5888, "Z": 52736, + "Room": 24, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 41472, "Y": -5888, "Z": 50688, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 @@ -252,50 +248,42 @@ "RewardPositions": [ { "X": 43520, - "Z": 52736, "Y": -6912, - "Angle": 16384, - "Validated": true + "Z": 52736 }, { "X": 44544, - "Z": 52736, "Y": -6912, - "Angle": 16384, - "Validated": true + "Z": 52736 }, { "X": 45568, - "Z": 52736, "Y": -6912, - "Angle": 16384, - "Validated": true + "Z": 52736 }, { "X": 46592, - "Z": 52736, "Y": -6912, - "Angle": 16384, - "Validated": true + "Z": 52736 } ], "Doors": [ { "TypeID": 131, - "Room": 8, "X": 40448, "Y": -6912, "Z": 52736, + "Room": 8, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 41472, "Y": -6912, "Z": 52736, + "Room": -1, "Angle": -16384, "Intensity1": 6342, "Intensity2": 16912 @@ -491,43 +479,37 @@ "RewardPositions": [ { "X": 37376, - "Z": 53760, "Y": -4864, - "Angle": 16384, - "Validated": true + "Z": 53760 }, { "X": 36352, - "Z": 53760, "Y": -4864, - "Angle": 16384, - "Validated": true + "Z": 53760 }, { "X": 35328, - "Z": 53760, "Y": -4864, - "Angle": 16384, - "Validated": true + "Z": 53760 } ], "Doors": [ { "TypeID": 131, - "Room": -1, "X": 40448, "Y": -4864, "Z": 53760, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 39424, "Y": -4864, "Z": 53760, + "Room": -1, "Angle": 16384, "Intensity1": 6342, "Intensity2": 16912 diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/TOWER.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/TOWER.TR2-SecretMapping.json index b13dc5a9f..4401e4ac0 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/TOWER.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/TOWER.TR2-SecretMapping.json @@ -17,57 +17,47 @@ "RewardPositions": [ { "X": 34304, - "Z": 50688, "Y": -28160, - "Angle": 16384, - "Validated": true + "Z": 50688 }, { "X": 34304, - "Z": 51712, "Y": -28160, - "Angle": 16384, - "Validated": true + "Z": 51712 }, { "X": 34304, - "Z": 52736, "Y": -28160, - "Angle": 16384, - "Validated": true + "Z": 52736 }, { "X": 34304, - "Z": 53760, "Y": -28160, - "Angle": 16384, - "Validated": true + "Z": 53760 }, { "X": 34304, - "Z": 54784, "Y": -28160, - "Angle": 16384, - "Validated": true + "Z": 54784 } ], "Doors": [ { "TypeID": 138, - "Room": -1, "X": 34304, "Y": -28160, "Z": 48640, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 138, - "Room": -1, "X": 34304, "Y": -28160, "Z": 49664, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 @@ -222,6 +212,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 33, 34, @@ -231,6 +222,7 @@ "Texture": 2010 }, { + "Type": 4, "Vertices": [ 9, 41, @@ -240,6 +232,7 @@ "Texture": 2015 }, { + "Type": 4, "Vertices": [ 20, 4, @@ -279,49 +272,41 @@ "RewardPositions": [ { "X": 32256, - "Z": 57856, "Y": -27904, - "Angle": 16384, - "Validated": true + "Z": 57856 }, { "X": 31232, - "Z": 57856, "Y": -27904, - "Angle": 16384, - "Validated": true + "Z": 57856 }, { "X": 31232, - "Z": 56832, "Y": -27904, - "Angle": 16384, - "Validated": true + "Z": 56832 }, { "X": 31232, - "Z": 55808, "Y": -27904, - "Angle": 16384, - "Validated": true + "Z": 55808 } ], "Doors": [ { "TypeID": 139, - "Room": 53, "X": 31232, "Y": -27904, "Z": 53760, + "Room": 53, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 132, - "Room": -1, "X": 31232, "Y": -27904, "Z": 53760, + "Room": -1, "Angle": -32768, "Intensity1": 6342, "Intensity2": 16912 @@ -449,6 +434,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 29, 22, diff --git a/TRRandomizerCore/Resources/TR3/SecretMapping/TRIBOSS.TR2-SecretMapping.json b/TRRandomizerCore/Resources/TR3/SecretMapping/TRIBOSS.TR2-SecretMapping.json index b71b52ad2..e649e103c 100644 --- a/TRRandomizerCore/Resources/TR3/SecretMapping/TRIBOSS.TR2-SecretMapping.json +++ b/TRRandomizerCore/Resources/TR3/SecretMapping/TRIBOSS.TR2-SecretMapping.json @@ -11,49 +11,41 @@ "RewardPositions": [ { "X": 54784, - "Z": 55808, "Y": -5632, - "Angle": 16384, - "Validated": true + "Z": 55808 }, { "X": 54784, - "Z": 54784, "Y": -5632, - "Angle": 16384, - "Validated": true + "Z": 54784 }, { "X": 55808, - "Z": 54784, "Y": -5632, - "Angle": 16384, - "Validated": true + "Z": 54784 }, { "X": 55808, - "Z": 55808, "Y": -5632, - "Angle": 16384, - "Validated": true + "Z": 55808 } ], "Doors": [ { "TypeID": 131, - "Room": 28, "X": 55808, "Y": -5632, "Z": 57856, + "Room": 28, "Intensity1": 6342, "Intensity2": 16912 }, { "TypeID": 131, - "Room": -1, "X": 55808, "Y": -5632, "Z": 56832, + "Room": -1, "Intensity1": 6342, "Intensity2": 16912 } @@ -250,6 +242,7 @@ "Quads": { "-1": [ { + "Type": 4, "Vertices": [ 10, 18, @@ -259,6 +252,7 @@ "Texture": 1214 }, { + "Type": 4, "Vertices": [ 8, 15, @@ -268,6 +262,7 @@ "Texture": 1214 }, { + "Type": 4, "Vertices": [ 2, 8, @@ -277,6 +272,7 @@ "Texture": 1214 }, { + "Type": 4, "Vertices": [ 3, 27,