Last active
December 18, 2015 00:29
-
-
Save RoyAwesome/5697475 to your computer and use it in GitHub Desktop.
Planetside 2 Area mapper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.IO; | |
using System.Xml; | |
using System.Drawing; | |
namespace AreaMapper | |
{ | |
class Program | |
{ | |
abstract class Shape | |
{ | |
public abstract void DrawShapeOnCanvas(Graphics g); | |
public abstract void Scale(int x, int y); | |
} | |
class Box : Shape | |
{ | |
public int X1 { get; set; } | |
public int X2 { get; set; } | |
public int Y1 { get; set; } | |
public int Y2 { get; set; } | |
public override void DrawShapeOnCanvas(Graphics g) | |
{ | |
Pen p = new Pen(Color.Red); | |
g.DrawRectangle(p, new Rectangle(X1, Y2, X2 - X1, Y1 - Y2)); | |
} | |
public override void Scale(int x, int y) | |
{ | |
//Remove the negatives | |
X1 = X1 + x; | |
X2 = X2 + x; | |
Y1 = Y1 + y; | |
Y2 = Y2 + y; | |
} | |
} | |
class Sphere : Shape | |
{ | |
public int X { get; set; } | |
public int Y { get; set; } | |
public int Radius { get; set; } | |
public override void DrawShapeOnCanvas(Graphics g) | |
{ | |
Pen p = new Pen(Color.Blue); | |
p.Width = 2; | |
g.DrawEllipse(p, X, Y, Radius, Radius); | |
} | |
public override void Scale(int x, int y) | |
{ | |
X = X + x; | |
Y = Y + y; | |
} | |
} | |
class Dome : Sphere | |
{ | |
public override void DrawShapeOnCanvas(Graphics g) | |
{ | |
Pen p = new Pen(Color.Green); | |
p.Width = 2; | |
g.DrawEllipse(p, X, Y, 1, 1); | |
} | |
} | |
static void Main(string[] args) | |
{ | |
string Filename = args[0]; | |
int largestX = int.MinValue; | |
int largestY = int.MinValue; | |
List<Shape> shapes = new List<Shape>(); | |
XmlReaderSettings settings = new XmlReaderSettings(); | |
settings.ConformanceLevel = ConformanceLevel.Fragment; | |
using(TextReader reader = new StreamReader(Filename)) | |
{ | |
XmlReader xmlreader = XmlReader.Create(reader, settings); | |
while (xmlreader.Read()) | |
{ | |
if(xmlreader.Name == "AreaDefinition" && xmlreader.NodeType != XmlNodeType.EndElement) | |
{ | |
string shape = xmlreader.GetAttribute("shape"); | |
if (shape == "sphere") | |
{ | |
Sphere sphere = new Sphere() | |
{ | |
X = (int)float.Parse(xmlreader.GetAttribute("z1")), | |
Y = -(int)float.Parse(xmlreader.GetAttribute("x1")), | |
Radius = (int)float.Parse(xmlreader.GetAttribute("radius")), | |
}; | |
shapes.Add(sphere); | |
if (largestX < sphere.X + sphere.Radius) largestX = sphere.X + sphere.Radius; | |
if (largestY < Math.Abs(sphere.Y) + sphere.Radius) largestY = Math.Abs(sphere.Y) + sphere.Radius; | |
} | |
else if (shape == "box") | |
{ | |
Box b = new Box() | |
{ | |
X1 = (int)float.Parse(xmlreader.GetAttribute("z1")), | |
Y1 = -(int)float.Parse(xmlreader.GetAttribute("x1")), | |
X2 = (int)float.Parse(xmlreader.GetAttribute("z2")), | |
Y2 = -(int)float.Parse(xmlreader.GetAttribute("x2")), | |
}; | |
shapes.Add(b); | |
if (largestX < b.X2) largestX = b.X2; | |
if (largestY < Math.Abs(b.Y2)) largestY = Math.Abs(b.Y2); | |
} | |
else if (shape == "dome") | |
{ | |
Dome sphere = new Dome() | |
{ | |
X = (int)float.Parse(xmlreader.GetAttribute("z1")), | |
Y = -(int)float.Parse(xmlreader.GetAttribute("x1")), | |
}; | |
shapes.Add(sphere); | |
if (largestX < sphere.X + 1) largestX = sphere.X + 1; | |
if (largestY < Math.Abs(sphere.Y) + 1) largestY = Math.Abs(sphere.Y) + 1; | |
} | |
else | |
{ | |
throw new Exception("No idea what " + shape + " Is"); | |
} | |
} | |
} | |
} | |
largestX = Math.Abs(largestX); | |
largestY = Math.Abs(largestY); | |
Bitmap image = new Bitmap(largestX * 2, largestY * 2); | |
Graphics g = Graphics.FromImage(image); | |
SolidBrush brush = new SolidBrush(Color.Black); | |
g.FillRectangle(brush, new Rectangle(0, 0, largestX * 2, largestY * 2)); | |
foreach (Shape s in shapes) | |
{ | |
s.Scale(largestX, largestY); | |
s.DrawShapeOnCanvas(g); | |
} | |
string outputname = Filename.Replace(".xml", "") + "-Map.png"; | |
image.Save(outputname, System.Drawing.Imaging.ImageFormat.Png); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<AreaDefinition id="902690803" name="sphere_902690802" shape="sphere" x1="-3473.496826" y1="17.942417" z1="-68.161942" radius="44.279987"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690787" name="sphere_902690786" shape="sphere" x1="-3487.853027" y1="17.942417" z1="-20.596886" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690785" name="sphere_902690784" shape="sphere" x1="-3443.440918" y1="17.942417" z1="-209.802902" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690789" name="sphere_902690788" shape="sphere" x1="-3411.644531" y1="17.942417" z1="-208.195709" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690805" name="sphere_902690804" shape="sphere" x1="-3450.333740" y1="17.942417" z1="-168.497620" radius="36.019993"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690795" name="sphere_902690794" shape="sphere" x1="-3455.274414" y1="17.942417" z1="-9.999657" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690807" name="sphere_902690806" shape="sphere" x1="-3302.331299" y1="17.942417" z1="-87.595741" radius="260.000000"> | |
<Property type="Exclusive" id="3617884019" /> | |
</AreaDefinition> | |
<AreaDefinition id="3948427193" name="box_3948427193" shape="box" x1="-3138.247314" y1="22.830299" z1="-339.939392" x2="-3135.997314" y2="43.330299" z2="-337.689392" rotX="-0.000000" rotY="-0.872665" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="511699386" name="sphere_511699386" shape="sphere" x1="-3147.210693" y1="27.910824" z1="-326.956787" radius="1.000000"> | |
<Property type="Interaction" id="574152104" ProxyID="243711" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3942095130" name="sphere_3942095130" shape="sphere" x1="-3142.094238" y1="22.200893" z1="-68.043510" radius="1.000000"> | |
<Property type="Interaction" id="3227335238" ProxyID="243710" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690801" name="sphere_902690800" shape="sphere" x1="-3150.430908" y1="17.942417" z1="-51.494164" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690783" name="box_902690782" shape="box" x1="-3138.046631" y1="20.591110" z1="-58.376312" x2="-3135.956787" y2="31.211113" z2="-56.266312" rotX="-0.000000" rotY="2.391101" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3272693301" name="sphere_3272693301" shape="sphere" x1="-3149.999512" y1="22.200893" z1="-33.797661" radius="1.000000"> | |
<Property type="Interaction" id="4023919204" ProxyID="243714" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3948427192" name="box_3948427192" shape="box" x1="-3134.922119" y1="22.830299" z1="-335.959137" x2="-3132.672119" y2="43.330299" z2="-333.709137" rotX="-0.000000" rotY="2.268928" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3948427194" name="sphere_3948427194" shape="sphere" x1="-3135.893311" y1="17.712877" z1="-336.425415" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="29881209" name="sphere_29881209" shape="sphere" x1="-3076.046875" y1="27.649654" z1="-269.054932" radius="1.000000"> | |
<Property type="Interaction" id="3870071663" ProxyID="243713" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690793" name="sphere_902690792" shape="sphere" x1="-3092.983154" y1="17.942417" z1="-79.058304" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2810867122" name="sphere_2810867122" shape="sphere" x1="-3127.686523" y1="22.200893" z1="-64.718803" radius="1.000000"> | |
<Property type="Interaction" id="2591813850" ProxyID="243712" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690799" name="sphere_902690798" shape="sphere" x1="-3120.966553" y1="17.942417" z1="-18.870621" radius="24.199999"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690791" name="sphere_902690790" shape="sphere" x1="-3089.195557" y1="17.942417" z1="-36.250587" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690781" name="box_902690780" shape="box" x1="-3131.884033" y1="30.998449" z1="-38.600861" x2="-3128.814209" y2="42.338448" z2="-35.560860" rotX="-0.000000" rotY="1.343904" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690777" name="box_902690776" shape="box" x1="-3127.359619" y1="30.998449" z1="-58.196117" x2="-3124.289795" y2="42.338448" z2="-55.156116" rotX="-0.000000" rotY="-1.797689" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690779" name="box_902690778" shape="box" x1="-3136.754639" y1="30.998444" z1="-39.725204" x2="-3133.684814" y2="42.338448" z2="-36.685204" rotX="-0.000000" rotY="1.343904" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690775" name="box_902690774" shape="box" x1="-3132.230225" y1="30.998449" z1="-59.320465" x2="-3129.160400" y2="42.338448" z2="-56.280464" rotX="-0.000000" rotY="-1.797689" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="902690797" name="sphere_902690796" shape="sphere" x1="-3120.477783" y1="17.942417" z1="-60.437828" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3272693300" name="sphere_3272693300" shape="sphere" x1="-3135.591797" y1="22.200893" z1="-30.472954" radius="1.000000"> | |
<Property type="Interaction" id="2825641546" ProxyID="243716" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3718774197" name="box_3718774197" shape="box" x1="-3253.218750" y1="18.611938" z1="276.317993" x2="-3250.968750" y2="39.111938" z2="278.567993" rotX="-0.000000" rotY="0.383972" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3718774198" name="box_3718774198" shape="box" x1="-3248.406494" y1="18.611938" z1="274.385315" x2="-3246.156494" y2="39.111938" z2="276.635315" rotX="-0.000000" rotY="-2.757620" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3718774199" name="sphere_3718774199" shape="sphere" x1="-3249.934082" y1="13.494514" z1="275.942078" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="4218827904" name="sphere_4218827904" shape="sphere" x1="-3255.442627" y1="23.695339" z1="262.251099" radius="1.000000"> | |
<Property type="Interaction" id="1041703170" ProxyID="243715" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3718774229" name="box_3718774229" shape="box" x1="-3165.913330" y1="17.704592" z1="246.276901" x2="-3163.663330" y2="38.204590" z2="248.526901" rotX="-0.000000" rotY="0.357792" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3718774230" name="box_3718774230" shape="box" x1="-3161.052002" y1="17.704592" z1="244.471252" x2="-3158.802002" y2="38.204590" z2="246.721252" rotX="-0.000000" rotY="-2.783800" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3718774231" name="sphere_3718774231" shape="sphere" x1="-3162.590576" y1="12.587170" z1="245.958328" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3819788004" name="sphere_3819788004" shape="sphere" x1="-3167.723633" y1="22.787655" z1="232.134354" radius="1.000000"> | |
<Property type="Interaction" id="3473416317" ProxyID="243717" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3953929206" name="box_3953929206" shape="box" x1="-3364.974121" y1="24.616049" z1="635.026978" x2="-3362.494141" y2="30.036058" z2="637.506958" rotX="-0.000000" rotY="-2.565634" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3953929207" name="sphere_3953929207" shape="sphere" x1="-3371.208496" y1="24.071415" z1="638.589233" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3953929204" name="box_3953929204" shape="box" x1="-3376.536621" y1="24.616049" z1="642.535767" x2="-3374.056641" y2="30.036058" z2="645.015747" rotX="-0.000000" rotY="0.575959" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="998852977" name="box_998852976" shape="box" x1="-3349.935547" y1="23.510515" z1="787.838440" x2="-3347.455566" y2="28.930525" z2="790.318420" rotX="-0.000000" rotY="1.474803" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="998852983" name="sphere_998852982" shape="sphere" x1="-3350.209961" y1="23.112366" z1="782.650696" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="998852981" name="box_998852980" shape="box" x1="-3348.614502" y1="24.680437" z1="774.116150" x2="-3346.134521" y2="30.100447" z2="776.596130" rotX="-0.000000" rotY="-1.666789" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3037358253" name="sphere_3037358252" shape="sphere" x1="-3251.294922" y1="9.939772" z1="806.945251" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="3037358293" name="sphere_3037358292" shape="sphere" x1="-3209.798340" y1="4.101292" z1="845.457275" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3341548739" name="sphere_3341548738" shape="sphere" x1="-3159.852051" y1="17.796082" z1="737.857422" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3149129401" name="sphere_3149129400" shape="sphere" x1="-3159.739258" y1="17.166662" z1="704.659973" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1996999631" name="box_1996999630" shape="box" x1="-3097.861084" y1="20.909073" z1="751.784485" x2="-3095.601318" y2="43.969131" z2="753.974426" rotX="-0.000000" rotY="1.396263" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1996999635" name="sphere_1996999634" shape="sphere" x1="-3097.376221" y1="18.235744" z1="750.966187" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1996999633" name="box_1996999632" shape="box" x1="-3097.207275" y1="20.909073" z1="748.041443" x2="-3094.947510" y2="43.969131" z2="750.231384" rotX="-0.000000" rotY="4.537856" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3426751338" name="sphere_3426751338" shape="sphere" x1="-3124.407959" y1="17.139410" z1="723.419006" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1996999627" name="box_1996999626" shape="box" x1="-3115.037598" y1="20.909073" z1="848.853516" x2="-3112.777832" y2="43.969131" z2="851.043457" rotX="-0.000000" rotY="4.537856" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1996999629" name="sphere_1996999628" shape="sphere" x1="-3115.079346" y1="18.235744" z1="851.366577" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1996999625" name="box_1996999624" shape="box" x1="-3115.691406" y1="20.909073" z1="852.596680" x2="-3113.431641" y2="43.969131" z2="854.786621" rotX="-0.000000" rotY="1.396263" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2958173295" name="sphere_2958173294" shape="sphere" x1="-2867.387207" y1="5.638916" z1="-795.106689" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2510161516" name="sphere_2510161516" shape="sphere" x1="-2826.242432" y1="5.894166" z1="-767.347229" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="52848458" name="box_52848457" shape="box" x1="-2790.391602" y1="20.892738" z1="-836.501953" x2="-2788.041504" y2="37.212776" z2="-834.251953" rotX="-0.000000" rotY="-3.665191" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="52848456" name="box_52848455" shape="box" x1="-2791.695801" y1="20.892738" z1="-834.243347" x2="-2789.345703" y2="37.212776" z2="-831.993347" rotX="-0.000000" rotY="-3.665191" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1864975644" name="box_1864975643" shape="box" x1="-2761.062256" y1="5.826006" z1="-725.191589" x2="-2758.582275" y2="11.246016" z2="-722.711609" rotX="-0.000000" rotY="1.073377" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1864975646" name="sphere_1864975645" shape="sphere" x1="-2754.362305" y1="5.281372" z1="-729.558350" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="1864975640" name="box_1864975639" shape="box" x1="-2754.484131" y1="5.826006" z1="-737.307068" x2="-2752.004150" y2="11.246016" z2="-734.827087" rotX="-0.000000" rotY="-2.068215" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4132108477" name="sphere_4132108476" shape="sphere" x1="-2790.807861" y1="4.999284" z1="-757.429565" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1348022239" name="sphere_1348022238" shape="sphere" x1="-2811.821289" y1="6.277945" z1="-741.957458" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3948427160" name="box_3948427160" shape="box" x1="-3064.196777" y1="22.545830" z1="-278.732452" x2="-3061.946777" y2="43.045830" z2="-276.482452" rotX="-0.000000" rotY="2.321288" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3948427162" name="sphere_3948427162" shape="sphere" x1="-3065.246582" y1="17.428406" z1="-279.084869" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3948427161" name="box_3948427161" shape="box" x1="-3067.725586" y1="22.545830" z1="-282.532043" x2="-3065.475586" y2="43.045830" z2="-280.282043" rotX="-0.000000" rotY="-0.820305" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1557435541" name="sphere_1557435540" shape="sphere" x1="-2618.225342" y1="8.717665" z1="61.138119" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1165316377" name="sphere_1165316376" shape="sphere" x1="-2570.178711" y1="8.455767" z1="21.164526" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="3995902777" name="sphere_3995902777" shape="sphere" x1="-2617.793945" y1="8.757668" z1="60.820084" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="961626096" name="sphere_961626095" shape="sphere" x1="-2577.786865" y1="9.407791" z1="137.507385" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="322356905" name="sphere_322356905" shape="sphere" x1="-2751.580078" y1="3.605444" z1="1315.003296" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="7205436" name="sphere_7205436" shape="sphere" x1="-2702.610596" y1="8.461826" z1="1307.775024" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="19290955" name="sphere_19290955" shape="sphere" x1="-2659.192383" y1="10.444587" z1="1293.497803" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="4189243611" name="box_4189243611" shape="box" x1="-2665.321045" y1="6.124257" z1="1371.867188" x2="-2643.781006" y2="17.724258" z2="1383.237305" rotX="-0.000000" rotY="-1.387537" rotZ="0.000000" /> | |
<AreaDefinition id="4189243613" name="box_4189243613" shape="box" x1="-2666.562744" y1="12.124256" z1="1366.493408" x2="-2641.562744" y2="27.724258" z2="1388.493408" rotX="-0.000000" rotY="-1.387537" rotZ="0.000000" /> | |
<AreaDefinition id="4189243615" name="sphere_4189243615" shape="sphere" x1="-2653.363525" y1="12.440493" z1="1377.855347" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="4189243614" name="box_4189243614" shape="box" x1="-2653.888672" y1="13.165791" z1="1368.822998" x2="-2651.408691" y2="18.585800" z2="1371.302979" rotX="-0.000000" rotY="-1.387537" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4189243612" name="box_4189243612" shape="box" x1="-2651.377441" y1="13.275166" z1="1382.378540" x2="-2648.897461" y2="18.695175" z2="1384.858521" rotX="-0.000000" rotY="1.754056" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1677807041" name="sphere_1677807041" shape="sphere" x1="-2659.817139" y1="14.540287" z1="1371.169189" radius="0.990000"> | |
<Property type="Interaction" id="3393370738" ProxyID="246436" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1948031775" name="sphere_1948031775" shape="sphere" x1="-2626.574463" y1="12.434912" z1="1410.810791" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="115966340" name="sphere_115966340" shape="sphere" x1="-2570.297607" y1="22.252983" z1="1371.632202" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="220176732" name="sphere_220176732" shape="sphere" x1="-2576.225830" y1="22.811909" z1="1407.572144" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3101715380" name="box_3101715380" shape="box" x1="-2584.784424" y1="18.529306" z1="1352.793335" x2="-2581.784424" y2="23.129309" z2="1355.793335" rotX="-0.000000" rotY="1.762783" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3101715379" name="box_3101715379" shape="box" x1="-2575.428467" y1="18.543344" z1="1351.011353" x2="-2572.428467" y2="23.143347" z2="1354.011353" rotX="-0.000000" rotY="1.762783" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="76348083" name="box_76348083" shape="box" x1="-2596.978027" y1="18.368784" z1="1374.446655" x2="-2593.978027" y2="22.968786" z2="1377.446655" rotX="-0.000000" rotY="-2.958333" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="76348084" name="box_76348084" shape="box" x1="-2598.557861" y1="18.441416" z1="1365.137573" x2="-2595.557861" y2="23.041418" z2="1368.137573" rotX="-0.000000" rotY="-2.958333" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4062267267" name="box_4062267267" shape="box" x1="-2562.182861" y1="18.263193" z1="1422.576416" x2="-2559.182861" y2="22.863195" z2="1425.576416" rotX="-0.000000" rotY="-1.387537" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="701689971" name="box_701689971" shape="box" x1="-2571.668945" y1="18.263193" z1="1424.334229" x2="-2568.668945" y2="22.863195" z2="1427.334229" rotX="-0.000000" rotY="-1.387537" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1779104990" name="box_1779104990" shape="box" x1="-2601.320313" y1="9.899048" z1="1778.018677" x2="-2597.350098" y2="60.899048" z2="1781.878784" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1089490331" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1779104989" name="box_1779104989" shape="box" x1="-2604.745117" y1="9.975792" z1="1781.443237" x2="-2600.774902" y2="60.975792" z2="1785.303345" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1271428522" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1779104988" name="box_1779104988" shape="box" x1="-2608.152344" y1="9.975792" z1="1784.850586" x2="-2604.182129" y2="60.975792" z2="1788.710693" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1089490330" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3281283034" name="box_3281283034" shape="box" x1="-2608.393066" y1="-8.439999" z1="1841.520142" x2="-2604.422852" y2="58.439999" z2="1845.380249" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1271428522" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3281283035" name="box_3281283035" shape="box" x1="-2611.816650" y1="-8.439999" z1="1838.094971" x2="-2607.846436" y2="58.439999" z2="1841.955078" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1089490331" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3281283033" name="box_3281283033" shape="box" x1="-2604.984863" y1="-8.439999" z1="1844.926880" x2="-2601.014648" y2="58.439999" z2="1848.786987" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1089490330" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2143442846" name="sphere_2143442846" shape="sphere" x1="-2589.250732" y1="59.917492" z1="1798.068604" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1451347177" name="box_1451347177" shape="box" x1="-2571.582520" y1="57.992630" z1="1883.551514" x2="-2569.102539" y2="63.412643" z2="1886.031494" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1451347178" name="sphere_1451347178" shape="sphere" x1="-2566.517578" y1="57.395264" z1="1891.619263" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="1451347175" name="box_1451347175" shape="box" x1="-2561.834229" y1="57.922318" z1="1893.299805" x2="-2559.354248" y2="63.342331" z2="1895.779785" rotX="-0.000000" rotY="-3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209602584" name="sphere_1209602584" shape="sphere" x1="-2565.511475" y1="59.653809" z1="1899.312256" radius="1.200000"> | |
<Property type="Interaction" id="2311365696" ProxyID="246395" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2086383067" name="sphere_2086383067" shape="sphere" x1="-2584.513672" y1="3.223145" z1="1936.849243" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="4205770014" name="sphere_4205770014" shape="sphere" x1="-2577.378418" y1="5.662964" z1="1933.642578" radius="1.200000"> | |
<Property type="Interaction" id="2450943179" ProxyID="246396" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3176512255" name="sphere_3176512255" shape="sphere" x1="-2209.157959" y1="64.020752" z1="-1771.468872" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3176512252" name="box_3176512252" shape="box" x1="-2205.790039" y1="64.565384" z1="-1777.438965" x2="-2203.310059" y2="69.985397" z2="-1774.958984" rotX="-0.000000" rotY="0.471239" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3176512254" name="box_3176512254" shape="box" x1="-2218.073242" y1="64.565384" z1="-1771.180420" x2="-2215.593262" y2="69.985397" z2="-1768.700439" rotX="-0.000000" rotY="0.471239" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3176800026" name="box_3176800026" shape="box" x1="-2201.774902" y1="63.203239" z1="-1761.058594" x2="-2199.524902" y2="65.453239" z2="-1758.808594" rotX="-0.000000" rotY="-1.090831" rotZ="0.000000" /> | |
<AreaDefinition id="3176800018" name="box_3176800018" shape="box" x1="-2206.549805" y1="64.158875" z1="-1759.038086" x2="-2204.299805" y2="66.408875" z2="-1756.788086" rotX="-0.000000" rotY="-0.776671" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="4104584180" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="245343" ReqSetId="178" NextChainId="112101946" /> | |
</AreaDefinition> | |
<AreaDefinition id="1761244085" name="box_1761244085" shape="box" x1="-2179.829102" y1="49.953560" z1="-1638.283569" x2="-2177.579102" y2="52.203560" z2="-1636.033569" rotX="-0.000000" rotY="-2.809980" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2222903353" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="2575397479" /> | |
</AreaDefinition> | |
<AreaDefinition id="3140885159" name="sphere_3140885159" shape="sphere" x1="-2136.244629" y1="20.209106" z1="-1716.651367" radius="18.000000"> | |
<Property type="Exclusive" id="2985063507" /> | |
</AreaDefinition> | |
<AreaDefinition id="2548573908" name="sphere_2548573908" shape="sphere" x1="-2141.749023" y1="22.397339" z1="-1722.050049" radius="1.000000"> | |
<Property type="Interaction" id="675946664" ProxyID="245369" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1761244084" name="box_1761244084" shape="box" x1="-2175.137451" y1="48.910835" z1="-1640.160034" x2="-2172.887451" y2="51.160835" z2="-1637.910034" rotX="-0.000000" rotY="-2.809980" rotZ="0.000000" /> | |
<AreaDefinition id="2713575789" name="sphere_2713575789" shape="sphere" x1="-2097.675049" y1="19.862915" z1="-1735.387329" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3328665565" name="sphere_3328665565" shape="sphere" x1="-2063.379639" y1="18.187500" z1="-1689.767456" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397473" name="box_2575397473" shape="box" x1="-2252.522217" y1="79.075371" z1="-1302.414185" x2="-2250.272217" y2="81.325371" z2="-1300.164185" rotX="-0.000000" rotY="-1.614429" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3576020727" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397477" name="box_2575397477" shape="box" x1="-2251.811768" y1="77.986137" z1="-1306.972412" x2="-2249.561768" y2="80.236137" z2="-1304.722412" rotX="-0.000000" rotY="-1.614429" rotZ="0.000000" /> | |
<AreaDefinition id="2575397474" name="box_2575397474" shape="box" x1="-2254.243896" y1="9.984138" z1="-1265.896362" x2="-2250.273682" y2="76.864113" z2="-1262.036255" rotX="-0.000000" rotY="-2.399828" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397475" name="box_2575397475" shape="box" x1="-2257.493652" y1="9.984135" z1="-1269.431885" x2="-2253.523438" y2="76.864120" z2="-1265.571777" rotX="-0.000000" rotY="-2.399828" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397476" name="box_2575397476" shape="box" x1="-2260.800537" y1="9.984138" z1="-1273.030396" x2="-2256.830322" y2="76.864113" z2="-1269.170288" rotX="-0.000000" rotY="-2.399828" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2861807837" name="box_2861807836" shape="box" x1="-2205.971191" y1="74.953728" z1="-1362.133911" x2="-2203.011230" y2="81.163719" z2="-1359.203979" rotX="-0.000000" rotY="2.940880" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3454977279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4252720350" name="sphere_4252720350" shape="sphere" x1="-2233.343994" y1="3.858812" z1="-1383.128052" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="2861807853" name="sphere_2861807852" shape="sphere" x1="-2187.919434" y1="75.162956" z1="-1293.769653" radius="1.060000"> | |
<Property type="Exclusive" id="21994016" /> | |
<Property type="Interaction" id="3660092698" ProxyID="245366" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2861807857" name="sphere_2861807856" shape="sphere" x1="-2202.821045" y1="76.272461" z1="-1328.730835" radius="1.060000"> | |
<Property type="Interaction" id="493863514" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2044263832" name="sphere_2044263832" shape="sphere" x1="-2230.861816" y1="3.853805" z1="-1342.174927" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397489" name="box_2575397489" shape="box" x1="-2218.046143" y1="77.991753" z1="-1270.096069" x2="-2215.796143" y2="80.241753" z2="-1267.846069" rotX="-0.000000" rotY="-1.614429" rotZ="0.000000" /> | |
<AreaDefinition id="2575397471" name="box_2575397471" shape="box" x1="-2222.659912" y1="79.075371" z1="-1269.938843" x2="-2220.409912" y2="81.325371" z2="-1267.688843" rotX="-0.000000" rotY="-1.614429" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3576020726" VelocityMult="2.00" JumpHeight="40.00" FacSpawnId="0" ReqSetId="0" NextChainId="3353495209" /> | |
</AreaDefinition> | |
<AreaDefinition id="2861807847" name="sphere_2861807846" shape="sphere" x1="-2157.882813" y1="75.540154" z1="-1417.684814" radius="1.060000"> | |
<Property type="Interaction" id="123283514" ProxyID="245370" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2861807845" name="dome_2861807844" shape="dome" x1="-2159.795654" y1="73.287170" z1="-1355.290649"> | |
<Property type="ObjectTerrainData" id="616736914" ObjectTerrainDataID="2001" /> | |
<Property type="ObjectTerrainData" id="3172377698" ObjectTerrainDataID="2001" /> | |
</AreaDefinition> | |
<AreaDefinition id="2861807849" name="sphere_2861807848" shape="sphere" x1="-2150.075684" y1="75.298340" z1="-1354.903809" radius="1.060000"> | |
<Property type="Exclusive" id="21994016" /> | |
<Property type="Interaction" id="4092630810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2861807855" name="sphere_2861807854" shape="sphere" x1="-2161.476318" y1="3.944246" z1="-1355.476196" radius="150.000000"> | |
<Property type="Exclusive" id="21994016" /> | |
</AreaDefinition> | |
<AreaDefinition id="2861807825" name="box_2861807824" shape="box" x1="-2160.029053" y1="74.691582" z1="-1308.212891" x2="-2157.069092" y2="81.031578" z2="-1305.282959" rotX="-0.000000" rotY="-0.043633" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3689347279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397486" name="box_2575397486" shape="box" x1="-2123.762207" y1="86.366463" z1="-1309.759888" x2="-2121.262207" y2="94.866463" z2="-1307.259888" rotX="-0.000000" rotY="2.312561" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3454977279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397488" name="box_2575397488" shape="box" x1="-2119.458984" y1="86.366463" z1="-1313.702148" x2="-2116.958984" y2="94.866463" z2="-1311.202148" rotX="-0.000000" rotY="2.312561" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3454977279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397482" name="box_2575397482" shape="box" x1="-2137.978516" y1="86.366463" z1="-1323.599243" x2="-2135.478516" y2="94.866463" z2="-1321.099243" rotX="-0.000000" rotY="-2.399828" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3454977279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397472" name="box_2575397472" shape="box" x1="-2131.991943" y1="86.366463" z1="-1329.084595" x2="-2129.491943" y2="94.866463" z2="-1326.584595" rotX="-0.000000" rotY="0.741765" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3454977279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2861807851" name="sphere_2861807850" shape="sphere" x1="-2160.066162" y1="5.501556" z1="-1336.992188" radius="1.060000"> | |
<Property type="Exclusive" id="21994016" /> | |
<Property type="Interaction" id="3660092698" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="929755059" name="sphere_929755059" shape="sphere" x1="-2135.690918" y1="33.588966" z1="-1040.727051" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397481" name="box_2575397481" shape="box" x1="-2069.333008" y1="79.075371" z1="-1410.192627" x2="-2067.083008" y2="81.325371" z2="-1407.942627" rotX="-0.000000" rotY="-1.614429" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3272310358" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="4053559576" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397479" name="box_2575397479" shape="box" x1="-2103.645020" y1="77.986137" z1="-1442.780029" x2="-2101.395020" y2="80.236137" z2="-1440.530029" rotX="-0.000000" rotY="-1.614429" rotZ="0.000000" /> | |
<AreaDefinition id="2575397480" name="box_2575397480" shape="box" x1="-2099.326416" y1="79.075371" z1="-1442.594238" x2="-2097.076416" y2="81.325371" z2="-1440.344238" rotX="-0.000000" rotY="-1.614429" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3454398565" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="1761244084" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397485" name="box_2575397485" shape="box" x1="-2062.763428" y1="9.984138" z1="-1441.356567" x2="-2058.793213" y2="76.864113" z2="-1437.496460" rotX="-0.000000" rotY="0.741765" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397484" name="box_2575397484" shape="box" x1="-2066.012207" y1="9.984135" z1="-1444.891602" x2="-2062.041992" y2="76.864120" z2="-1441.031494" rotX="-0.000000" rotY="0.741765" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2575397483" name="box_2575397483" shape="box" x1="-2069.319580" y1="9.984138" z1="-1448.490601" x2="-2065.349365" y2="76.864113" z2="-1444.630493" rotX="-0.000000" rotY="0.741765" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2861807859" name="sphere_2861807858" shape="sphere" x1="-2054.744873" y1="3.898235" z1="-1452.954102" radius="40.000000" /> | |
<AreaDefinition id="2575397487" name="box_2575397487" shape="box" x1="-2069.929688" y1="77.986137" z1="-1405.926270" x2="-2067.679688" y2="80.236137" z2="-1403.676270" rotX="-0.000000" rotY="-1.614429" rotZ="0.000000" /> | |
<AreaDefinition id="929755012" name="sphere_929755012" shape="sphere" x1="-2091.268311" y1="33.418247" z1="-1046.807129" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="2038675878" name="box_2038675878" shape="box" x1="-2144.227783" y1="26.429350" z1="-1008.422791" x2="-2141.537842" y2="32.769348" z2="-1005.552795" rotX="-0.000000" rotY="-2.844887" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2038675877" name="box_2038675877" shape="box" x1="-2125.268555" y1="32.944576" z1="-1007.504761" x2="-2123.148438" y2="39.724583" z2="-1005.304810" rotX="-0.000000" rotY="-2.059489" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2038675881" name="box_2038675881" shape="box" x1="-2128.520508" y1="32.944576" z1="-1018.435669" x2="-2126.400391" y2="39.724583" z2="-1016.235718" rotX="-0.000000" rotY="1.082104" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2038675883" name="sphere_2038675883" shape="sphere" x1="-2124.801758" y1="19.871826" z1="-1010.824341" radius="32.589996" /> | |
<AreaDefinition id="2538210753" name="box_2538210753" shape="box" x1="-2142.724609" y1="19.358807" z1="-931.023499" x2="-2140.464844" y2="42.418865" z2="-928.833557" rotX="-0.000000" rotY="-0.689405" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2538210754" name="box_2538210754" shape="box" x1="-2139.788574" y1="19.358807" z1="-928.611206" x2="-2137.528809" y2="42.418865" z2="-926.421265" rotX="-0.000000" rotY="2.452188" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2538210755" name="sphere_2538210755" shape="sphere" x1="-2139.315918" y1="16.685478" z1="-929.234375" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2038675880" name="box_2038675880" shape="box" x1="-2110.489014" y1="26.383329" z1="-1018.513916" x2="-2107.759033" y2="32.723328" z2="-1015.713867" rotX="-0.000000" rotY="0.296706" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2257074176" name="sphere_2257074176" shape="sphere" x1="-2058.749512" y1="16.185608" z1="-977.922180" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3353495204" name="box_3353495204" shape="box" x1="-2059.931885" y1="28.633461" z1="-980.054810" x2="-2057.681885" y2="30.883461" z2="-977.804810" rotX="-0.000000" rotY="2.103122" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2733507086" VelocityMult="2.00" JumpHeight="40.00" FacSpawnId="0" ReqSetId="0" NextChainId="2575397489" /> | |
</AreaDefinition> | |
<AreaDefinition id="3353495209" name="box_3353495209" shape="box" x1="-2064.165771" y1="27.686323" z1="-977.439270" x2="-2061.915771" y2="29.936323" z2="-975.189270" rotX="-0.000000" rotY="0.532325" rotZ="0.000000" /> | |
<AreaDefinition id="1485544562" name="sphere_1485544562" shape="sphere" x1="-2094.445557" y1="16.276466" z1="-971.428711" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="2538210756" name="box_2538210756" shape="box" x1="-2063.762207" y1="19.358807" z1="-865.862549" x2="-2061.502441" y2="42.418865" z2="-863.672607" rotX="-0.000000" rotY="-0.689405" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2538210758" name="sphere_2538210758" shape="sphere" x1="-2060.649414" y1="16.685478" z1="-864.386658" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2538210757" name="box_2538210757" shape="box" x1="-2060.826172" y1="19.358807" z1="-863.450378" x2="-2058.566406" y2="42.418865" z2="-861.260437" rotX="-0.000000" rotY="2.452188" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3044674242" name="box_3044674241" shape="box" x1="-2515.425293" y1="11.356625" z1="163.132248" x2="-2512.945313" y2="16.776634" z2="165.612259" rotX="-0.000000" rotY="-1.989675" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3044674248" name="sphere_3044674247" shape="sphere" x1="-2514.788086" y1="10.811991" z1="170.948212" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3044674246" name="box_3044674245" shape="box" x1="-2521.031250" y1="11.356625" z1="175.727554" x2="-2518.551270" y2="16.776634" z2="178.207565" rotX="-0.000000" rotY="1.151917" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2686945380" name="box_2686945380" shape="box" x1="-2526.241943" y1="18.597544" z1="1341.523438" x2="-2523.241943" y2="23.197546" z2="1344.523438" rotX="-0.000000" rotY="1.771509" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="560230864" name="sphere_560230864" shape="sphere" x1="-2551.694824" y1="22.246216" z1="1394.997681" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="220176704" name="sphere_220176704" shape="sphere" x1="-2528.230469" y1="22.652679" z1="1364.845703" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="875125169" name="sphere_875125169" shape="sphere" x1="-2523.072021" y1="22.101475" z1="1396.499756" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1517955379" name="box_1517955379" shape="box" x1="-2515.266113" y1="18.262217" z1="1349.387573" x2="-2512.266113" y2="22.862219" z2="1352.387573" rotX="-0.000000" rotY="0.191986" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1517955380" name="box_1517955380" shape="box" x1="-2513.426758" y1="18.263193" z1="1358.858521" x2="-2510.426758" y2="22.863195" z2="1361.858521" rotX="-0.000000" rotY="0.191986" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2686945379" name="box_2686945379" shape="box" x1="-2535.634277" y1="18.510019" z1="1343.422852" x2="-2532.634277" y2="23.110022" z2="1346.422852" rotX="-0.000000" rotY="1.754056" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="543825379" name="box_543825379" shape="box" x1="-2512.526367" y1="18.263193" z1="1413.019775" x2="-2509.526367" y2="22.863195" z2="1416.019775" rotX="-0.000000" rotY="-1.387537" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="543825380" name="box_543825380" shape="box" x1="-2522.012207" y1="18.263193" z1="1414.777588" x2="-2519.012207" y2="22.863195" z2="1417.777588" rotX="-0.000000" rotY="-1.387537" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1594811919" name="sphere_1594811919" shape="sphere" x1="-2454.253174" y1="15.197264" z1="1301.132324" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3000431390" name="sphere_3000431390" shape="sphere" x1="-2467.179932" y1="12.257657" z1="1339.193726" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="4227849182" name="sphere_4227849182" shape="sphere" x1="-2456.264160" y1="14.738041" z1="1423.673462" radius="0.990000"> | |
<Property type="Interaction" id="3773888786" ProxyID="246437" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4227849183" name="sphere_4227849183" shape="sphere" x1="-2456.554932" y1="12.670384" z1="1420.024536" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3252917689" name="sphere_3252917689" shape="sphere" x1="-2404.482178" y1="17.170868" z1="1256.002441" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3073897600" name="sphere_3073897600" shape="sphere" x1="-2422.174316" y1="13.204687" z1="1327.376221" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1610721393" name="sphere_1610721393" shape="sphere" x1="-2424.733643" y1="15.124166" z1="1282.268066" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="418358742" name="sphere_418358742" shape="sphere" x1="-2557.762939" y1="60.527710" z1="1808.642944" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="3265650726" name="sphere_3265650726" shape="sphere" x1="-2516.435303" y1="97.547905" z1="1838.332397" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2143442868" name="sphere_2143442868" shape="sphere" x1="-2531.731201" y1="60.132195" z1="1875.242188" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2143442824" name="sphere_2143442824" shape="sphere" x1="-2492.643799" y1="9.189253" z1="1808.008301" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3687728754" name="box_3687728754" shape="box" x1="-2226.536621" y1="7.498813" z1="2230.553711" x2="-2224.276855" y2="30.558868" z2="2232.743652" rotX="-0.000000" rotY="-2.679080" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3687728755" name="box_3687728755" shape="box" x1="-2229.934326" y1="7.498813" z1="2232.254395" x2="-2227.674561" y2="30.558868" z2="2234.444336" rotX="-0.000000" rotY="0.462512" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3687728756" name="sphere_3687728756" shape="sphere" x1="-2226.561035" y1="4.825482" z1="2233.304932" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3687728752" name="box_3687728752" shape="box" x1="-2138.290039" y1="7.498813" z1="2186.622070" x2="-2136.030273" y2="30.558868" z2="2188.812012" rotX="-0.000000" rotY="0.462512" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3687728753" name="sphere_3687728753" shape="sphere" x1="-2135.323242" y1="4.825482" z1="2187.815430" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3687728751" name="box_3687728751" shape="box" x1="-2134.892090" y1="7.498813" z1="2184.921143" x2="-2132.632324" y2="30.558868" z2="2187.111084" rotX="-0.000000" rotY="-2.679080" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1430784685" name="sphere_1430784685" shape="sphere" x1="-2116.375732" y1="4.000000" z1="2299.835449" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="514212446" name="sphere_514212446" shape="sphere" x1="-2173.779053" y1="4.122551" z1="2282.548340" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="4179294139" name="sphere_4179294139" shape="sphere" x1="-2120.573486" y1="2.984932" z1="2245.497559" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="3036445568" name="sphere_3036445568" shape="sphere" x1="-2144.182129" y1="3.915039" z1="2353.078613" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="3133817444" name="box_3133817444" shape="box" x1="-2118.274902" y1="12.780140" z1="2403.478271" x2="-2115.584961" y2="19.160141" z2="2406.348389" rotX="-0.000000" rotY="-2.696534" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3133817447" name="box_3133817447" shape="box" x1="-2099.563232" y1="19.493773" z1="2401.823486" x2="-2097.443115" y2="26.273775" z2="2404.023682" rotX="-0.000000" rotY="-1.911136" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3133817448" name="sphere_3133817448" shape="sphere" x1="-2099.656494" y1="6.304497" z1="2398.358887" radius="32.000000" /> | |
<AreaDefinition id="3133817445" name="box_3133817445" shape="box" x1="-2086.498535" y1="12.767683" z1="2388.245361" x2="-2083.768555" y2="19.147688" z2="2391.045166" rotX="-0.000000" rotY="0.445059" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3133817446" name="box_3133817446" shape="box" x1="-2104.395752" y1="19.493773" z1="2391.492920" x2="-2102.275635" y2="26.273775" z2="2393.693115" rotX="-0.000000" rotY="1.230457" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="112101946" name="box_112101946" shape="box" x1="-2032.059204" y1="48.966866" z1="-1609.192017" x2="-2029.809204" y2="51.216866" z2="-1606.942017" rotX="-0.000000" rotY="0.759218" rotZ="0.000000" /> | |
<AreaDefinition id="112101947" name="box_112101947" shape="box" x1="-2028.568970" y1="50.009590" z1="-1612.844604" x2="-2026.318970" y2="52.259590" z2="-1610.594604" rotX="-0.000000" rotY="0.759218" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2222903353" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="245345" ReqSetId="178" NextChainId="3176800026" /> | |
</AreaDefinition> | |
<AreaDefinition id="263986110" name="box_263986110" shape="box" x1="-2028.284302" y1="29.785887" z1="-1630.431152" x2="-2025.284302" y2="46.905869" z2="-1627.431152" rotX="-0.000000" rotY="1.204278" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="263986111" name="box_263986111" shape="box" x1="-2031.431274" y1="29.785883" z1="-1631.626587" x2="-2028.431274" y2="46.905876" z2="-1628.626587" rotX="-0.000000" rotY="1.204278" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4269876357" name="sphere_4269876357" shape="sphere" x1="-1550.500366" y1="3.050380" z1="-1946.476196" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="2273795293" name="sphere_2273795293" shape="sphere" x1="-1556.622192" y1="7.611742" z1="-1895.562378" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="244099306" name="sphere_244099306" shape="sphere" x1="-2045.287354" y1="28.875000" z1="-1032.060791" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2528387575" name="sphere_2528387575" shape="sphere" x1="-1932.709351" y1="39.654175" z1="-1243.146240" radius="1.000000"> | |
<Property type="Interaction" id="675946664" ProxyID="245365" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3475604136" name="sphere_3475604136" shape="sphere" x1="-1925.890747" y1="37.406250" z1="-1246.096436" radius="18.000000"> | |
<Property type="Exclusive" id="2985063507" /> | |
</AreaDefinition> | |
<AreaDefinition id="4053559577" name="box_4053559577" shape="box" x1="-1912.947876" y1="46.586803" z1="-1374.603516" x2="-1910.697876" y2="48.836803" z2="-1372.353516" rotX="-0.000000" rotY="1.169370" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2222903353" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="2575397487" /> | |
</AreaDefinition> | |
<AreaDefinition id="4053559576" name="box_4053559576" shape="box" x1="-1914.691284" y1="45.544079" z1="-1369.859985" x2="-1912.441284" y2="47.794079" z2="-1367.609985" rotX="-0.000000" rotY="1.169370" rotZ="0.000000" /> | |
<AreaDefinition id="796025219" name="sphere_796025219" shape="sphere" x1="-1888.984985" y1="36.983444" z1="-1351.618530" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="4156445915" name="sphere_4156445915" shape="sphere" x1="-1888.178101" y1="36.679855" z1="-1318.635498" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="800705329" name="sphere_800705329" shape="sphere" x1="-1908.437866" y1="36.670631" z1="-1231.587769" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="3063707870" name="sphere_3063707870" shape="sphere" x1="-1834.993042" y1="37.406250" z1="-1284.659302" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3806594258" name="sphere_3806594258" shape="sphere" x1="-1847.573364" y1="41.139503" z1="-1181.180298" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="1503167016" name="box_1503167016" shape="box" x1="-1823.428101" y1="60.282455" z1="-1136.765503" x2="-1820.698120" y2="66.662460" z2="-1133.965454" rotX="-0.000000" rotY="0.575959" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1503167017" name="box_1503167017" shape="box" x1="-1840.784546" y1="67.008545" z1="-1131.167480" x2="-1838.664429" y2="73.788544" z2="-1128.967529" rotX="-0.000000" rotY="1.361357" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1503167018" name="box_1503167018" shape="box" x1="-1834.645874" y1="67.008545" z1="-1121.555908" x2="-1832.525757" y2="73.788544" z2="-1119.355957" rotX="-0.000000" rotY="-1.780236" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1503167019" name="sphere_1503167019" shape="sphere" x1="-1835.325073" y1="53.819271" z1="-1124.830688" radius="32.000000" /> | |
<AreaDefinition id="1503167015" name="box_1503167015" shape="box" x1="-1852.939575" y1="60.294918" z1="-1117.512939" x2="-1850.249634" y2="66.674919" z2="-1114.642822" rotX="-0.000000" rotY="-2.565634" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2768752412" name="box_2768752412" shape="box" x1="-1791.069702" y1="40.749908" z1="-1337.803345" x2="-1788.809692" y2="63.809967" z2="-1335.613403" rotX="-0.000000" rotY="2.033309" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2768752414" name="sphere_2768752414" shape="sphere" x1="-1791.615967" y1="38.076580" z1="-1337.833618" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2768752413" name="box_2768752413" shape="box" x1="-1792.829712" y1="40.749908" z1="-1341.170410" x2="-1790.569702" y2="63.809967" z2="-1338.980469" rotX="-0.000000" rotY="-1.108284" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4287211004" name="sphere_4287211004" shape="sphere" x1="-2012.422974" y1="10.446745" z1="-49.864315" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2798086316" name="box_2798086316" shape="box" x1="-1988.315430" y1="11.114920" z1="-45.900043" x2="-1986.065430" y2="13.364920" z2="-43.650043" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3087373762" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3100276516" name="box_3100276516" shape="box" x1="-2040.480347" y1="12.031315" z1="-49.264980" x2="-2038.230347" y2="14.281315" z2="-47.014980" rotX="-0.000000" rotY="-0.244346" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2730298058" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="2909447435" /> | |
</AreaDefinition> | |
<AreaDefinition id="1284495941" name="box_1284495941" shape="box" x1="-1772.962524" y1="19.944721" z1="-36.296768" x2="-1768.992554" y2="86.824722" z2="-32.436768" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1089490331" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1284495939" name="box_1284495939" shape="box" x1="-1782.624634" y1="19.944721" z1="-36.296768" x2="-1778.654663" y2="86.824722" z2="-32.436768" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1089490330" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1284495940" name="box_1284495940" shape="box" x1="-1777.805908" y1="19.944721" z1="-36.296768" x2="-1773.835938" y2="86.824722" z2="-32.436768" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1271428522" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1252382656" name="sphere_1252382656" shape="sphere" x1="-1746.383057" y1="15.833775" z1="-43.630436" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="1532136064" name="sphere_1532136064" shape="sphere" x1="-1759.725098" y1="84.038345" z1="-12.595695" radius="15.000000"> | |
<Property type="Exclusive" id="1935648352" /> | |
</AreaDefinition> | |
<AreaDefinition id="2909447435" name="box_2909447435" shape="box" x1="-1803.083984" y1="91.284103" z1="17.449364" x2="-1800.833984" y2="93.534103" z2="19.699364" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1752370275" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2909447440" name="box_2909447440" shape="box" x1="-1812.199219" y1="84.450684" z1="8.858017" x2="-1809.949219" y2="86.700684" z2="11.108017" rotX="-0.000000" rotY="2.897247" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3336578680" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="2798086316" /> | |
</AreaDefinition> | |
<AreaDefinition id="3711363838" name="sphere_3711363838" shape="sphere" x1="-1794.878052" y1="83.862991" z1="8.341240" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1257800856" name="sphere_1257800856" shape="sphere" x1="-1815.342529" y1="73.238907" z1="105.344383" radius="15.000000"> | |
<Property type="Exclusive" id="1935648352" /> | |
</AreaDefinition> | |
<AreaDefinition id="3482142790" name="sphere_3482142790" shape="sphere" x1="-1764.963379" y1="78.638336" z1="59.679489" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="2687194675" name="sphere_2687194675" shape="sphere" x1="-1754.569092" y1="84.327988" z1="28.275616" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3818133794" name="sphere_3818133794" shape="sphere" x1="-1784.248779" y1="73.524666" z1="97.533035" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3013642019" name="sphere_3013642019" shape="sphere" x1="-1780.121338" y1="73.459969" z1="127.137177" radius="15.000000"> | |
<Property type="Exclusive" id="1935648352" /> | |
</AreaDefinition> | |
<AreaDefinition id="954494000" name="sphere_954494000" shape="sphere" x1="-1688.193237" y1="76.295685" z1="40.297707" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3152583795" name="sphere_3152583795" shape="sphere" x1="-1714.004761" y1="75.563469" z1="77.002953" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896731" name="sphere_1956896730" shape="sphere" x1="-1923.044434" y1="17.962032" z1="2001.124390" radius="40.000000"> | |
<Property type="Exclusive" id="1854860496" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896733" name="sphere_1956896732" shape="sphere" x1="-1864.430176" y1="17.962032" z1="1930.972290" radius="55.000000"> | |
<Property type="Exclusive" id="1854860497" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626662" name="box_747626662" shape="box" x1="-1884.076416" y1="-50.758549" z1="1963.429932" x2="-1882.076416" y2="69.241455" z2="1965.429932" rotX="-0.000000" rotY="-1.666789" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896735" name="sphere_1956896734" shape="sphere" x1="-1903.957520" y1="17.301432" z1="2013.884521" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626672" name="box_747626672" shape="box" x1="-1867.158691" y1="-11.758549" z1="2038.020996" x2="-1865.158691" y2="30.241451" z2="2040.020996" rotX="-0.000000" rotY="-0.095993" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626670" name="box_747626670" shape="box" x1="-1842.860474" y1="30.165051" z1="1913.215332" x2="-1840.360474" y2="38.665051" z2="1915.715332" rotX="-0.000000" rotY="-1.666789" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626669" name="box_747626669" shape="box" x1="-1848.691772" y1="30.165051" z1="1912.653931" x2="-1846.191772" y2="38.665051" z2="1915.153931" rotX="-0.000000" rotY="-1.666789" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626659" name="box_747626659" shape="box" x1="-1851.720703" y1="30.165051" z1="1932.289429" x2="-1849.220703" y2="38.665051" z2="1934.789429" rotX="-0.000000" rotY="-3.237586" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626665" name="box_747626665" shape="box" x1="-1843.593018" y1="30.165051" z1="1933.072021" x2="-1841.093018" y2="38.665051" z2="1935.572021" rotX="-0.000000" rotY="-0.095993" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626667" name="box_747626667" shape="box" x1="-1851.905151" y1="38.888786" z1="1921.095703" x2="-1849.785034" y2="45.668793" z2="1923.295654" rotX="-0.000000" rotY="-4.022984" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626666" name="box_747626666" shape="box" x1="-1840.561646" y1="38.888786" z1="1922.274536" x2="-1838.441528" y2="45.668793" z2="1924.474487" rotX="-0.000000" rotY="-0.881391" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896741" name="sphere_1956896740" shape="sphere" x1="-1831.703613" y1="17.962032" z1="1983.776978" radius="40.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896743" name="sphere_1956896742" shape="sphere" x1="-1848.594238" y1="17.962032" z1="2033.634766" radius="48.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626673" name="box_747626673" shape="box" x1="-1836.454102" y1="7.482784" z1="2040.659668" x2="-1834.204102" y2="18.482784" z2="2042.909668" rotX="-0.000000" rotY="0.078540" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896751" name="sphere_1956896750" shape="sphere" x1="-1765.222778" y1="17.962032" z1="2003.189819" radius="35.000000"> | |
<Property type="Exclusive" id="2115590496" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896747" name="sphere_1956896746" shape="sphere" x1="-1914.012573" y1="113.378265" z1="2094.981934" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="244951" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896721" name="box_1956896720" shape="box" x1="-1871.023682" y1="23.026667" z1="2095.632568" x2="-1866.973633" y2="64.896698" z2="2101.002686" rotX="-0.000000" rotY="-3.246312" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896723" name="box_1956896722" shape="box" x1="-1870.581055" y1="19.894865" z1="2096.877930" x2="-1867.581055" y2="24.054865" z2="2099.877930" rotX="-0.000000" rotY="-3.246312" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896725" name="box_1956896724" shape="box" x1="-1870.535645" y1="61.535042" z1="2096.882813" x2="-1867.535645" y2="67.025047" z2="2099.882813" rotX="-0.000000" rotY="-3.246312" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896727" name="box_1956896726" shape="box" x1="-1871.023682" y1="66.697388" z1="2095.632568" x2="-1866.973633" y2="110.757477" z2="2101.002686" rotX="-0.000000" rotY="-3.246312" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896729" name="box_1956896728" shape="box" x1="-1870.535645" y1="110.196373" z1="2096.882813" x2="-1867.535645" y2="112.596382" z2="2099.882813" rotX="-0.000000" rotY="-3.246312" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896701" name="box_1956896700" shape="box" x1="-1867.134644" y1="66.697388" z1="2096.041260" x2="-1863.084595" y2="110.757477" z2="2101.411377" rotX="-0.000000" rotY="-3.246312" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896703" name="box_1956896702" shape="box" x1="-1866.691772" y1="19.894865" z1="2097.286621" x2="-1863.691772" y2="24.054865" z2="2100.286621" rotX="-0.000000" rotY="-3.246312" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896705" name="box_1956896704" shape="box" x1="-1867.134644" y1="23.026667" z1="2096.041260" x2="-1863.084595" y2="64.896698" z2="2101.411377" rotX="-0.000000" rotY="-3.246312" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896715" name="box_1956896714" shape="box" x1="-1866.646484" y1="110.196373" z1="2097.291504" x2="-1863.646484" y2="112.596382" z2="2100.291504" rotX="-0.000000" rotY="-3.246312" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896717" name="box_1956896716" shape="box" x1="-1866.646484" y1="61.535042" z1="2097.291504" x2="-1863.646484" y2="67.025047" z2="2100.291504" rotX="-0.000000" rotY="-3.246312" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626660" name="box_747626660" shape="box" x1="-1897.762817" y1="-53.258549" z1="2105.568604" x2="-1895.762817" y2="71.741455" z2="2107.568604" rotX="-0.000000" rotY="-1.666789" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896737" name="sphere_1956896736" shape="sphere" x1="-1899.269043" y1="20.641811" z1="2112.246582" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="244950" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896749" name="sphere_1956896748" shape="sphere" x1="-1867.399048" y1="17.962032" z1="2162.454102" radius="140.000000"> | |
<Property type="Exclusive" id="4277267792" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626663" name="box_747626663" shape="box" x1="-1906.592041" y1="-0.758549" z1="2197.264160" x2="-1904.592041" y2="19.241451" z2="2199.264160" rotX="-0.000000" rotY="-1.666789" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626664" name="box_747626664" shape="box" x1="-1862.416870" y1="-30.758549" z1="2184.164063" x2="-1860.416870" y2="49.241451" z2="2186.164063" rotX="-0.000000" rotY="-0.095993" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896711" name="box_1956896710" shape="box" x1="-1905.127197" y1="19.415173" z1="2180.015625" x2="-1902.127197" y2="22.415173" z2="2183.015625" rotX="-0.000000" rotY="1.474803" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896713" name="box_1956896712" shape="box" x1="-1905.832153" y1="21.534111" z1="2179.310547" x2="-1901.422241" y2="29.814056" z2="2183.720703" rotX="-0.000000" rotY="1.474803" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626657" name="box_747626657" shape="box" x1="-1898.500977" y1="7.742916" z1="2215.594971" x2="-1896.250977" y2="20.242916" z2="2217.844971" rotX="-0.000000" rotY="-1.666789" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1407676381" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896745" name="sphere_1956896744" shape="sphere" x1="-1820.271240" y1="113.378265" z1="2103.926025" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="244953" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896739" name="sphere_1956896738" shape="sphere" x1="-1838.136719" y1="20.641811" z1="2118.133789" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="244952" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="747626668" name="box_747626668" shape="box" x1="-1810.536499" y1="7.467525" z1="2188.894287" x2="-1808.286499" y2="18.467525" z2="2191.144287" rotX="-0.000000" rotY="1.474803" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896707" name="box_1956896706" shape="box" x1="-1848.789063" y1="19.415173" z1="2185.440430" x2="-1845.789063" y2="22.415173" z2="2188.440430" rotX="-0.000000" rotY="1.474803" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896719" name="box_1956896718" shape="box" x1="-1849.494019" y1="21.534111" z1="2184.735352" x2="-1845.084106" y2="29.814056" z2="2189.145508" rotX="-0.000000" rotY="1.474803" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1956896753" name="sphere_1956896752" shape="sphere" x1="-1747.060547" y1="17.962032" z1="2098.780029" radius="50.000000"> | |
<Property type="Exclusive" id="1625820496" /> | |
</AreaDefinition> | |
<AreaDefinition id="635530055" name="box_635530055" shape="box" x1="-1733.091553" y1="20.027983" z1="2408.269531" x2="-1730.401611" y2="26.407984" z2="2411.139648" rotX="-0.000000" rotY="2.626720" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1865625885" name="sphere_1865625885" shape="sphere" x1="-1738.164795" y1="13.960693" z1="2447.826416" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="635530057" name="box_635530057" shape="box" x1="-1714.916748" y1="26.741617" z1="2412.673828" x2="-1712.796631" y2="33.521622" z2="2414.874023" rotX="-0.000000" rotY="0.270526" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="635530059" name="sphere_635530059" shape="sphere" x1="-1716.470459" y1="13.552341" z1="2420.094238" radius="32.000000" /> | |
<AreaDefinition id="635530058" name="box_635530058" shape="box" x1="-1720.607422" y1="26.741617" z1="2422.557617" x2="-1718.487305" y2="33.521622" z2="2424.757813" rotX="-0.000000" rotY="-2.871067" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="635530056" name="box_635530056" shape="box" x1="-1702.366943" y1="20.015526" z1="2425.593262" x2="-1699.636963" y2="26.395531" z2="2428.393066" rotX="-0.000000" rotY="-0.514872" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3277091092" name="box_3277091092" shape="box" x1="-1660.075439" y1="11.763627" z1="2506.180664" x2="-1657.815430" y2="34.823685" z2="2508.370605" rotX="-0.000000" rotY="4.188790" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3277091091" name="box_3277091091" shape="box" x1="-1661.969971" y1="11.763627" z1="2509.474365" x2="-1659.709961" y2="34.823685" z2="2511.664307" rotX="-0.000000" rotY="1.047198" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3277091093" name="sphere_3277091093" shape="sphere" x1="-1660.791504" y1="9.090297" z1="2508.551025" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="252105697" name="box_252105697" shape="box" x1="-1555.075317" y1="29.093901" z1="2157.579102" x2="-1552.345337" y2="35.433899" z2="2160.378906" rotX="-0.000000" rotY="-1.937315" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="252105700" name="sphere_252105700" shape="sphere" x1="-1549.014404" y1="22.582397" z1="2142.752930" radius="32.589996" /> | |
<AreaDefinition id="252105694" name="box_252105694" shape="box" x1="-1553.921875" y1="35.655148" z1="2139.398926" x2="-1551.801758" y2="42.435154" z2="2141.599121" rotX="-0.000000" rotY="1.989676" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="252105698" name="box_252105698" shape="box" x1="-1543.305786" y1="35.655148" z1="2143.566895" x2="-1541.185669" y2="42.435154" z2="2145.767090" rotX="-0.000000" rotY="-1.151917" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="252105695" name="box_252105695" shape="box" x1="-1542.251221" y1="29.139921" z1="2124.708008" x2="-1539.561279" y2="35.479919" z2="2127.578125" rotX="-0.000000" rotY="1.204277" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1311318296" name="sphere_1311318296" shape="sphere" x1="-1766.977417" y1="8.815923" z1="2583.977539" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3277091089" name="box_3277091089" shape="box" x1="-1711.310059" y1="11.763627" z1="2594.814941" x2="-1709.050049" y2="34.823685" z2="2597.004883" rotX="-0.000000" rotY="4.188790" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3277091088" name="box_3277091088" shape="box" x1="-1713.204712" y1="11.763627" z1="2598.108643" x2="-1710.944702" y2="34.823685" z2="2600.298584" rotX="-0.000000" rotY="1.047198" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3277091090" name="sphere_3277091090" shape="sphere" x1="-1711.766113" y1="9.090297" z1="2596.841553" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1049883825" name="sphere_1049883825" shape="sphere" x1="-1053.542603" y1="5.202657" z1="-3078.740723" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1049883824" name="sphere_1049883824" shape="sphere" x1="-1057.203491" y1="7.270313" z1="-3078.736816" radius="0.990000" /> | |
<AreaDefinition id="3044661977" name="sphere_3044661977" shape="sphere" x1="-1090.618286" y1="3.895508" z1="-2963.349121" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="4196935747" name="sphere_4196935747" shape="sphere" x1="-1031.642578" y1="4.775981" z1="-3060.256836" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1205503479" name="box_1205503478" shape="box" x1="-1357.546387" y1="31.370186" z1="-2504.994873" x2="-1355.196289" y2="47.690224" z2="-2502.744873" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1205503481" name="box_1205503480" shape="box" x1="-1357.546387" y1="31.370186" z1="-2502.386963" x2="-1355.196289" y2="47.690224" z2="-2500.136963" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2791089570" name="box_2791089569" shape="box" x1="-1357.502075" y1="31.359478" z1="-2550.089600" x2="-1355.151978" y2="47.679516" z2="-2547.839600" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2791089572" name="box_2791089571" shape="box" x1="-1357.502075" y1="31.359478" z1="-2547.481689" x2="-1355.151978" y2="47.679516" z2="-2545.231689" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1045645457" name="box_1045645456" shape="box" x1="-1349.218384" y1="17.426617" z1="-2471.941650" x2="-1346.868286" y2="33.746655" z2="-2469.691650" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1045645459" name="box_1045645458" shape="box" x1="-1349.218384" y1="17.426617" z1="-2469.333740" x2="-1346.868286" y2="33.746655" z2="-2467.083740" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="514857876" name="sphere_514857875" shape="sphere" x1="-1326.741699" y1="18.681255" z1="-2440.392822" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216979107" name="box_1216979106" shape="box" x1="-1328.844482" y1="18.539795" z1="-2478.248535" x2="-1326.544434" y2="28.539795" z2="-2475.948730" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1751319104" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1953799105" name="box_1953799104" shape="box" x1="-1338.744873" y1="18.539795" z1="-2478.248535" x2="-1336.444824" y2="28.539795" z2="-2475.948730" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1751319104" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1953799107" name="box_1953799106" shape="box" x1="-1333.714966" y1="18.539795" z1="-2478.248535" x2="-1331.414917" y2="28.539795" z2="-2475.948730" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1751319104" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2355105911" name="box_2355105910" shape="box" x1="-1254.313354" y1="28.501625" z1="-2444.803711" x2="-1251.833374" y2="33.921635" z2="-2442.323730" rotX="-0.000000" rotY="1.596976" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2355105915" name="box_2355105914" shape="box" x1="-1254.674316" y1="28.501625" z1="-2458.585449" x2="-1252.194336" y2="33.921635" z2="-2456.105469" rotX="-0.000000" rotY="-1.544616" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2355105917" name="sphere_2355105916" shape="sphere" x1="-1255.359253" y1="27.956991" z1="-2449.760010" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="1849449349" name="sphere_1849449349" shape="sphere" x1="-1516.893799" y1="2.855865" z1="-1966.420654" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="1691671073" name="sphere_1691671073" shape="sphere" x1="-1493.245239" y1="3.878938" z1="-1907.306152" radius="40.650021"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2329606988" name="sphere_2329606988" shape="sphere" x1="-1512.206421" y1="3.924644" z1="-1862.300415" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="3500364773" name="sphere_3500364773" shape="sphere" x1="-1507.223145" y1="6.250050" z1="-1847.322876" radius="0.990000"> | |
<Property type="Interaction" id="3054519774" ProxyID="246483" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3500364774" name="sphere_3500364774" shape="sphere" x1="-1503.562378" y1="4.182393" z1="-1847.326538" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1587170896" name="sphere_1587170896" shape="sphere" x1="-1506.160034" y1="15.450245" z1="-1762.985107" radius="0.990000"> | |
<Property type="Interaction" id="1714595795" ProxyID="246479" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877844" name="box_3654877843" shape="box" x1="-1346.439453" y1="29.601076" z1="-797.513245" x2="-1343.869385" y2="40.151077" z2="-794.913269" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877838" name="box_3654877837" shape="box" x1="-1362.136963" y1="23.705023" z1="-810.291138" x2="-1359.886963" y2="40.635017" z2="-808.041138" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877860" name="sphere_3654877859" shape="sphere" x1="-1354.880737" y1="9.294383" z1="-809.959717" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1946005421" name="box_1946005421" shape="box" x1="-1349.990967" y1="39.070694" z1="-813.102905" x2="-1340.390869" y2="44.900696" z2="-793.642944" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000" /> | |
<AreaDefinition id="3654877840" name="box_3654877839" shape="box" x1="-1362.151733" y1="23.705025" z1="-798.811401" x2="-1359.901733" y2="40.635025" z2="-796.561401" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877858" name="sphere_3654877857" shape="sphere" x1="-1351.388794" y1="41.240616" z1="-803.315430" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877846" name="box_3654877845" shape="box" x1="-1346.468262" y1="29.601076" z1="-811.929382" x2="-1343.898193" y2="40.151077" z2="-809.329407" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877854" name="sphere_3654877853" shape="sphere" x1="-1344.218994" y1="7.588354" z1="-801.140625" radius="65.000000" /> | |
<AreaDefinition id="3654877834" name="box_3654877833" shape="box" x1="-1327.690063" y1="23.705025" z1="-797.759277" x2="-1325.440063" y2="40.635025" z2="-795.509277" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877852" name="box_3654877851" shape="box" x1="-1327.690063" y1="23.705025" z1="-811.317017" x2="-1325.440063" y2="40.635025" z2="-809.067017" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3992996248" name="sphere_3992996248" shape="sphere" x1="-1335.379395" y1="30.722792" z1="-803.410278" radius="1.060000"> | |
<Property type="Interaction" id="1654002388" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2842491745" name="sphere_2842491745" shape="sphere" x1="-1285.431885" y1="3.950000" z1="-679.235840" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2983611701" name="sphere_2983611701" shape="sphere" x1="-1280.790161" y1="3.900000" z1="-633.616089" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2940297671" name="sphere_2940297671" shape="sphere" x1="-1190.290771" y1="4.000000" z1="-902.877441" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2940297532" name="sphere_2940297532" shape="sphere" x1="-1153.354492" y1="4.000000" z1="-867.937195" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2392015644" name="sphere_2392015644" shape="sphere" x1="-1192.764038" y1="4.000000" z1="-853.172119" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2763487599" name="sphere_2763487599" shape="sphere" x1="-1178.454712" y1="8.770386" z1="-760.629639" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1761100576" name="sphere_1761100576" shape="sphere" x1="-1486.595459" y1="14.528011" z1="889.063049" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="2774905487" name="sphere_2774905487" shape="sphere" x1="-1532.384766" y1="21.987413" z1="920.566040" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1155553553" name="sphere_1155553553" shape="sphere" x1="-1510.252319" y1="16.299549" z1="974.330383" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="1354933529" name="box_1354933529" shape="box" x1="-1461.558960" y1="22.874781" z1="929.298279" x2="-1459.078979" y2="28.294790" z2="931.778259" rotX="-0.000000" rotY="-2.347468" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1354933532" name="sphere_1354933532" shape="sphere" x1="-1463.239624" y1="22.330147" z1="936.461426" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="1354933531" name="box_1354933531" shape="box" x1="-1471.307251" y1="22.874781" z1="939.046570" x2="-1468.827271" y2="28.294790" z2="941.526550" rotX="-0.000000" rotY="0.794125" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2445481958" name="sphere_2445481958" shape="sphere" x1="-1479.222534" y1="31.154703" z1="2025.650391" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1638912536" name="sphere_1638912536" shape="sphere" x1="-1507.423096" y1="31.116234" z1="2011.811157" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="3885916408" name="sphere_3885916408" shape="sphere" x1="-1507.423584" y1="21.528198" z1="2014.081177" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1292881428" name="box_1292881428" shape="box" x1="-1531.201050" y1="22.360573" z1="2035.201416" x2="-1528.850952" y2="32.660599" z2="2037.451416" rotX="-0.000000" rotY="-2.373648" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1292881429" name="box_1292881429" shape="box" x1="-1534.690552" y1="22.388893" z1="2031.548218" x2="-1532.340454" y2="32.688919" z2="2033.798218" rotX="-0.000000" rotY="-2.373648" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4255817342" name="sphere_4255817342" shape="sphere" x1="-1460.833008" y1="21.582163" z1="2039.954590" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="843588701" name="sphere_843588701" shape="sphere" x1="-1455.687012" y1="31.239113" z1="2045.317139" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1192302644" name="box_1192302644" shape="box" x1="-1494.059204" y1="22.879494" z1="2064.803711" x2="-1491.709106" y2="33.179520" z2="2067.053711" rotX="-0.000000" rotY="2.338741" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1192302645" name="box_1192302645" shape="box" x1="-1490.446777" y1="22.907814" z1="2061.307617" x2="-1488.096680" y2="33.207840" z2="2063.557617" rotX="-0.000000" rotY="2.338741" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2413643836" name="sphere_2413643836" shape="sphere" x1="-1189.760864" y1="3.784523" z1="2577.086914" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2654586970" name="sphere_2654586970" shape="sphere" x1="-1157.114868" y1="11.383364" z1="2590.889893" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="47070796" name="sphere_47070796" shape="sphere" x1="-1130.259766" y1="4.065372" z1="2578.547119" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="2827390340" name="box_2827390340" shape="box" x1="-1122.496460" y1="5.223536" z1="2599.781494" x2="-1120.146362" y2="12.633568" z2="2602.031494" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2827390339" name="box_2827390339" shape="box" x1="-1117.549805" y1="5.223536" z1="2599.781494" x2="-1115.199707" y2="12.633568" z2="2602.031494" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4252260963" name="box_4252260963" shape="box" x1="-1126.256836" y1="17.885353" z1="2673.714111" x2="-1123.776855" y2="23.305363" z2="2676.194092" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4252260966" name="sphere_4252260966" shape="sphere" x1="-1122.893311" y1="17.340719" z1="2681.207520" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="4252260965" name="box_4252260965" shape="box" x1="-1126.256958" y1="17.885353" z1="2687.500000" x2="-1123.776978" y2="23.305363" z2="2689.979980" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2200901660" name="sphere_2200901660" shape="sphere" x1="-990.545471" y1="7.150196" z1="-3021.708008" radius="0.990000" /> | |
<AreaDefinition id="1216483718" name="sphere_1216483717" shape="sphere" x1="-742.655823" y1="9.816269" z1="-2960.837646" radius="40.000000"> | |
<Property type="Exclusive" id="1854860496" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483722" name="sphere_1216483721" shape="sphere" x1="-722.433777" y1="9.155669" z1="-2949.965576" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261677" name="box_2759261677" shape="box" x1="-707.388855" y1="-58.904312" z1="-3002.193848" x2="-705.388855" y2="61.095688" z2="-3000.193848" rotX="-0.000000" rotY="-1.570796" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483734" name="sphere_1216483733" shape="sphere" x1="-724.669739" y1="105.232491" z1="-2868.277832" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="245635" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483724" name="sphere_1216483723" shape="sphere" x1="-708.339294" y1="12.496048" z1="-2852.505859" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="245633" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261675" name="box_2759261675" shape="box" x1="-707.388855" y1="-61.404312" z1="-2859.397949" x2="-705.388855" y2="63.595688" z2="-2857.397949" rotX="-0.000000" rotY="-1.570796" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483698" name="box_1216483697" shape="box" x1="-707.538269" y1="11.269409" z1="-2784.637695" x2="-704.538269" y2="14.269409" z2="-2781.637695" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483700" name="box_1216483699" shape="box" x1="-708.243286" y1="13.388349" z1="-2785.342773" x2="-703.833252" y2="21.668293" z2="-2780.932617" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261678" name="box_2759261678" shape="box" x1="-707.388855" y1="-8.904311" z1="-2767.278076" x2="-705.388855" y2="11.095689" z2="-2765.278076" rotX="-0.000000" rotY="-1.570796" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483720" name="sphere_1216483719" shape="sphere" x1="-691.035217" y1="9.816269" z1="-3036.284668" radius="55.000000"> | |
<Property type="Exclusive" id="1854860497" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261674" name="box_2759261674" shape="box" x1="-678.143982" y1="22.019285" z1="-3036.317383" x2="-675.643982" y2="30.519285" z2="-3033.817383" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261680" name="box_2759261680" shape="box" x1="-669.978699" y1="22.019285" z1="-3036.317383" x2="-667.478699" y2="30.519285" z2="-3033.817383" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261681" name="box_2759261681" shape="box" x1="-668.009644" y1="30.743025" z1="-3047.336914" x2="-665.889648" y2="37.523029" z2="-3045.136719" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261682" name="box_2759261682" shape="box" x1="-679.413940" y1="30.743025" z1="-3047.423096" x2="-677.293945" y2="37.523029" z2="-3045.222900" rotX="-0.000000" rotY="-3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261684" name="box_2759261684" shape="box" x1="-677.010925" y1="22.019285" z1="-3056.152832" x2="-674.510925" y2="30.519285" z2="-3053.652832" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261685" name="box_2759261685" shape="box" x1="-671.152771" y1="22.019285" z1="-3056.152832" x2="-668.652771" y2="30.519285" z2="-3053.652832" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483728" name="sphere_1216483727" shape="sphere" x1="-653.398254" y1="9.816269" z1="-2986.859863" radius="40.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483730" name="sphere_1216483729" shape="sphere" x1="-665.432434" y1="9.816269" z1="-2935.612549" radius="48.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261687" name="box_2759261687" shape="box" x1="-683.399841" y1="-19.904312" z1="-2929.567627" x2="-681.399841" y2="22.095688" z2="-2927.567627" rotX="-0.000000" rotY="0.000000" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261688" name="box_2759261688" shape="box" x1="-652.572205" y1="-0.662979" z1="-2929.896729" x2="-650.322205" y2="10.337021" z2="-2927.646729" rotX="-0.000000" rotY="0.174533" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483688" name="box_1216483687" shape="box" x1="-677.658020" y1="58.551609" z1="-2871.922852" x2="-673.607971" y2="102.611710" z2="-2866.552734" rotX="-0.000000" rotY="-3.150319" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483690" name="box_1216483689" shape="box" x1="-677.209045" y1="11.749102" z1="-2870.669922" x2="-674.209045" y2="15.909101" z2="-2867.669922" rotX="-0.000000" rotY="-3.150319" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483692" name="box_1216483691" shape="box" x1="-677.658020" y1="14.880903" z1="-2871.922852" x2="-673.607971" y2="56.750931" z2="-2866.552734" rotX="-0.000000" rotY="-3.150319" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483702" name="box_1216483701" shape="box" x1="-677.163513" y1="102.050598" z1="-2870.669434" x2="-674.163513" y2="104.450607" z2="-2867.669434" rotX="-0.000000" rotY="-3.150319" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483704" name="box_1216483703" shape="box" x1="-677.163513" y1="53.389271" z1="-2870.669434" x2="-674.163513" y2="58.879276" z2="-2867.669434" rotX="-0.000000" rotY="-3.150319" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483708" name="box_1216483707" shape="box" x1="-681.568420" y1="14.880903" z1="-2871.956787" x2="-677.518372" y2="56.750931" z2="-2866.586670" rotX="-0.000000" rotY="-3.150319" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483710" name="box_1216483709" shape="box" x1="-681.119568" y1="11.749102" z1="-2870.703857" x2="-678.119568" y2="15.909101" z2="-2867.703857" rotX="-0.000000" rotY="-3.150319" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483712" name="box_1216483711" shape="box" x1="-681.073914" y1="53.389271" z1="-2870.703369" x2="-678.073914" y2="58.879276" z2="-2867.703369" rotX="-0.000000" rotY="-3.150319" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483714" name="box_1216483713" shape="box" x1="-681.568420" y1="58.551609" z1="-2871.956787" x2="-677.518372" y2="102.611710" z2="-2866.586670" rotX="-0.000000" rotY="-3.150319" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483716" name="box_1216483715" shape="box" x1="-681.073914" y1="102.050598" z1="-2870.703369" x2="-678.073914" y2="104.450607" z2="-2867.703369" rotX="-0.000000" rotY="-3.150319" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483726" name="sphere_1216483725" shape="sphere" x1="-646.924133" y1="12.496048" z1="-2852.504883" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="245634" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483736" name="sphere_1216483735" shape="sphere" x1="-671.803894" y1="9.816269" z1="-2805.583740" radius="140.000000"> | |
<Property type="Exclusive" id="4277267792" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483694" name="box_1216483693" shape="box" x1="-650.939636" y1="11.269409" z1="-2784.637695" x2="-647.939636" y2="14.269409" z2="-2781.637695" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483706" name="box_1216483705" shape="box" x1="-651.644653" y1="13.388349" z1="-2785.342773" x2="-647.234619" y2="21.668293" z2="-2780.932617" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261679" name="box_2759261679" shape="box" x1="-664.672668" y1="-38.904312" z1="-2784.552002" x2="-662.672668" y2="41.095688" z2="-2782.552002" rotX="-0.000000" rotY="0.000000" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261672" name="box_2759261672" shape="box" x1="-697.566711" y1="-0.402847" z1="-2749.819580" x2="-695.316711" y2="12.097153" z2="-2747.569580" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1407676381" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1652501089" name="sphere_1652501089" shape="sphere" x1="-695.731201" y1="20.113819" z1="-2595.793701" radius="0.990000" /> | |
<AreaDefinition id="1216483738" name="sphere_1216483737" shape="sphere" x1="-585.362854" y1="9.816269" z1="-2973.908203" radius="35.000000"> | |
<Property type="Exclusive" id="2115590496" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483732" name="sphere_1216483731" shape="sphere" x1="-630.502747" y1="105.232491" z1="-2868.359619" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="245636" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2759261683" name="box_2759261683" shape="box" x1="-612.566345" y1="-0.678237" z1="-2784.828369" x2="-610.316345" y2="10.321762" z2="-2782.578369" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1216483740" name="sphere_1216483739" shape="sphere" x1="-558.122253" y1="9.816269" z1="-2880.499023" radius="50.000000"> | |
<Property type="Exclusive" id="1625820496" /> | |
</AreaDefinition> | |
<AreaDefinition id="3836707728" name="sphere_3836707728" shape="sphere" x1="-834.516785" y1="26.044718" z1="-2545.519287" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="4130514859" name="sphere_4130514859" shape="sphere" x1="-870.640198" y1="25.685059" z1="-2535.822266" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1358824510" name="sphere_1358824510" shape="sphere" x1="-867.374451" y1="25.515820" z1="-2485.711426" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="3741019022" name="sphere_3741019022" shape="sphere" x1="-831.546387" y1="25.804932" z1="-2510.638184" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2416070449" name="sphere_2416070449" shape="sphere" x1="-664.177490" y1="26.076708" z1="-2457.668945" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="588468481" name="sphere_588468481" shape="sphere" x1="-630.825012" y1="28.141163" z1="-2477.571289" radius="0.990000" /> | |
<AreaDefinition id="588468482" name="sphere_588468482" shape="sphere" x1="-634.485779" y1="26.073507" z1="-2477.567871" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877596" name="box_3654877595" shape="box" x1="-835.396912" y1="21.465940" z1="-1815.866089" x2="-833.146912" y2="38.395935" z2="-1813.616089" rotX="-0.000000" rotY="3.106686" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877598" name="box_3654877597" shape="box" x1="-835.812378" y1="21.465944" z1="-1804.393799" x2="-833.562378" y2="38.395943" z2="-1802.143799" rotX="-0.000000" rotY="3.106686" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="499749601" name="sphere_499749601" shape="sphere" x1="-804.989136" y1="20.500000" z1="-1894.096680" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3503324448" name="box_3503324448" shape="box" x1="-786.355469" y1="39.280518" z1="-1795.487915" x2="-784.105469" y2="41.530518" z2="-1793.237915" rotX="-0.000000" rotY="-0.305433" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1308911484" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="3698246096" /> | |
</AreaDefinition> | |
<AreaDefinition id="2897996065" name="box_2897996065" shape="box" x1="-785.302795" y1="39.291401" z1="-1820.885498" x2="-783.052795" y2="41.541401" z2="-1818.635498" rotX="-0.000000" rotY="0.209440" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1926333220" VelocityMult="2.00" JumpHeight="40.00" FacSpawnId="0" ReqSetId="178" NextChainId="3698246099" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877610" name="box_3654877609" shape="box" x1="-800.935242" y1="21.465944" z1="-1815.689087" x2="-798.685242" y2="38.395943" z2="-1813.439087" rotX="-0.000000" rotY="6.248279" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877592" name="box_3654877591" shape="box" x1="-801.408447" y1="21.465944" z1="-1802.139648" x2="-799.158447" y2="38.395943" z2="-1799.889648" rotX="-0.000000" rotY="6.248279" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1386750709" name="sphere_1386750709" shape="sphere" x1="-808.855835" y1="28.483711" z1="-1808.094116" radius="1.060000"> | |
<Property type="Interaction" id="1654002388" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1946005493" name="box_1946005493" shape="box" x1="-823.462769" y1="36.831612" z1="-1818.129150" x2="-813.862793" y2="42.661613" z2="-1798.669189" rotX="-0.000000" rotY="3.106686" rotZ="0.000000" /> | |
<AreaDefinition id="3654877602" name="box_3654877601" shape="box" x1="-820.161072" y1="27.361994" z1="-1802.542725" x2="-817.591125" y2="37.911995" z2="-1799.942627" rotX="-0.000000" rotY="1.535890" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877604" name="box_3654877603" shape="box" x1="-819.686768" y1="27.361994" z1="-1816.951050" x2="-817.116821" y2="37.911995" z2="-1814.350952" rotX="-0.000000" rotY="1.535890" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877612" name="sphere_3654877611" shape="sphere" x1="-817.769348" y1="5.349274" z1="-1806.134399" radius="65.000000" /> | |
<AreaDefinition id="3654877616" name="sphere_3654877615" shape="sphere" x1="-824.858887" y1="39.001534" z1="-1808.558105" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3654877618" name="sphere_3654877617" shape="sphere" x1="-828.116882" y1="7.055303" z1="-1815.320190" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3951658865" name="box_3951658865" shape="box" x1="-824.198425" y1="21.452520" z1="-1806.604004" x2="-822.428406" y2="27.152521" z2="-1804.843994" rotX="-0.000000" rotY="3.106686" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3951658866" name="box_3951658866" shape="box" x1="-824.001404" y1="21.452520" z1="-1812.247192" x2="-822.231384" y2="27.152521" z2="-1810.487183" rotX="-0.000000" rotY="3.106686" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3775349098" name="sphere_3775349098" shape="sphere" x1="-816.157776" y1="17.591076" z1="-1708.569336" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2704250150" name="box_2704250150" shape="box" x1="-749.488159" y1="24.052464" z1="-1931.336060" x2="-747.228149" y2="47.112522" z2="-1929.146118" rotX="-0.000000" rotY="-3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2704250152" name="sphere_2704250152" shape="sphere" x1="-750.295288" y1="21.379135" z1="-1930.810181" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2704250151" name="box_2704250151" shape="box" x1="-752.179260" y1="24.052464" z1="-1934.018433" x2="-749.919250" y2="47.112522" z2="-1931.828491" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232707439" name="sphere_4232707439" shape="sphere" x1="-750.525574" y1="18.624754" z1="-1831.523926" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="3395633755" name="sphere_3395633755" shape="sphere" x1="-738.240784" y1="18.160629" z1="-1775.022217" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="2558995678" name="box_2558995678" shape="box" x1="-749.441528" y1="24.045929" z1="-1680.863770" x2="-747.181519" y2="47.105988" z2="-1678.673828" rotX="-0.000000" rotY="3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2558995677" name="box_2558995677" shape="box" x1="-752.124084" y1="24.045929" z1="-1678.172607" x2="-749.864075" y2="47.105988" z2="-1675.982666" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2558995679" name="sphere_2558995679" shape="sphere" x1="-750.084717" y1="21.372601" z1="-1679.279297" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2704250148" name="box_2704250148" shape="box" x1="-679.825806" y1="24.052464" z1="-1861.589355" x2="-677.565796" y2="47.112522" z2="-1859.399414" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2704250149" name="sphere_2704250149" shape="sphere" x1="-678.206299" y1="21.379135" z1="-1858.721191" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2704250147" name="box_2704250147" shape="box" x1="-677.134644" y1="24.052464" z1="-1858.906860" x2="-674.874634" y2="47.112522" z2="-1856.716919" rotX="-0.000000" rotY="-3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3698246099" name="box_3698246099" shape="box" x1="-686.481445" y1="45.818459" z1="-1852.288940" x2="-684.231445" y2="48.068459" z2="-1850.038940" rotX="-0.000000" rotY="0.785398" rotZ="0.000000" /> | |
<AreaDefinition id="2558995681" name="box_2558995681" shape="box" x1="-677.012451" y1="24.045929" z1="-1753.217285" x2="-674.752441" y2="47.105988" z2="-1751.027344" rotX="-0.000000" rotY="3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2558995680" name="box_2558995680" shape="box" x1="-679.694946" y1="24.045929" z1="-1750.526123" x2="-677.434937" y2="47.105988" z2="-1748.336182" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2558995682" name="sphere_2558995682" shape="sphere" x1="-677.995789" y1="21.372601" z1="-1751.368286" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3698246096" name="box_3698246096" shape="box" x1="-686.514160" y1="45.841946" z1="-1759.442383" x2="-684.264160" y2="48.091946" z2="-1757.192383" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000" /> | |
<AreaDefinition id="2434198217" name="box_2434198217" shape="box" x1="-777.408997" y1="67.816467" z1="-1117.203979" x2="-775.148987" y2="90.876526" z2="-1115.014038" rotX="-0.000000" rotY="-1.291544" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2434198218" name="box_2434198218" shape="box" x1="-776.355774" y1="67.816467" z1="-1113.552979" x2="-774.095764" y2="90.876526" z2="-1111.363037" rotX="-0.000000" rotY="1.850049" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2434198219" name="sphere_2434198219" shape="sphere" x1="-774.794250" y1="65.143143" z1="-1114.246216" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1706891024" name="sphere_1706891024" shape="sphere" x1="-729.888916" y1="71.486328" z1="-1230.072754" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="675012098" name="sphere_675012098" shape="sphere" x1="-726.088806" y1="80.300415" z1="-1177.862427" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2101100409" name="box_2101100409" shape="box" x1="-650.406982" y1="81.897812" z1="-1307.230713" x2="-647.717041" y2="88.277817" z2="-1304.360596" rotX="-0.000000" rotY="-3.743731" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3641026397" name="sphere_3641026397" shape="sphere" x1="-641.655273" y1="77.521973" z1="-1290.153320" radius="1.200000"> | |
<Property type="Interaction" id="824036883" ProxyID="246944" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2545258247" name="sphere_2545258247" shape="sphere" x1="-653.128723" y1="69.384903" z1="-1199.889160" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1117406218" name="sphere_1117406218" shape="sphere" x1="-652.380066" y1="71.790771" z1="-1193.616089" radius="1.200000"> | |
<Property type="Interaction" id="824036883" ProxyID="246945" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2101100410" name="box_2101100410" shape="box" x1="-621.305969" y1="81.885361" z1="-1287.292847" x2="-618.575989" y2="88.265366" z2="-1284.492798" rotX="-0.000000" rotY="-0.602138" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2101100411" name="box_2101100411" shape="box" x1="-632.654846" y1="88.611450" z1="-1301.282471" x2="-630.534851" y2="95.391449" z2="-1299.082520" rotX="-0.000000" rotY="0.183260" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2101100413" name="sphere_2101100413" shape="sphere" x1="-634.749268" y1="75.422173" z1="-1294.113892" radius="32.000000" /> | |
<AreaDefinition id="2101100412" name="box_2101100412" shape="box" x1="-639.185303" y1="88.611450" z1="-1291.932739" x2="-637.065308" y2="95.391449" z2="-1289.732788" rotX="-0.000000" rotY="-2.958333" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2903845051" name="sphere_2903845051" shape="sphere" x1="-627.394043" y1="70.835831" z1="-1141.379639" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2434198221" name="box_2434198221" shape="box" x1="-748.188354" y1="67.816467" z1="-1015.127502" x2="-745.928345" y2="90.876526" z2="-1012.937561" rotX="-0.000000" rotY="1.850049" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2434198222" name="sphere_2434198222" shape="sphere" x1="-746.693237" y1="65.143143" z1="-1016.246338" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2434198220" name="box_2434198220" shape="box" x1="-749.241516" y1="67.816467" z1="-1018.778259" x2="-746.981506" y2="90.876526" z2="-1016.588318" rotX="-0.000000" rotY="-1.291544" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3316892011" name="box_3316892011" shape="box" x1="-775.356018" y1="123.782333" z1="-259.084930" x2="-773.006042" y2="140.102371" z2="-256.834930" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3316892012" name="box_3316892012" shape="box" x1="-775.356018" y1="123.782333" z1="-256.476898" x2="-773.006042" y2="140.102371" z2="-254.226898" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3316891997" name="box_3316891997" shape="box" x1="-771.670105" y1="123.844833" z1="-19.346996" x2="-769.320129" y2="140.164871" z2="-17.096996" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3316891998" name="box_3316891998" shape="box" x1="-771.670105" y1="123.844833" z1="-16.738964" x2="-769.320129" y2="140.164871" z2="-14.488963" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="634923526" name="sphere_634923526" shape="sphere" x1="-709.942932" y1="125.000000" z1="-260.563965" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="1096129648" name="sphere_1096129648" shape="sphere" x1="-711.943176" y1="127.061951" z1="-272.060455" radius="1.200000"> | |
<Property type="Interaction" id="192979341" ProxyID="246526" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="923270568" name="sphere_923270568" shape="sphere" x1="-746.934265" y1="124.779129" z1="-142.877472" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817473871" name="box_3817473871" shape="box" x1="-670.571899" y1="136.586441" z1="-303.844910" x2="-667.881958" y2="142.966446" z2="-300.974915" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817473873" name="box_3817473873" shape="box" x1="-652.712463" y1="143.300079" z1="-308.777496" x2="-650.592468" y2="150.080078" z2="-306.577484" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817473874" name="box_3817473874" shape="box" x1="-652.798645" y1="143.300079" z1="-297.373322" x2="-650.678650" y2="150.080078" z2="-295.173309" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817473875" name="sphere_3817473875" shape="sphere" x1="-650.814941" y1="130.110809" z1="-300.889526" radius="32.000000" /> | |
<AreaDefinition id="3968294678" name="sphere_3968294678" shape="sphere" x1="-669.554504" y1="132.377319" z1="-293.752197" radius="1.200000"> | |
<Property type="Interaction" id="192979341" ProxyID="246525" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="977914498" name="box_977914498" shape="box" x1="-684.485962" y1="123.844833" z1="-248.961777" x2="-682.135986" y2="140.164871" z2="-246.711777" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="977914499" name="box_977914499" shape="box" x1="-681.877930" y1="123.844833" z1="-248.961777" x2="-679.527954" y2="140.164871" z2="-246.711777" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="923270569" name="sphere_923270569" shape="sphere" x1="-693.191711" y1="124.779129" z1="-137.558929" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="787445453" name="box_787445453" shape="box" x1="-700.019165" y1="123.844833" z1="-16.464855" x2="-697.669189" y2="140.164871" z2="-14.214854" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="787445454" name="box_787445454" shape="box" x1="-702.627197" y1="123.844833" z1="-16.464855" x2="-700.277222" y2="140.164871" z2="-14.214854" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817473872" name="box_3817473872" shape="box" x1="-635.319580" y1="136.573990" z1="-303.901825" x2="-632.589600" y2="142.953995" z2="-301.101837" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1124266523" name="box_1124266523" shape="box" x1="-584.877808" y1="126.922775" z1="-192.639816" x2="-582.527832" y2="143.242813" z2="-190.389816" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1124266524" name="box_1124266524" shape="box" x1="-582.269775" y1="126.922775" z1="-192.639816" x2="-579.919800" y2="143.242813" z2="-190.389816" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="178615337" name="box_178615337" shape="box" x1="-779.629883" y1="101.810303" z1="-270.696899" x2="-379.629883" y2="121.810303" z2="29.303101" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Death" id="510168488" /> | |
</AreaDefinition> | |
<AreaDefinition id="354681748" name="box_354681748" shape="box" x1="-597.608765" y1="123.844833" z1="-20.847198" x2="-595.258789" y2="140.164871" z2="-18.597198" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="354681749" name="box_354681749" shape="box" x1="-600.216797" y1="123.844833" z1="-20.847198" x2="-597.866821" y2="140.164871" z2="-18.597198" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="92064013" name="sphere_92064013" shape="sphere" x1="-730.492065" y1="124.314598" z1="1.828514" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="810003194" name="sphere_810003194" shape="sphere" x1="-629.472046" y1="125.000000" z1="7.167458" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838667" name="box_846838666" shape="box" x1="-597.381042" y1="59.505646" z1="911.985474" x2="-594.541077" y2="82.505676" z2="914.845459" rotX="-0.000000" rotY="-2.443461" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838673" name="box_846838672" shape="box" x1="-600.369568" y1="59.505646" z1="914.493103" x2="-597.529602" y2="82.505676" z2="917.353088" rotX="-0.000000" rotY="-2.443461" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838713" name="sphere_846838712" shape="sphere" x1="-594.492920" y1="-150.729324" z1="916.634399" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838715" name="sphere_846838714" shape="sphere" x1="-589.092468" y1="56.012024" z1="919.155334" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675418" name="box_1384675418" shape="box" x1="-592.665527" y1="80.881744" z1="920.810364" x2="-590.415527" y2="83.131744" z2="923.060364" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675425" name="box_1384675425" shape="box" x1="-585.903992" y1="82.170502" z1="916.353699" x2="-583.653992" y2="84.420502" z2="918.603699" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244723" ReqSetId="178" NextChainId="1384675417" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838731" name="sphere_846838730" shape="sphere" x1="-596.486938" y1="56.012024" z1="989.509033" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838663" name="box_846838662" shape="box" x1="-537.462219" y1="59.505646" z1="911.807434" x2="-534.622253" y2="82.505676" z2="914.667419" rotX="-0.000000" rotY="-2.722714" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838665" name="box_846838664" shape="box" x1="-541.047241" y1="59.505646" z1="913.403198" x2="-538.207275" y2="82.505676" z2="916.263184" rotX="-0.000000" rotY="-2.722714" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838717" name="sphere_846838716" shape="sphere" x1="-532.965271" y1="55.837021" z1="918.116882" radius="40.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675416" name="box_1384675416" shape="box" x1="-527.251465" y1="82.170502" z1="910.193359" x2="-525.001465" y2="84.420502" z2="912.443359" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244721" ReqSetId="178" NextChainId="1384675412" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675417" name="box_1384675417" shape="box" x1="-535.208923" y1="80.881744" z1="921.331177" x2="-532.958923" y2="83.131744" z2="923.581177" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675422" name="box_1384675422" shape="box" x1="-546.836426" y1="82.170502" z1="920.039246" x2="-544.586426" y2="84.420502" z2="922.289246" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244722" ReqSetId="178" NextChainId="1384675418" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838729" name="sphere_846838728" shape="sphere" x1="-562.512817" y1="55.509720" z1="958.933838" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838707" name="sphere_846838706" shape="sphere" x1="-559.433350" y1="55.840237" z1="960.865967" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838733" name="sphere_846838732" shape="sphere" x1="-563.311523" y1="-148.892410" z1="984.880676" radius="55.000000"> | |
<Property type="Exclusive" id="3256068608" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838743" name="sphere_846838742" shape="sphere" x1="-567.457397" y1="55.509720" z1="1005.978760" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838747" name="sphere_846838746" shape="sphere" x1="-563.981323" y1="56.241013" z1="1002.340637" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="1422716223" name="box_1422716223" shape="box" x1="-803.177124" y1="72.828369" z1="1064.319580" x2="-800.487183" y2="79.208374" z2="1067.189697" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1422716225" name="box_1422716225" shape="box" x1="-785.317688" y1="79.542007" z1="1059.387085" x2="-783.197693" y2="86.322006" z2="1061.587036" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1422716226" name="box_1422716226" shape="box" x1="-785.403870" y1="79.542007" z1="1070.791382" x2="-783.283875" y2="86.322006" z2="1072.991333" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1422716227" name="sphere_1422716227" shape="sphere" x1="-783.420166" y1="66.352730" z1="1067.275146" radius="32.000000" /> | |
<AreaDefinition id="179761346" name="box_179761346" shape="box" x1="-784.949768" y1="58.213867" z1="1087.290771" x2="-782.739807" y2="68.213867" z2="1089.590820" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="709881346" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="585181345" name="box_585181345" shape="box" x1="-774.656738" y1="58.213867" z1="1087.290771" x2="-772.446777" y2="68.213867" z2="1089.590820" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="709881345" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1990528617" name="sphere_1990528617" shape="sphere" x1="-786.022461" y1="60.561611" z1="1155.849121" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="31031350" name="sphere_31031350" shape="sphere" x1="-775.513428" y1="71.191322" z1="1196.506958" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1422716224" name="box_1422716224" shape="box" x1="-767.924805" y1="72.815918" z1="1064.262817" x2="-765.194824" y2="79.195923" z2="1067.062866" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838675" name="box_846838674" shape="box" x1="-612.880066" y1="59.505638" z1="1064.497437" x2="-610.040100" y2="82.505669" z2="1067.357544" rotX="-0.000000" rotY="-1.658063" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838679" name="box_846838678" shape="box" x1="-613.211731" y1="59.505646" z1="1068.303467" x2="-610.371765" y2="82.505676" z2="1071.163574" rotX="-0.000000" rotY="-1.658063" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838755" name="sphere_846838754" shape="sphere" x1="-610.546509" y1="-162.140457" z1="1069.374146" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838757" name="sphere_846838756" shape="sphere" x1="-604.640015" y1="56.012024" z1="1067.080322" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675419" name="box_1384675419" shape="box" x1="-603.526245" y1="80.881744" z1="1067.631592" x2="-601.276245" y2="83.131744" z2="1069.881592" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675426" name="box_1384675426" shape="box" x1="-611.170959" y1="82.170502" z1="1055.863037" x2="-608.920959" y2="84.420502" z2="1058.113037" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244719" ReqSetId="178" NextChainId="1384675423" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838681" name="box_846838680" shape="box" x1="-557.662476" y1="59.505646" z1="1072.331787" x2="-554.822510" y2="82.505676" z2="1075.191895" rotX="-0.000000" rotY="-1.413717" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838683" name="box_846838682" shape="box" x1="-557.024170" y1="59.505646" z1="1076.360352" x2="-554.184204" y2="82.505676" z2="1079.220459" rotX="-0.000000" rotY="-1.413717" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838745" name="sphere_846838744" shape="sphere" x1="-573.672913" y1="-148.949051" z1="1045.547241" radius="23.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838759" name="sphere_846838758" shape="sphere" x1="-548.118591" y1="55.837021" z1="1076.732422" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675423" name="box_1384675423" shape="box" x1="-547.847473" y1="80.881744" z1="1073.209351" x2="-545.597473" y2="83.131744" z2="1075.459351" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675427" name="box_1384675427" shape="box" x1="-554.531860" y1="82.170502" z1="1064.506592" x2="-552.281860" y2="84.420502" z2="1066.756592" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244718" ReqSetId="178" NextChainId="1384675419" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675429" name="box_1384675429" shape="box" x1="-547.071655" y1="82.170502" z1="1081.809326" x2="-544.821655" y2="84.420502" z2="1084.059326" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244712" ReqSetId="178" NextChainId="1384675399" /> | |
</AreaDefinition> | |
<AreaDefinition id="871593629" name="sphere_871593628" shape="sphere" x1="-857.273682" y1="19.085449" z1="1690.717041" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="293336173" name="box_293336172" shape="box" x1="-770.449341" y1="40.277664" z1="1622.953979" x2="-768.329346" y2="47.057671" z2="1625.153931" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="204223453" name="box_204223453" shape="box" x1="-776.866333" y1="17.139692" z1="1655.275146" x2="-775.366333" y2="29.479692" z2="1656.775146" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="942201564" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1734768324" name="sphere_1734768324" shape="sphere" x1="-772.110046" y1="29.201416" z1="1617.521729" radius="1.200000"> | |
<Property type="Interaction" id="2981642998" ProxyID="246551" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2621526991" name="sphere_2621526991" shape="sphere" x1="-820.364014" y1="29.171875" z1="1625.718872" radius="1.200000"> | |
<Property type="Interaction" id="3110675900" ProxyID="246552" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="206898162" name="sphere_206898161" shape="sphere" x1="-815.096130" y1="18.685266" z1="1699.047485" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="1005803633" name="sphere_1005803632" shape="sphere" x1="-801.685913" y1="13.995964" z1="1788.445435" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="293336165" name="box_293336164" shape="box" x1="-759.045166" y1="40.277664" z1="1623.040161" x2="-756.925171" y2="47.057671" z2="1625.240112" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="293336177" name="sphere_293336176" shape="sphere" x1="-762.385010" y1="27.204914" z1="1623.414795" radius="32.000000" /> | |
<AreaDefinition id="293336167" name="box_293336166" shape="box" x1="-765.347351" y1="33.762436" z1="1640.391846" x2="-762.657410" y2="40.102440" z2="1643.261963" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="293336171" name="box_293336170" shape="box" x1="-765.181030" y1="33.716415" z1="1605.182983" x2="-762.451050" y2="40.056419" z2="1607.983032" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="330298189" name="sphere_330298188" shape="sphere" x1="-519.841736" y1="3.781494" z1="2493.066650" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="4170088181" name="box_4170088180" shape="box" x1="-544.355530" y1="7.857036" z1="2545.629639" x2="-542.005554" y2="24.177074" z2="2547.879639" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4170088183" name="box_4170088182" shape="box" x1="-546.963562" y1="7.857036" z1="2545.629639" x2="-544.613586" y2="24.177074" z2="2547.879639" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="153771524" name="sphere_153771524" shape="sphere" x1="-531.489014" y1="7.853516" z1="2502.026855" radius="1.200000"> | |
<Property type="Interaction" id="119005889" ProxyID="246528" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="323235692" name="box_323235691" shape="box" x1="-581.333618" y1="7.960860" z1="2589.943359" x2="-578.983643" y2="24.280899" z2="2592.193359" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="323235694" name="box_323235693" shape="box" x1="-579.489380" y1="7.960860" z1="2591.787598" x2="-577.139404" y2="24.280899" z2="2594.037598" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3848276003" name="box_3848276002" shape="box" x1="-528.811768" y1="10.853618" z1="2596.811279" x2="-526.461792" y2="27.173656" z2="2599.061279" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3848276005" name="box_3848276004" shape="box" x1="-526.203735" y1="10.853618" z1="2596.811523" x2="-523.853760" y2="27.173656" z2="2599.061523" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="305477824" name="box_305477823" shape="box" x1="-548.318542" y1="12.356157" z1="2581.382080" x2="-545.838562" y2="17.776167" z2="2583.862061" rotX="-0.000000" rotY="-6.283185" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="305477828" name="box_305477827" shape="box" x1="-534.532410" y1="12.356157" z1="2581.382080" x2="-532.052429" y2="17.776167" z2="2583.862061" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="305477830" name="sphere_305477829" shape="sphere" x1="-540.825134" y1="11.811523" z1="2580.498779" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="4172969088" name="sphere_4172969088" shape="sphere" x1="-547.377502" y1="13.614990" z1="2575.595459" radius="1.200000"> | |
<Property type="Interaction" id="119005889" ProxyID="246527" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2349576565" name="sphere_2349576565" shape="sphere" x1="-427.041748" y1="42.023483" z1="-3225.226318" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="971085882" name="sphere_971085882" shape="sphere" x1="-387.829742" y1="42.742630" z1="-3233.673096" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1724746280" name="sphere_1724746280" shape="sphere" x1="-397.946625" y1="42.278027" z1="-3150.057129" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="3224819696" name="sphere_3224819696" shape="sphere" x1="-405.721405" y1="42.584999" z1="-3176.979492" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2349576564" name="sphere_2349576564" shape="sphere" x1="-373.299194" y1="42.023483" z1="-3219.907471" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3206093028" name="sphere_3206093028" shape="sphere" x1="-340.887756" y1="42.017570" z1="-3128.617676" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3644601822" name="sphere_3644601822" shape="sphere" x1="-382.958466" y1="44.569679" z1="-3127.028564" radius="0.990000" /> | |
<AreaDefinition id="3847548345" name="sphere_3847548345" shape="sphere" x1="-226.252136" y1="44.660255" z1="-3118.109131" radius="0.990000" /> | |
<AreaDefinition id="3847548346" name="sphere_3847548346" shape="sphere" x1="-226.248566" y1="42.592598" z1="-3114.448486" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3913797507" name="sphere_3913797507" shape="sphere" x1="-49.467133" y1="49.530167" z1="-3190.116699" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="1362857143" name="sphere_1362857143" shape="sphere" x1="-55.187859" y1="42.116329" z1="-3141.269531" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="3946151361" name="sphere_3946151361" shape="sphere" x1="-17.376415" y1="48.244415" z1="-3165.215820" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="930556309" name="sphere_930556309" shape="sphere" x1="-54.808933" y1="41.206257" z1="-3100.704346" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2083660149" name="box_2083660149" shape="box" x1="-48.649670" y1="41.657181" z1="-3081.489014" x2="-46.169674" y2="47.077194" z2="-3079.009033" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2083660152" name="sphere_2083660152" shape="sphere" x1="-53.663105" y1="41.112549" z1="-3078.125488" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="2083660151" name="box_2083660151" shape="box" x1="-62.435822" y1="41.657181" z1="-3081.489014" x2="-59.955826" y2="47.077194" z2="-3079.009033" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="619915371" name="box_619915371" shape="box" x1="-481.255676" y1="80.964935" z1="-1070.459473" x2="-479.005676" y2="101.464935" z2="-1068.209473" rotX="-0.000000" rotY="-1.658063" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="619915372" name="box_619915372" shape="box" x1="-481.718750" y1="80.964935" z1="-1065.293945" x2="-479.468750" y2="101.464935" z2="-1063.043945" rotX="-0.000000" rotY="1.483530" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="619915373" name="sphere_619915373" shape="sphere" x1="-479.774170" y1="75.847519" z1="-1066.728638" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2174433015" name="box_2174433015" shape="box" x1="-401.320862" y1="72.236725" z1="-1447.595337" x2="-399.060852" y2="95.296783" z2="-1445.405396" rotX="-0.000000" rotY="-1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2174433016" name="box_2174433016" shape="box" x1="-401.281586" y1="72.236725" z1="-1443.795776" x2="-399.021576" y2="95.296783" z2="-1441.605835" rotX="-0.000000" rotY="1.579523" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2174433017" name="sphere_2174433017" shape="sphere" x1="-399.257874" y1="69.563400" z1="-1444.308594" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2174433018" name="box_2174433018" shape="box" x1="-400.480927" y1="72.236725" z1="-1345.221924" x2="-398.220917" y2="95.296783" z2="-1343.031982" rotX="-0.000000" rotY="-1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2174433019" name="box_2174433019" shape="box" x1="-400.441650" y1="72.236725" z1="-1341.422485" x2="-398.181641" y2="95.296783" z2="-1339.232544" rotX="-0.000000" rotY="1.579523" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2174433020" name="sphere_2174433020" shape="sphere" x1="-398.368195" y1="69.563400" z1="-1342.363281" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597244" name="box_1438597244" shape="box" x1="-408.095703" y1="75.139328" z1="-1123.304565" x2="-405.595703" y2="100.139328" z2="-1120.804565" rotX="-0.000000" rotY="-0.872665" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597243" name="box_1438597243" shape="box" x1="-411.378418" y1="75.139328" z1="-1120.739136" x2="-408.878418" y2="100.139328" z2="-1118.239136" rotX="-0.000000" rotY="2.268928" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597231" name="box_1438597231" shape="box" x1="-415.155884" y1="75.092636" z1="-1110.959595" x2="-412.655884" y2="85.092636" z2="-1108.459595" rotX="-0.000000" rotY="-0.872665" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597255" name="sphere_1438597255" shape="sphere" x1="-418.383301" y1="89.628036" z1="-1072.242920" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597249" name="sphere_1438597249" shape="sphere" x1="-412.269318" y1="74.821487" z1="-1027.342896" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3614864016" name="box_3614864016" shape="box" x1="-351.287994" y1="95.861275" z1="-1317.207275" x2="-349.037994" y2="98.111275" z2="-1314.957275" rotX="-0.000000" rotY="-0.130900" rotZ="0.000000" /> | |
<AreaDefinition id="3614864017" name="box_3614864017" shape="box" x1="-346.251617" y1="96.903999" z1="-1316.793945" x2="-344.001617" y2="99.153999" z2="-1314.543945" rotX="-0.000000" rotY="-0.130900" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2222903353" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="3111146732" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597246" name="sphere_1438597246" shape="sphere" x1="-343.926514" y1="85.964340" z1="-1109.500366" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="245480" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597256" name="sphere_1438597256" shape="sphere" x1="-354.695007" y1="86.140793" z1="-1110.413574" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="245478" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1562841024" name="sphere_1562841024" shape="sphere" x1="-316.256165" y1="68.625122" z1="-1462.336792" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3111146732" name="box_3111146732" shape="box" x1="-318.321472" y1="80.763733" z1="-1469.607056" x2="-316.071472" y2="83.013733" z2="-1467.357056" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="3111146737" name="box_3111146737" shape="box" x1="-313.864746" y1="81.714294" z1="-1469.805420" x2="-311.614746" y2="83.964294" z2="-1467.555420" rotX="-0.000000" rotY="-1.588249" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2706647181" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="3614864016" /> | |
</AreaDefinition> | |
<AreaDefinition id="2467217533" name="sphere_2467217533" shape="sphere" x1="-296.326294" y1="76.683350" z1="-1460.314941" radius="1.200000"> | |
<Property type="Interaction" id="1903717532" ProxyID="247055" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="1531050466" name="sphere_1531050466" shape="sphere" x1="-316.772949" y1="94.159187" z1="-1297.262695" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="4198677771" name="sphere_4198677771" shape="sphere" x1="-285.020447" y1="94.099182" z1="-1335.651489" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597230" name="box_1438597230" shape="box" x1="-291.207245" y1="75.001633" z1="-1113.583374" x2="-288.707245" y2="100.001633" z2="-1111.083374" rotX="-0.000000" rotY="0.698132" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597232" name="box_1438597232" shape="box" x1="-288.528717" y1="75.001633" z1="-1110.391479" x2="-286.028717" y2="100.001633" z2="-1107.891479" rotX="-0.000000" rotY="-2.443461" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597245" name="box_1438597245" shape="box" x1="-286.865265" y1="75.092636" z1="-1100.100098" x2="-284.365265" y2="85.092636" z2="-1097.600098" rotX="-0.000000" rotY="-2.443461" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597247" name="sphere_1438597247" shape="sphere" x1="-281.121460" y1="75.273178" z1="-1054.057861" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597248" name="sphere_1438597248" shape="sphere" x1="-301.842255" y1="74.984055" z1="-1085.246460" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1414853474" name="box_1414853474" shape="box" x1="-213.485504" y1="102.807480" z1="-1436.142578" x2="-210.795502" y2="109.187485" z2="-1433.272461" rotX="-0.000000" rotY="-4.014257" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1414853476" name="box_1414853476" shape="box" x1="-197.868652" y1="109.521118" z1="-1425.730591" x2="-195.748657" y2="116.301117" z2="-1423.530640" rotX="-0.000000" rotY="-0.087266" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1414853477" name="box_1414853477" shape="box" x1="-206.660156" y1="109.521118" z1="-1418.466064" x2="-204.540161" y2="116.301117" z2="-1416.266113" rotX="-0.000000" rotY="-3.228859" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1414853478" name="sphere_1414853478" shape="sphere" x1="-201.470108" y1="96.331841" z1="-1419.625732" radius="32.000000" /> | |
<AreaDefinition id="1449637533" name="sphere_1449637533" shape="sphere" x1="-219.219116" y1="98.400757" z1="-1430.019775" radius="1.200000"> | |
<Property type="Interaction" id="1903717532" ProxyID="247054" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="514932654" name="sphere_514932654" shape="sphere" x1="-255.773590" y1="94.108780" z1="-1363.193726" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1424224314" name="box_1424224314" shape="box" x1="-228.797821" y1="80.915558" z1="-1043.133423" x2="-226.547821" y2="101.415558" z2="-1040.883423" rotX="-0.000000" rotY="1.474803" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1424224315" name="box_1424224315" shape="box" x1="-228.289398" y1="80.915558" z1="-1048.294922" x2="-226.039398" y2="101.415558" z2="-1046.044922" rotX="-0.000000" rotY="-1.666789" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1424224316" name="sphere_1424224316" shape="sphere" x1="-228.006561" y1="75.798141" z1="-1044.617065" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1414853475" name="box_1414853475" shape="box" x1="-190.762405" y1="102.795029" z1="-1409.146240" x2="-188.032394" y2="109.175034" z2="-1406.346191" rotX="-0.000000" rotY="-0.872665" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597239" name="box_1438597239" shape="box" x1="-418.896423" y1="75.260910" z1="-1000.955322" x2="-416.396423" y2="100.260910" z2="-998.455322" rotX="-0.000000" rotY="-2.443461" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597240" name="box_1438597240" shape="box" x1="-421.574951" y1="75.260910" z1="-1004.147217" x2="-419.074951" y2="100.260910" z2="-1001.647217" rotX="-0.000000" rotY="0.698132" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597237" name="box_1438597237" shape="box" x1="-423.430908" y1="75.092636" z1="-1014.322571" x2="-420.930908" y2="85.092636" z2="-1011.822571" rotX="-0.000000" rotY="0.698132" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597252" name="sphere_1438597252" shape="sphere" x1="-410.267761" y1="75.011765" z1="-912.823364" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597253" name="sphere_1438597253" shape="sphere" x1="-351.711060" y1="76.100143" z1="-998.078064" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="245479" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597254" name="sphere_1438597254" shape="sphere" x1="-366.535034" y1="76.100143" z1="-999.375000" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="245477" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597238" name="box_1438597238" shape="box" x1="-295.673004" y1="75.092636" z1="-1002.676697" x2="-293.173004" y2="85.092636" z2="-1000.176697" rotX="-0.000000" rotY="2.268928" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597242" name="box_1438597242" shape="box" x1="-299.021759" y1="75.139511" z1="-993.151550" x2="-296.521759" y2="100.139511" z2="-990.651550" rotX="-0.000000" rotY="-0.863938" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1438597241" name="box_1438597241" shape="box" x1="-302.349915" y1="75.139511" z1="-990.643860" x2="-299.849915" y2="100.139511" z2="-988.143860" rotX="-0.000000" rotY="2.277655" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3546864812" name="sphere_3546864812" shape="sphere" x1="-163.133041" y1="123.650330" z1="-853.323853" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176571" name="box_3850176571" shape="box" x1="-187.559753" y1="101.053558" z1="-725.576721" x2="-185.299744" y2="124.113617" z2="-723.386780" rotX="-0.000000" rotY="2.565634" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176572" name="sphere_3850176572" shape="sphere" x1="-187.277222" y1="98.380234" z1="-726.114441" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176570" name="box_3850176570" shape="box" x1="-190.749863" y1="101.053558" z1="-727.641113" x2="-188.489853" y2="124.113617" z2="-725.451172" rotX="-0.000000" rotY="-0.575959" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176630" name="box_3850176630" shape="box" x1="-73.035591" y1="101.009369" z1="-883.722290" x2="-70.775597" y2="124.069427" z2="-881.532349" rotX="-0.000000" rotY="-0.890118" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176629" name="box_3850176629" shape="box" x1="-70.639626" y1="101.009369" z1="-880.773254" x2="-68.379631" y2="124.069427" z2="-878.583313" rotX="-0.000000" rotY="-4.031711" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176631" name="sphere_3850176631" shape="sphere" x1="-71.376648" y1="98.336044" z1="-880.446838" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1550578801" name="sphere_1550578801" shape="sphere" x1="-74.420845" y1="124.730537" z1="-771.159180" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2187844686" name="sphere_2187844686" shape="sphere" x1="-102.709816" y1="124.554947" z1="-797.894287" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2052614948" name="sphere_2052614948" shape="sphere" x1="-125.270187" y1="124.502762" z1="-820.982605" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2336341869" name="sphere_2336341869" shape="sphere" x1="-64.993690" y1="121.293884" z1="-704.446655" radius="1.200000"> | |
<Property type="Interaction" id="2081609164" ProxyID="247057" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176574" name="box_3850176574" shape="box" x1="-101.728539" y1="101.053558" z1="-669.773499" x2="-99.468544" y2="124.113617" z2="-667.583557" rotX="-0.000000" rotY="2.565634" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176575" name="sphere_3850176575" shape="sphere" x1="-101.775421" y1="98.380234" z1="-670.588867" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176573" name="box_3850176573" shape="box" x1="-104.918541" y1="101.053558" z1="-671.837830" x2="-102.658546" y2="124.113617" z2="-669.647888" rotX="-0.000000" rotY="-0.575959" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176627" name="box_3850176627" shape="box" x1="-8.649379" y1="101.009369" z1="-804.127014" x2="-6.389379" y2="124.069427" z2="-801.937073" rotX="-0.000000" rotY="-0.890118" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176628" name="sphere_3850176628" shape="sphere" x1="-7.217911" y1="98.336044" z1="-801.217407" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850176626" name="box_3850176626" shape="box" x1="-6.253337" y1="101.009369" z1="-801.177856" x2="-3.993337" y2="124.069427" z2="-798.987915" rotX="-0.000000" rotY="-4.031711" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="559982973" name="box_559982973" shape="box" x1="-21.062531" y1="128.117172" z1="-688.782959" x2="-18.372528" y2="134.497177" z2="-685.912964" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="559982977" name="sphere_559982977" shape="sphere" x1="-5.623127" y1="121.641533" z1="-699.292175" radius="32.000000" /> | |
<AreaDefinition id="559982976" name="box_559982976" shape="box" x1="-4.072219" y1="134.830811" z1="-696.474792" x2="-1.952218" y2="141.610809" z2="-694.274841" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="559982975" name="box_559982975" shape="box" x1="-12.075248" y1="134.830811" z1="-704.599670" x2="-9.955247" y2="141.610809" z2="-702.399719" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1620699166" name="sphere_1620699166" shape="sphere" x1="-15.286541" y1="123.784058" z1="-703.558960" radius="1.200000"> | |
<Property type="Interaction" id="2081609164" ProxyID="247056" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2110972150" name="sphere_2110972150" shape="sphere" x1="-23.595802" y1="139.344238" z1="-87.508362" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="4269999294" name="box_4269999293" shape="box" x1="-6.940498" y1="156.818039" z1="-44.819412" x2="-4.690498" y2="173.748032" z2="-42.569412" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4269999312" name="box_4269999311" shape="box" x1="-6.940498" y1="156.818039" z1="-31.261673" x2="-4.690498" y2="173.748032" z2="-29.011673" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2396027675" name="sphere_2396027675" shape="sphere" x1="-42.144806" y1="128.788437" z1="-18.071625" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="2283836525" name="sphere_2283836525" shape="sphere" x1="-13.729263" y1="129.294662" z1="-20.370872" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="941375936" name="box_941375936" shape="box" x1="-32.551697" y1="150.894638" z1="-60.470661" x2="-30.801697" y2="156.364639" z2="-58.720661" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1550095935" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1550095936" name="box_1550095936" shape="box" x1="-32.551697" y1="150.894638" z1="-62.588093" x2="-30.801697" y2="156.364639" z2="-60.838093" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1550095935" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4111050488" name="box_4111050488" shape="box" x1="-18.604156" y1="129.614014" z1="11.861265" x2="-16.354156" y2="140.314026" z2="14.111265" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="831924766" name="box_831924766" shape="box" x1="-28.930317" y1="128.543182" z1="3.554052" x2="-26.680317" y2="144.493195" z2="5.804052" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3425861424" name="sphere_3425861424" shape="sphere" x1="-12.323326" y1="139.654160" z1="18.329720" radius="18.000000"> | |
<Property type="Exclusive" id="2985063507" /> | |
</AreaDefinition> | |
<AreaDefinition id="986130178" name="box_986130178" shape="box" x1="-486.484924" y1="87.808800" z1="624.927673" x2="-471.604919" y2="99.738808" z2="639.807678" rotX="-0.000000" rotY="0.785398" rotZ="0.000000" /> | |
<AreaDefinition id="2956898990" name="sphere_2956898990" shape="sphere" x1="-456.882111" y1="80.763626" z1="643.223267" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="2968956528" name="sphere_2968956528" shape="sphere" x1="-500.605774" y1="81.388245" z1="750.743591" radius="31.209999"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675406" name="box_1384675406" shape="box" x1="-478.330872" y1="45.840237" z1="888.695923" x2="-476.080872" y2="65.840240" z2="890.945923" rotX="-0.000000" rotY="-0.375246" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3874015312" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838719" name="sphere_846838718" shape="sphere" x1="-466.760803" y1="50.963001" z1="918.632996" radius="55.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675420" name="box_1384675420" shape="box" x1="-483.704407" y1="2.031582" z1="943.629456" x2="-481.704407" y2="92.031586" z2="945.629456" rotX="-0.000000" rotY="-1.675516" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="2739617906" VelocityMult="-3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838671" name="box_846838670" shape="box" x1="-463.402649" y1="62.885143" z1="1001.362244" x2="-460.662659" y2="79.195129" z2="1003.722229" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838677" name="box_846838676" shape="box" x1="-463.813080" y1="62.885143" z1="1005.267334" x2="-461.073090" y2="79.195129" z2="1007.627319" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675398" name="box_1384675398" shape="box" x1="-494.597900" y1="45.939968" z1="1006.241150" x2="-492.347900" y2="53.689968" z2="1008.491150" rotX="-0.000000" rotY="-0.776672" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="397307676" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675400" name="box_1384675400" shape="box" x1="-493.260834" y1="45.939968" z1="993.519714" x2="-491.010834" y2="53.689968" z2="995.769714" rotX="-0.000000" rotY="-0.689405" rotZ="0.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
<Property type="Thrust - No Gravity" id="397307676" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="598315566" name="sphere_598315566" shape="sphere" x1="-410.128448" y1="80.751602" z1="753.611633" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838653" name="box_846838652" shape="box" x1="-396.672943" y1="59.505646" z1="851.495178" x2="-393.832916" y2="82.505676" z2="854.355164" rotX="-0.000000" rotY="2.775074" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838657" name="box_846838656" shape="box" x1="-400.403137" y1="59.505646" z1="850.062805" x2="-397.563110" y2="82.505676" z2="852.922791" rotX="-0.000000" rotY="2.775074" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838709" name="sphere_846838708" shape="sphere" x1="-407.578003" y1="55.837021" z1="862.504883" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675411" name="box_1384675411" shape="box" x1="-409.047424" y1="82.170502" z1="856.881531" x2="-406.797424" y2="84.420502" z2="859.131531" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244720" ReqSetId="178" NextChainId="1384675417" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675412" name="box_1384675412" shape="box" x1="-401.701752" y1="80.881744" z1="859.674683" x2="-399.451752" y2="83.131744" z2="861.924683" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838721" name="sphere_846838720" shape="sphere" x1="-415.885529" y1="55.837021" z1="907.294678" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838735" name="sphere_846838734" shape="sphere" x1="-441.470032" y1="35.837029" z1="1003.434326" radius="85.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838661" name="box_846838660" shape="box" x1="-397.298676" y1="57.465809" z1="1011.497681" x2="-394.558685" y2="81.495811" z2="1013.857666" rotX="-0.000000" rotY="3.036873" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838687" name="box_846838686" shape="box" x1="-396.998535" y1="57.465820" z1="1008.642029" x2="-394.258545" y2="81.495819" z2="1011.002014" rotX="-0.000000" rotY="3.036873" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838691" name="box_846838690" shape="box" x1="-324.094391" y1="59.505646" z1="878.177185" x2="-321.254364" y2="82.505676" z2="881.037170" rotX="-0.000000" rotY="1.876229" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838705" name="box_846838704" shape="box" x1="-325.395721" y1="59.505646" z1="874.049072" x2="-322.555695" y2="82.505676" z2="876.909058" rotX="-0.000000" rotY="1.876229" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838711" name="sphere_846838710" shape="sphere" x1="-326.319397" y1="55.837021" z1="880.914612" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675409" name="box_1384675409" shape="box" x1="-326.726715" y1="82.170502" z1="887.501648" x2="-324.476715" y2="84.420502" z2="889.751648" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244707" ReqSetId="178" NextChainId="1384675407" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675410" name="box_1384675410" shape="box" x1="-333.184143" y1="80.881744" z1="879.181580" x2="-330.934143" y2="83.131744" z2="881.431580" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838723" name="sphere_846838722" shape="sphere" x1="-334.610870" y1="55.837021" z1="916.165710" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838727" name="sphere_846838726" shape="sphere" x1="-334.448364" y1="55.867348" z1="956.091370" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838737" name="sphere_846838736" shape="sphere" x1="-365.452148" y1="86.476784" z1="989.676025" radius="20.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838739" name="sphere_846838738" shape="sphere" x1="-339.439209" y1="55.334717" z1="986.091309" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675397" name="box_1384675397" shape="box" x1="-341.052094" y1="68.227158" z1="1005.456360" x2="-338.552094" y2="76.727158" z2="1007.956360" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675402" name="box_1384675402" shape="box" x1="-341.661194" y1="68.227158" z1="1011.251343" x2="-339.161194" y2="76.727158" z2="1013.751343" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675414" name="box_1384675414" shape="box" x1="-332.000549" y1="77.023651" z1="1003.553040" x2="-329.880554" y2="83.803650" z2="1005.752991" rotX="-0.000000" rotY="0.680678" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675415" name="box_1384675415" shape="box" x1="-333.278320" y1="77.023651" z1="1014.885681" x2="-331.158325" y2="83.803650" z2="1017.085632" rotX="-0.000000" rotY="-2.460914" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675430" name="box_1384675430" shape="box" x1="-322.037537" y1="68.227158" z1="1014.469727" x2="-319.537537" y2="76.727158" z2="1016.969727" rotX="-0.000000" rotY="-1.675516" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838725" name="sphere_846838724" shape="sphere" x1="-298.778076" y1="56.012024" z1="949.046936" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838655" name="box_846838654" shape="box" x1="-278.273682" y1="59.505646" z1="1021.198730" x2="-275.433655" y2="82.505676" z2="1024.058716" rotX="-0.000000" rotY="1.090831" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675405" name="box_1384675405" shape="box" x1="-283.438293" y1="82.170502" z1="1011.760803" x2="-281.188293" y2="84.420502" z2="1014.010803" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244706" ReqSetId="178" NextChainId="1384675410" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675407" name="box_1384675407" shape="box" x1="-287.031769" y1="80.881744" z1="1018.878174" x2="-284.781769" y2="83.131744" z2="1021.128174" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675438" name="box_1384675438" shape="box" x1="-321.191650" y1="68.227158" z1="1006.421631" x2="-318.691650" y2="76.727158" z2="1008.921631" rotX="-0.000000" rotY="1.466077" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675408" name="box_1384675408" shape="box" x1="-496.558533" y1="10.031582" z1="1065.928223" x2="-494.558533" y2="84.031586" z2="1067.928223" rotX="-0.000000" rotY="-1.675516" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="2739617906" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838761" name="sphere_846838760" shape="sphere" x1="-496.170471" y1="55.837021" z1="1115.611694" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675437" name="box_1384675437" shape="box" x1="-501.775085" y1="45.840237" z1="1112.757080" x2="-499.525085" y2="65.840240" z2="1115.007080" rotX="-0.000000" rotY="0.008727" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3874015312" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675432" name="box_1384675432" shape="box" x1="-408.034485" y1="-15.468418" z1="1035.346313" x2="-406.034485" y2="109.531586" z2="1037.346313" rotX="-0.000000" rotY="3.036873" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="2739617906" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838763" name="sphere_846838762" shape="sphere" x1="-436.458069" y1="55.837021" z1="1113.294312" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838685" name="box_846838684" shape="box" x1="-433.642303" y1="59.505646" z1="1165.515869" x2="-430.802277" y2="82.505676" z2="1168.375977" rotX="-0.000000" rotY="0.157080" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838695" name="box_846838694" shape="box" x1="-429.672913" y1="59.505646" z1="1164.887329" x2="-426.832886" y2="82.505676" z2="1167.747437" rotX="-0.000000" rotY="0.157080" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838769" name="sphere_846838768" shape="sphere" x1="-440.153473" y1="55.837021" z1="1160.182251" radius="50.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675399" name="box_1384675399" shape="box" x1="-432.576996" y1="80.881744" z1="1156.848877" x2="-430.326996" y2="83.131744" z2="1159.098877" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675431" name="box_1384675431" shape="box" x1="-440.724274" y1="82.170502" z1="1157.317139" x2="-438.474274" y2="84.420502" z2="1159.567139" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244708" ReqSetId="178" NextChainId="1384675423" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838749" name="sphere_846838748" shape="sphere" x1="-370.515778" y1="86.476784" z1="1042.774536" radius="20.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838751" name="sphere_846838750" shape="sphere" x1="-342.762115" y1="55.579208" z1="1047.841187" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838753" name="sphere_846838752" shape="sphere" x1="-333.145966" y1="55.849533" z1="1048.069946" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838767" name="sphere_846838766" shape="sphere" x1="-350.827026" y1="55.837021" z1="1116.789063" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675404" name="box_1384675404" shape="box" x1="-353.294464" y1="80.881744" z1="1150.386719" x2="-351.044464" y2="83.131744" z2="1152.636719" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675413" name="box_1384675413" shape="box" x1="-345.839844" y1="82.170502" z1="1147.740845" x2="-343.589844" y2="84.420502" z2="1149.990845" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244704" ReqSetId="178" NextChainId="1384675407" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838697" name="box_846838696" shape="box" x1="-352.998688" y1="59.505646" z1="1159.099243" x2="-350.158661" y2="82.505676" z2="1161.959351" rotX="-0.000000" rotY="0.305433" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838699" name="box_846838698" shape="box" x1="-349.157074" y1="59.505646" z1="1157.888062" x2="-346.317047" y2="82.505676" z2="1160.748169" rotX="-0.000000" rotY="0.305433" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838771" name="sphere_846838770" shape="sphere" x1="-350.717773" y1="55.837021" z1="1158.064209" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3185292849" name="sphere_3185292849" shape="sphere" x1="-354.532135" y1="53.837940" z1="1338.671387" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1384675401" name="box_1384675401" shape="box" x1="-286.158447" y1="82.170502" z1="1032.056763" x2="-283.908447" y2="84.420502" z2="1034.306763" rotX="-0.000000" rotY="-0.104720" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="244700" ReqSetId="178" NextChainId="1384675404" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838701" name="box_846838700" shape="box" x1="-280.006622" y1="59.505646" z1="1024.527466" x2="-277.166595" y2="82.505676" z2="1027.387573" rotX="-0.000000" rotY="1.090831" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838741" name="sphere_846838740" shape="sphere" x1="-284.505310" y1="55.837021" z1="1024.338379" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="846838765" name="sphere_846838764" shape="sphere" x1="-308.511719" y1="56.012024" z1="1091.956421" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="93318541" name="box_93318541" shape="box" x1="-272.027496" y1="48.653198" z1="1334.237793" x2="-270.027496" y2="61.653198" z2="1336.237793" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2438329090" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="500058540" name="box_500058540" shape="box" x1="-272.027496" y1="48.653198" z1="1338.381226" x2="-270.027496" y2="61.653198" z2="1340.381226" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2438329089" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="805698540" name="box_805698540" shape="box" x1="-272.027496" y1="48.653198" z1="1311.333374" x2="-270.027496" y2="61.653198" z2="1313.333374" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2568299089" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="805698541" name="box_805698541" shape="box" x1="-272.027496" y1="48.653198" z1="1307.189819" x2="-270.027496" y2="61.653198" z2="1309.189819" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2568299090" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3982633841" name="box_3982633841" shape="box" x1="-141.294800" y1="81.982155" z1="1335.073730" x2="-139.174805" y2="88.762154" z2="1337.273682" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3982633839" name="box_3982633839" shape="box" x1="-159.154266" y1="75.268517" z1="1340.006226" x2="-156.464264" y2="81.648521" z2="1342.876343" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3982633843" name="sphere_3982633843" shape="sphere" x1="-139.397278" y1="68.792877" z1="1342.961792" radius="32.000000" /> | |
<AreaDefinition id="3982633842" name="box_3982633842" shape="box" x1="-141.380981" y1="81.982155" z1="1346.478027" x2="-139.260986" y2="88.762154" z2="1348.677979" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3982633840" name="box_3982633840" shape="box" x1="-123.901917" y1="75.256065" z1="1339.949463" x2="-121.171921" y2="81.636070" z2="1342.749512" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3836318676" name="sphere_3836318676" shape="sphere" x1="-3.960770" y1="22.140944" z1="1828.355835" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2592288063" name="box_2592288063" shape="box" x1="-39.271473" y1="13.759155" z1="1849.691895" x2="-37.271473" y2="23.759155" z2="1851.691895" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1044177081" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3000868062" name="box_3000868062" shape="box" x1="-39.271473" y1="13.699463" z1="1840.143555" x2="-37.271473" y2="23.699463" z2="1842.143555" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1159717081" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3836318622" name="sphere_3836318622" shape="sphere" x1="-2.644623" y1="22.129791" z1="1869.958862" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="4210313992" name="sphere_4210313991" shape="sphere" x1="-469.174164" y1="3.984863" z1="2505.156006" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="1161975678" name="sphere_1161975678" shape="sphere" x1="-504.237061" y1="5.905713" z1="2541.882813" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="537597807" name="sphere_537597807" shape="sphere" x1="-424.446014" y1="12.000000" z1="2559.953857" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="1299489428" name="sphere_1299489428" shape="sphere" x1="-486.354706" y1="5.889600" z1="2608.101563" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="3017247738" name="box_3017247738" shape="box" x1="298.001282" y1="6.301372" z1="-1901.912598" x2="300.351257" y2="22.621410" z2="-1899.662598" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3017247739" name="box_3017247739" shape="box" x1="296.157104" y1="6.301372" z1="-1900.068359" x2="298.507080" y2="22.621410" z2="-1897.818359" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3939343479" name="sphere_3939343478" shape="sphere" x1="284.175110" y1="7.355106" z1="-1846.681519" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="253769686" name="box_253769685" shape="box" x1="299.808960" y1="9.534690" z1="-1811.263428" x2="301.308960" y2="17.824684" z2="-1809.763428" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2417135999" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="296325580" name="box_296325580" shape="box" x1="272.405884" y1="3.401103" z1="-1848.936279" x2="274.755859" y2="19.721142" z2="-1846.686279" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="296325579" name="box_296325579" shape="box" x1="274.250061" y1="3.401103" z1="-1850.780518" x2="276.600037" y2="19.721142" z2="-1848.530518" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3172993260" name="box_3172993260" shape="box" x1="316.564148" y1="20.890865" z1="-1833.226807" x2="318.914124" y2="37.210907" z2="-1830.976807" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3172993261" name="box_3172993261" shape="box" x1="313.956116" y1="20.890865" z1="-1833.226807" x2="316.306091" y2="37.210907" z2="-1830.976807" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1294445789" name="sphere_1294445788" shape="sphere" x1="326.317535" y1="7.461389" z1="-1881.868652" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2964800938" name="sphere_2964800937" shape="sphere" x1="355.784943" y1="7.629413" z1="-1857.629517" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="3017247726" name="box_3017247726" shape="box" x1="352.967896" y1="6.302592" z1="-1900.231445" x2="355.317871" y2="22.622631" z2="-1897.981445" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3017247727" name="box_3017247727" shape="box" x1="351.123779" y1="6.302592" z1="-1902.075684" x2="353.473755" y2="22.622631" z2="-1899.825684" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="639153252" name="box_639153251" shape="box" x1="338.041260" y1="4.544634" z1="-1811.052490" x2="340.521240" y2="9.964643" z2="-1808.572510" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="639153256" name="box_639153255" shape="box" x1="324.255127" y1="4.544634" z1="-1811.052490" x2="326.735107" y2="9.964643" z2="-1808.572510" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="639153258" name="sphere_639153257" shape="sphere" x1="333.027832" y1="4.000000" z1="-1807.689453" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="639153281" name="box_639153280" shape="box" x1="338.041260" y1="4.544634" z1="-1811.052490" x2="340.521240" y2="9.964643" z2="-1808.572510" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="639153285" name="box_639153284" shape="box" x1="324.255127" y1="4.544634" z1="-1811.052490" x2="326.735107" y2="9.964643" z2="-1808.572510" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="639153287" name="sphere_639153286" shape="sphere" x1="333.027832" y1="4.000000" z1="-1807.689453" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3424971715" name="sphere_3424971714" shape="sphere" x1="320.190491" y1="9.703920" z1="-1821.519531" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3172993248" name="box_3172993248" shape="box" x1="328.534393" y1="20.890865" z1="-1833.215454" x2="330.884369" y2="37.210907" z2="-1830.965454" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3172993249" name="box_3172993249" shape="box" x1="325.926361" y1="20.890865" z1="-1833.215454" x2="328.276337" y2="37.210907" z2="-1830.965454" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="639153316" name="sphere_639153315" shape="sphere" x1="333.027832" y1="4.000000" z1="-1774.780762" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="639153310" name="box_639153309" shape="box" x1="338.041260" y1="4.544634" z1="-1778.143799" x2="340.521240" y2="9.964643" z2="-1775.663818" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="639153314" name="box_639153313" shape="box" x1="324.255127" y1="4.544634" z1="-1778.143799" x2="326.735107" y2="9.964643" z2="-1775.663818" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4156452867" name="box_4156452866" shape="box" x1="327.288696" y1="9.562090" z1="-1777.975464" x2="329.768677" y2="14.982100" z2="-1775.495483" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4156452869" name="sphere_4156452868" shape="sphere" x1="330.651733" y1="9.017456" z1="-1784.268188" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="4156452863" name="box_4156452862" shape="box" x1="327.288696" y1="9.562090" z1="-1791.761597" x2="329.768677" y2="14.982100" z2="-1789.281616" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1870112942" name="box_1870112942" shape="box" x1="347.828369" y1="3.401103" z1="-1788.789551" x2="350.178345" y2="19.721142" z2="-1786.539551" rotX="-0.000000" rotY="-3.132866" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1870112943" name="box_1870112943" shape="box" x1="347.851379" y1="3.401103" z1="-1786.182373" x2="350.201355" y2="19.721142" z2="-1783.932373" rotX="-0.000000" rotY="-3.132866" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="559982974" name="box_559982974" shape="box" x1="3.793868" y1="128.104721" z1="-713.754395" x2="6.523870" y2="134.484726" z2="-710.954346" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3758888025" name="box_3758888025" shape="box" x1="431.639709" y1="129.731079" z1="-671.756287" x2="433.899719" y2="152.791138" z2="-669.566345" rotX="-0.000000" rotY="-2.600541" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3758888026" name="box_3758888026" shape="box" x1="428.385895" y1="129.731079" z1="-669.794067" x2="430.645905" y2="152.791138" z2="-667.604126" rotX="-0.000000" rotY="0.541052" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3758888027" name="sphere_3758888027" shape="sphere" x1="431.748810" y1="127.057755" z1="-668.919434" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3400229413" name="box_3400229413" shape="box" x1="39.135300" y1="129.614014" z1="-103.944962" x2="41.385300" y2="140.314026" z2="-101.694962" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="350396618" name="box_350396618" shape="box" x1="54.166656" y1="128.543182" z1="-88.532173" x2="56.416656" y2="144.493195" z2="-86.282173" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2844432483" name="sphere_2844432483" shape="sphere" x1="45.600342" y1="129.080338" z1="-79.964172" radius="15.000000"> | |
<Property type="Exclusive" id="1935648352" /> | |
</AreaDefinition> | |
<AreaDefinition id="2996721533" name="sphere_2996721533" shape="sphere" x1="47.105938" y1="139.640991" z1="-100.826332" radius="18.000000"> | |
<Property type="Exclusive" id="2985063507" /> | |
</AreaDefinition> | |
<AreaDefinition id="1946005709" name="box_1946005709" shape="box" x1="8.010397" y1="172.183716" z1="-46.685764" x2="17.610376" y2="178.013702" z2="-27.225765" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="4269999300" name="box_4269999299" shape="box" x1="27.521141" y1="156.818039" z1="-43.767288" x2="29.771141" y2="173.748032" z2="-41.517288" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4269999306" name="box_4269999305" shape="box" x1="11.517635" y1="162.714096" z1="-30.999294" x2="14.087635" y2="173.264084" z2="-28.399296" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4269999318" name="sphere_4269999317" shape="sphere" x1="19.008263" y1="174.353638" z1="-37.013260" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="246849" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4269999298" name="box_4269999297" shape="box" x1="27.506340" y1="156.818039" z1="-32.287552" x2="29.756340" y2="173.748032" z2="-30.037552" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4269999304" name="box_4269999303" shape="box" x1="11.488827" y1="162.714096" z1="-45.415432" x2="14.058826" y2="173.264084" z2="-42.815434" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4269999320" name="sphere_4269999319" shape="sphere" x1="22.500237" y1="142.407394" z1="-30.368973" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="246850" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4269999314" name="sphere_4269999313" shape="sphere" x1="11.838463" y1="140.701370" z1="-39.188065" radius="65.000000" /> | |
<AreaDefinition id="3516645045" name="sphere_3516645045" shape="sphere" x1="60.108795" y1="127.256866" z1="-1.121910" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3304506460" name="sphere_3304506460" shape="sphere" x1="61.449829" y1="139.384781" z1="-34.372211" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="1936182073" name="sphere_1936182073" shape="sphere" x1="2.998772" y1="163.835815" z1="-36.918411" radius="1.060000"> | |
<Property type="Interaction" id="1654002388" ProxyID="246848" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="382384685" name="box_382384685" shape="box" x1="16.479830" y1="156.804611" z1="-40.671703" x2="18.249830" y2="162.504623" z2="-38.911701" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="382384686" name="box_382384686" shape="box" x1="16.479830" y1="156.804611" z1="-35.024975" x2="18.249830" y2="162.504623" z2="-33.264973" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="668083324" name="box_668083324" shape="box" x1="71.991379" y1="139.428864" z1="-67.810944" x2="74.341385" y2="155.748901" z2="-65.560944" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="668083323" name="box_668083323" shape="box" x1="71.991379" y1="139.428864" z1="-65.202911" x2="74.341385" y2="155.748901" z2="-62.952911" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="753299581" name="dome_753299581" shape="dome" x1="289.084045" y1="127.661133" z1="-227.842438"> | |
<Property type="CompositeEffect" id="938549581" CompositeEffectDefId="2959" effectLocOffsetX="0.000000" effectLocOffsetY="0.000000" effectLocOffsetZ="0.000000" effectRotationH="0.000000" effectRotationP="0.000000" effectRotationR="0.000000" effectScale="1.000000" /> | |
</AreaDefinition> | |
<AreaDefinition id="3427137951" name="box_3427137951" shape="box" x1="508.968262" y1="159.888382" z1="-484.161743" x2="511.448242" y2="165.308395" z2="-481.681763" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1626691565" name="sphere_1626691565" shape="sphere" x1="54.809814" y1="139.586746" z1="8.232229" radius="18.000000"> | |
<Property type="Exclusive" id="2985063507" /> | |
</AreaDefinition> | |
<AreaDefinition id="1821881874" name="sphere_1821881874" shape="sphere" x1="51.256386" y1="22.137096" z1="1805.288696" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="841768850" name="box_841768850" shape="box" x1="58.664593" y1="32.627762" z1="1918.504150" x2="61.394596" y2="39.007767" z2="1921.304199" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="564008912" name="sphere_564008912" shape="sphere" x1="32.216999" y1="22.001467" z1="1918.744873" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="727665359" name="box_727665359" shape="box" x1="43.464813" y1="22.669678" z1="1935.335083" x2="45.464813" y2="27.669678" z2="1937.335083" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3215351108" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2202428920" name="sphere_2202428920" shape="sphere" x1="94.034775" y1="32.514526" z1="1836.600708" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1735764269" name="sphere_1735764269" shape="sphere" x1="91.275009" y1="34.613403" z1="1844.185669" radius="1.200000"> | |
<Property type="Interaction" id="2338004269" ProxyID="246588" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="841768852" name="box_841768852" shape="box" x1="76.753685" y1="39.353848" z1="1912.575684" x2="78.873680" y2="46.133854" z2="1914.775635" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="841768853" name="sphere_841768853" shape="sphere" x1="76.889923" y1="26.164574" z1="1918.291870" radius="32.000000" /> | |
<AreaDefinition id="841768849" name="box_841768849" shape="box" x1="93.956924" y1="32.640217" z1="1918.377197" x2="96.646927" y2="39.020214" z2="1921.247314" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="122976974" name="sphere_122976974" shape="sphere" x1="86.578102" y1="28.273926" z1="1911.300049" radius="1.200000"> | |
<Property type="Interaction" id="2338004269" ProxyID="246587" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="841768851" name="box_841768851" shape="box" x1="76.667473" y1="39.353848" z1="1923.979858" x2="78.787468" y2="46.133854" z2="1926.179810" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="444570077" name="box_444570077" shape="box" x1="120.152603" y1="10.315951" z1="2536.661377" x2="122.412598" y2="33.376007" z2="2538.851318" rotX="-0.000000" rotY="-2.059489" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="444570078" name="box_444570078" shape="box" x1="118.374092" y1="10.315951" z1="2540.019287" x2="120.634087" y2="33.376007" z2="2542.209229" rotX="-0.000000" rotY="1.082104" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="444570079" name="sphere_444570079" shape="sphere" x1="121.056702" y1="7.642621" z1="2540.127686" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="38364830" name="box_38364830" shape="box" x1="254.333664" y1="61.331165" z1="2203.106934" x2="257.023651" y2="67.711166" z2="2205.977051" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1890358533" name="sphere_1890358533" shape="sphere" x1="255.433975" y1="57.301270" z1="2212.982910" radius="1.200000"> | |
<Property type="Interaction" id="2993878873" ProxyID="246714" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3138613444" name="box_3138613444" shape="box" x1="225.100906" y1="12.979597" z1="2457.865479" x2="227.830917" y2="19.359602" z2="2460.665283" rotX="-0.000000" rotY="0.776672" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3138613447" name="sphere_3138613447" shape="sphere" x1="215.570343" y1="6.516411" z1="2472.232910" radius="32.000000" /> | |
<AreaDefinition id="3138613445" name="box_3138613445" shape="box" x1="209.155243" y1="19.705687" z1="2466.878418" x2="211.275238" y2="26.485689" z2="2469.078613" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3138613443" name="box_3138613443" shape="box" x1="200.027328" y1="12.992054" z1="2482.618652" x2="202.717331" y2="19.372055" z2="2485.488770" rotX="-0.000000" rotY="-2.364921" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3138613446" name="box_3138613446" shape="box" x1="217.087067" y1="19.705687" z1="2475.072998" x2="219.207062" y2="26.485689" z2="2477.273193" rotX="-0.000000" rotY="-1.579523" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2080366096" name="sphere_2080366096" shape="sphere" x1="223.874207" y1="8.618164" z1="2450.530518" radius="1.200000"> | |
<Property type="Interaction" id="3502048249" ProxyID="246755" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="38364831" name="box_38364831" shape="box" x1="289.585968" y1="61.318710" z1="2203.050293" x2="292.315948" y2="67.698715" z2="2205.850098" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="38364832" name="box_38364832" shape="box" x1="272.193085" y1="68.044800" z1="2198.174316" x2="274.313080" y2="74.824799" z2="2200.374512" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="38364833" name="box_38364833" shape="box" x1="272.106903" y1="68.044800" z1="2209.578613" x2="274.226898" y2="74.824799" z2="2211.778809" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="38364834" name="sphere_38364834" shape="sphere" x1="274.090607" y1="54.855522" z1="2206.062500" radius="32.000000" /> | |
<AreaDefinition id="1034582917" name="sphere_1034582917" shape="sphere" x1="256.683899" y1="29.392227" z1="2407.333008" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="4193257364" name="sphere_4193257364" shape="sphere" x1="257.396301" y1="31.770508" z1="2400.969238" radius="1.200000"> | |
<Property type="Interaction" id="3502048249" ProxyID="246756" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2524926963" name="sphere_2524926963" shape="sphere" x1="378.028320" y1="40.174080" z1="2244.132324" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565028137" name="box_1565028137" shape="box" x1="443.797180" y1="26.916016" z1="2108.286621" x2="446.057190" y2="49.976074" z2="2110.476563" rotX="-0.000000" rotY="-0.322886" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565028138" name="sphere_1565028138" shape="sphere" x1="446.544922" y1="24.242689" z1="2110.936279" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="4237563230" name="sphere_4237563230" shape="sphere" x1="403.362183" y1="19.539795" z1="2302.458008" radius="1.200000"> | |
<Property type="Interaction" id="2993878873" ProxyID="246715" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1588237705" name="sphere_1588237705" shape="sphere" x1="409.527863" y1="16.915421" z1="2304.029053" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565028136" name="box_1565028136" shape="box" x1="447.402466" y1="26.916016" z1="2109.486572" x2="449.662476" y2="49.976074" z2="2111.676514" rotX="-0.000000" rotY="-3.464478" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1628177287" name="sphere_1628177287" shape="sphere" x1="505.525696" y1="20.537979" z1="2211.637451" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="444570080" name="box_444570080" shape="box" x1="72.042381" y1="10.315951" z1="2627.029785" x2="74.302376" y2="33.376007" z2="2629.219727" rotX="-0.000000" rotY="-2.059489" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="444570081" name="box_444570081" shape="box" x1="70.263931" y1="10.315951" z1="2630.387451" x2="72.523926" y2="33.376007" z2="2632.577393" rotX="-0.000000" rotY="1.082104" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="444570082" name="sphere_444570082" shape="sphere" x1="73.194443" y1="7.642621" z1="2630.143555" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3889894243" name="sphere_3889894243" shape="sphere" x1="155.361298" y1="14.130264" z1="2675.756104" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="732118384" name="sphere_732118384" shape="sphere" x1="170.487152" y1="14.889160" z1="2711.105957" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2315716044" name="sphere_2315716044" shape="sphere" x1="269.948090" y1="15.145901" z1="2656.386719" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720298" name="box_67720298" shape="box" x1="362.864105" y1="20.931616" z1="2768.501465" x2="365.114105" y2="41.431618" z2="2770.751465" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720299" name="box_67720299" shape="box" x1="362.852997" y1="20.931616" z1="2773.687500" x2="365.102997" y2="41.431618" z2="2775.937500" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720311" name="sphere_67720311" shape="sphere" x1="364.571381" y1="15.814194" z1="2772.191406" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720285" name="box_67720285" shape="box" x1="425.192963" y1="15.059311" z1="2722.383057" x2="427.692963" y2="25.059311" z2="2724.883057" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720302" name="box_67720302" shape="box" x1="428.103729" y1="15.106003" z1="2712.311523" x2="430.603729" y2="40.106003" z2="2714.811523" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720303" name="box_67720303" shape="box" x1="431.150360" y1="15.106003" z1="2709.469727" x2="433.650360" y2="40.106003" z2="2711.969727" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720314" name="sphere_67720314" shape="sphere" x1="425.248016" y1="29.594711" z1="2761.347412" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720308" name="sphere_67720308" shape="sphere" x1="435.252045" y1="14.788165" z1="2805.543701" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720292" name="box_67720292" shape="box" x1="425.371918" y1="15.059311" z1="2819.373535" x2="427.871918" y2="25.059311" z2="2821.873535" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720296" name="box_67720296" shape="box" x1="431.054169" y1="15.227585" z1="2832.294678" x2="433.554169" y2="40.227585" z2="2834.794678" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720297" name="box_67720297" shape="box" x1="428.107635" y1="15.227585" z1="2829.348389" x2="430.607635" y2="40.227585" z2="2831.848389" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720310" name="sphere_67720310" shape="sphere" x1="447.227020" y1="14.978439" z1="2919.452881" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720305" name="sphere_67720305" shape="sphere" x1="496.174286" y1="25.931015" z1="2717.742188" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="245930" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720315" name="sphere_67720315" shape="sphere" x1="485.367157" y1="26.107468" z1="2717.770996" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="245928" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720312" name="sphere_67720312" shape="sphere" x1="498.130463" y1="16.066818" z1="2829.419189" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="245929" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720313" name="sphere_67720313" shape="sphere" x1="483.249847" y1="16.066818" z1="2829.419189" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="245927" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1567448186" name="box_1567448186" shape="box" x1="615.643005" y1="78.992363" z1="-3011.459961" x2="617.893005" y2="81.242363" z2="-3009.209961" rotX="-0.000000" rotY="0.680678" rotZ="0.000000" /> | |
<AreaDefinition id="1567448194" name="box_1567448194" shape="box" x1="612.550354" y1="79.958725" z1="-3015.354980" x2="614.800354" y2="82.208725" z2="-3013.104980" rotX="-0.000000" rotY="0.549779" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3380070201" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="1396334609" /> | |
</AreaDefinition> | |
<AreaDefinition id="2814493095" name="sphere_2814493095" shape="sphere" x1="605.624390" y1="78.532112" z1="-2974.040283" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="1567448189" name="box_1567448189" shape="box" x1="607.791504" y1="79.001480" z1="-3005.153564" x2="610.041504" y2="81.251480" z2="-3002.903564" rotX="-0.000000" rotY="-0.890118" rotZ="0.000000" /> | |
<AreaDefinition id="1567448197" name="box_1567448197" shape="box" x1="604.751282" y1="79.932678" z1="-3009.072266" x2="607.001282" y2="82.182678" z2="-3006.822266" rotX="-0.000000" rotY="-0.506145" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2506868574" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="242905" ReqSetId="178" NextChainId="850314405" /> | |
</AreaDefinition> | |
<AreaDefinition id="3615442160" name="box_3615442160" shape="box" x1="668.495728" y1="66.731789" z1="-3041.085693" x2="670.745728" y2="68.981789" z2="-3038.835693" rotX="-0.000000" rotY="0.061087" rotZ="0.000000" /> | |
<AreaDefinition id="501122998" name="box_501122998" shape="box" x1="668.126465" y1="67.696877" z1="-3046.116211" x2="670.376465" y2="69.946877" z2="-3043.866211" rotX="-0.000000" rotY="-0.183260" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="151430107" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="2322575043" /> | |
</AreaDefinition> | |
<AreaDefinition id="1396334604" name="box_1396334604" shape="box" x1="663.492004" y1="67.692032" z1="-3040.886230" x2="665.742004" y2="69.942032" z2="-3038.636230" rotX="-0.000000" rotY="-3.089233" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="469420534" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="1567448186" /> | |
</AreaDefinition> | |
<AreaDefinition id="1396334609" name="box_1396334609" shape="box" x1="663.192505" y1="66.734016" z1="-3045.796387" x2="665.442505" y2="68.984016" z2="-3043.546387" rotX="-0.000000" rotY="0.052360" rotZ="0.000000" /> | |
<AreaDefinition id="3371779388" name="sphere_3371779387" shape="sphere" x1="683.779480" y1="118.554604" z1="-2968.411621" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="242888" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3371779366" name="box_3371779365" shape="box" x1="676.477539" y1="132.965240" z1="-2969.280273" x2="678.727539" y2="149.895233" z2="-2967.030273" rotX="-0.000000" rotY="3.054326" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3371779386" name="sphere_3371779385" shape="sphere" x1="686.679077" y1="150.500824" z1="-2961.488281" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="242887" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3371779368" name="box_3371779367" shape="box" x1="675.462280" y1="132.965240" z1="-2957.845703" x2="677.712280" y2="149.895233" z2="-2955.595703" rotX="-0.000000" rotY="3.054326" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3371779374" name="box_3371779373" shape="box" x1="692.213562" y1="138.861298" z1="-2969.533447" x2="694.783508" y2="149.411285" z2="-2966.933350" rotX="-0.000000" rotY="1.483530" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1946005781" name="box_1946005781" shape="box" x1="688.058411" y1="148.330917" z1="-2970.735352" x2="697.658386" y2="154.160904" z2="-2951.275391" rotX="-0.000000" rotY="3.054326" rotZ="0.000000" /> | |
<AreaDefinition id="3371779372" name="box_3371779371" shape="box" x1="690.985840" y1="138.861298" z1="-2955.169678" x2="693.555786" y2="149.411285" z2="-2952.569580" rotX="-0.000000" rotY="1.483530" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3371779382" name="sphere_3371779381" shape="sphere" x1="693.632019" y1="116.848572" z1="-2958.696777" radius="65.000000" /> | |
<AreaDefinition id="850314405" name="box_850314405" shape="box" x1="659.680481" y1="118.643066" z1="-2977.604004" x2="661.930481" y2="120.893066" z2="-2975.354004" rotX="-0.000000" rotY="0.986111" rotZ="0.000000" /> | |
<AreaDefinition id="850314406" name="box_850314406" shape="box" x1="662.260071" y1="119.685791" z1="-2981.949219" x2="664.510071" y2="121.935791" z2="-2979.699219" rotX="-0.000000" rotY="0.986111" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2222903353" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="1567448189" /> | |
</AreaDefinition> | |
<AreaDefinition id="2978151875" name="sphere_2978151875" shape="sphere" x1="702.635925" y1="139.983002" z1="-2960.187500" radius="1.060000"> | |
<Property type="Interaction" id="1654002388" ProxyID="242889" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3181328658" name="sphere_3181328658" shape="sphere" x1="668.219788" y1="116.827919" z1="-2928.549072" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="197811450" name="sphere_197811450" shape="sphere" x1="690.344421" y1="58.249794" z1="-2845.879883" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2322575043" name="box_2322575043" shape="box" x1="744.223999" y1="33.325050" z1="-3027.748047" x2="746.473999" y2="35.575050" z2="-3025.498047" rotX="-0.000000" rotY="-0.628319" rotZ="0.000000" /> | |
<AreaDefinition id="2322575042" name="box_2322575042" shape="box" x1="747.026794" y1="34.124855" z1="-3031.868652" x2="749.276794" y2="36.374855" z2="-3029.618652" rotX="-0.000000" rotY="-0.610865" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="437438705" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="242904" ReqSetId="178" NextChainId="3615442160" /> | |
</AreaDefinition> | |
<AreaDefinition id="3633060974" name="sphere_3633060974" shape="sphere" x1="767.568481" y1="31.296719" z1="-3044.595459" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="3371779380" name="box_3371779379" shape="box" x1="710.882690" y1="132.965240" z1="-2967.300049" x2="713.132690" y2="149.895233" z2="-2965.050049" rotX="-0.000000" rotY="6.195919" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3371779362" name="box_3371779361" shape="box" x1="709.701050" y1="132.965240" z1="-2953.793945" x2="711.951050" y2="149.895233" z2="-2951.543945" rotX="-0.000000" rotY="6.195919" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3979185441" name="sphere_3979185441" shape="sphere" x1="734.215454" y1="116.811806" z1="-2956.667480" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3764113992" name="sphere_3764113992" shape="sphere" x1="794.856873" y1="30.810539" z1="-3023.070068" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1794541442" name="sphere_1794541442" shape="sphere" x1="786.170593" y1="31.371826" z1="-2996.464111" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="2281790083" name="box_2281790082" shape="box" x1="976.832825" y1="36.842155" z1="-1702.954834" x2="979.312805" y2="42.262169" z2="-1700.474854" rotX="-0.000000" rotY="-1.553343" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2281790087" name="box_2281790086" shape="box" x1="977.073547" y1="36.871452" z1="-1689.171143" x2="979.553528" y2="42.291466" z2="-1686.691162" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2281790089" name="sphere_2281790088" shape="sphere" x1="980.304871" y1="36.326820" z1="-1695.499268" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3758888022" name="box_3758888022" shape="box" x1="519.421326" y1="129.731079" z1="-724.438416" x2="521.681335" y2="152.791138" z2="-722.248474" rotX="-0.000000" rotY="-2.600541" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3758888024" name="sphere_3758888024" shape="sphere" x1="519.136353" y1="127.057755" z1="-721.427124" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3758888023" name="box_3758888023" shape="box" x1="516.167358" y1="129.731079" z1="-722.476135" x2="518.427368" y2="152.791138" z2="-720.286194" rotX="-0.000000" rotY="0.541052" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2511149854" name="box_2511149854" shape="box" x1="562.351990" y1="177.737411" z1="-638.445068" x2="564.601990" y2="179.987411" z2="-636.195068" rotX="-0.000000" rotY="-0.139626" rotZ="0.000000" /> | |
<AreaDefinition id="165587505" name="box_165587505" shape="box" x1="557.735413" y1="178.685944" z1="-638.123657" x2="559.985413" y2="180.935944" z2="-635.873657" rotX="-0.000000" rotY="-1.701696" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="4121815218" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="1424700637" /> | |
</AreaDefinition> | |
<AreaDefinition id="196468750" name="sphere_196468750" shape="sphere" x1="520.127991" y1="138.220413" z1="-540.438721" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="1424700638" name="box_1424700638" shape="box" x1="541.245056" y1="162.184387" z1="-519.008667" x2="543.495056" y2="164.434387" z2="-516.758667" rotX="-0.000000" rotY="-0.226893" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3767619802" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="2511149854" /> | |
</AreaDefinition> | |
<AreaDefinition id="1424700637" name="box_1424700637" shape="box" x1="536.271912" y1="161.141663" z1="-519.903015" x2="538.521912" y2="163.391663" z2="-517.653015" rotX="-0.000000" rotY="-0.226893" rotZ="0.000000" /> | |
<AreaDefinition id="2569036015" name="box_2569036015" shape="box" x1="597.002136" y1="159.305664" z1="-671.491760" x2="599.202087" y2="179.305664" z2="-669.291809" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1931413349" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3438546014" name="box_3438546014" shape="box" x1="594.679138" y1="159.305664" z1="-669.168945" x2="596.879089" y2="179.305664" z2="-666.968994" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1931413348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2288238765" name="sphere_2288238765" shape="sphere" x1="604.860107" y1="159.085587" z1="-544.321045" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2653691588" name="sphere_2653691588" shape="sphere" x1="579.040649" y1="161.224426" z1="-514.042175" radius="1.200000"> | |
<Property type="Interaction" id="30441587" ProxyID="246422" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2690869808" name="sphere_2690869808" shape="sphere" x1="642.967834" y1="159.343750" z1="-621.219788" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="3059488086" name="sphere_3059488086" shape="sphere" x1="688.184204" y1="159.343750" z1="-623.594727" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3427137949" name="box_3427137949" shape="box" x1="522.754333" y1="159.888382" z1="-484.161743" x2="525.234314" y2="165.308395" z2="-481.681763" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3427137952" name="sphere_3427137952" shape="sphere" x1="517.740906" y1="159.343750" z1="-480.798584" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="2560538884" name="sphere_2560538884" shape="sphere" x1="524.140381" y1="160.870300" z1="-475.781311" radius="1.200000"> | |
<Property type="Interaction" id="30441587" ProxyID="246420" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1535595361" name="box_1535595361" shape="box" x1="838.934326" y1="125.597076" z1="-167.992554" x2="841.744385" y2="147.347076" z2="-165.322540" rotX="-0.000000" rotY="0.296706" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654966" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1535595360" name="box_1535595360" shape="box" x1="837.664917" y1="125.597076" z1="-172.143997" x2="840.474976" y2="147.347076" z2="-169.473984" rotX="-0.000000" rotY="0.296706" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654965" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="236411402" name="box_236411402" shape="box" x1="849.103882" y1="146.266907" z1="-171.309647" x2="851.353882" y2="148.516907" z2="-169.059647" rotX="-0.000000" rotY="-2.905973" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3500898697" VelocityMult="2.20" JumpHeight="50.00" FacSpawnId="0" ReqSetId="0" NextChainId="676206531" /> | |
</AreaDefinition> | |
<AreaDefinition id="236411401" name="box_236411401" shape="box" x1="849.572266" y1="145.493378" z1="-166.204514" x2="851.822266" y2="147.743378" z2="-163.954514" rotX="-0.000000" rotY="0.235619" rotZ="0.000000" /> | |
<AreaDefinition id="1535595344" name="box_1535595344" shape="box" x1="920.486694" y1="125.591110" z1="-322.041473" x2="923.296753" y2="147.341110" z2="-319.371490" rotX="-0.000000" rotY="-1.274090" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654965" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1535595345" name="box_1535595345" shape="box" x1="916.335205" y1="125.591110" z1="-320.772003" x2="919.145264" y2="147.341110" z2="-318.102020" rotX="-0.000000" rotY="-1.274090" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654966" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2675146150" name="box_2675146150" shape="box" x1="924.444336" y1="145.493378" z1="-309.233246" x2="926.694336" y2="147.743378" z2="-306.983246" rotX="-0.000000" rotY="1.867502" rotZ="0.000000" /> | |
<AreaDefinition id="2675146155" name="box_2675146155" shape="box" x1="920.598450" y1="146.266907" z1="-308.170441" x2="922.848450" y2="148.516907" z2="-305.920441" rotX="-0.000000" rotY="-1.274090" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3500898697" VelocityMult="2.00" JumpHeight="30.00" FacSpawnId="0" ReqSetId="0" NextChainId="676206533" /> | |
</AreaDefinition> | |
<AreaDefinition id="3906972851" name="box_3906972851" shape="box" x1="1003.108215" y1="126.381180" z1="-308.698669" x2="1005.798157" y2="132.761185" z2="-305.828674" rotX="-0.000000" rotY="-4.415683" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3906972854" name="box_3906972854" shape="box" x1="1002.637817" y1="133.094818" z1="-289.845367" x2="1004.757813" y2="139.874817" z2="-287.645355" rotX="-0.000000" rotY="-3.630285" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3906972855" name="sphere_3906972855" shape="sphere" x1="1008.382385" y1="119.905540" z1="-289.211548" radius="32.000000" /> | |
<AreaDefinition id="3906972853" name="box_3906972853" shape="box" x1="1013.568848" y1="133.094818" z1="-293.097229" x2="1015.688843" y2="139.874817" z2="-290.897217" rotX="-0.000000" rotY="-0.488692" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3906972852" name="box_3906972852" shape="box" x1="1013.488770" y1="126.368729" z1="-274.959320" x2="1016.218750" y2="132.748734" z2="-272.159332" rotX="-0.000000" rotY="-1.274090" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1441499287" name="sphere_1441499287" shape="sphere" x1="986.150024" y1="122.057587" z1="-263.475616" radius="1.060000"> | |
<Property type="Interaction" id="2146519780" ProxyID="246595" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2385460197" name="box_2385460197" shape="box" x1="695.487549" y1="103.263092" z1="788.212769" x2="697.747559" y2="126.323151" z2="790.402710" rotX="-0.000000" rotY="-1.719149" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2385460198" name="box_2385460198" shape="box" x1="694.931946" y1="103.263092" z1="791.971802" x2="697.191956" y2="126.323151" z2="794.161743" rotX="-0.000000" rotY="1.422443" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2385460199" name="sphere_2385460199" shape="sphere" x1="697.196167" y1="100.589767" z1="791.618530" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2385460200" name="box_2385460200" shape="box" x1="680.302368" y1="103.263092" z1="889.457214" x2="682.562378" y2="126.323151" z2="891.647156" rotX="-0.000000" rotY="-1.719149" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2385460201" name="box_2385460201" shape="box" x1="679.746826" y1="103.263092" z1="893.216064" x2="682.006836" y2="126.323151" z2="895.406006" rotX="-0.000000" rotY="1.422443" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2385460202" name="sphere_2385460202" shape="sphere" x1="682.127136" y1="100.589767" z1="892.447876" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1434665300" name="sphere_1434665300" shape="sphere" x1="741.003052" y1="111.873352" z1="578.143188" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1434665299" name="box_1434665299" shape="box" x1="737.640991" y1="114.546677" z1="576.818909" x2="739.901001" y2="137.606735" z2="579.008850" rotX="-0.000000" rotY="0.340339" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1434665298" name="box_1434665298" shape="box" x1="741.220703" y1="114.546677" z1="575.544800" x2="743.480713" y2="137.606735" z2="577.734741" rotX="-0.000000" rotY="-2.801253" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2112731695" name="box_2112731695" shape="box" x1="824.511780" y1="96.866577" z1="709.662537" x2="827.011780" y2="105.866577" z2="712.162537" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4176986238" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3094059817" name="box_3094059817" shape="box" x1="829.537231" y1="97.497559" z1="709.662537" x2="832.037231" y2="107.497559" z2="712.162537" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4176986239" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="473256397" name="box_473256397" shape="box" x1="784.288147" y1="97.519470" z1="739.727051" x2="786.788147" y2="105.519470" z2="742.227051" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3835142057" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="473256396" name="box_473256396" shape="box" x1="784.288147" y1="97.519470" z1="744.661133" x2="786.788147" y2="105.519470" z2="747.161133" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3835142058" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2226267366" name="box_2226267366" shape="box" x1="784.288147" y1="97.558960" z1="780.027161" x2="786.788147" y2="105.558960" z2="782.527161" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3572775824" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2226267367" name="box_2226267367" shape="box" x1="784.288147" y1="97.558960" z1="775.093079" x2="786.788147" y2="105.558960" z2="777.593079" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3572775823" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1434665295" name="box_1434665295" shape="box" x1="837.743225" y1="114.546677" z1="541.421143" x2="840.003235" y2="137.606735" z2="543.611084" rotX="-0.000000" rotY="-2.801253" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1434665297" name="sphere_1434665297" shape="sphere" x1="837.104614" y1="111.873352" z1="544.111816" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1434665296" name="box_1434665296" shape="box" x1="834.163391" y1="114.546677" z1="542.695313" x2="836.423401" y2="137.606735" z2="544.885254" rotX="-0.000000" rotY="0.340339" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="478162569" name="box_478162569" shape="box" x1="869.113098" y1="97.452515" z1="709.662537" x2="871.613098" y2="105.452515" z2="712.162537" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1982548488" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="637108462" name="box_637108462" shape="box" x1="869.113098" y1="97.452515" z1="704.728455" x2="871.613098" y2="105.452515" z2="707.228455" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2122122444" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2042486289" name="sphere_2042486289" shape="sphere" x1="845.796936" y1="96.780594" z1="735.300415" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3090159656" name="sphere_3090159656" shape="sphere" x1="838.756836" y1="99.228699" z1="738.593079" radius="1.200000"> | |
<Property type="Interaction" id="2922032845" ProxyID="246435" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2111055638" name="box_2111055638" shape="box" x1="878.598083" y1="105.740677" z1="770.714172" x2="881.078064" y2="111.160690" z2="773.194153" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2111055640" name="box_2111055640" shape="box" x1="878.598083" y1="105.740677" z1="784.500305" x2="881.078064" y2="111.160690" z2="786.980286" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2111055641" name="sphere_2111055641" shape="sphere" x1="881.961243" y1="105.196045" z1="778.207581" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="575836486" name="box_575836486" shape="box" x1="854.968384" y1="97.454224" z1="794.577881" x2="857.468384" y2="105.454224" z2="797.077881" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3207679318" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="575836487" name="box_575836487" shape="box" x1="854.968384" y1="97.454224" z1="789.643799" x2="857.468384" y2="105.454224" z2="792.143799" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3207679317" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2321542804" name="sphere_2321542804" shape="sphere" x1="887.024475" y1="106.638428" z1="771.798889" radius="1.200000"> | |
<Property type="Interaction" id="2922032845" ProxyID="246434" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="1512693475" name="sphere_1512693475" shape="sphere" x1="852.780090" y1="83.253578" z1="837.082764" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="61333426" name="sphere_61333426" shape="sphere" x1="925.468201" y1="87.865341" z1="668.187073" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1393874135" name="box_1393874135" shape="box" x1="899.113098" y1="97.445496" z1="780.126526" x2="901.613098" y2="105.445496" z2="782.626526" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2858414394" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1393874136" name="box_1393874136" shape="box" x1="899.113098" y1="97.445496" z1="775.192444" x2="901.613098" y2="105.445496" z2="777.692444" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2858414395" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="947269504" name="sphere_947269503" shape="sphere" x1="760.931824" y1="111.528526" z1="1499.316650" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2623061455" name="Hossin.SO.9.Teleporter.1" shape="sphere" x1="765.364380" y1="112.760254" z1="1499.797363" radius="1.029999"> | |
<Property type="Interaction" id="3635091453" ProxyID="242634" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4228446206" name="sphere_4228446205" shape="sphere" x1="789.542603" y1="83.678421" z1="1364.989990" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1307296577" name="sphere_1307296577" shape="sphere" x1="882.924011" y1="91.074074" z1="1433.554932" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="80189660" name="sphere_80189659" shape="sphere" x1="954.831299" y1="95.484161" z1="1391.623047" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="182625162" name="box_182625162" shape="box" x1="927.419800" y1="88.546356" z1="1424.717407" x2="929.669800" y2="90.796356" z2="1426.967407" rotX="-0.000000" rotY="-2.373648" rotZ="0.000000" /> | |
<AreaDefinition id="182625163" name="box_182625163" shape="box" x1="923.960938" y1="89.589081" z1="1428.401245" x2="926.210938" y2="91.839081" z2="1430.651245" rotX="-0.000000" rotY="-2.373648" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2222903353" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="246539" ReqSetId="178" NextChainId="182625195" /> | |
</AreaDefinition> | |
<AreaDefinition id="919253958" name="box_919253957" shape="box" x1="987.503113" y1="76.258545" z1="1428.291626" x2="989.503113" y2="98.528564" z2="1430.291626" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2238913956" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2238913958" name="box_2238913957" shape="box" x1="982.757935" y1="76.258545" z1="1433.288330" x2="984.757935" y2="98.528564" z2="1435.288330" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2238913956" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565028133" name="box_1565028133" shape="box" x1="544.471863" y1="26.916016" z1="2142.021729" x2="546.731873" y2="49.976074" z2="2144.211670" rotX="-0.000000" rotY="-3.464478" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565028134" name="box_1565028134" shape="box" x1="540.866455" y1="26.916016" z1="2140.822021" x2="543.126465" y2="49.976074" z2="2143.011963" rotX="-0.000000" rotY="-0.322886" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565028135" name="sphere_1565028135" shape="sphere" x1="543.225769" y1="24.242689" z1="2143.285400" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3388512491" name="sphere_3388512491" shape="sphere" x1="555.000366" y1="20.992920" z1="2221.983643" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2058740055" name="sphere_2058740055" shape="sphere" x1="672.238708" y1="24.910400" z1="2497.659668" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3174157243" name="sphere_3174157243" shape="sphere" x1="747.224182" y1="25.617325" z1="2424.145264" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2743733775" name="sphere_2743733775" shape="sphere" x1="714.395020" y1="25.980722" z1="2444.981445" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="4067048736" name="sphere_4067048736" shape="sphere" x1="707.209778" y1="26.126953" z1="2555.553711" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="4267867427" name="box_4267867427" shape="box" x1="774.311890" y1="31.602404" z1="2325.814941" x2="777.001831" y2="37.982403" z2="2328.685059" rotX="-0.000000" rotY="2.007129" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4267867428" name="box_4267867428" shape="box" x1="789.282410" y1="31.589951" z1="2357.780273" x2="792.012390" y2="37.969955" z2="2360.580078" rotX="-0.000000" rotY="-1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4267867429" name="box_4267867429" shape="box" x1="786.798401" y1="38.316036" z1="2339.852051" x2="788.918396" y2="45.096043" z2="2342.052246" rotX="-0.000000" rotY="-0.349066" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4267867430" name="box_4267867430" shape="box" x1="776.426392" y1="38.316036" z1="2344.594238" x2="778.546387" y2="45.096043" z2="2346.794434" rotX="-0.000000" rotY="2.792527" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4267867431" name="sphere_4267867431" shape="sphere" x1="782.060425" y1="25.126762" z1="2344.580078" radius="32.000000" /> | |
<AreaDefinition id="2333879516" name="sphere_2333879516" shape="sphere" x1="799.577637" y1="27.387207" z1="2359.063965" radius="1.200000"> | |
<Property type="Interaction" id="3196215740" ProxyID="246712" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2981342491" name="sphere_2981342491" shape="sphere" x1="821.550476" y1="46.718506" z1="2442.002686" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="10349344" name="sphere_10349344" shape="sphere" x1="809.636108" y1="37.797119" z1="2434.218750" radius="1.200000"> | |
<Property type="Interaction" id="3196215740" ProxyID="246713" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1653667882" name="box_1653667882" shape="box" x1="798.776733" y1="28.532013" z1="2530.155029" x2="801.036743" y2="51.592072" z2="2532.344971" rotX="-0.000000" rotY="0.890118" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1653667883" name="box_1653667883" shape="box" x1="801.163208" y1="28.532013" z1="2527.198242" x2="803.423218" y2="51.592072" z2="2529.388184" rotX="-0.000000" rotY="4.031711" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1653667884" name="sphere_1653667884" shape="sphere" x1="800.270264" y1="25.858685" z1="2529.263916" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720284" name="box_67720284" shape="box" x1="548.441284" y1="14.968307" z1="2708.966309" x2="550.941284" y2="39.968307" z2="2711.466309" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720286" name="box_67720286" shape="box" x1="551.387817" y1="14.968307" z1="2711.912598" x2="553.887817" y2="39.968307" z2="2714.412598" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720304" name="box_67720304" shape="box" x1="553.941895" y1="15.059311" z1="2722.020020" x2="556.441895" y2="25.059311" z2="2724.520020" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720307" name="sphere_67720307" shape="sphere" x1="540.212280" y1="14.950729" z1="2738.236084" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720306" name="sphere_67720306" shape="sphere" x1="563.572510" y1="15.239853" z1="2767.500000" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720293" name="box_67720293" shape="box" x1="553.658691" y1="15.059311" z1="2819.840332" x2="556.158691" y2="25.059311" z2="2822.340332" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720300" name="box_67720300" shape="box" x1="548.055908" y1="15.106186" z1="2832.409180" x2="550.555908" y2="40.106186" z2="2834.909180" rotX="-0.000000" rotY="2.364921" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720301" name="box_67720301" shape="box" x1="551.152832" y1="15.106186" z1="2829.621094" x2="553.652832" y2="40.106186" z2="2832.121094" rotX="-0.000000" rotY="-0.776672" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720290" name="box_67720290" shape="box" x1="616.742920" y1="20.882238" z1="2773.720215" x2="618.992920" y2="41.382240" z2="2775.970215" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720291" name="box_67720291" shape="box" x1="616.799561" y1="20.882238" z1="2768.534180" x2="619.049561" y2="41.382240" z2="2770.784180" rotX="-0.000000" rotY="-1.579523" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="67720309" name="sphere_67720309" shape="sphere" x1="617.308105" y1="15.764816" z1="2772.275635" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1653667880" name="box_1653667880" shape="box" x1="736.693909" y1="28.532013" z1="2606.726318" x2="738.953918" y2="51.592072" z2="2608.916260" rotX="-0.000000" rotY="4.031711" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1653667881" name="sphere_1653667881" shape="sphere" x1="736.111572" y1="25.858685" z1="2608.493408" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1653667879" name="box_1653667879" shape="box" x1="734.307373" y1="28.532013" z1="2609.683105" x2="736.567383" y2="51.592072" z2="2611.873047" rotX="-0.000000" rotY="0.890118" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2462638341" name="box_2462638341" shape="box" x1="986.584595" y1="66.245514" z1="2705.533447" x2="988.934570" y2="91.125580" z2="2707.783447" rotX="-0.000000" rotY="1.003563" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2462638340" name="box_2462638340" shape="box" x1="990.838501" y1="66.245514" z1="2708.177490" x2="993.188477" y2="91.125580" z2="2710.427490" rotX="-0.000000" rotY="1.003563" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4171179177" name="box_4171179177" shape="box" x1="1021.360901" y1="96.514267" z1="2691.649902" x2="1023.710876" y2="166.274307" z2="2693.899902" rotX="-0.000000" rotY="-0.567233" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="112294001" name="box_112294000" shape="box" x1="1261.115479" y1="9.666479" z1="-3186.071533" x2="1263.595459" y2="20.666506" z2="-3183.591553" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1146804001" name="box_1146804000" shape="box" x1="1261.115479" y1="9.666479" z1="-3181.167480" x2="1263.595459" y2="20.666506" z2="-3178.687500" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="-2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3876976617" name="sphere_3876976617" shape="sphere" x1="1251.597412" y1="8.231182" z1="-3125.639893" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="659653720" name="box_659653719" shape="box" x1="1316.200317" y1="22.071234" z1="-3127.171143" x2="1318.680298" y2="27.491243" z2="-3124.691162" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="659653724" name="box_659653723" shape="box" x1="1316.200073" y1="22.071234" z1="-3113.384521" x2="1318.680054" y2="27.491243" z2="-3110.904541" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="659653726" name="sphere_659653725" shape="sphere" x1="1319.563354" y1="21.526600" z1="-3119.676758" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="1024571613" name="sphere_1024571613" shape="sphere" x1="1285.448364" y1="11.680402" z1="-3124.135742" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="4022751898" name="sphere_4022751897" shape="sphere" x1="1190.863159" y1="5.834856" z1="-3041.869141" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="223529621" name="sphere_223529621" shape="sphere" x1="1237.353882" y1="7.598686" z1="-3066.705811" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="1478955132" name="sphere_1478955132" shape="sphere" x1="1256.918457" y1="7.661095" z1="-3035.396973" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="2851944613" name="sphere_2851944612" shape="sphere" x1="1292.192871" y1="46.415260" z1="-2438.546631" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="2851944611" name="box_2851944610" shape="box" x1="1295.798584" y1="46.959892" z1="-2445.933594" x2="1298.278564" y2="52.379906" z2="-2443.453613" rotX="-0.000000" rotY="-1.963495" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2505656440" name="sphere_2505656440" shape="sphere" x1="1290.540894" y1="48.397575" z1="-2447.697754" radius="0.990000" /> | |
<AreaDefinition id="17953800" name="sphere_17953800" shape="sphere" x1="1340.017090" y1="56.946404" z1="-2394.566406" radius="0.990000" /> | |
<AreaDefinition id="17953801" name="sphere_17953801" shape="sphere" x1="1339.892578" y1="54.878746" z1="-2390.907715" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3198271405" name="sphere_3198271405" shape="sphere" x1="1319.021973" y1="46.979984" z1="-2429.608887" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="2851944607" name="box_2851944606" shape="box" x1="1290.522461" y1="46.959892" z1="-2433.195801" x2="1293.002441" y2="52.379906" z2="-2430.715820" rotX="-0.000000" rotY="1.178097" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3163927406" name="sphere_3163927405" shape="sphere" x1="1334.211670" y1="46.888706" z1="-2363.346191" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="485525833" name="sphere_485525832" shape="sphere" x1="1366.714966" y1="54.330540" z1="-2418.247559" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3222516141" name="sphere_3222516140" shape="sphere" x1="1399.548828" y1="61.258133" z1="-2347.197021" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="3016331671" name="box_3016331670" shape="box" x1="1438.997314" y1="65.623566" z1="-2367.319336" x2="1441.347412" y2="93.093597" z2="-2365.069336" rotX="-0.000000" rotY="0.287979" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3441601672" name="box_3441601671" shape="box" x1="1440.418701" y1="65.623566" z1="-2362.526367" x2="1442.768799" y2="93.093597" z2="-2360.276367" rotX="-0.000000" rotY="0.287979" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3834819700" name="sphere_3834819699" shape="sphere" x1="1069.961426" y1="15.454655" z1="-1706.617676" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="2199468773" name="sphere_2199468772" shape="sphere" x1="1073.626465" y1="12.722986" z1="-1644.827148" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2199468775" name="sphere_2199468774" shape="sphere" x1="1068.777954" y1="12.722986" z1="-1591.039551" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1546229154" name="sphere_1546229154" shape="sphere" x1="1029.084473" y1="15.871721" z1="-1594.256714" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1071261810" name="sphere_1071261809" shape="sphere" x1="1097.974365" y1="11.212508" z1="-1674.678589" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1419783081" name="box_1419783080" shape="box" x1="1127.348755" y1="5.708862" z1="-1676.537598" x2="1129.598755" y2="7.958862" z2="-1674.287598" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="1790700168" name="box_1790700167" shape="box" x1="1127.348755" y1="6.582521" z1="-1671.538574" x2="1129.598755" y2="8.832521" z2="-1669.288574" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1919333029" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="2776680914" /> | |
</AreaDefinition> | |
<AreaDefinition id="688787071" name="box_688787070" shape="box" x1="1181.546387" y1="8.502479" z1="-1721.072754" x2="1183.806396" y2="31.562534" z2="-1718.882813" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="688787073" name="box_688787072" shape="box" x1="1181.540283" y1="8.502479" z1="-1724.872437" x2="1183.800293" y2="31.562534" z2="-1722.682495" rotX="-0.000000" rotY="4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="688787075" name="sphere_688787074" shape="sphere" x1="1181.709106" y1="5.829148" z1="-1721.750000" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="688787065" name="box_688787064" shape="box" x1="1181.492920" y1="8.502479" z1="-1618.695923" x2="1183.752930" y2="31.562534" z2="-1616.505981" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="688787067" name="box_688787066" shape="box" x1="1181.486816" y1="8.502479" z1="-1622.495728" x2="1183.746826" y2="31.562534" z2="-1620.305786" rotX="-0.000000" rotY="4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="688787069" name="sphere_688787068" shape="sphere" x1="1181.709106" y1="5.829148" z1="-1619.800781" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2776680916" name="box_2776680915" shape="box" x1="1317.368652" y1="10.840822" z1="-1676.458130" x2="1319.618652" y2="13.090822" z2="-1674.208130" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1919333029" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="1419783081" /> | |
</AreaDefinition> | |
<AreaDefinition id="2776680914" name="box_2776680913" shape="box" x1="1317.567749" y1="9.968750" z1="-1671.415649" x2="1319.817749" y2="12.218750" z2="-1669.165649" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000" /> | |
<AreaDefinition id="414577645" name="box_414577644" shape="box" x1="1380.454956" y1="12.743896" z1="-1150.151855" x2="1382.954956" y2="42.743896" z2="-1147.651855" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2032340344" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1159587641" name="box_1159587640" shape="box" x1="1384.648926" y1="12.743896" z1="-1150.214966" x2="1387.148926" y2="42.743896" z2="-1147.714966" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2270520344" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4123415126" name="sphere_4123415126" shape="sphere" x1="1404.281860" y1="20.250000" z1="-1110.497803" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="1083137141" name="sphere_1083137140" shape="sphere" x1="1422.520996" y1="11.659411" z1="-1187.567993" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1083137137" name="box_1083137136" shape="box" x1="1423.357178" y1="14.332742" z1="-1189.121460" x2="1425.617188" y2="37.392799" z2="-1186.931519" rotX="-0.000000" rotY="-3.412119" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1083137139" name="box_1083137138" shape="box" x1="1419.694092" y1="14.332742" z1="-1190.130981" x2="1421.954102" y2="37.392799" z2="-1187.941040" rotX="-0.000000" rotY="-0.270526" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1083137131" name="box_1083137130" shape="box" x1="1521.996338" y1="14.332742" z1="-1161.710938" x2="1524.256348" y2="37.392799" z2="-1159.520996" rotX="-0.000000" rotY="-3.412119" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1083137133" name="box_1083137132" shape="box" x1="1518.333130" y1="14.332742" z1="-1162.720459" x2="1520.593140" y2="37.392799" z2="-1160.530518" rotX="-0.000000" rotY="-0.270526" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1083137135" name="sphere_1083137134" shape="sphere" x1="1520.762329" y1="11.659411" z1="-1160.323242" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1708754939" name="box_1708754938" shape="box" x1="1521.921753" y1="19.821289" z1="-1035.745972" x2="1524.421753" y2="30.821289" z2="-1033.245972" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1033219601" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2053394937" name="box_2053394936" shape="box" x1="1516.557251" y1="19.821289" z1="-1035.745972" x2="1519.057251" y2="30.821289" z2="-1033.245972" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2689360344" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2726785855" name="box_2726785854" shape="box" x1="1512.310425" y1="13.655640" z1="-1069.040039" x2="1514.810425" y2="20.655640" z2="-1066.540039" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2689360344" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2726785853" name="box_2726785852" shape="box" x1="1516.354858" y1="13.655640" z1="-1069.350220" x2="1518.854858" y2="20.655640" z2="-1066.850220" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2477990344" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1751778993" name="box_1751778992" shape="box" x1="1534.656372" y1="28.494141" z1="-1035.645264" x2="1537.156372" y2="45.494141" z2="-1033.145264" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2477990344" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2833723704" name="sphere_2833723704" shape="sphere" x1="1492.190552" y1="19.711304" z1="-1054.001831" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="681212214" name="sphere_681212213" shape="sphere" x1="1345.350464" y1="40.953728" z1="-1013.872070" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="4001461979" name="box_4001461978" shape="box" x1="1390.010498" y1="24.298069" z1="-932.154053" x2="1392.270508" y2="47.358128" z2="-929.964111" rotX="-0.000000" rotY="0.130900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4001461981" name="box_4001461980" shape="box" x1="1393.776978" y1="24.298069" z1="-932.656067" x2="1396.036987" y2="47.358128" z2="-930.466125" rotX="-0.000000" rotY="3.272492" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4001461983" name="sphere_4001461982" shape="sphere" x1="1393.202271" y1="21.624741" z1="-932.252197" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2221406985" name="box_2221406984" shape="box" x1="1518.730591" y1="43.185177" z1="-1000.345825" x2="1520.850708" y2="49.965183" z2="-998.145874" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2221406987" name="sphere_2221406986" shape="sphere" x1="1520.714355" y1="29.995903" z1="-1003.862061" radius="32.000000" /> | |
<AreaDefinition id="2221406979" name="box_2221406978" shape="box" x1="1500.957397" y1="36.471546" z1="-1006.817444" x2="1503.647339" y2="42.851543" z2="-1003.947449" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2221406983" name="box_2221406982" shape="box" x1="1518.816772" y1="43.185177" z1="-1011.750000" x2="1520.936890" y2="49.965183" z2="-1009.550049" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4001461985" name="box_4001461984" shape="box" x1="1491.518433" y1="24.298069" z1="-945.463867" x2="1493.778442" y2="47.358128" z2="-943.273926" rotX="-0.000000" rotY="0.130900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4001461987" name="box_4001461986" shape="box" x1="1495.284790" y1="24.298069" z1="-945.965881" x2="1497.544800" y2="47.358128" z2="-943.775940" rotX="-0.000000" rotY="3.272492" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4001461989" name="sphere_4001461988" shape="sphere" x1="1494.279297" y1="21.624741" z1="-945.559265" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1535595329" name="box_1535595329" shape="box" x1="1062.005249" y1="125.578506" z1="-365.324554" x2="1064.815308" y2="147.328506" z2="-362.654572" rotX="-0.000000" rotY="-1.274090" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654966" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1535595328" name="box_1535595328" shape="box" x1="1066.155884" y1="125.578506" z1="-366.593323" x2="1068.965942" y2="147.328506" z2="-363.923340" rotX="-0.000000" rotY="-1.274090" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654965" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206515" name="box_676206515" shape="box" x1="1081.645996" y1="195.145172" z1="-237.378830" x2="1083.895996" y2="197.395172" z2="-235.128830" rotX="-0.000000" rotY="2.661627" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3576020726" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="2675146150" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206533" name="box_676206533" shape="box" x1="1079.837769" y1="194.061554" z1="-233.130356" x2="1082.087769" y2="196.311554" z2="-230.880356" rotX="-0.000000" rotY="2.661627" rotZ="0.000000" /> | |
<AreaDefinition id="676206530" name="box_676206530" shape="box" x1="1075.648438" y1="202.436249" z1="-130.981369" x2="1078.148438" y2="210.936249" z2="-128.481369" rotX="-0.000000" rotY="0.305433" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3454977279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206532" name="box_676206532" shape="box" x1="1077.403198" y1="202.436249" z1="-125.415924" x2="1079.903198" y2="210.936249" z2="-122.915924" rotX="-0.000000" rotY="0.305433" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3454977279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206519" name="box_676206519" shape="box" x1="1093.953979" y1="126.053940" z1="-269.527618" x2="1097.923950" y2="192.933914" z2="-265.667633" rotX="-0.000000" rotY="1.876229" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206520" name="box_676206520" shape="box" x1="1098.613647" y1="126.053940" z1="-271.004456" x2="1102.583618" y2="192.933914" z2="-267.144470" rotX="-0.000000" rotY="1.876229" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206518" name="box_676206518" shape="box" x1="1089.377075" y1="126.053940" z1="-268.077362" x2="1093.347046" y2="192.933914" z2="-264.217377" rotX="-0.000000" rotY="1.876229" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206517" name="box_676206517" shape="box" x1="1123.698975" y1="195.145172" z1="-250.717880" x2="1125.948975" y2="197.395172" z2="-248.467880" rotX="-0.000000" rotY="2.661627" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3576020727" VelocityMult="2.00" JumpHeight="30.00" FacSpawnId="0" ReqSetId="0" NextChainId="3347916150" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206521" name="box_676206521" shape="box" x1="1127.530029" y1="194.055939" z1="-248.148010" x2="1129.780029" y2="196.305939" z2="-245.898010" rotX="-0.000000" rotY="2.661627" rotZ="0.000000" /> | |
<AreaDefinition id="3817183381" name="sphere_3817183380" shape="sphere" x1="1091.182007" y1="191.232758" z1="-195.240372" radius="1.060000"> | |
<Property type="Exclusive" id="21994016" /> | |
<Property type="Interaction" id="3660092698" ProxyID="246596" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817183385" name="sphere_3817183384" shape="sphere" x1="1129.164063" y1="192.342255" z1="-193.970474" radius="1.060000"> | |
<Property type="Interaction" id="493863514" ProxyID="246570" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817183373" name="dome_3817183372" shape="dome" x1="1135.053223" y1="189.356964" z1="-143.751663"> | |
<Property type="ObjectTerrainData" id="616736914" ObjectTerrainDataID="2001" /> | |
<Property type="ObjectTerrainData" id="3172377698" ObjectTerrainDataID="2001" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817183383" name="sphere_3817183382" shape="sphere" x1="1135.931885" y1="120.014038" z1="-145.196747" radius="150.000000"> | |
<Property type="Exclusive" id="21994016" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817183379" name="sphere_3817183378" shape="sphere" x1="1118.583252" y1="121.571350" z1="-151.730438" radius="1.060000"> | |
<Property type="Exclusive" id="21994016" /> | |
<Property type="Interaction" id="3660092698" ProxyID="246635" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206526" name="box_676206526" shape="box" x1="1094.199463" y1="202.436249" z1="-138.017349" x2="1096.699463" y2="210.936249" z2="-135.517349" rotX="-0.000000" rotY="1.876229" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3454977279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817183377" name="sphere_3817183376" shape="sphere" x1="1130.594604" y1="191.368134" z1="-135.106033" radius="1.060000"> | |
<Property type="Exclusive" id="21994016" /> | |
<Property type="Interaction" id="4092630810" ProxyID="246634" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206516" name="box_676206516" shape="box" x1="1096.641113" y1="202.436249" z1="-130.273071" x2="1099.141113" y2="210.936249" z2="-127.773071" rotX="-0.000000" rotY="5.017822" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3454977279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817183353" name="box_3817183352" shape="box" x1="1089.052124" y1="190.761368" z1="-164.602448" x2="1092.012085" y2="197.101364" z2="-161.672455" rotX="-0.000000" rotY="4.232423" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3689347279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206525" name="box_676206525" shape="box" x1="1143.959595" y1="195.145172" z1="-39.143059" x2="1146.209595" y2="197.395172" z2="-36.893059" rotX="-0.000000" rotY="2.661627" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3272310358" VelocityMult="2.50" JumpHeight="35.00" FacSpawnId="0" ReqSetId="0" NextChainId="236411401" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206531" name="box_676206531" shape="box" x1="1140.344971" y1="194.055939" z1="-41.486679" x2="1142.594971" y2="196.305939" z2="-39.236679" rotX="-0.000000" rotY="2.661627" rotZ="0.000000" /> | |
<AreaDefinition id="1535595313" name="box_1535595313" shape="box" x1="1207.521851" y1="125.578125" z1="-409.812195" x2="1210.331909" y2="147.328125" z2="-407.142212" rotX="-0.000000" rotY="-1.274090" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654966" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1535595312" name="box_1535595312" shape="box" x1="1211.674194" y1="125.578125" z1="-411.081177" x2="1214.484253" y2="147.328125" z2="-408.411194" rotX="-0.000000" rotY="-1.274090" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654965" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817183365" name="box_3817183364" shape="box" x1="1157.336670" y1="191.023514" z1="-183.451370" x2="1160.296631" y2="197.233505" z2="-180.521378" rotX="-0.000000" rotY="0.933751" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3454977279" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817183375" name="sphere_3817183374" shape="sphere" x1="1190.792969" y1="191.609955" z1="-115.648933" radius="1.060000"> | |
<Property type="Interaction" id="123283514" ProxyID="246559" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206523" name="box_676206523" shape="box" x1="1187.994141" y1="194.055939" z1="-56.467751" x2="1190.244141" y2="196.305939" z2="-54.217751" rotX="-0.000000" rotY="2.661627" rotZ="0.000000" /> | |
<AreaDefinition id="676206524" name="box_676206524" shape="box" x1="1186.001465" y1="195.145172" z1="-52.632492" x2="1188.251465" y2="197.395172" z2="-50.382492" rotX="-0.000000" rotY="2.661627" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3454398565" VelocityMult="2.00" JumpHeight="25.00" FacSpawnId="0" ReqSetId="0" NextChainId="3069786152" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206527" name="box_676206527" shape="box" x1="1176.710815" y1="126.053940" z1="-23.311686" x2="1180.680786" y2="192.933914" z2="-19.451681" rotX="-0.000000" rotY="5.017822" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206528" name="box_676206528" shape="box" x1="1172.051270" y1="126.053940" z1="-21.834833" x2="1176.021240" y2="192.933914" z2="-17.974829" rotX="-0.000000" rotY="5.017822" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="676206529" name="box_676206529" shape="box" x1="1167.474243" y1="126.053940" z1="-20.384638" x2="1171.444214" y2="192.933914" z2="-16.524633" rotX="-0.000000" rotY="5.017822" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3817183387" name="sphere_3817183386" shape="sphere" x1="1179.169678" y1="119.968025" z1="-7.269135" radius="40.000000" /> | |
<AreaDefinition id="2574485152" name="sphere_2574485152" shape="sphere" x1="1263.807373" y1="121.241486" z1="-290.893524" radius="1.060000"> | |
<Property type="Interaction" id="2835571257" ProxyID="246563" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3739876354" name="box_3739876354" shape="box" x1="1272.628296" y1="126.402786" z1="-246.089935" x2="1275.318237" y2="132.782791" z2="-243.219940" rotX="-0.000000" rotY="-2.844887" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1421424724" name="box_1421424724" shape="box" x1="1308.790771" y1="125.600143" z1="-358.112610" x2="1311.600830" y2="147.350143" z2="-355.442627" rotX="-0.000000" rotY="-2.059489" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654965" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1421424725" name="box_1421424725" shape="box" x1="1304.957764" y1="125.600143" z1="-360.150604" x2="1307.767822" y2="147.350143" z2="-357.480621" rotX="-0.000000" rotY="-2.059489" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654966" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3347916150" name="box_3347916150" shape="box" x1="1298.682251" y1="145.022995" z1="-350.287292" x2="1300.932251" y2="147.272995" z2="-348.037292" rotX="-0.000000" rotY="0.287979" rotZ="0.000000" /> | |
<AreaDefinition id="3347916155" name="box_3347916155" shape="box" x1="1296.334961" y1="146.273773" z1="-357.860016" x2="1298.584961" y2="148.523773" z2="-355.610016" rotX="-0.000000" rotY="-2.853613" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3722598697" VelocityMult="2.00" JumpHeight="30.00" FacSpawnId="0" ReqSetId="0" NextChainId="676206521" /> | |
</AreaDefinition> | |
<AreaDefinition id="3739876355" name="box_3739876355" shape="box" x1="1306.312622" y1="126.390335" z1="-256.455505" x2="1309.042603" y2="132.770340" z2="-253.655518" rotX="-0.000000" rotY="0.296706" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3739876356" name="box_3739876356" shape="box" x1="1288.179565" y1="133.116425" z1="-255.930618" x2="1290.299683" y2="139.896423" z2="-253.730606" rotX="-0.000000" rotY="1.082104" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3739876357" name="box_3739876357" shape="box" x1="1291.431396" y1="133.116425" z1="-244.999557" x2="1293.551514" y2="139.896423" z2="-242.799545" rotX="-0.000000" rotY="-2.059489" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3739876358" name="sphere_3739876358" shape="sphere" x1="1292.025269" y1="119.927147" z1="-248.584167" radius="32.000000" /> | |
<AreaDefinition id="431828840" name="sphere_431828840" shape="sphere" x1="1327.815552" y1="119.986984" z1="-146.037827" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="431828839" name="sphere_431828839" shape="sphere" x1="1338.442505" y1="119.986984" z1="-93.088615" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2145795025" name="sphere_2145795025" shape="sphere" x1="1303.505371" y1="121.474899" z1="-0.139275" radius="1.060000"> | |
<Property type="Interaction" id="2515712012" ProxyID="246558" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1421424709" name="box_1421424709" shape="box" x1="1352.189819" y1="125.586075" z1="-214.364441" x2="1354.999878" y2="147.336075" z2="-211.694427" rotX="-0.000000" rotY="-2.844887" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654966" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1421424708" name="box_1421424708" shape="box" x1="1353.458618" y1="125.586075" z1="-210.213058" x2="1356.268677" y2="147.336075" z2="-207.543045" rotX="-0.000000" rotY="-2.844887" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654965" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="968026059" name="box_968026059" shape="box" x1="1396.690063" y1="125.588242" z1="-68.844681" x2="1399.500122" y2="147.338242" z2="-66.174683" rotX="-0.000000" rotY="-2.844887" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654966" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="968026058" name="box_968026058" shape="box" x1="1397.959595" y1="125.588242" z1="-64.693184" x2="1400.769653" y2="147.338242" z2="-62.023186" rotX="-0.000000" rotY="-2.844887" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654965" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2723395507" name="box_2723395507" shape="box" x1="1265.764038" y1="133.110931" z1="17.464666" x2="1267.884155" y2="139.890930" z2="19.664667" rotX="-0.000000" rotY="3.447025" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2723395509" name="sphere_2723395509" shape="sphere" x1="1269.215454" y1="119.921654" z1="12.156887" radius="32.000000" /> | |
<AreaDefinition id="2723395506" name="box_2723395506" shape="box" x1="1252.150635" y1="126.384842" z1="4.401773" x2="1254.880615" y2="132.764847" z2="7.201775" rotX="-0.000000" rotY="2.661627" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2723395508" name="box_2723395508" shape="box" x1="1271.106445" y1="133.110931" z1="7.388834" x2="1273.226563" y2="139.890930" z2="9.588835" rotX="-0.000000" rotY="0.305433" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2723395505" name="box_2723395505" shape="box" x1="1283.500244" y1="126.397293" z1="20.572250" x2="1286.190186" y2="132.777298" z2="23.442253" rotX="-0.000000" rotY="-0.479966" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3069786152" name="box_3069786152" shape="box" x1="1334.197998" y1="145.497711" z1="29.413742" x2="1336.447998" y2="147.747711" z2="31.663742" rotX="-0.000000" rotY="-0.488692" rotZ="0.000000" /> | |
<AreaDefinition id="3172716150" name="box_3172716150" shape="box" x1="1337.906250" y1="146.266510" z1="22.356516" x2="1340.156250" y2="148.516510" z2="24.606516" rotX="-0.000000" rotY="2.652900" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2184518697" VelocityMult="2.00" JumpHeight="30.00" FacSpawnId="0" ReqSetId="0" NextChainId="676206523" /> | |
</AreaDefinition> | |
<AreaDefinition id="1635865147" name="box_1635865147" shape="box" x1="1345.045044" y1="125.589127" z1="27.006266" x2="1347.855103" y2="147.339127" z2="29.676268" rotX="-0.000000" rotY="-2.871067" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654966" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1635865146" name="box_1635865146" shape="box" x1="1346.205200" y1="125.589127" z1="31.189432" x2="1349.015259" y2="147.339127" z2="33.859432" rotX="-0.000000" rotY="-2.871067" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="338654965" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4156580259" name="box_4156580258" shape="box" x1="1078.246338" y1="120.706688" z1="1497.695435" x2="1080.726318" y2="126.126701" z2="1500.175415" rotX="-0.000000" rotY="-1.919862" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4156580261" name="sphere_4156580260" shape="sphere" x1="1074.914673" y1="120.162056" z1="1505.287842" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="4156580255" name="box_4156580254" shape="box" x1="1073.531128" y1="120.706688" z1="1510.650146" x2="1076.011108" y2="126.126701" z2="1513.130127" rotX="-0.000000" rotY="1.221730" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3872901455" name="Hossin.SO.9.Teleporter.2" shape="sphere" x1="1078.049194" y1="121.837891" z1="1505.723267" radius="0.900000"> | |
<Property type="Interaction" id="60744157" ProxyID="242635" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="691671992" name="box_691671991" shape="box" x1="1522.539795" y1="8.236172" z1="1826.460938" x2="1525.019775" y2="13.656181" z2="1828.940918" rotX="-0.000000" rotY="-1.160644" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="691671994" name="sphere_691671993" shape="sphere" x1="1524.836670" y1="7.691538" z1="1835.455811" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="691671988" name="box_691671987" shape="box" x1="1528.036621" y1="8.236172" z1="1839.104126" x2="1530.516602" y2="13.656181" z2="1841.584106" rotX="-0.000000" rotY="1.980949" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3405738058" name="box_3405738058" shape="box" x1="1084.661133" y1="152.419479" z1="2723.085938" x2="1087.011230" y2="158.559525" z2="2725.335938" rotX="-0.000000" rotY="2.260200" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4171179178" name="box_4171179178" shape="box" x1="1024.005493" y1="96.514267" z1="2687.395508" x2="1026.355591" y2="166.274307" z2="2689.645508" rotX="-0.000000" rotY="-0.567233" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3727317167" name="box_3727317167" shape="box" x1="1029.544312" y1="155.880524" z1="2881.738525" x2="1032.024292" y2="161.300537" z2="2884.218506" rotX="-0.000000" rotY="-1.029744" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3727317170" name="sphere_3727317170" shape="sphere" x1="1035.824951" y1="155.335892" z1="2887.245361" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3727317169" name="box_3727317169" shape="box" x1="1036.644775" y1="155.880524" z1="2893.555664" x2="1039.124756" y2="161.300537" z2="2896.035645" rotX="-0.000000" rotY="2.111848" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3690813941" name="sphere_3690813941" shape="sphere" x1="1099.318604" y1="158.447906" z1="2694.285156" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2538593672" name="sphere_2538593672" shape="sphere" x1="1107.168213" y1="151.073975" z1="2732.773438" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="3405738057" name="box_3405738057" shape="box" x1="1087.714355" y1="152.419479" z1="2720.538574" x2="1090.064453" y2="158.559525" z2="2722.788574" rotX="-0.000000" rotY="2.260200" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3580112878" name="sphere_3580112878" shape="sphere" x1="1148.563721" y1="150.467133" z1="2757.532227" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1560877545" name="box_1560877545" shape="box" x1="1113.365723" y1="97.032776" z1="2805.815430" x2="1115.715820" y2="158.152771" z2="2808.065430" rotX="-0.000000" rotY="0.680677" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1560877544" name="box_1560877544" shape="box" x1="1110.170166" y1="97.032776" z1="2801.958984" x2="1112.520264" y2="158.152771" z2="2804.208984" rotX="-0.000000" rotY="0.680677" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="471131020" name="sphere_471131020" shape="sphere" x1="1748.572266" y1="15.733126" z1="-3220.050293" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="471131018" name="box_471131018" shape="box" x1="1749.540039" y1="20.850548" z1="-3222.768066" x2="1751.790039" y2="41.350548" z2="-3220.518066" rotX="-0.000000" rotY="-2.713987" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="471131019" name="box_471131019" shape="box" x1="1744.816162" y1="20.850548" z1="-3220.628418" x2="1747.066162" y2="41.350548" z2="-3218.378418" rotX="-0.000000" rotY="0.427606" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="793717167" name="sphere_793717167" shape="sphere" x1="1754.653931" y1="25.936035" z1="-3206.627686" radius="1.000000"> | |
<Property type="Interaction" id="4185270233" ProxyID="243540" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3372939875" name="box_3372939875" shape="box" x1="1752.878296" y1="41.165596" z1="-3209.383545" x2="1755.128296" y2="43.415596" z2="-3207.133545" rotX="-0.000000" rotY="-1.387537" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1353086463" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="3605503055" /> | |
</AreaDefinition> | |
<AreaDefinition id="3372939870" name="box_3372939870" shape="box" x1="1744.050781" y1="40.184906" z1="-3208.692871" x2="1746.300781" y2="42.434906" z2="-3206.442871" rotX="-0.000000" rotY="-0.349066" rotZ="0.000000" /> | |
<AreaDefinition id="471130987" name="box_471130987" shape="box" x1="1794.492676" y1="20.894096" z1="-3305.504395" x2="1796.742676" y2="41.394096" z2="-3303.254395" rotX="-0.000000" rotY="1.256637" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="471130988" name="sphere_471130988" shape="sphere" x1="1796.990479" y1="15.776672" z1="-3306.687500" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="471130986" name="box_471130986" shape="box" x1="1796.105225" y1="20.894096" z1="-3310.433105" x2="1798.355225" y2="41.394096" z2="-3308.183105" rotX="-0.000000" rotY="-1.884956" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3102495864" name="sphere_3102495864" shape="sphere" x1="1810.997070" y1="26.021973" z1="-3302.129395" radius="1.000000"> | |
<Property type="Interaction" id="702369820" ProxyID="243538" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567888" name="sphere_1088567887" shape="sphere" x1="2047.346069" y1="14.930534" z1="-3121.837158" radius="260.000000"> | |
<Property type="Exclusive" id="3617884019" /> | |
</AreaDefinition> | |
<AreaDefinition id="670140885" name="box_670140885" shape="box" x1="1789.711670" y1="18.797180" z1="-2899.028564" x2="1791.961670" y2="39.297180" z2="-2896.778564" rotX="-0.000000" rotY="-0.855211" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="670140886" name="box_670140886" shape="box" x1="1793.105591" y1="18.797180" z1="-2895.106934" x2="1795.355591" y2="39.297180" z2="-2892.856934" rotX="-0.000000" rotY="2.286381" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="670140887" name="sphere_670140887" shape="sphere" x1="1792.958618" y1="13.679758" z1="-2896.349365" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3605503055" name="box_3605503055" shape="box" x1="1801.605469" y1="38.172348" z1="-2905.896973" x2="1803.855469" y2="40.422348" z2="-2903.646973" rotX="-0.000000" rotY="0.706858" rotZ="0.000000" /> | |
<AreaDefinition id="3605503060" name="box_3605503060" shape="box" x1="1794.049805" y1="39.100052" z1="-2910.589600" x2="1796.299805" y2="41.350052" z2="-2908.339600" rotX="-0.000000" rotY="1.754056" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2694840625" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="3372939870" /> | |
</AreaDefinition> | |
<AreaDefinition id="3605503063" name="box_3605503063" shape="box" x1="1805.277588" y1="39.086937" z1="-2897.794922" x2="1807.527588" y2="41.336937" z2="-2895.544922" rotX="-0.000000" rotY="-0.401426" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2258607006" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="3723834890" /> | |
</AreaDefinition> | |
<AreaDefinition id="1876346570" name="sphere_1876346570" shape="sphere" x1="1909.620117" y1="19.135010" z1="-3011.915771" radius="1.000000"> | |
<Property type="Interaction" id="2569618684" ProxyID="243539" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567872" name="sphere_1088567871" shape="sphere" x1="1889.524292" y1="14.930534" z1="-2969.667969" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567862" name="box_1088567861" shape="box" x1="1910.801025" y1="27.986563" z1="-3005.450195" x2="1913.871094" y2="39.326561" z2="-3002.410156" rotX="-0.000000" rotY="-0.794125" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567880" name="sphere_1088567879" shape="sphere" x1="1891.936890" y1="14.930534" z1="-3005.801758" radius="24.199999"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567860" name="box_1088567859" shape="box" x1="1914.366089" y1="27.986561" z1="-3008.953613" x2="1917.436157" y2="39.326565" z2="-3005.913574" rotX="-0.000000" rotY="-0.794125" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567882" name="sphere_1088567881" shape="sphere" x1="1935.282227" y1="14.930534" z1="-3013.122803" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="409274192" name="sphere_409274192" shape="sphere" x1="1920.132324" y1="19.135010" z1="-3022.247314" radius="1.000000"> | |
<Property type="Interaction" id="2594320945" ProxyID="243537" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567874" name="sphere_1088567873" shape="sphere" x1="1927.662842" y1="14.930534" z1="-2949.861816" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567878" name="sphere_1088567877" shape="sphere" x1="1926.731689" y1="14.930534" z1="-2983.055420" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567858" name="box_1088567857" shape="box" x1="1924.896851" y1="27.986563" z1="-2991.106201" x2="1927.966919" y2="39.326561" z2="-2988.066162" rotX="-0.000000" rotY="-3.935717" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567856" name="box_1088567855" shape="box" x1="1928.461914" y1="27.986563" z1="-2994.609619" x2="1931.531982" y2="39.326561" z2="-2991.569580" rotX="-0.000000" rotY="-3.935717" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567864" name="box_1088567863" shape="box" x1="1931.935669" y1="17.579227" z1="-2999.720215" x2="1934.025757" y2="28.199230" z2="-2997.610352" rotX="-0.000000" rotY="0.253073" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1977108802" name="sphere_1977108802" shape="sphere" x1="1934.215210" y1="19.135010" z1="-2986.852051" radius="1.000000"> | |
<Property type="Interaction" id="1188154078" ProxyID="243535" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2859967079" name="sphere_2859967079" shape="sphere" x1="1944.750732" y1="19.135010" z1="-2997.197266" radius="1.000000"> | |
<Property type="Interaction" id="551831032" ProxyID="243531" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="365252263" name="sphere_365252262" shape="sphere" x1="1582.870239" y1="30.009686" z1="-1122.657104" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="892744938" name="box_892744937" shape="box" x1="1569.701050" y1="19.877808" z1="-1085.688721" x2="1572.201050" y2="34.877808" z2="-1083.188721" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3182520344" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1708754937" name="box_1708754936" shape="box" x1="1565.136230" y1="19.877808" z1="-1085.486328" x2="1567.636230" y2="34.877808" z2="-1082.986328" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2999040344" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1751778991" name="box_1751778990" shape="box" x1="1540.020874" y1="28.494141" z1="-1035.645142" x2="1542.520874" y2="45.494141" z2="-1033.145142" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2689360344" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3361657042" name="sphere_3361657042" shape="sphere" x1="1555.654297" y1="21.240540" z1="-1042.927979" radius="1.200000"> | |
<Property type="Interaction" id="3003792047" ProxyID="24672" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589665" name="box_1293589665" shape="box" x1="1957.444092" y1="18.521641" z1="-1097.340820" x2="1959.704102" y2="41.581696" z2="-1095.150879" rotX="-0.000000" rotY="-1.544616" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589666" name="box_1293589666" shape="box" x1="1957.549561" y1="18.521641" z1="-1093.542480" x2="1959.809570" y2="41.581696" z2="-1091.352539" rotX="-0.000000" rotY="1.596976" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589667" name="sphere_1293589667" shape="sphere" x1="1959.545166" y1="15.848310" z1="-1094.070679" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2221406981" name="box_2221406980" shape="box" x1="1536.209717" y1="36.459091" z1="-1006.874390" x2="1538.939697" y2="42.839096" z2="-1004.074341" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2298110698" name="sphere_2298110698" shape="sphere" x1="1541.650757" y1="32.132385" z1="-1013.664734" radius="1.200000"> | |
<Property type="Interaction" id="3364748139" ProxyID="24671" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589669" name="box_1293589669" shape="box" x1="1960.176025" y1="18.521641" z1="-991.199463" x2="1962.436035" y2="41.581696" z2="-989.009521" rotX="-0.000000" rotY="1.596976" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589670" name="sphere_1293589670" shape="sphere" x1="1962.213867" y1="15.848310" z1="-992.156433" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589668" name="box_1293589668" shape="box" x1="1960.070557" y1="18.521641" z1="-994.997681" x2="1962.330566" y2="41.581696" z2="-992.807739" rotX="-0.000000" rotY="-1.544616" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="314578355" name="sphere_314578355" shape="sphere" x1="2021.577148" y1="15.049561" z1="-990.767578" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="348533239" name="box_348533238" shape="box" x1="2043.842529" y1="23.456360" z1="967.655518" x2="2046.842529" y2="26.456360" z2="970.655518" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="805298433" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="1031091010" /> | |
</AreaDefinition> | |
<AreaDefinition id="3693985591" name="box_3693985590" shape="box" x1="1956.120117" y1="125.062866" z1="1136.697388" x2="1959.120117" y2="128.062866" z2="1139.697388" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1768818882" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="178" /> | |
</AreaDefinition> | |
<AreaDefinition id="3693985593" name="box_3693985592" shape="box" x1="1951.075684" y1="125.062866" z1="1136.768433" x2="1954.075684" y2="128.062866" z2="1139.768433" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3819693369" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="3544765879" /> | |
</AreaDefinition> | |
<AreaDefinition id="2547480953" name="box_2547480952" shape="box" x1="1954.567871" y1="48.065430" z1="1189.610962" x2="1957.567871" y2="51.065430" z2="1192.610962" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3098548895" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="1768818882" /> | |
</AreaDefinition> | |
<AreaDefinition id="3401636359" name="box_3401636358" shape="box" x1="1949.523438" y1="48.065430" z1="1189.682007" x2="1952.523438" y2="51.065430" z2="1192.682007" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3544765879" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="885793208" name="sphere_885793207" shape="sphere" x1="1986.286743" y1="122.541786" z1="1132.509277" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="4231239313" name="box_4231239312" shape="box" x1="2045.058350" y1="136.975830" z1="1137.320068" x2="2048.058350" y2="139.975830" z2="1140.320068" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1031091010" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="466991322" name="sphere_466991321" shape="sphere" x1="2017.806641" y1="125.663666" z1="1196.328735" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="606695293" name="sphere_606695292" shape="sphere" x1="2013.091553" y1="126.951782" z1="1161.727417" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="3010723634" name="sphere_3010723633" shape="sphere" x1="2037.192627" y1="130.519592" z1="1233.187744" radius="29.799995"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3626255102" name="sphere_3626255101" shape="sphere" x1="2000.241455" y1="128.032135" z1="1254.033203" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1298814491" name="sphere_1298814490" shape="sphere" x1="2034.622803" y1="131.870087" z1="1283.456909" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="175162217" name="sphere_175162216" shape="sphere" x1="2019.579834" y1="126.782249" z1="1340.901611" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="175162215" name="sphere_175162214" shape="sphere" x1="2019.583618" y1="128.849899" z1="1344.562378" radius="0.990000"> | |
<Property type="Interaction" id="457612670" ProxyID="242730" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1446982721" name="sphere_1446982720" shape="sphere" x1="1576.812988" y1="11.778790" z1="1669.099731" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3549450603" name="box_3549450602" shape="box" x1="1554.373901" y1="12.366459" z1="1695.475830" x2="1556.853882" y2="24.116470" z2="1697.955811" rotX="-0.000000" rotY="-0.209440" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3549450605" name="box_3549450604" shape="box" x1="1553.776245" y1="12.366459" z1="1698.699707" x2="1556.256226" y2="24.116470" z2="1701.179688" rotX="-0.000000" rotY="-0.209440" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2688980603" name="box_2688980602" shape="box" x1="1540.911255" y1="12.454584" z1="1762.770874" x2="1543.391235" y2="24.204596" z2="1765.250854" rotX="-0.000000" rotY="-0.209440" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3432710603" name="box_3432710602" shape="box" x1="1540.277344" y1="12.454584" z1="1765.630005" x2="1542.757324" y2="24.204596" z2="1768.109985" rotX="-0.000000" rotY="-0.209440" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1135661983" name="box_1135661983" shape="box" x1="1561.316284" y1="11.165587" z1="1772.429077" x2="1563.666382" y2="27.485626" z2="1774.679077" rotX="-0.000000" rotY="-1.771509" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1135661984" name="box_1135661984" shape="box" x1="1558.760742" y1="11.165587" z1="1771.908936" x2="1561.110840" y2="27.485626" z2="1774.158936" rotX="-0.000000" rotY="-1.771509" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1328701273" name="box_1328701273" shape="box" x1="1640.168457" y1="10.620727" z1="1637.605347" x2="1642.518555" y2="26.940765" z2="1639.855347" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1328701274" name="box_1328701274" shape="box" x1="1638.324219" y1="10.620727" z1="1639.449585" x2="1640.674316" y2="26.940765" z2="1641.699585" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1328701285" name="box_1328701285" shape="box" x1="1634.923340" y1="10.892365" z1="1655.745605" x2="1637.273438" y2="27.212406" z2="1657.995605" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1328701286" name="box_1328701286" shape="box" x1="1634.923340" y1="10.892365" z1="1658.353638" x2="1637.273438" y2="27.212406" z2="1660.603638" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3405210736" name="sphere_3405210735" shape="sphere" x1="1659.264160" y1="13.414240" z1="1690.728149" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="4079092693" name="sphere_4079092693" shape="sphere" x1="1632.515259" y1="13.011764" z1="1679.524658" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="1446982742" name="sphere_1446982741" shape="sphere" x1="1657.388062" y1="13.580122" z1="1741.144165" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1446982763" name="sphere_1446982762" shape="sphere" x1="1659.924683" y1="5.051248" z1="1778.111328" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1446982784" name="sphere_1446982783" shape="sphere" x1="1659.962891" y1="5.043167" z1="1808.591675" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3557019382" name="box_3557019382" shape="box" x1="1615.272095" y1="9.818547" z1="1956.072632" x2="1617.752075" y2="15.238557" z2="1958.552612" rotX="-0.000000" rotY="2.382375" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3557019385" name="sphere_3557019385" shape="sphere" x1="1610.514893" y1="9.273913" z1="1954.548096" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3557019384" name="box_3557019384" shape="box" x1="1605.272095" y1="9.818547" z1="1946.583130" x2="1607.752075" y2="15.238557" z2="1949.063110" rotX="-0.000000" rotY="-0.759218" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4022904579" name="sphere_4022904579" shape="sphere" x1="1672.895874" y1="4.994907" z1="1745.248291" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1623709110" name="box_1623709110" shape="box" x1="1760.955078" y1="17.920769" z1="2884.092041" x2="1763.205078" y2="38.420769" z2="2886.342041" rotX="-0.000000" rotY="-1.701696" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1623709111" name="box_1623709111" shape="box" x1="1760.266724" y1="17.920769" z1="2889.232422" x2="1762.516724" y2="38.420769" z2="2891.482422" rotX="-0.000000" rotY="1.439897" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1623709112" name="sphere_1623709112" shape="sphere" x1="1762.322144" y1="12.803349" z1="2887.835449" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3850106803" name="sphere_3850106803" shape="sphere" x1="1776.949463" y1="23.022461" z1="2889.782715" radius="1.000000"> | |
<Property type="Interaction" id="1633525167" ProxyID="243612" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1623709142" name="box_1623709142" shape="box" x1="1741.997681" y1="17.918255" z1="2976.003906" x2="1744.247681" y2="38.418255" z2="2978.253906" rotX="-0.000000" rotY="-1.858776" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1623709143" name="box_1623709143" shape="box" x1="1740.514282" y1="17.918255" z1="2980.973633" x2="1742.764282" y2="38.418255" z2="2983.223633" rotX="-0.000000" rotY="1.282817" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1623709144" name="sphere_1623709144" shape="sphere" x1="1742.952515" y1="12.800832" z1="2979.753906" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2933005102" name="sphere_2933005102" shape="sphere" x1="1757.107788" y1="23.038086" z1="2983.973145" radius="1.000000"> | |
<Property type="Interaction" id="1633525167" ProxyID="243610" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319461" name="sphere_389319460" shape="sphere" x1="1913.345947" y1="12.005138" z1="2854.105469" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319465" name="sphere_389319464" shape="sphere" x1="1944.946533" y1="12.005138" z1="2864.307861" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319447" name="box_389319446" shape="box" x1="1970.006592" y1="25.061165" z1="2860.716064" x2="1973.076660" y2="36.401169" z2="2863.756104" rotX="-0.000000" rotY="3.577925" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319449" name="box_389319448" shape="box" x1="1967.894287" y1="25.061169" z1="2856.186035" x2="1970.964355" y2="36.401169" z2="2859.226074" rotX="-0.000000" rotY="3.577925" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319467" name="sphere_389319466" shape="sphere" x1="1978.002930" y1="12.005138" z1="2839.101807" radius="24.199999"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319445" name="box_389319444" shape="box" x1="1949.667725" y1="25.061169" z1="2864.685303" x2="1952.737793" y2="36.401169" z2="2867.725342" rotX="-0.000000" rotY="0.436332" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319459" name="sphere_389319458" shape="sphere" x1="1944.746948" y1="12.005138" z1="2824.765869" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319443" name="box_389319442" shape="box" x1="1951.780151" y1="25.061169" z1="2869.215332" x2="1954.850220" y2="36.401169" z2="2872.255371" rotX="-0.000000" rotY="0.436332" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319451" name="box_389319450" shape="box" x1="1956.529907" y1="14.653831" z1="2874.354248" x2="1958.619995" y2="25.273834" z2="2876.464111" rotX="-0.000000" rotY="4.625123" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="471256794" name="sphere_471256794" shape="sphere" x1="1939.558594" y1="16.259277" z1="2859.063965" radius="1.000000"> | |
<Property type="Interaction" id="1252023494" ProxyID="243611" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="146034275" name="sphere_146034275" shape="sphere" x1="1971.515015" y1="16.259277" z1="2844.200195" radius="1.000000"> | |
<Property type="Interaction" id="4210591479" ProxyID="243614" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3321129596" name="sphere_3321129596" shape="sphere" x1="1977.801880" y1="16.259277" z1="2857.585449" radius="1.000000"> | |
<Property type="Interaction" id="2614924086" ProxyID="243616" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="471256795" name="sphere_471256795" shape="sphere" x1="1945.912476" y1="16.210449" z1="2872.437988" radius="1.000000"> | |
<Property type="Interaction" id="1633525167" ProxyID="243608" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319469" name="sphere_389319468" shape="sphere" x1="1970.435059" y1="12.005138" z1="2882.404541" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319475" name="sphere_389319474" shape="sphere" x1="2035.505981" y1="12.005138" z1="3024.330322" radius="260.000000"> | |
<Property type="Exclusive" id="3617884019" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319457" name="sphere_389319456" shape="sphere" x1="2007.771851" y1="12.005138" z1="3184.719238" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319453" name="sphere_389319452" shape="sphere" x1="2026.081421" y1="12.005138" z1="3210.764648" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567876" name="sphere_1088567875" shape="sphere" x1="2064.078125" y1="14.930534" z1="-3292.520020" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567868" name="sphere_1088567867" shape="sphere" x1="2090.520264" y1="14.930534" z1="-3314.302490" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567884" name="sphere_1088567883" shape="sphere" x1="2122.923340" y1="14.930534" z1="-3276.638672" radius="44.279987"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567886" name="sphere_1088567885" shape="sphere" x1="2195.099365" y1="14.930534" z1="-3203.192139" radius="36.019993"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567870" name="sphere_1088567869" shape="sphere" x1="2207.793213" y1="14.930534" z1="-3149.232666" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="1088567866" name="sphere_1088567865" shape="sphere" x1="2226.232910" y1="14.930534" z1="-3175.186279" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="989722841" name="box_989722841" shape="box" x1="2095.732910" y1="24.378181" z1="-2781.366699" x2="2097.982910" y2="44.878181" z2="-2779.116699" rotX="-0.000000" rotY="-3.054326" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="989722842" name="sphere_989722842" shape="sphere" x1="2094.195557" y1="19.260761" z1="-2780.604004" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="989722840" name="box_989722840" shape="box" x1="2090.565674" y1="24.378181" z1="-2780.925293" x2="2092.815674" y2="44.878181" z2="-2778.675293" rotX="-0.000000" rotY="0.087266" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1821569942" name="sphere_1821569942" shape="sphere" x1="2092.948730" y1="29.450195" z1="-2795.276123" radius="1.000000"> | |
<Property type="Interaction" id="851892613" ProxyID="243536" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3723834885" name="box_3723834885" shape="box" x1="2084.305176" y1="44.676922" z1="-2791.159912" x2="2086.555176" y2="46.926922" z2="-2788.909912" rotX="-0.000000" rotY="2.740167" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="297700935" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="3605503055" /> | |
</AreaDefinition> | |
<AreaDefinition id="3723834890" name="box_3723834890" shape="box" x1="2081.298096" y1="43.720737" z1="-2782.382568" x2="2083.548096" y2="45.970737" z2="-2780.132568" rotX="-0.000000" rotY="0.078540" rotZ="0.000000" /> | |
<AreaDefinition id="1449888853" name="box_1449888853" shape="box" x1="2183.386475" y1="34.658154" z1="-2776.287354" x2="2185.636475" y2="55.158154" z2="-2774.037354" rotX="-0.000000" rotY="3.089233" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1449888852" name="box_1449888852" shape="box" x1="2178.207031" y1="34.658154" z1="-2776.570068" x2="2180.457031" y2="55.158154" z2="-2774.320068" rotX="-0.000000" rotY="-0.052360" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1449888854" name="sphere_1449888854" shape="sphere" x1="2181.924316" y1="29.540730" z1="-2775.892578" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2794237199" name="sphere_2794237199" shape="sphere" x1="2182.757568" y1="39.713867" z1="-2790.605713" radius="1.000000"> | |
<Property type="Interaction" id="2865557486" ProxyID="243532" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2315419250" name="box_2315419249" shape="box" x1="2086.556152" y1="65.950882" z1="-2255.927246" x2="2089.036133" y2="71.370895" z2="-2253.447266" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2315419252" name="sphere_2315419251" shape="sphere" x1="2085.672607" y1="65.406250" z1="-2247.154541" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="2315419246" name="box_2315419245" shape="box" x1="2086.556152" y1="65.950882" z1="-2242.141113" x2="2089.036133" y2="71.370895" z2="-2239.661133" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3710384558" name="sphere_3710384557" shape="sphere" x1="2138.697510" y1="77.017097" z1="-2229.535156" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3710384556" name="sphere_3710384555" shape="sphere" x1="2133.378906" y1="77.017097" z1="-2175.792480" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1068146662" name="sphere_1068146661" shape="sphere" x1="2213.137451" y1="90.858978" z1="-2315.768799" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1068146681" name="sphere_1068146680" shape="sphere" x1="2188.071289" y1="91.663307" z1="-2206.211426" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575951212" name="box_1575951212" shape="box" x1="2148.915039" y1="23.984480" z1="-1806.705078" x2="2151.645020" y2="30.364485" z2="-1803.905029" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575951213" name="box_1575951213" shape="box" x1="2154.395752" y1="30.710569" z1="-1824.103027" x2="2156.515869" y2="37.490574" z2="-1821.903076" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575951214" name="box_1575951214" shape="box" x1="2142.991455" y1="30.710569" z1="-1824.189209" x2="2145.111572" y2="37.490574" z2="-1821.989258" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575951215" name="sphere_1575951215" shape="sphere" x1="2148.667725" y1="17.521294" z1="-1822.165405" radius="32.000000" /> | |
<AreaDefinition id="1575951211" name="box_1575951211" shape="box" x1="2148.843262" y1="23.996937" z1="-1842.012573" x2="2151.533203" y2="30.376938" z2="-1839.142456" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="109522321" name="box_109522321" shape="box" x1="2188.281494" y1="21.174927" z1="-1921.407837" x2="2190.541260" y2="44.234985" z2="-1919.217896" rotX="-0.000000" rotY="-3.106686" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="109522322" name="box_109522322" shape="box" x1="2184.484375" y1="21.174927" z1="-1921.269165" x2="2186.744141" y2="44.234985" z2="-1919.079224" rotX="-0.000000" rotY="0.034907" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3409129946" name="sphere_3409129946" shape="sphere" x1="2187.664551" y1="18.288574" z1="-1907.882568" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="109522323" name="sphere_109522323" shape="sphere" x1="2187.674072" y1="18.501598" z1="-1919.284302" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796869" name="sphere_27796868" shape="sphere" x1="2228.434082" y1="16.232529" z1="-1549.292603" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="109522319" name="box_109522319" shape="box" x1="2286.800537" y1="21.174927" z1="-1924.788574" x2="2289.060303" y2="44.234985" z2="-1922.598633" rotX="-0.000000" rotY="0.034907" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="109522318" name="box_109522318" shape="box" x1="2290.597900" y1="21.174927" z1="-1924.927368" x2="2292.857666" y2="44.234985" z2="-1922.737427" rotX="-0.000000" rotY="-3.106686" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="109522320" name="sphere_109522320" shape="sphere" x1="2289.561035" y1="18.501598" z1="-1922.842285" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2545148990" name="sphere_2545148990" shape="sphere" x1="2290.775146" y1="17.009331" z1="-1857.164917" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3576846608" name="sphere_3576846608" shape="sphere" x1="2268.616455" y1="21.774815" z1="-1798.174927" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3409129978" name="sphere_3409129978" shape="sphere" x1="2251.399170" y1="22.304659" z1="-1797.499146" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661410" name="box_2124661410" shape="box" x1="2264.502197" y1="41.102242" z1="-1614.210205" x2="2266.752197" y2="43.352242" z2="-1611.960205" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661419" name="box_2124661419" shape="box" x1="2257.365234" y1="42.390999" z1="-1610.799072" x2="2259.615234" y2="44.640999" z2="-1608.549072" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796801" name="box_27796800" shape="box" x1="2262.677734" y1="19.726147" z1="-1623.421631" x2="2265.517578" y2="42.726177" z2="-1620.561523" rotX="-0.000000" rotY="-2.731440" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796803" name="box_27796802" shape="box" x1="2258.983643" y1="19.726147" z1="-1621.815186" x2="2261.823486" y2="42.726177" z2="-1618.955078" rotX="-0.000000" rotY="-2.731440" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796875" name="sphere_27796874" shape="sphere" x1="2263.498779" y1="16.057526" z1="-1619.449463" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796871" name="sphere_27796870" shape="sphere" x1="2267.921875" y1="16.057526" z1="-1578.412109" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661405" name="box_2124661405" shape="box" x1="2342.675293" y1="41.102242" z1="-1628.924194" x2="2344.925293" y2="43.352242" z2="-1626.674194" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661437" name="box_2124661437" shape="box" x1="2350.728760" y1="42.390999" z1="-1630.241455" x2="2352.978760" y2="44.640999" z2="-1627.991455" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796873" name="sphere_27796872" shape="sphere" x1="2352.223145" y1="16.057526" z1="-1630.904907" radius="50.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796789" name="box_27796788" shape="box" x1="2342.208496" y1="19.726147" z1="-1638.232544" x2="2345.048340" y2="42.726177" z2="-1635.372437" rotX="-0.000000" rotY="-2.879793" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796799" name="box_27796798" shape="box" x1="2338.326416" y1="19.726147" z1="-1637.192505" x2="2341.166260" y2="42.726177" z2="-1634.332397" rotX="-0.000000" rotY="-2.879793" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796867" name="sphere_27796866" shape="sphere" x1="2353.448975" y1="16.057526" z1="-1583.887451" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661414" name="box_2124661414" shape="box" x1="2416.072510" y1="-29.747913" z1="-1544.953369" x2="2418.072510" y2="44.252087" z2="-1542.953369" rotX="-0.000000" rotY="1.570796" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="2739617906" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661430" name="box_2124661430" shape="box" x1="2416.103027" y1="6.060743" z1="-1592.306885" x2="2418.353027" y2="26.060743" z2="-1590.056885" rotX="-0.000000" rotY="2.617994" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3874015312" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661443" name="box_2124661443" shape="box" x1="2416.103027" y1="6.060743" z1="-1592.306885" x2="2418.353027" y2="26.060743" z2="-1590.056885" rotX="-0.000000" rotY="-3.028146" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3874015312" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796865" name="sphere_27796864" shape="sphere" x1="2412.592041" y1="16.057526" z1="-1592.433838" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661433" name="box_2124661433" shape="box" x1="2473.614502" y1="42.390999" z1="-1549.835693" x2="2475.864502" y2="44.640999" z2="-1547.585693" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661429" name="box_2124661429" shape="box" x1="2466.056885" y1="41.102242" z1="-1557.791870" x2="2468.306885" y2="43.352242" z2="-1555.541870" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796785" name="box_27796784" shape="box" x1="2475.289795" y1="19.726147" z1="-1558.522583" x2="2478.129639" y2="42.726177" z2="-1555.662476" rotX="-0.000000" rotY="1.832596" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796787" name="box_27796786" shape="box" x1="2474.233887" y1="19.726147" z1="-1562.462280" x2="2477.073730" y2="42.726177" z2="-1559.602173" rotX="-0.000000" rotY="1.832596" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796863" name="sphere_27796862" shape="sphere" x1="2468.319580" y1="16.057526" z1="-1559.197510" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661435" name="box_2124661435" shape="box" x1="2464.386475" y1="42.390999" z1="-1566.263428" x2="2466.636475" y2="44.640999" z2="-1564.013428" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661432" name="box_2124661432" shape="box" x1="2530.846680" y1="42.390999" z1="-1547.159790" x2="2533.096680" y2="44.640999" z2="-1544.909790" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661425" name="box_2124661425" shape="box" x1="2522.013672" y1="41.102242" z1="-1558.064453" x2="2524.263672" y2="43.352242" z2="-1555.814453" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796779" name="box_27796778" shape="box" x1="2531.023926" y1="19.726147" z1="-1556.502808" x2="2533.863770" y2="42.726177" z2="-1553.642700" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796783" name="box_27796782" shape="box" x1="2530.955811" y1="19.726147" z1="-1560.322998" x2="2533.795654" y2="42.726177" z2="-1557.462891" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796859" name="sphere_27796858" shape="sphere" x1="2531.174561" y1="-201.919937" z1="-1558.405396" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796861" name="sphere_27796860" shape="sphere" x1="2525.540283" y1="16.232529" z1="-1555.506592" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3598185740" name="sphere_3598185740" shape="sphere" x1="2066.105225" y1="10.940186" z1="-1034.284180" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2313898377" name="sphere_2313898377" shape="sphere" x1="2136.208252" y1="4.540977" z1="-1070.617310" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661413" name="box_2124661413" shape="box" x1="2212.349121" y1="41.102242" z1="-1476.495361" x2="2214.599121" y2="43.352242" z2="-1474.245361" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796759" name="box_27796758" shape="box" x1="2202.776123" y1="19.726147" z1="-1478.465576" x2="2205.615967" y2="42.726177" z2="-1475.605469" rotX="-0.000000" rotY="-1.946042" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796805" name="box_27796804" shape="box" x1="2204.151855" y1="19.726147" z1="-1481.956909" x2="2206.991699" y2="42.726177" z2="-1479.096802" rotX="-0.000000" rotY="-1.946042" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796845" name="sphere_27796844" shape="sphere" x1="2211.627441" y1="16.057526" z1="-1479.535522" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661407" name="box_2124661407" shape="box" x1="2210.103027" y1="42.390999" z1="-1489.510864" x2="2212.353027" y2="44.640999" z2="-1487.260864" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661411" name="box_2124661411" shape="box" x1="2209.519531" y1="42.390999" z1="-1469.041504" x2="2211.769531" y2="44.640999" z2="-1466.791504" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796829" name="sphere_27796828" shape="sphere" x1="2233.692139" y1="16.232529" z1="-1406.148560" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="2488605978" name="box_2488605978" shape="box" x1="2231.545410" y1="19.722645" z1="-1118.679077" x2="2234.235352" y2="26.102646" z2="-1115.808960" rotX="-0.000000" rotY="1.535890" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2488605980" name="box_2488605980" shape="box" x1="2236.481201" y1="26.436277" z1="-1100.596558" x2="2238.601318" y2="33.216282" z2="-1098.396606" rotX="-0.000000" rotY="-0.820305" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2488605981" name="box_2488605981" shape="box" x1="2225.087158" y1="26.436277" z1="-1101.080444" x2="2227.207275" y2="33.216282" z2="-1098.880493" rotX="-0.000000" rotY="2.321288" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2488605982" name="sphere_2488605982" shape="sphere" x1="2230.728271" y1="13.247002" z1="-1098.896118" radius="32.000000" /> | |
<AreaDefinition id="24888374" name="sphere_24888374" shape="sphere" x1="2179.142090" y1="4.433582" z1="-1088.651001" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2488605979" name="box_2488605979" shape="box" x1="2230.385742" y1="19.710188" z1="-1083.389648" x2="2233.115723" y2="26.090193" z2="-1080.589600" rotX="-0.000000" rotY="-1.605703" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661408" name="box_2124661408" shape="box" x1="2267.214111" y1="34.864651" z1="-1474.856934" x2="2269.714111" y2="43.364651" z2="-1472.356934" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661421" name="box_2124661421" shape="box" x1="2258.892090" y1="43.661137" z1="-1477.315918" x2="2261.012207" y2="50.441143" z2="-1475.115967" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661436" name="box_2124661436" shape="box" x1="2247.361572" y1="34.864651" z1="-1476.006348" x2="2249.861572" y2="43.364651" z2="-1473.506348" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661434" name="box_2124661434" shape="box" x1="2268.837891" y1="10.185802" z1="-1504.064087" x2="2275.837891" y2="17.185802" z2="-1474.064087" rotX="0.392699" rotY="-3.141593" rotZ="0.000000" /> | |
<AreaDefinition id="27796853" name="sphere_27796852" shape="sphere" x1="2295.239502" y1="46.697289" z1="-1506.861084" radius="20.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796855" name="sphere_27796854" shape="sphere" x1="2267.108398" y1="15.799715" z1="-1508.998779" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796857" name="sphere_27796856" shape="sphere" x1="2257.520996" y1="16.070038" z1="-1508.221313" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796831" name="sphere_27796830" shape="sphere" x1="2268.430420" y1="16.087852" z1="-1416.882813" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796843" name="sphere_27796842" shape="sphere" x1="2270.258057" y1="15.555222" z1="-1447.240356" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796841" name="sphere_27796840" shape="sphere" x1="2295.753662" y1="46.697289" z1="-1453.524170" radius="20.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661403" name="box_2124661403" shape="box" x1="2267.214355" y1="34.864651" z1="-1469.030029" x2="2269.714355" y2="43.364651" z2="-1466.530029" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661409" name="box_2124661409" shape="box" x1="2238.081055" y1="14.839657" z1="-1487.684692" x2="2283.081055" y2="45.699673" z2="-1453.764771" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000" /> | |
<AreaDefinition id="2124661420" name="box_2124661420" shape="box" x1="2258.805420" y1="43.661137" z1="-1465.911621" x2="2260.925537" y2="50.441143" z2="-1463.711670" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661441" name="box_2124661441" shape="box" x1="2281.977783" y1="26.070934" z1="-1485.803467" x2="2288.977783" y2="31.070934" z2="-1455.803467" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000" /> | |
<AreaDefinition id="2124661444" name="box_2124661444" shape="box" x1="2247.361816" y1="34.864651" z1="-1467.914185" x2="2249.861816" y2="43.364651" z2="-1465.414185" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661415" name="box_2124661415" shape="box" x1="2265.559570" y1="42.390999" z1="-1349.988159" x2="2267.809570" y2="44.640999" z2="-1347.738159" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796827" name="sphere_27796826" shape="sphere" x1="2272.765625" y1="16.057526" z1="-1377.192871" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796809" name="box_27796808" shape="box" x1="2265.021484" y1="19.726147" z1="-1337.047607" x2="2267.861328" y2="42.726177" z2="-1334.187500" rotX="-0.000000" rotY="-1.160644" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661416" name="box_2124661416" shape="box" x1="2272.851074" y1="41.102242" z1="-1342.388306" x2="2275.101074" y2="43.352242" z2="-1340.138306" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796795" name="box_27796794" shape="box" x1="2263.295654" y1="19.726147" z1="-1341.017334" x2="2266.135498" y2="42.726177" z2="-1338.157227" rotX="-0.000000" rotY="-1.160644" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796815" name="sphere_27796814" shape="sphere" x1="2268.204102" y1="16.057526" z1="-1341.268066" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3301758102" name="sphere_3301758102" shape="sphere" x1="2276.148438" y1="5.966456" z1="-1073.319824" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661442" name="box_2124661442" shape="box" x1="2265.809814" y1="4.084362" z1="-1594.878662" x2="2425.809814" y2="11.084362" z2="-1362.878662" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000" /> | |
<AreaDefinition id="27796765" name="box_27796764" shape="box" x1="2322.288818" y1="17.686317" z1="-1480.765503" x2="2325.029053" y2="41.716324" z2="-1478.405396" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796791" name="box_27796790" shape="box" x1="2322.288574" y1="17.686325" z1="-1477.894165" x2="2325.028809" y2="41.716324" z2="-1475.534058" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661438" name="box_2124661438" shape="box" x1="2331.230225" y1="-55.247913" z1="-1505.285278" x2="2333.230225" y2="69.752090" z2="-1503.285278" rotX="-0.000000" rotY="0.000000" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="2739617906" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796825" name="sphere_27796824" shape="sphere" x1="2354.521973" y1="16.057526" z1="-1376.866089" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796757" name="box_27796756" shape="box" x1="2338.265869" y1="19.726147" z1="-1322.067505" x2="2341.105713" y2="42.726177" z2="-1319.207397" rotX="-0.000000" rotY="-0.261799" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796761" name="box_27796760" shape="box" x1="2342.125488" y1="19.726147" z1="-1321.032959" x2="2344.965332" y2="42.726177" z2="-1318.172852" rotX="-0.000000" rotY="-0.261799" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661417" name="box_2124661417" shape="box" x1="2350.629639" y1="42.390999" z1="-1328.140381" x2="2352.879639" y2="44.640999" z2="-1325.890381" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661418" name="box_2124661418" shape="box" x1="2343.031982" y1="41.102242" z1="-1330.150635" x2="2345.281982" y2="43.352242" z2="-1327.900635" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796813" name="sphere_27796812" shape="sphere" x1="2350.941650" y1="16.057526" z1="-1331.453369" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="1193318980" name="box_1193318980" shape="box" x1="2360.850342" y1="35.893070" z1="-1103.130005" x2="2362.850342" y2="39.653072" z2="-1101.130005" rotX="-0.000000" rotY="-2.495821" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2033058980" VelocityMult="1.30" /> | |
</AreaDefinition> | |
<AreaDefinition id="1831568979" name="box_1831568979" shape="box" x1="2362.508545" y1="35.900692" z1="-1101.143433" x2="2364.508545" y2="41.020695" z2="-1099.143433" rotX="-0.000000" rotY="-2.417280" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2033058979" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2217298980" name="box_2217298980" shape="box" x1="2350.320313" y1="35.893070" z1="-1115.031860" x2="2352.320313" y2="39.653072" z2="-1113.031860" rotX="-0.000000" rotY="-2.495821" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2033058980" VelocityMult="1.30" /> | |
</AreaDefinition> | |
<AreaDefinition id="2217298981" name="box_2217298981" shape="box" x1="2351.978516" y1="35.900692" z1="-1113.045288" x2="2353.978516" y2="41.020695" z2="-1111.045288" rotX="-0.000000" rotY="-2.417280" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2033058979" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4096323515" name="box_4096323515" shape="box" x1="2344.633789" y1="34.321697" z1="-1035.943604" x2="2347.323730" y2="40.701694" z2="-1033.073486" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4096323517" name="box_4096323517" shape="box" x1="2362.493164" y1="41.035328" z1="-1040.876099" x2="2364.613281" y2="47.815334" z2="-1038.676147" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4096323518" name="box_4096323518" shape="box" x1="2362.406982" y1="41.035328" z1="-1029.471924" x2="2364.527100" y2="47.815334" z2="-1027.271973" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4096323519" name="sphere_4096323519" shape="sphere" x1="2364.390869" y1="27.846054" z1="-1032.988159" radius="32.000000" /> | |
<AreaDefinition id="2124661404" name="box_2124661404" shape="box" x1="2420.099121" y1="6.160473" z1="-1485.624268" x2="2422.349121" y2="13.910473" z2="-1483.374268" rotX="-0.000000" rotY="2.469641" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="397307676" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661439" name="box_2124661439" shape="box" x1="2420.099121" y1="6.160473" z1="-1485.624268" x2="2422.349121" y2="13.910473" z2="-1483.374268" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
<Property type="Thrust - No Gravity" id="397307676" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796775" name="box_27796774" shape="box" x1="2389.090332" y1="23.105652" z1="-1477.595459" x2="2391.830566" y2="39.415642" z2="-1475.235352" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796781" name="box_27796780" shape="box" x1="2389.090088" y1="23.105648" z1="-1481.522339" x2="2391.830322" y2="39.415638" z2="-1479.162231" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796839" name="sphere_27796838" shape="sphere" x1="2369.917480" y1="-3.942465" z1="-1475.153198" radius="85.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661426" name="box_2124661426" shape="box" x1="2416.072510" y1="-37.747913" z1="-1421.980713" x2="2418.072510" y2="52.252087" z2="-1419.980713" rotX="-0.000000" rotY="1.570796" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="2739617906" VelocityMult="-3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661406" name="box_2124661406" shape="box" x1="2420.099365" y1="6.160473" z1="-1472.832520" x2="2422.349365" y2="13.910473" z2="-1470.582520" rotX="-0.000000" rotY="2.556907" rotZ="0.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
<Property type="Thrust - No Gravity" id="397307676" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661440" name="box_2124661440" shape="box" x1="2420.099365" y1="6.160473" z1="-1472.832520" x2="2422.349365" y2="13.910473" z2="-1470.582520" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
<Property type="Thrust - No Gravity" id="397307676" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661412" name="box_2124661412" shape="box" x1="2416.208008" y1="6.060743" z1="-1367.022705" x2="2418.458008" y2="26.060743" z2="-1364.772705" rotX="-0.000000" rotY="2.871067" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3874015312" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661427" name="box_2124661427" shape="box" x1="2416.208008" y1="6.060743" z1="-1367.022705" x2="2418.458008" y2="26.060743" z2="-1364.772705" rotX="-0.000000" rotY="-2.617994" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3874015312" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796823" name="sphere_27796822" shape="sphere" x1="2403.933350" y1="11.183506" z1="-1393.460205" radius="55.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="4096323516" name="box_4096323516" shape="box" x1="2379.886230" y1="34.309242" z1="-1036.000488" x2="2382.616211" y2="40.689247" z2="-1033.200439" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796851" name="sphere_27796850" shape="sphere" x1="2491.871582" y1="16.461517" z1="-1486.871582" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796847" name="sphere_27796846" shape="sphere" x1="2494.948486" y1="15.730225" z1="-1490.853027" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796811" name="sphere_27796810" shape="sphere" x1="2491.683838" y1="16.060743" z1="-1445.148804" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796833" name="sphere_27796832" shape="sphere" x1="2494.948486" y1="15.730225" z1="-1443.549072" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796837" name="sphere_27796836" shape="sphere" x1="2493.030518" y1="-188.671890" z1="-1469.437256" radius="55.000000"> | |
<Property type="Exclusive" id="3256068608" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661422" name="box_2124661422" shape="box" x1="2462.613525" y1="42.390999" z1="-1393.515991" x2="2464.863525" y2="44.640999" z2="-1391.265991" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796767" name="box_27796766" shape="box" x1="2471.979492" y1="19.726147" z1="-1396.765869" x2="2474.819336" y2="42.726177" z2="-1393.905762" rotX="-0.000000" rotY="0.523599" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796769" name="box_27796768" shape="box" x1="2475.378174" y1="19.726147" z1="-1398.727905" x2="2478.218018" y2="42.726177" z2="-1395.867798" rotX="-0.000000" rotY="0.523599" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796821" name="sphere_27796820" shape="sphere" x1="2469.829590" y1="16.057526" z1="-1399.867065" radius="40.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661423" name="box_2124661423" shape="box" x1="2469.363281" y1="41.102242" z1="-1405.424316" x2="2471.613281" y2="43.352242" z2="-1403.174316" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661428" name="box_2124661428" shape="box" x1="2481.062256" y1="42.390999" z1="-1405.354858" x2="2483.312256" y2="44.640999" z2="-1403.104858" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2396589109" name="sphere_2396589109" shape="sphere" x1="2464.541504" y1="15.399185" z1="-1202.439575" radius="20.000000"> | |
<Property type="Exclusive" id="1578511659" /> | |
</AreaDefinition> | |
<AreaDefinition id="2694661125" name="sphere_2694661125" shape="sphere" x1="2467.910645" y1="28.939608" z1="-1058.582886" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796835" name="sphere_27796834" shape="sphere" x1="2525.540283" y1="16.232529" z1="-1477.507935" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796849" name="sphere_27796848" shape="sphere" x1="2496.993896" y1="-188.728531" z1="-1530.854614" radius="23.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661424" name="box_2124661424" shape="box" x1="2526.559326" y1="41.102242" z1="-1410.912354" x2="2528.809326" y2="43.352242" z2="-1408.662354" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="2124661431" name="box_2124661431" shape="box" x1="2520.301025" y1="42.390999" z1="-1405.773315" x2="2522.551025" y2="44.640999" z2="-1403.523315" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796771" name="box_27796770" shape="box" x1="2531.551270" y1="19.726147" z1="-1403.206421" x2="2534.391113" y2="42.726177" z2="-1400.346313" rotX="-0.000000" rotY="0.802851" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796777" name="box_27796776" shape="box" x1="2534.261230" y1="19.726147" z1="-1406.012817" x2="2537.101074" y2="42.726177" z2="-1403.152710" rotX="-0.000000" rotY="0.802851" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796817" name="sphere_27796816" shape="sphere" x1="2531.174805" y1="-190.508804" z1="-1404.823975" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="27796819" name="sphere_27796818" shape="sphere" x1="2525.540039" y1="16.232529" z1="-1406.766602" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3014769668" name="sphere_3014769668" shape="sphere" x1="2548.966797" y1="21.994814" z1="-754.615051" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="1016392037" name="sphere_1016392037" shape="sphere" x1="2096.934814" y1="20.910217" z1="-166.708267" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="1638538281" name="box_1638538281" shape="box" x1="2169.955811" y1="18.152311" z1="-150.127274" x2="2172.455811" y2="34.152313" z2="-147.627274" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2742116469" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1638538280" name="box_1638538280" shape="box" x1="2167.515137" y1="18.152311" z1="-152.609360" x2="2170.015137" y2="34.152313" z2="-150.109360" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2742116469" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764597" name="box_3354764597" shape="box" x1="2153.194580" y1="8.978312" z1="-106.849518" x2="2155.454346" y2="32.038368" z2="-104.659515" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764598" name="box_3354764598" shape="box" x1="2155.885742" y1="8.978312" z1="-104.166962" x2="2158.145508" y2="32.038368" z2="-101.976959" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764599" name="sphere_3354764599" shape="sphere" x1="2156.526123" y1="6.304982" z1="-104.845169" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="415109222" name="sphere_415109222" shape="sphere" x1="2186.747803" y1="17.430840" z1="-193.772446" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1025494825" name="box_1025494825" shape="box" x1="2194.316162" y1="18.108780" z1="-174.487335" x2="2196.816162" y2="34.108780" z2="-171.987335" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2742116469" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3157167970" name="box_3157167970" shape="box" x1="2191.855713" y1="18.108780" z1="-176.947784" x2="2194.355713" y2="34.108780" z2="-174.447784" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2742116469" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1718908601" name="sphere_1718908601" shape="sphere" x1="2192.050781" y1="19.843582" z1="-190.512192" radius="1.200000"> | |
<Property type="Interaction" id="1307947508" ProxyID="246454" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764600" name="box_3354764600" shape="box" x1="2225.548096" y1="8.978312" z1="-34.420361" x2="2227.807861" y2="32.038368" z2="-32.230358" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764601" name="box_3354764601" shape="box" x1="2228.239258" y1="8.978312" z1="-31.737892" x2="2230.499023" y2="32.038368" z2="-29.547890" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764602" name="sphere_3354764602" shape="sphere" x1="2228.615234" y1="6.304982" z1="-32.756184" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="716358778" name="box_716358778" shape="box" x1="2289.262451" y1="34.126324" z1="-207.632614" x2="2291.382568" y2="40.906330" z2="-205.432602" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="716358777" name="box_716358777" shape="box" x1="2289.348877" y1="34.126324" z1="-219.036835" x2="2291.468994" y2="40.906330" z2="-216.836823" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="716358779" name="sphere_716358779" shape="sphere" x1="2291.246338" y1="20.937050" z1="-211.148819" radius="32.000000" /> | |
<AreaDefinition id="716358775" name="box_716358775" shape="box" x1="2271.489746" y1="28.312105" z1="-214.104294" x2="2274.179688" y2="34.692104" z2="-211.234299" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="976764393" name="sphere_976764393" shape="sphere" x1="2284.793213" y1="23.114990" z1="-204.147095" radius="1.200000"> | |
<Property type="Interaction" id="1307947508" ProxyID="246453" Immunity="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3461999390" name="sphere_3461999390" shape="sphere" x1="2286.685547" y1="22.292217" z1="-97.398514" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1481931207" name="sphere_1481931207" shape="sphere" x1="2286.931641" y1="21.991589" z1="-51.859142" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="716358776" name="box_716358776" shape="box" x1="2306.741699" y1="27.400238" z1="-214.161102" x2="2309.471680" y2="33.780243" z2="-211.361115" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1189042325" name="sphere_1189042325" shape="sphere" x1="2335.135986" y1="20.702297" z1="-160.762024" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764653" name="box_3354764653" shape="box" x1="2351.934082" y1="9.321925" z1="-27.862751" x2="2354.193848" y2="32.381981" z2="-25.672749" rotX="-0.000000" rotY="1.117011" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764654" name="box_3354764654" shape="box" x1="2353.594238" y1="9.321925" z1="-31.280666" x2="2355.854004" y2="32.381981" z2="-29.090664" rotX="-0.000000" rotY="4.258604" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764655" name="sphere_3354764655" shape="sphere" x1="2353.207031" y1="6.648595" z1="-29.145538" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764656" name="box_3354764656" shape="box" x1="2396.861084" y1="9.321925" z1="-119.855003" x2="2399.120850" y2="32.381981" z2="-117.665001" rotX="-0.000000" rotY="1.117011" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764658" name="sphere_3354764658" shape="sphere" x1="2397.898438" y1="6.648595" z1="-120.776886" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="3354764657" name="box_3354764657" shape="box" x1="2398.521240" y1="9.321925" z1="-123.272812" x2="2400.781006" y2="32.381981" z2="-121.082809" rotX="-0.000000" rotY="4.258604" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2635664411" name="sphere_2635664411" shape="sphere" x1="2322.762695" y1="20.517458" z1="8.961197" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="348533237" name="box_348533236" shape="box" x1="2048.886230" y1="23.456360" z1="967.584473" x2="2051.886230" y2="26.456360" z2="970.584473" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1322720170" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="4054895172" name="sphere_4054895171" shape="sphere" x1="2113.984619" y1="16.545298" z1="963.760864" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="4231239311" name="box_4231239310" shape="box" x1="2050.102783" y1="136.975830" z1="1137.249023" x2="2053.102783" y2="139.975830" z2="1140.249023" rotX="-0.000000" rotY="1.588250" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1629680863" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="1322720170" /> | |
</AreaDefinition> | |
<AreaDefinition id="3315804056" name="sphere_3315804055" shape="sphere" x1="2067.387451" y1="135.443954" z1="1164.707886" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="1634648076" name="sphere_1634648075" shape="sphere" x1="2062.706787" y1="136.002945" z1="1258.260498" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="3416114726" name="box_3416114725" shape="box" x1="2172.472168" y1="117.323303" z1="1238.787231" x2="2174.952148" y2="122.743317" z2="1241.267212" rotX="-0.000000" rotY="0.881391" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2117385341" name="sphere_2117385340" shape="sphere" x1="2166.808350" y1="118.634583" z1="1237.130981" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="242729" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="943722750" name="box_943722749" shape="box" x1="2228.396240" y1="63.214172" z1="1185.550049" x2="2231.396240" y2="66.214172" z2="1188.550049" rotX="-0.000000" rotY="-2.312561" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2094987389" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="242751" ReqSetId="178" NextChainId="1931191011" /> | |
</AreaDefinition> | |
<AreaDefinition id="2042222589" name="box_2042222588" shape="box" x1="2232.092041" y1="63.214172" z1="1188.936523" x2="2235.092041" y2="66.214172" z2="1191.936523" rotX="-0.000000" rotY="-2.312561" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2243632252" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3416114730" name="box_3416114729" shape="box" x1="2181.242188" y1="117.323303" z1="1228.148926" x2="2183.722168" y2="122.743317" z2="1230.628906" rotX="-0.000000" rotY="-2.260201" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3416114732" name="sphere_3416114731" shape="sphere" x1="2176.052002" y1="116.778671" z1="1233.851074" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="2169715337" name="box_2169715336" shape="box" x1="2200.222412" y1="118.041077" z1="1219.533936" x2="2203.222412" y2="121.041077" z2="1222.533936" rotX="-0.000000" rotY="-2.312561" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2432181105" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="242750" ReqSetId="178" NextChainId="2243632252" /> | |
</AreaDefinition> | |
<AreaDefinition id="2169715339" name="box_2169715338" shape="box" x1="2196.526611" y1="118.041077" z1="1216.147461" x2="2199.526611" y2="121.041077" z2="1219.147461" rotX="-0.000000" rotY="-2.312561" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1931191011" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3148936564" name="box_3148936564" shape="box" x1="2369.455566" y1="16.402534" z1="1806.417969" x2="2372.255371" y2="37.792553" z2="1809.427979" rotX="-0.000000" rotY="-0.479966" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3740623860" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4135796564" name="box_4135796564" shape="box" x1="2367.501221" y1="16.402534" z1="1810.493164" x2="2370.301025" y2="37.792553" z2="1813.503174" rotX="-0.000000" rotY="-0.479966" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3740623860" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2760368150" name="box_2760368149" shape="box" x1="2428.231934" y1="27.351482" z1="1864.681152" x2="2430.481934" y2="44.281483" z2="1866.931152" rotX="-0.000000" rotY="3.385939" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4091713860" name="box_4091713860" shape="box" x1="2415.386719" y1="16.424011" z1="1952.847412" x2="2418.186523" y2="37.814026" z2="1955.857422" rotX="-0.000000" rotY="-0.479966" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3740623860" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2776856564" name="box_2776856564" shape="box" x1="2419.261230" y1="16.424011" z1="1954.864502" x2="2422.061035" y2="37.814026" z2="1957.874512" rotX="-0.000000" rotY="-0.479966" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3740623860" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3981291491" name="box_3981291491" shape="box" x1="2473.943604" y1="37.098354" z1="1787.289795" x2="2476.193604" y2="39.348354" z2="1789.539795" rotX="-0.000000" rotY="-1.117011" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3532449268" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="3670161474" /> | |
</AreaDefinition> | |
<AreaDefinition id="1014994182" name="box_1014994182" shape="box" x1="2468.386963" y1="36.213215" z1="1780.823608" x2="2470.636963" y2="38.463215" z2="1783.073608" rotX="-0.000000" rotY="-0.462512" rotZ="0.000000" /> | |
<AreaDefinition id="152619268" name="box_152619268" shape="box" x1="2473.142822" y1="16.402534" z1="1775.175537" x2="2475.942627" y2="37.792553" z2="1778.185547" rotX="-0.000000" rotY="-0.479966" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3740623860" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="867009268" name="box_867009268" shape="box" x1="2469.200195" y1="16.402534" z1="1773.124268" x2="2472.000000" y2="37.792553" z2="1776.134277" rotX="-0.000000" rotY="-0.479966" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3740623860" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2557683432" name="sphere_2557683432" shape="sphere" x1="2470.218750" y1="11.896911" z1="1824.712646" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2760368176" name="sphere_2760368175" shape="sphere" x1="2460.055176" y1="12.940843" z1="1871.885498" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="246458" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2760368154" name="box_2760368153" shape="box" x1="2464.687256" y1="27.351480" z1="1868.507324" x2="2466.937256" y2="44.281479" z2="1870.757324" rotX="-0.000000" rotY="0.244346" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2760368160" name="box_2760368159" shape="box" x1="2446.007324" y1="33.247532" z1="1859.600342" x2="2448.577148" y2="43.797535" z2="1862.200439" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1465449939" name="box_1465449939" shape="box" x1="2444.259766" y1="42.717152" z1="1858.108643" x2="2453.859863" y2="48.547153" z2="1877.568604" rotX="-0.000000" rotY="0.244346" rotZ="0.000000" /> | |
<AreaDefinition id="2760368174" name="sphere_2760368173" shape="sphere" x1="2455.059570" y1="44.887074" z1="1866.283325" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="246457" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2760368170" name="sphere_2760368169" shape="sphere" x1="2447.576660" y1="11.234814" z1="1865.907715" radius="65.000000" /> | |
<AreaDefinition id="2760368162" name="box_2760368161" shape="box" x1="2449.522949" y1="33.247536" z1="1873.581299" x2="2452.092773" y2="43.797531" z2="1876.181396" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2760368156" name="box_2760368155" shape="box" x1="2461.924561" y1="27.351482" z1="1857.364990" x2="2464.174561" y2="44.281483" z2="1859.614990" rotX="-0.000000" rotY="0.244346" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2760368168" name="box_2760368167" shape="box" x1="2431.511719" y1="27.351482" z1="1877.836060" x2="2433.761719" y2="44.281483" z2="1880.086060" rotX="-0.000000" rotY="3.385939" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2557683452" name="sphere_2557683452" shape="sphere" x1="2489.362061" y1="11.900723" z1="1886.067139" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="611364631" name="sphere_611364631" shape="sphere" x1="2439.548584" y1="34.369251" z1="1870.248413" radius="1.060000"> | |
<Property type="Interaction" id="1654002388" ProxyID="246459" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4243830724" name="sphere_4243830724" shape="sphere" x1="2505.198975" y1="12.421635" z1="1848.472290" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3511841481" name="box_3511841481" shape="box" x1="2518.756348" y1="24.580889" z1="1846.624023" x2="2521.006348" y2="26.830889" z2="1848.874023" rotX="-0.000000" rotY="-2.888520" rotZ="0.000000" /> | |
<AreaDefinition id="3670161475" name="box_3670161475" shape="box" x1="2517.541260" y1="24.580933" z1="1842.747559" x2="2519.791260" y2="26.830933" z2="1844.997559" rotX="-0.000000" rotY="0.261799" rotZ="0.000000" /> | |
<AreaDefinition id="1170684181" name="box_1170684181" shape="box" x1="2514.372803" y1="25.504221" z1="1831.694458" x2="2516.622803" y2="27.754221" z2="1833.944458" rotX="-0.000000" rotY="2.338741" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="128781972" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="1014994181" /> | |
</AreaDefinition> | |
<AreaDefinition id="2149311475" name="box_2149311475" shape="box" x1="2513.944580" y1="37.100204" z1="1906.679810" x2="2516.194580" y2="39.350204" z2="1908.929810" rotX="-0.000000" rotY="1.701696" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3421201972" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="3511841480" /> | |
</AreaDefinition> | |
<AreaDefinition id="1170684184" name="box_1170684184" shape="box" x1="2521.010254" y1="25.456860" z1="1858.163696" x2="2523.260254" y2="27.706860" z2="1860.413696" rotX="-0.000000" rotY="-1.701696" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1467991972" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="1014994178" /> | |
</AreaDefinition> | |
<AreaDefinition id="1379353860" name="box_1379353860" shape="box" x1="2520.796875" y1="16.244934" z1="1917.259766" x2="2523.596680" y2="37.634949" z2="1920.269775" rotX="-0.000000" rotY="-0.479966" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3740623860" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3418393860" name="box_3418393860" shape="box" x1="2516.916260" y1="16.244934" z1="1915.253418" x2="2519.716064" y2="37.634949" z2="1918.263428" rotX="-0.000000" rotY="-0.479966" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3740623861" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3324621784" name="sphere_3324621784" shape="sphere" x1="2527.827637" y1="11.179562" z1="1889.210083" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1014994179" name="box_1014994179" shape="box" x1="2515.836914" y1="36.211945" z1="1923.100708" x2="2518.086914" y2="38.461945" z2="1925.350708" rotX="-0.000000" rotY="-0.453786" rotZ="0.000000" /> | |
<AreaDefinition id="673974464" name="sphere_673974464" shape="sphere" x1="2337.025391" y1="81.870575" z1="2541.151855" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2902043273" name="sphere_2902043273" shape="sphere" x1="2426.164063" y1="87.263779" z1="2532.179932" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="673974482" name="sphere_673974482" shape="sphere" x1="2376.929932" y1="81.871811" z1="2530.437988" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1920560929" name="box_1920560929" shape="box" x1="2439.370605" y1="12.345715" z1="2495.576660" x2="2443.340820" y2="89.845718" z2="2499.436523" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1089490330" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1920560930" name="box_1920560930" shape="box" x1="2444.189453" y1="12.308117" z1="2495.576660" x2="2448.159668" y2="89.808121" z2="2499.436523" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1271428522" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1920560931" name="box_1920560931" shape="box" x1="2449.032715" y1="12.372082" z1="2495.576416" x2="2453.002930" y2="89.872086" z2="2499.436279" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1089490331" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="25102687" name="sphere_25102687" shape="sphere" x1="2456.427002" y1="87.081718" z1="2552.255615" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1808821000" name="box_1808821000" shape="box" x1="2443.570801" y1="91.931091" z1="2506.687500" x2="2445.820801" y2="94.181091" z2="2508.937500" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="1808820995" name="box_1808820995" shape="box" x1="2513.912842" y1="33.185593" z1="2331.425781" x2="2516.162842" y2="35.435593" z2="2333.675781" rotX="-0.000000" rotY="-2.007129" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="1419875931" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="1808821000" /> | |
</AreaDefinition> | |
<AreaDefinition id="1467713544" name="box_1467713544" shape="box" x1="2265.438477" y1="17.502834" z1="2821.634766" x2="2267.688477" y2="38.002834" z2="2823.884766" rotX="-0.000000" rotY="2.146755" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1467713546" name="sphere_1467713546" shape="sphere" x1="2264.678223" y1="12.385410" z1="2820.926514" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1467713545" name="box_1467713545" shape="box" x1="2262.623535" y1="17.502834" z1="2817.279053" x2="2264.873535" y2="38.002834" z2="2819.529053" rotX="-0.000000" rotY="-0.994838" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2428846849" name="sphere_2428846849" shape="sphere" x1="2252.291504" y1="22.601074" z1="2828.944580" radius="1.000000"> | |
<Property type="Interaction" id="1633525167" ProxyID="243615" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="115355523" name="sphere_115355523" shape="sphere" x1="2302.822021" y1="23.339355" z1="2905.683594" radius="1.000000"> | |
<Property type="Interaction" id="1633525167" ProxyID="243617" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1587519020" name="sphere_1587519020" shape="sphere" x1="2341.992188" y1="76.679962" z1="2622.853516" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1467713512" name="box_1467713512" shape="box" x1="2315.959961" y1="18.255133" z1="2898.380371" x2="2318.209961" y2="38.755135" z2="2900.630371" rotX="-0.000000" rotY="2.146755" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1467713514" name="sphere_1467713514" shape="sphere" x1="2315.201172" y1="13.137710" z1="2897.670898" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1467713513" name="box_1467713513" shape="box" x1="2313.145996" y1="18.255133" z1="2894.025146" x2="2315.395996" y2="38.755135" z2="2896.275146" rotX="-0.000000" rotY="-0.994838" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1486059054" name="sphere_1486059054" shape="sphere" x1="2374.597412" y1="76.595604" z1="2654.220215" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="3676502685" name="sphere_3676502685" shape="sphere" x1="2450.512207" y1="81.137909" z1="2606.748047" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="434596167" name="sphere_434596167" shape="sphere" x1="2465.736328" y1="81.927467" z1="2649.199951" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319473" name="sphere_389319472" shape="sphere" x1="2062.873535" y1="12.005138" z1="3190.765381" radius="36.019993"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319471" name="sphere_389319470" shape="sphere" x1="2156.200195" y1="12.005138" z1="3147.246338" radius="44.279987"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319463" name="sphere_389319462" shape="sphere" x1="2190.813477" y1="12.005138" z1="3097.077637" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="389319455" name="sphere_389319454" shape="sphere" x1="2202.520020" y1="12.005138" z1="3129.274414" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589612" name="box_1293589612" shape="box" x1="2661.453857" y1="43.036423" z1="-1258.295166" x2="2663.713623" y2="66.096481" z2="-1256.105225" rotX="-0.000000" rotY="-4.607669" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589613" name="box_1293589613" shape="box" x1="2661.050537" y1="43.036423" z1="-1262.073364" x2="2663.310303" y2="66.096481" z2="-1259.883423" rotX="-0.000000" rotY="-1.466077" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589614" name="sphere_1293589614" shape="sphere" x1="2661.436523" y1="40.363098" z1="-1258.861572" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589610" name="box_1293589610" shape="box" x1="2671.698730" y1="43.036423" z1="-1160.251953" x2="2673.958496" y2="66.096481" z2="-1158.062012" rotX="-0.000000" rotY="-1.466077" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589611" name="sphere_1293589611" shape="sphere" x1="2672.093018" y1="40.363098" z1="-1157.470825" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1293589609" name="box_1293589609" shape="box" x1="2672.101807" y1="43.036423" z1="-1156.473511" x2="2674.361572" y2="66.096481" z2="-1154.283569" rotX="-0.000000" rotY="-4.607669" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2427460194" name="sphere_2427460194" shape="sphere" x1="2570.562500" y1="12.415286" z1="-798.412659" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2239438534" name="box_2239438534" shape="box" x1="2638.971191" y1="18.287811" z1="-882.802856" x2="2641.230957" y2="41.347870" z2="-880.612915" rotX="-0.000000" rotY="-0.436332" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2239438537" name="box_2239438537" shape="box" x1="2642.444336" y1="18.287811" z1="-881.262268" x2="2644.704102" y2="41.347870" z2="-879.072327" rotX="-0.000000" rotY="2.705260" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="579937545" name="sphere_579937545" shape="sphere" x1="2631.793945" y1="3.731851" z1="-718.965515" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1907314194" name="sphere_1907314194" shape="sphere" x1="2628.160889" y1="10.745665" z1="-651.356812" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="1605463836" name="box_1605463836" shape="box" x1="2626.028320" y1="11.420610" z1="-618.162292" x2="2628.508301" y2="16.840620" z2="-615.682312" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1605463838" name="box_1605463838" shape="box" x1="2639.814453" y1="11.420610" z1="-618.162292" x2="2642.294434" y2="16.840620" z2="-615.682312" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1605463839" name="sphere_1605463839" shape="sphere" x1="2633.521729" y1="10.875977" z1="-619.045532" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="2440542318" name="box_2440542318" shape="box" x1="2723.512695" y1="18.331635" z1="-844.610718" x2="2725.772461" y2="41.391693" z2="-842.420776" rotX="-0.000000" rotY="-0.436332" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2440542319" name="sphere_2440542319" shape="sphere" x1="2725.734619" y1="15.658306" z1="-842.035583" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2440542317" name="box_2440542317" shape="box" x1="2726.985840" y1="18.331635" z1="-843.070129" x2="2729.245605" y2="41.391693" z2="-840.880188" rotX="-0.000000" rotY="2.705260" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1417690171" name="sphere_1417690171" shape="sphere" x1="2733.187744" y1="8.946891" z1="-683.739807" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="2215862009" name="box_2215862009" shape="box" x1="2802.673340" y1="16.268894" z1="-787.485718" x2="2804.933105" y2="39.328949" z2="-785.295776" rotX="-0.000000" rotY="1.509710" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2215862010" name="box_2215862010" shape="box" x1="2802.899170" y1="16.268894" z1="-791.278687" x2="2805.158936" y2="39.328949" z2="-789.088745" rotX="-0.000000" rotY="4.651302" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2215862011" name="sphere_2215862011" shape="sphere" x1="2802.945801" y1="13.595563" z1="-788.218689" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2215862007" name="box_2215862007" shape="box" x1="2796.595703" y1="16.268894" z1="-689.096191" x2="2798.855469" y2="39.328949" z2="-686.906250" rotX="-0.000000" rotY="4.651302" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2215862008" name="sphere_2215862008" shape="sphere" x1="2796.721924" y1="13.595563" z1="-686.459656" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2215862006" name="box_2215862006" shape="box" x1="2796.369873" y1="16.268894" z1="-685.303101" x2="2798.629639" y2="39.328949" z2="-683.113159" rotX="-0.000000" rotY="1.509710" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3377172856" name="sphere_3377172856" shape="sphere" x1="2660.122314" y1="16.037621" z1="432.423248" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="3038612633" name="box_3038612633" shape="box" x1="2706.156982" y1="25.368391" z1="372.567963" x2="2708.846924" y2="31.748392" z2="375.437958" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3038612635" name="box_3038612635" shape="box" x1="2724.016357" y1="32.082020" z1="367.635376" x2="2726.136475" y2="38.862026" z2="369.835388" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3038612636" name="box_3038612636" shape="box" x1="2723.930176" y1="32.082020" z1="379.039551" x2="2726.050293" y2="38.862026" z2="381.239563" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3038612637" name="sphere_3038612637" shape="sphere" x1="2725.914063" y1="18.892746" z1="375.523346" radius="32.000000" /> | |
<AreaDefinition id="3038612634" name="box_3038612634" shape="box" x1="2741.409424" y1="25.355934" z1="372.511047" x2="2744.139404" y2="31.735939" z2="375.311035" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1449975269" name="sphere_1449975269" shape="sphere" x1="2746.216553" y1="20.768707" z1="366.383545" radius="0.969997"> | |
<Property type="Interaction" id="354432096" ProxyID="246691" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="610445921" name="box_610445921" shape="box" x1="2748.283936" y1="18.692368" z1="392.074799" x2="2750.543701" y2="41.752426" z2="394.264801" rotX="-0.000000" rotY="-2.085668" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="610445922" name="box_610445922" shape="box" x1="2746.418213" y1="18.692368" z1="395.384979" x2="2748.677979" y2="41.752426" z2="397.574982" rotX="-0.000000" rotY="1.055924" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="610445923" name="sphere_610445923" shape="sphere" x1="2749.125977" y1="16.019039" z1="395.534424" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="610445924" name="box_610445924" shape="box" x1="2697.824707" y1="18.692368" z1="481.152710" x2="2700.084473" y2="41.752426" z2="483.342712" rotX="-0.000000" rotY="-2.085668" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="610445925" name="sphere_610445925" shape="sphere" x1="2698.923828" y1="16.019039" z1="484.266479" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="610445926" name="box_610445926" shape="box" x1="2695.958984" y1="18.692368" z1="484.462799" x2="2698.218750" y2="41.752426" z2="486.652802" rotX="-0.000000" rotY="1.055924" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2241959936" name="sphere_2241959936" shape="sphere" x1="2812.416504" y1="14.890562" z1="365.781647" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="946095270" name="sphere_946095270" shape="sphere" x1="2811.587158" y1="16.701935" z1="359.606445" radius="0.969997"> | |
<Property type="Interaction" id="519841704" ProxyID="246690" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2738698663" name="sphere_2738698663" shape="sphere" x1="2970.434814" y1="18.035509" z1="312.244751" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="1708700808" name="sphere_1708700808" shape="sphere" x1="2970.432129" y1="19.576630" z1="313.317078" radius="1.049999"> | |
<Property type="Interaction" id="2290278960" ProxyID="246692" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="676553029" name="box_676553029" shape="box" x1="2997.190674" y1="18.268831" z1="351.221283" x2="2999.670654" y2="23.688841" z2="353.701263" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="676553030" name="sphere_676553030" shape="sphere" x1="3005.963379" y1="17.724197" z1="354.584839" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="1358845827" name="sphere_1358845827" shape="sphere" x1="3000.203857" y1="19.185150" z1="359.249939" radius="1.049999"> | |
<Property type="Interaction" id="2876797606" ProxyID="246693" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1432149506" name="sphere_1432149506" shape="sphere" x1="3058.249756" y1="17.529928" z1="352.336029" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="676553027" name="box_676553027" shape="box" x1="3010.976807" y1="18.268831" z1="351.221283" x2="3013.456787" y2="23.688841" z2="353.701263" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419471" name="box_1575419471" shape="box" x1="2929.523438" y1="-5.792603" z1="631.631409" x2="2931.523438" y2="14.207397" z2="633.631409" rotX="-0.000000" rotY="3.141593" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419465" name="box_1575419465" shape="box" x1="2911.814941" y1="2.708861" z1="641.453552" x2="2914.064941" y2="15.208861" z2="643.703552" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1407676381" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256050" name="box_1650256049" shape="box" x1="2945.883057" y1="14.381118" z1="631.481995" x2="2948.883057" y2="17.381119" z2="634.481995" rotX="-0.000000" rotY="6.283185" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256052" name="box_1650256051" shape="box" x1="2945.177979" y1="16.500057" z1="630.776978" x2="2949.588135" y2="24.779999" z2="635.187012" rotX="-0.000000" rotY="6.283185" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256046" name="box_1650256045" shape="box" x1="2945.883057" y1="14.381118" z1="688.080627" x2="2948.883057" y2="17.381119" z2="691.080627" rotX="-0.000000" rotY="6.283185" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256058" name="box_1650256057" shape="box" x1="2945.177979" y1="16.500057" z1="687.375610" x2="2949.588135" y2="24.779999" z2="691.785645" rotX="-0.000000" rotY="6.283185" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419472" name="box_1575419472" shape="box" x1="2946.797363" y1="-35.792603" z1="674.347595" x2="2948.797363" y2="44.207397" z2="676.347595" rotX="-0.000000" rotY="4.712389" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256088" name="sphere_1650256087" shape="sphere" x1="2969.829102" y1="12.927978" z1="667.216370" radius="140.000000"> | |
<Property type="Exclusive" id="4277267792" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419476" name="box_1575419476" shape="box" x1="2946.823730" y1="2.433471" z1="726.453918" x2="2949.073730" y2="13.433471" z2="728.703918" rotX="-0.000000" rotY="6.283185" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256076" name="sphere_1650256075" shape="sphere" x1="3016.751221" y1="15.607757" z1="630.680969" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419468" name="box_1575419468" shape="box" x1="3021.643311" y1="-58.292603" z1="631.631409" x2="3023.643311" y2="66.707397" z2="633.631409" rotX="-0.000000" rotY="3.141593" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256086" name="sphere_1650256085" shape="sphere" x1="3032.523193" y1="108.344208" z1="614.350525" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256078" name="sphere_1650256077" shape="sphere" x1="3016.750244" y1="15.607757" z1="692.096130" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256040" name="box_1650256039" shape="box" x1="3031.458252" y1="61.663326" z1="660.702271" x2="3035.508057" y2="105.723419" z2="666.072266" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256042" name="box_1650256041" shape="box" x1="3031.915039" y1="14.860811" z1="661.811218" x2="3034.915039" y2="19.020811" z2="664.811218" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256044" name="box_1650256043" shape="box" x1="3031.458252" y1="17.992613" z1="660.702271" x2="3035.508057" y2="59.862640" z2="666.072266" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256054" name="box_1650256053" shape="box" x1="3031.914795" y1="105.162315" z1="661.856750" x2="3034.914795" y2="107.562325" z2="664.856750" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256056" name="box_1650256055" shape="box" x1="3031.914795" y1="56.500984" z1="661.856750" x2="3034.914795" y2="61.990990" z2="664.856750" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256060" name="box_1650256059" shape="box" x1="3031.492188" y1="17.992613" z1="656.791870" x2="3035.541992" y2="59.862640" z2="662.161865" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256062" name="box_1650256061" shape="box" x1="3031.949219" y1="14.860811" z1="657.900696" x2="3034.949219" y2="19.020811" z2="660.900696" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256064" name="box_1650256063" shape="box" x1="3031.948730" y1="56.500984" z1="657.946350" x2="3034.948730" y2="61.990990" z2="660.946350" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256066" name="box_1650256065" shape="box" x1="3031.492188" y1="61.663326" z1="656.791870" x2="3035.541992" y2="105.723419" z2="662.161865" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256068" name="box_1650256067" shape="box" x1="3031.948730" y1="105.162315" z1="657.946350" x2="3034.948730" y2="107.562325" z2="660.946350" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256084" name="sphere_1650256083" shape="sphere" x1="3032.604980" y1="108.344208" z1="708.517517" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256092" name="sphere_1650256091" shape="sphere" x1="3044.744385" y1="12.927978" z1="780.898010" radius="50.000000"> | |
<Property type="Exclusive" id="1625820496" /> | |
</AreaDefinition> | |
<AreaDefinition id="120442545" name="sphere_120442545" shape="sphere" x1="3009.418945" y1="19.335152" z1="1002.669128" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="999563429" name="box_999563429" shape="box" x1="2741.675537" y1="47.910950" z1="1304.941895" x2="2743.925537" y2="50.160950" z2="1307.191895" rotX="-0.000000" rotY="-1.047198" rotZ="0.000000" /> | |
<AreaDefinition id="999563432" name="box_999563432" shape="box" x1="2731.062500" y1="47.771667" z1="1311.196045" x2="2733.312500" y2="50.021667" z2="1313.446045" rotX="-0.000000" rotY="-1.047198" rotZ="0.000000" /> | |
<AreaDefinition id="4104370363" name="box_4104370363" shape="box" x1="2738.278076" y1="48.882507" z1="1307.030640" x2="2740.528076" y2="51.132507" z2="1309.280640" rotX="-0.000000" rotY="-0.305433" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2710725309" VelocityMult="2.00" JumpHeight="30.00" FacSpawnId="0" ReqSetId="0" NextChainId="999563423" /> | |
</AreaDefinition> | |
<AreaDefinition id="4104370366" name="box_4104370366" shape="box" x1="2734.500000" y1="48.881653" z1="1309.194946" x2="2736.750000" y2="51.131653" z2="1311.444946" rotX="-0.000000" rotY="-1.832596" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2966680902" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="946650961" /> | |
</AreaDefinition> | |
<AreaDefinition id="444826449" name="sphere_444826449" shape="sphere" x1="2709.795410" y1="42.930229" z1="1307.240723" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="41877738" name="sphere_41877738" shape="sphere" x1="2732.671143" y1="35.747700" z1="1378.414307" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="1106704138" name="box_1106704138" shape="box" x1="2711.084473" y1="48.617508" z1="1379.573730" x2="2713.334473" y2="50.867508" z2="1381.823730" rotX="-0.000000" rotY="1.291544" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3212575489" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="999563432" /> | |
</AreaDefinition> | |
<AreaDefinition id="999563426" name="box_999563426" shape="box" x1="2749.086182" y1="42.688660" z1="1394.542847" x2="2751.336182" y2="44.938660" z2="1396.792847" rotX="-0.000000" rotY="-1.780236" rotZ="0.000000" /> | |
<AreaDefinition id="946650961" name="box_946650961" shape="box" x1="2715.170166" y1="47.663506" z1="1376.887695" x2="2717.420166" y2="49.913506" z2="1379.137695" rotX="-0.000000" rotY="0.567232" rotZ="0.000000" /> | |
<AreaDefinition id="4032955516" name="sphere_4032955516" shape="sphere" x1="2815.110840" y1="35.525299" z1="1321.463013" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="1106704141" name="box_1106704141" shape="box" x1="2807.346680" y1="42.538658" z1="1309.776123" x2="2809.596680" y2="44.788658" z2="1312.026123" rotX="-0.000000" rotY="3.080506" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3424446674" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="999563429" /> | |
</AreaDefinition> | |
<AreaDefinition id="10189297" name="sphere_10189297" shape="sphere" x1="2763.515869" y1="37.013824" z1="1338.710571" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="885242008" name="box_885242008" shape="box" x1="2812.254639" y1="48.082684" z1="1393.284668" x2="2814.504639" y2="50.332684" z2="1395.534668" rotX="-0.000000" rotY="1.326450" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2380668804" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="999563423" /> | |
</AreaDefinition> | |
<AreaDefinition id="885242011" name="box_885242011" shape="box" x1="2796.533936" y1="48.078194" z1="1404.760620" x2="2798.783936" y2="50.328194" z2="1407.010620" rotX="-0.000000" rotY="0.043633" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="2380668805" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="999563426" /> | |
</AreaDefinition> | |
<AreaDefinition id="2780036370" name="sphere_2780036370" shape="sphere" x1="2810.464600" y1="35.636448" z1="1412.837769" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="999563423" name="box_999563423" shape="box" x1="2817.229980" y1="47.574394" z1="1328.523193" x2="2819.479980" y2="49.824394" z2="1330.773193" rotX="-0.000000" rotY="-0.977384" rotZ="0.000000" /> | |
<AreaDefinition id="798890452" name="box_798890452" shape="box" x1="2842.107910" y1="37.054554" z1="1437.114990" x2="2844.587891" y2="42.474567" z2="1439.594971" rotX="-0.000000" rotY="-2.591814" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="798890453" name="sphere_798890453" shape="sphere" x1="2835.815674" y1="36.509922" z1="1440.480469" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="798890450" name="box_798890450" shape="box" x1="2830.353271" y1="37.054554" z1="1444.318237" x2="2832.833252" y2="42.474567" z2="1446.798218" rotX="-0.000000" rotY="-5.733407" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2537479102" name="sphere_2537479102" shape="sphere" x1="3003.683350" y1="20.074987" z1="1030.096191" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="2537479101" name="box_2537479101" shape="box" x1="2994.910645" y1="20.619621" z1="1026.732910" x2="2997.390625" y2="26.039631" z2="1029.212891" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3646975427" name="sphere_3646975427" shape="sphere" x1="3036.892578" y1="19.888704" z1="1029.943604" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="2537479099" name="box_2537479099" shape="box" x1="3008.696777" y1="20.619621" z1="1026.732910" x2="3011.176758" y2="26.039631" z2="1029.212891" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1317175856" name="box_1317175856" shape="box" x1="3142.076416" y1="6.137565" z1="-234.505432" x2="3144.426514" y2="22.457603" z2="-232.255432" rotX="-0.000000" rotY="-1.308997" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1317175857" name="box_1317175857" shape="box" x1="3139.557129" y1="6.137565" z1="-233.830429" x2="3141.907227" y2="22.457603" z2="-231.580429" rotX="-0.000000" rotY="-1.308997" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1442725826" name="box_1442725826" shape="box" x1="3187.635986" y1="6.986934" z1="-250.464844" x2="3189.986084" y2="23.306973" z2="-248.214844" rotX="-0.000000" rotY="-0.951204" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1442725827" name="box_1442725827" shape="box" x1="3185.513916" y1="6.986934" z1="-248.950500" x2="3187.864014" y2="23.306973" z2="-246.700500" rotX="-0.000000" rotY="-0.951204" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1867136185" name="sphere_1867136185" shape="sphere" x1="3141.541016" y1="5.187020" z1="-193.745483" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1867136167" name="sphere_1867136167" shape="sphere" x1="3136.488770" y1="5.182720" z1="-205.505676" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="757798902" name="sphere_757798902" shape="sphere" x1="3175.504639" y1="3.959100" z1="-219.554459" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3077757365" name="sphere_3077757365" shape="sphere" x1="3160.597412" y1="4.269983" z1="-141.218689" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1595021595" name="box_1595021595" shape="box" x1="3227.203369" y1="5.636800" z1="-276.692505" x2="3229.683350" y2="11.056809" z2="-274.212524" rotX="-0.000000" rotY="-0.741765" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1595021597" name="box_1595021597" shape="box" x1="3237.367432" y1="5.636800" z1="-267.378876" x2="3239.847412" y2="11.056809" z2="-264.898895" rotX="-0.000000" rotY="2.399828" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1595021598" name="sphere_1595021598" shape="sphere" x1="3234.487793" y1="5.092166" z1="-272.793213" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="7035978" name="sphere_7035978" shape="sphere" x1="3225.097168" y1="5.362835" z1="-211.593796" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="934541689" name="box_934541689" shape="box" x1="3293.587158" y1="5.021882" z1="-209.280548" x2="3296.067139" y2="10.441892" z2="-206.800537" rotX="-0.000000" rotY="1.937315" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="934541690" name="sphere_934541690" shape="sphere" x1="3294.110107" y1="4.477248" z1="-215.833755" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="934541687" name="box_934541687" shape="box" x1="3288.646729" y1="5.021882" z1="-222.150909" x2="3291.126709" y2="10.441892" z2="-219.670898" rotX="-0.000000" rotY="-1.204277" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1622575826" name="box_1622575826" shape="box" x1="3276.224365" y1="8.958735" z1="-132.943069" x2="3278.574463" y2="25.278774" z2="-130.693069" rotX="-0.000000" rotY="0.907571" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1622575827" name="box_1622575827" shape="box" x1="3278.279297" y1="8.958735" z1="-131.337402" x2="3280.629395" y2="25.278774" z2="-129.087402" rotX="-0.000000" rotY="0.907571" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256074" name="sphere_1650256073" shape="sphere" x1="3114.210938" y1="12.267378" z1="616.586487" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256070" name="sphere_1650256069" shape="sphere" x1="3125.083008" y1="12.927978" z1="596.364441" radius="40.000000"> | |
<Property type="Exclusive" id="1854860496" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256082" name="sphere_1650256081" shape="sphere" x1="3099.857910" y1="12.927978" z1="673.587830" radius="48.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419480" name="box_1575419480" shape="box" x1="3091.812988" y1="-16.792603" z1="655.620422" x2="3093.812988" y2="25.207397" z2="657.620422" rotX="-0.000000" rotY="4.712389" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419481" name="box_1575419481" shape="box" x1="3091.892090" y1="2.448730" z1="686.448059" x2="3094.142090" y2="13.448730" z2="688.698059" rotX="-0.000000" rotY="4.886922" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419470" name="box_1575419470" shape="box" x1="3164.439209" y1="-55.792603" z1="631.631409" x2="3166.439209" y2="64.207397" z2="633.631409" rotX="-0.000000" rotY="3.141593" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256080" name="sphere_1650256079" shape="sphere" x1="3151.105225" y1="12.927978" z1="685.622009" radius="40.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419467" name="box_1575419467" shape="box" x1="3198.062500" y1="25.130997" z1="660.876282" x2="3200.562500" y2="33.630997" z2="663.376282" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419473" name="box_1575419473" shape="box" x1="3198.062500" y1="25.130997" z1="669.041565" x2="3200.562500" y2="33.630997" z2="671.541565" rotX="-0.000000" rotY="4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256090" name="sphere_1650256089" shape="sphere" x1="3138.153564" y1="12.927978" z1="753.657410" radius="35.000000"> | |
<Property type="Exclusive" id="2115590496" /> | |
</AreaDefinition> | |
<AreaDefinition id="2502594742" name="sphere_2502594742" shape="sphere" x1="3144.986084" y1="18.948353" z1="992.290588" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="1650256072" name="sphere_1650256071" shape="sphere" x1="3200.530029" y1="12.927978" z1="647.985046" radius="55.000000"> | |
<Property type="Exclusive" id="1854860497" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419474" name="box_1575419474" shape="box" x1="3209.422119" y1="33.854733" z1="670.970642" x2="3211.542236" y2="40.634739" z2="673.170593" rotX="-0.000000" rotY="3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419475" name="box_1575419475" shape="box" x1="3209.508301" y1="33.854733" z1="659.566345" x2="3211.628418" y2="40.634739" z2="661.766296" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419477" name="box_1575419477" shape="box" x1="3217.897949" y1="25.130997" z1="662.009338" x2="3220.397949" y2="33.630997" z2="664.509338" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1575419478" name="box_1575419478" shape="box" x1="3217.897949" y1="25.130997" z1="667.867493" x2="3220.397949" y2="33.630997" z2="670.367493" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2502594629" name="sphere_2502594629" shape="sphere" x1="3145.312744" y1="18.995186" z1="1049.586182" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<AreaDefinition id="2093203932" name="sphere_2093203932" shape="sphere" x1="-968.323120" y1="78.059082" z1="-863.856384" radius="44.279987"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203924" name="sphere_2093203924" shape="sphere" x1="-997.381836" y1="78.059082" z1="-823.556091" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203928" name="sphere_2093203928" shape="sphere" x1="-970.028259" y1="78.059082" z1="-802.929626" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203933" name="sphere_2093203933" shape="sphere" x1="-913.754883" y1="78.059082" z1="-951.183899" radius="36.019993"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203923" name="sphere_2093203923" shape="sphere" x1="-893.790771" y1="78.059082" z1="-987.995117" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203925" name="sphere_2093203925" shape="sphere" x1="-864.249695" y1="78.059082" z1="-976.123596" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203934" name="sphere_2093203934" shape="sphere" x1="-800.155457" y1="78.059082" z1="-826.505066" radius="260.000000"> | |
<Property type="Exclusive" id="3617884019" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203931" name="sphere_2093203931" shape="sphere" x1="-668.284119" y1="78.059082" z1="-742.916382" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203920" name="box_2093203920" shape="box" x1="-659.762634" y1="91.115105" z1="-726.918945" x2="-656.692688" y2="102.455116" z2="-723.878906" rotX="-0.000000" rotY="1.012291" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203921" name="box_2093203921" shape="box" x1="-655.523804" y1="91.115112" z1="-724.270264" x2="-652.453857" y2="102.455109" z2="-721.230225" rotX="-0.000000" rotY="1.012291" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203922" name="box_2093203922" shape="box" x1="-654.733704" y1="80.707771" z1="-745.108459" x2="-652.643738" y2="91.327782" z2="-742.998474" rotX="-0.000000" rotY="2.059489" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203918" name="box_2093203918" shape="box" x1="-649.105530" y1="91.115112" z1="-743.973816" x2="-646.035583" y2="102.455109" z2="-740.933777" rotX="-0.000000" rotY="-2.129302" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203919" name="box_2093203919" shape="box" x1="-644.866760" y1="91.115112" z1="-741.325134" x2="-641.796814" y2="102.455109" z2="-738.285095" rotX="-0.000000" rotY="-2.129302" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203930" name="sphere_2093203930" shape="sphere" x1="-651.046570" y1="78.059082" z1="-702.477661" radius="24.199999"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203929" name="sphere_2093203929" shape="sphere" x1="-637.051453" y1="78.059082" z1="-741.621155" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203927" name="sphere_2093203927" shape="sphere" x1="-604.992310" y1="78.059082" z1="-750.275574" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2093203926" name="sphere_2093203926" shape="sphere" x1="-615.347900" y1="78.059082" z1="-708.567139" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="492914185" name="sphere_492914185" shape="sphere" x1="-590.250305" y1="79.731041" z1="-24.451279" radius="34.250015"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="3475919960" name="sphere_3475919960" shape="sphere" x1="-689.961121" y1="81.589195" z1="40.769547" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="873519660" name="sphere_873519660" shape="sphere" x1="-640.310730" y1="79.342781" z1="57.120850" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="1844836743" name="box_1844836743" shape="box" x1="-678.394958" y1="80.949760" z1="70.576996" x2="-675.914978" y2="86.369774" z2="73.056992" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1844836745" name="box_1844836745" shape="box" x1="-668.646667" y1="80.949760" z1="80.325264" x2="-666.166687" y2="86.369774" z2="82.805260" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1844836746" name="sphere_1844836746" shape="sphere" x1="-671.231873" y1="80.405144" z1="74.737526" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="873519608" name="sphere_873519608" shape="sphere" x1="-616.059387" y1="79.731041" z1="14.631544" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="1771986619" name="sphere_1771986619" shape="sphere" x1="-449.830963" y1="81.994438" z1="-480.718292" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="877551156" name="box_877551156" shape="box" x1="-475.621460" y1="83.329437" z1="-476.326813" x2="-474.371460" y2="92.829437" z2="-475.076813" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="877551155" name="box_877551155" shape="box" x1="-477.257996" y1="83.309845" z1="-474.689575" x2="-476.007996" y2="92.809845" z2="-473.439575" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2472118452" name="box_2472118452" shape="box" x1="-459.985199" y1="84.749153" z1="-391.215668" x2="-458.735199" y2="91.379143" z2="-389.965668" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3399848451" name="box_3399848451" shape="box" x1="-458.223480" y1="84.757034" z1="-389.453918" x2="-456.973480" y2="91.357040" z2="-388.203918" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3534028452" name="box_3534028452" shape="box" x1="-489.475006" y1="84.751694" z1="-420.585510" x2="-488.225006" y2="91.351700" z2="-419.335510" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3534028453" name="box_3534028453" shape="box" x1="-491.118347" y1="84.751694" z1="-422.235870" x2="-489.868347" y2="91.351700" z2="-420.985870" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1893541156" name="box_1893541156" shape="box" x1="-444.405640" y1="83.320160" z1="-508.343628" x2="-443.155640" y2="92.820160" z2="-507.093628" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1893541155" name="box_1893541155" shape="box" x1="-445.949524" y1="83.328369" z1="-506.797943" x2="-444.699524" y2="92.828369" z2="-505.547943" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2983830084" name="box_2983830084" shape="box" x1="-399.244812" y1="92.591461" z1="-430.944824" x2="-397.244812" y2="97.591461" z2="-428.944824" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3501400084" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3501400083" name="box_3501400083" shape="box" x1="-402.653320" y1="92.591461" z1="-427.536316" x2="-400.653320" y2="97.591461" z2="-425.536316" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3612690083" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2833011156" name="box_2833011156" shape="box" x1="-377.587036" y1="84.754105" z1="-508.401428" x2="-376.337036" y2="91.354111" z2="-507.151428" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2833011155" name="box_2833011155" shape="box" x1="-379.330200" y1="84.752518" z1="-510.067780" x2="-378.080200" y2="91.352524" z2="-508.817780" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3568411155" name="box_3568411155" shape="box" x1="-346.004822" y1="84.803513" z1="-476.819183" x2="-344.754822" y2="91.403519" z2="-475.569183" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3568411156" name="box_3568411156" shape="box" x1="-347.694122" y1="84.801926" z1="-478.431732" x2="-346.444122" y2="91.401932" z2="-477.181732" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3799643595" name="box_3799643595" shape="box" x1="-348.932007" y1="98.036194" z1="-402.205078" x2="-346.202026" y2="104.376190" z2="-399.405090" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3799643592" name="box_3799643592" shape="box" x1="-356.918701" y1="104.597443" z1="-385.367371" x2="-354.798706" y2="111.377441" z2="-383.167358" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3799643597" name="box_3799643597" shape="box" x1="-379.962585" y1="90.422508" z1="-398.415192" x2="-339.962585" y2="106.972527" z2="-378.415192" rotX="-0.000000" rotY="0.785398" rotZ="0.000000" /> | |
<AreaDefinition id="3799643598" name="sphere_3799643598" shape="sphere" x1="-358.456970" y1="91.524689" z1="-387.891510" radius="32.589996" /> | |
<AreaDefinition id="3799643594" name="box_3799643594" shape="box" x1="-386.292175" y1="91.370636" z1="-402.885376" x2="-334.232239" y2="113.350800" z2="-373.075378" rotX="-0.000000" rotY="0.785398" rotZ="0.000000" /> | |
<AreaDefinition id="3799643596" name="box_3799643596" shape="box" x1="-364.921692" y1="104.597443" z1="-393.492310" x2="-362.801697" y2="111.377441" z2="-391.292297" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3799643593" name="box_3799643593" shape="box" x1="-373.964813" y1="98.082214" z1="-377.450836" x2="-371.274811" y2="104.422211" z2="-374.580841" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="908550414" name="box_908550414" shape="box" x1="-474.092651" y1="131.147919" z1="388.953766" x2="-471.842651" y2="148.077911" z2="391.203766" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="908550417" name="box_908550417" shape="box" x1="-459.141754" y1="146.513596" z1="387.087402" x2="-449.541779" y2="152.343582" z2="406.547424" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="908550421" name="box_908550421" shape="box" x1="-455.663330" y1="137.043976" z1="388.357758" x2="-453.093323" y2="147.593964" z2="390.957733" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="908550422" name="box_908550422" shape="box" x1="-455.634521" y1="137.043976" z1="402.773895" x2="-453.064514" y2="147.593964" z2="405.373871" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="908550426" name="box_908550426" shape="box" x1="-474.092651" y1="131.147919" z1="402.511505" x2="-471.842651" y2="148.077911" z2="404.761505" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="908550427" name="sphere_908550427" shape="sphere" x1="-464.153381" y1="138.165680" z1="396.854767" radius="1.060000"> | |
<Property type="Interaction" id="1654002388" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="908550428" name="sphere_908550428" shape="sphere" x1="-455.313690" y1="115.031250" z1="394.585114" radius="65.000000" /> | |
<AreaDefinition id="908550429" name="sphere_908550429" shape="sphere" x1="-448.143890" y1="148.683502" z1="396.759918" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="908550418" name="box_908550418" shape="box" x1="-439.645813" y1="131.147919" z1="401.485626" x2="-437.395813" y2="148.077911" z2="403.735626" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="908550419" name="box_908550419" shape="box" x1="-439.631012" y1="131.147919" z1="390.005890" x2="-437.381012" y2="148.077911" z2="392.255890" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="908550430" name="sphere_908550430" shape="sphere" x1="-444.651917" y1="116.737282" z1="403.404205" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3394142244" name="box_3394142244" shape="box" x1="-85.334702" y1="81.802399" z1="699.863464" x2="-82.854706" y2="87.222412" z2="702.343445" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3394142246" name="box_3394142246" shape="box" x1="-75.586472" y1="81.802399" z1="709.611755" x2="-73.106476" y2="87.222412" z2="712.091736" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3394142247" name="sphere_3394142247" shape="sphere" x1="-78.171608" y1="81.257767" z1="704.023987" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3394142251" name="sphere_3394142251" shape="sphere" x1="-47.250523" y1="80.195404" z1="686.407349" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="3394142250" name="sphere_3394142250" shape="sphere" x1="-22.999180" y1="80.583664" z1="643.918030" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="957935769" name="sphere_957935769" shape="sphere" x1="-39.051933" y1="82.697433" z1="727.839172" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="1617345149" name="sphere_1617345149" shape="sphere" x1="117.019943" y1="122.601440" z1="-756.311768" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="3021120707" name="sphere_3021120707" shape="sphere" x1="129.892273" y1="125.616585" z1="-833.859924" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1706517440" name="sphere_1706517440" shape="sphere" x1="186.660828" y1="125.898834" z1="-823.562378" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="1706517439" name="box_1706517439" shape="box" x1="181.595749" y1="126.443466" z1="-831.630127" x2="184.075760" y2="131.863480" z2="-829.150146" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3021120753" name="sphere_3021120753" shape="sphere" x1="193.298553" y1="125.396439" z1="-770.204163" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="1706517437" name="box_1706517437" shape="box" x1="191.343979" y1="126.443466" z1="-821.881836" x2="193.823990" y2="131.863480" z2="-819.401855" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3886949057" name="box_3886949057" shape="box" x1="105.140137" y1="246.916794" z1="-120.549332" x2="110.830139" y2="251.136795" z2="-103.379364" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="3886949060" name="box_3886949060" shape="box" x1="112.756226" y1="263.188416" z1="-107.390617" x2="115.006226" y2="280.118408" z2="-105.140617" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3886949061" name="box_3886949061" shape="box" x1="112.771027" y1="263.188416" z1="-118.870354" x2="115.021027" y2="280.118408" z2="-116.620354" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3886949072" name="sphere_3886949072" shape="sphere" x1="107.750122" y1="248.777740" z1="-105.472038" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3886949055" name="box_3886949055" shape="box" x1="86.682610" y1="268.554047" z1="-121.482193" x2="106.482613" y2="278.054047" z2="-102.282196" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="3886949058" name="box_3886949058" shape="box" x1="100.964661" y1="263.067474" z1="-121.618767" x2="106.714661" y2="268.067474" z2="-114.118767" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="3886949059" name="box_3886949059" shape="box" x1="93.260284" y1="278.554077" z1="-121.788834" x2="102.860260" y2="284.384094" z2="-102.328827" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="3886949062" name="box_3886949062" shape="box" x1="100.950592" y1="263.067474" z1="-109.973137" x2="106.700592" y2="268.067474" z2="-102.473137" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="3886949063" name="box_3886949063" shape="box" x1="96.738708" y1="269.084473" z1="-120.518494" x2="99.308716" y2="279.634460" z2="-117.918488" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3886949064" name="box_3886949064" shape="box" x1="96.767517" y1="269.084473" z1="-106.102364" x2="99.337524" y2="279.634460" z2="-103.502357" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3886949066" name="sphere_3886949066" shape="sphere" x1="98.077332" y1="280.904022" z1="-112.310905" radius="9.400000" /> | |
<AreaDefinition id="3886949070" name="sphere_3886949070" shape="sphere" x1="97.088348" y1="247.071716" z1="-114.291130" radius="65.000000" /> | |
<AreaDefinition id="3886949071" name="sphere_3886949071" shape="sphere" x1="104.258148" y1="280.723969" z1="-112.116325" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3886949054" name="box_3886949054" shape="box" x1="83.368866" y1="257.554382" z1="-118.367424" x2="93.368866" y2="259.554382" z2="-113.367424" rotX="-0.000000" rotY="-1.117011" rotZ="0.000000" /> | |
<AreaDefinition id="3886949065" name="box_3886949065" shape="box" x1="76.560120" y1="257.556305" z1="-124.139053" x2="88.560120" y2="261.756317" z2="-99.939056" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="3886949067" name="box_3886949067" shape="box" x1="83.216431" y1="257.554382" z1="-110.332512" x2="93.216431" y2="259.554382" z2="-105.332512" rotX="-0.000000" rotY="1.117011" rotZ="0.000000" /> | |
<AreaDefinition id="3886949069" name="sphere_3886949069" shape="sphere" x1="88.248657" y1="270.206146" z1="-112.021477" radius="1.060000"> | |
<Property type="Interaction" id="1654002388" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3886949056" name="box_3886949056" shape="box" x1="78.309387" y1="263.188416" z1="-119.922478" x2="80.559387" y2="280.118408" z2="-117.672478" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3886949068" name="box_3886949068" shape="box" x1="78.309387" y1="263.188416" z1="-106.364738" x2="80.559387" y2="280.118408" z2="-104.114738" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1071436467" name="box_1071436467" shape="box" x1="483.907349" y1="94.741669" z1="-440.647675" x2="486.157349" y2="111.671677" z2="-438.397675" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1071436470" name="box_1071436470" shape="box" x1="498.858246" y1="110.107338" z1="-442.514038" x2="508.458221" y2="115.937340" z2="-423.054016" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="1071436474" name="box_1071436474" shape="box" x1="502.336670" y1="100.637718" z1="-441.243683" x2="504.906677" y2="111.187721" z2="-438.643707" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1071436475" name="box_1071436475" shape="box" x1="502.365479" y1="100.637718" z1="-426.827545" x2="504.935486" y2="111.187721" z2="-424.227570" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1071436479" name="box_1071436479" shape="box" x1="483.907349" y1="94.741669" z1="-427.089935" x2="486.157349" y2="111.671677" z2="-424.839935" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1071436480" name="sphere_1071436480" shape="sphere" x1="493.846619" y1="101.759438" z1="-432.746674" radius="1.060000"> | |
<Property type="Interaction" id="1654002388" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1071436481" name="sphere_1071436481" shape="sphere" x1="502.686310" y1="78.625000" z1="-435.016327" radius="65.000000" /> | |
<AreaDefinition id="1071436482" name="sphere_1071436482" shape="sphere" x1="509.856110" y1="112.277260" z1="-432.841522" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495558" name="box_1209495558" shape="box" x1="381.625702" y1="99.649292" z1="316.986664" x2="384.315704" y2="105.989288" z2="319.856659" rotX="-0.000000" rotY="-5.497787" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495554" name="sphere_1209495554" shape="sphere" x1="368.807861" y1="93.091766" z1="330.297333" radius="32.589996" /> | |
<AreaDefinition id="1209495556" name="box_1209495556" shape="box" x1="373.152588" y1="106.164520" z1="333.698120" x2="375.272583" y2="112.944519" z2="335.898132" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495557" name="box_1209495557" shape="box" x1="356.552917" y1="99.603271" z1="341.810913" x2="359.282898" y2="105.943268" z2="344.610901" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495559" name="box_1209495559" shape="box" x1="365.149597" y1="106.164520" z1="325.573181" x2="367.269592" y2="112.944519" z2="327.773193" rotX="-0.000000" rotY="-4.712389" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495548" name="box_1209495548" shape="box" x1="355.105713" y1="86.370590" z1="417.975006" x2="356.355713" y2="92.970596" z2="419.225006" rotX="-0.000000" rotY="-5.497787" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495549" name="box_1209495549" shape="box" x1="356.795013" y1="86.369003" z1="419.587555" x2="358.045013" y2="92.969009" z2="420.837555" rotX="-0.000000" rotY="-5.497787" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495543" name="box_1209495543" shape="box" x1="407.595703" y1="94.158539" z1="371.350647" x2="409.595703" y2="99.158539" z2="373.350647" rotX="-0.000000" rotY="-3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3501400084" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495545" name="box_1209495545" shape="box" x1="411.004211" y1="94.158539" z1="367.942139" x2="413.004211" y2="99.158539" z2="369.942139" rotX="-0.000000" rotY="-3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3612690083" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495541" name="box_1209495541" shape="box" x1="388.431091" y1="86.319595" z1="451.223602" x2="389.681091" y2="92.919601" z2="452.473602" rotX="-0.000000" rotY="-5.497787" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495542" name="box_1209495542" shape="box" x1="386.687927" y1="86.321182" z1="449.557251" x2="387.937927" y2="92.921188" z2="450.807251" rotX="-0.000000" rotY="-5.497787" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495540" name="box_1209495540" shape="box" x1="469.086090" y1="86.316231" z1="332.371490" x2="470.336090" y2="92.946220" z2="333.621490" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495544" name="box_1209495544" shape="box" x1="467.324371" y1="86.324112" z1="330.609741" x2="468.574371" y2="92.924118" z2="331.859741" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495546" name="box_1209495546" shape="box" x1="498.575897" y1="86.318771" z1="361.741333" x2="499.825897" y2="92.918777" z2="362.991333" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495547" name="box_1209495547" shape="box" x1="500.219238" y1="86.318771" z1="363.391693" x2="501.469238" y2="92.918777" z2="364.641693" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495550" name="box_1209495550" shape="box" x1="486.358887" y1="84.876923" z1="415.845398" x2="487.608887" y2="94.376923" z2="417.095398" rotX="-0.000000" rotY="-3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495551" name="box_1209495551" shape="box" x1="484.722351" y1="84.896515" z1="417.482635" x2="485.972351" y2="94.396515" z2="418.732635" rotX="-0.000000" rotY="-3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495538" name="box_1209495538" shape="box" x1="455.050415" y1="84.895447" z1="447.953766" x2="456.300415" y2="94.395447" z2="449.203766" rotX="-0.000000" rotY="-3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3534028451" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1209495539" name="box_1209495539" shape="box" x1="453.506531" y1="84.887238" z1="449.499451" x2="454.756531" y2="94.387238" z2="450.749451" rotX="-0.000000" rotY="-3.926991" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3399848452" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1071436471" name="box_1071436471" shape="box" x1="518.354187" y1="94.741669" z1="-428.115814" x2="520.604187" y2="111.671661" z2="-425.865814" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1071436472" name="box_1071436472" shape="box" x1="518.369019" y1="94.741669" z1="-439.595551" x2="520.619019" y2="111.671677" z2="-437.345551" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1071436483" name="sphere_1071436483" shape="sphere" x1="513.348083" y1="80.331032" z1="-426.197235" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1127372025" name="sphere_1127372025" shape="sphere" x1="748.513550" y1="127.738678" z1="-197.774200" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3051869890" name="box_3051869890" shape="box" x1="799.141541" y1="129.049896" z1="-200.132675" x2="801.621521" y2="134.469910" z2="-197.652664" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3051869891" name="sphere_3051869891" shape="sphere" x1="804.206726" y1="128.505264" z1="-192.064926" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3051869888" name="box_3051869888" shape="box" x1="808.889832" y1="129.049896" z1="-190.384415" x2="811.369812" y2="134.469910" z2="-187.904404" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1895862082" name="sphere_1895862082" shape="sphere" x1="807.661133" y1="127.610962" z1="-138.238388" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613927" name="sphere_2318613927" shape="sphere" x1="622.998108" y1="77.959045" z1="708.812439" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613921" name="box_2318613921" shape="box" x1="676.567444" y1="91.015076" z1="696.255127" x2="679.637390" y2="102.355072" z2="699.295166" rotX="-0.000000" rotY="3.839723" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613930" name="sphere_2318613930" shape="sphere" x1="681.568726" y1="77.959045" z1="677.585632" radius="24.199999"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613926" name="sphere_2318613926" shape="sphere" x1="645.735535" y1="77.959045" z1="672.345459" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613920" name="box_2318613920" shape="box" x1="679.780273" y1="91.015068" z1="700.084045" x2="682.850220" y2="102.355080" z2="703.124084" rotX="-0.000000" rotY="3.839723" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613931" name="sphere_2318613931" shape="sphere" x1="685.466309" y1="77.959045" z1="721.371765" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613922" name="box_2318613922" shape="box" x1="670.188904" y1="80.607735" z1="716.888000" x2="672.278870" y2="91.227745" z2="718.997986" rotX="-0.000000" rotY="4.886920" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613918" name="box_2318613918" shape="box" x1="664.374573" y1="91.015076" z1="713.010925" x2="667.444519" y2="102.355072" z2="716.050964" rotX="-0.000000" rotY="0.698130" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613919" name="box_2318613919" shape="box" x1="661.161682" y1="91.015076" z1="709.182007" x2="664.231628" y2="102.355072" z2="712.222046" rotX="-0.000000" rotY="0.698130" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613929" name="sphere_2318613929" shape="sphere" x1="656.162537" y1="77.959045" z1="710.488464" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613934" name="sphere_2318613934" shape="sphere" x1="785.052856" y1="77.959045" z1="841.619995" radius="260.000000"> | |
<Property type="Exclusive" id="3617884019" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613925" name="sphere_2318613925" shape="sphere" x1="799.775146" y1="77.959045" z1="1003.721924" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613933" name="sphere_2318613933" shape="sphere" x1="854.564148" y1="77.959045" z1="995.300903" radius="36.019993"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613928" name="sphere_2318613928" shape="sphere" x1="953.896667" y1="77.959045" z1="871.692322" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613932" name="sphere_2318613932" shape="sphere" x1="933.447510" y1="77.959045" z1="929.110107" radius="44.279987"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613924" name="sphere_2318613924" shape="sphere" x1="973.537476" y1="77.959045" z1="899.762024" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="2318613923" name="sphere_2318613923" shape="sphere" x1="824.201904" y1="77.959045" z1="1024.141113" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<AreaDefinition id="139532401" name="sphere_139532400" shape="sphere" x1="-3014.650391" y1="77.741943" z1="-2383.331055" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532385" name="box_139532384" shape="box" x1="-3018.992676" y1="90.797974" z1="-2338.174072" x2="-3015.922852" y2="102.137970" z2="-2335.134033" rotX="-0.000000" rotY="0.191986" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532387" name="box_139532386" shape="box" x1="-3019.946289" y1="90.797974" z1="-2343.080566" x2="-3016.876465" y2="102.137970" z2="-2340.040527" rotX="-0.000000" rotY="0.191986" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532393" name="box_139532392" shape="box" x1="-3015.500000" y1="80.390633" z1="-2332.143555" x2="-3013.410156" y2="91.010643" z2="-2330.033691" rotX="-0.000000" rotY="4.380776" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532407" name="sphere_139532406" shape="sphere" x1="-3024.022705" y1="77.741943" z1="-2344.915039" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532403" name="sphere_139532402" shape="sphere" x1="-3052.216553" y1="77.741943" z1="-2362.459473" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532389" name="box_139532388" shape="box" x1="-2999.251465" y1="90.797966" z1="-2342.011475" x2="-2996.181641" y2="102.137978" z2="-2338.971436" rotX="-0.000000" rotY="3.333579" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532391" name="box_139532390" shape="box" x1="-3000.205078" y1="90.797974" z1="-2346.917969" x2="-2997.135254" y2="102.137970" z2="-2343.877930" rotX="-0.000000" rotY="3.333579" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532409" name="sphere_139532408" shape="sphere" x1="-2985.850342" y1="77.741943" z1="-2361.375488" radius="24.199999"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532411" name="sphere_139532410" shape="sphere" x1="-3003.669434" y1="77.741943" z1="-2321.189697" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532417" name="sphere_139532416" shape="sphere" x1="-2974.866455" y1="77.741943" z1="-2167.737793" radius="260.000000"> | |
<Property type="Exclusive" id="3617884019" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532405" name="sphere_139532404" shape="sphere" x1="-2841.771484" y1="77.741943" z1="-2059.579102" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532399" name="sphere_139532398" shape="sphere" x1="-3040.578125" y1="77.741943" z1="-2018.822632" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532395" name="sphere_139532394" shape="sphere" x1="-3029.113525" y1="77.741943" z1="-1989.121338" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532415" name="sphere_139532414" shape="sphere" x1="-2988.576172" y1="77.741943" z1="-1999.625610" radius="36.019993"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532413" name="sphere_139532412" shape="sphere" x1="-2887.493164" y1="77.741943" z1="-2019.274170" radius="44.279987"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="139532397" name="sphere_139532396" shape="sphere" x1="-2838.201660" y1="77.741943" z1="-2025.506714" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="2470876204" name="box_2470876204" shape="box" x1="-2824.145264" y1="92.248978" z1="-1420.052246" x2="-2821.665283" y2="97.668991" z2="-1417.572266" rotX="-0.000000" rotY="1.230457" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2470876205" name="sphere_2470876205" shape="sphere" x1="-2818.389648" y1="91.704346" z1="-1425.204712" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="2470876202" name="box_2470876202" shape="box" x1="-2819.543701" y1="92.248978" z1="-1433.047852" x2="-2817.063721" y2="97.668991" z2="-1430.567871" rotX="-0.000000" rotY="-1.911136" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1393329108" name="sphere_1393329108" shape="sphere" x1="-2640.529785" y1="91.053482" z1="-1399.071289" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="1393329047" name="sphere_1393329047" shape="sphere" x1="-2651.587891" y1="91.562500" z1="-1340.518555" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552979" name="box_3429552979" shape="box" x1="-3022.103271" y1="110.829361" z1="-540.978394" x2="-3019.853271" y2="113.079361" z2="-538.728394" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176241" name="box_3460176240" shape="box" x1="-3026.290527" y1="89.453262" z1="-550.057312" x2="-3023.450684" y2="112.453293" z2="-547.197327" rotX="-0.000000" rotY="-2.504547" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176251" name="box_3460176250" shape="box" x1="-3029.426514" y1="89.453262" z1="-547.736816" x2="-3026.586670" y2="112.453293" z2="-544.876831" rotX="-0.000000" rotY="-2.504547" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176309" name="sphere_3460176308" shape="sphere" x1="-3023.601563" y1="-120.781708" z1="-545.324768" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552984" name="box_3429552984" shape="box" x1="-3015.082275" y1="112.118118" z1="-545.014038" x2="-3012.832275" y2="114.368118" z2="-542.764038" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176311" name="sphere_3460176310" shape="sphere" x1="-3018.365234" y1="85.959641" z1="-542.478821" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176239" name="box_3460176238" shape="box" x1="-2970.148193" y1="89.453262" z1="-545.203125" x2="-2967.308350" y2="112.453293" z2="-542.343140" rotX="-0.000000" rotY="-2.783800" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552982" name="box_3429552982" shape="box" x1="-2976.312744" y1="112.118118" z1="-538.950317" x2="-2974.062744" y2="114.368118" z2="-536.700317" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552977" name="box_3429552977" shape="box" x1="-2956.163086" y1="112.118118" z1="-547.582214" x2="-2953.913086" y2="114.368118" z2="-545.332214" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552978" name="box_3429552978" shape="box" x1="-2964.785645" y1="110.829361" z1="-536.950928" x2="-2962.535645" y2="113.079361" z2="-534.700928" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176237" name="box_3460176236" shape="box" x1="-2966.472656" y1="89.453262" z1="-546.577087" x2="-2963.632813" y2="112.453293" z2="-543.717102" rotX="-0.000000" rotY="-2.783800" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176313" name="sphere_3460176312" shape="sphere" x1="-2962.279297" y1="85.784637" z1="-540.088867" radius="40.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176257" name="box_3460176256" shape="box" x1="-2906.021484" y1="75.787857" z1="-566.053040" x2="-2903.771484" y2="95.787857" z2="-563.803040" rotX="-0.000000" rotY="0.357792" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3874015312" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176315" name="sphere_3460176314" shape="sphere" x1="-2896.229736" y1="80.910622" z1="-535.532043" radius="55.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176305" name="sphere_3460176304" shape="sphere" x1="-2833.730957" y1="85.784637" z1="-587.942444" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552974" name="box_3429552974" shape="box" x1="-2834.925049" y1="112.118118" z1="-593.578430" x2="-2832.675049" y2="114.368118" z2="-591.328430" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552975" name="box_3429552975" shape="box" x1="-2827.763428" y1="110.829361" z1="-590.342041" x2="-2825.513428" y2="113.079361" z2="-588.092041" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176223" name="box_3460176222" shape="box" x1="-2822.263916" y1="89.452286" z1="-598.181885" x2="-2819.424072" y2="112.452316" z2="-595.321899" rotX="-0.000000" rotY="2.713987" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176231" name="box_3460176230" shape="box" x1="-2825.899658" y1="89.453262" z1="-599.839233" x2="-2823.059814" y2="112.453293" z2="-596.979248" rotX="-0.000000" rotY="2.713987" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176317" name="sphere_3460176316" shape="sphere" x1="-2844.757324" y1="85.784637" z1="-543.743347" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176319" name="sphere_3460176318" shape="sphere" x1="-2764.175781" y1="85.784637" z1="-529.927185" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552972" name="box_3429552972" shape="box" x1="-2754.627197" y1="112.118118" z1="-557.989868" x2="-2752.377197" y2="114.368118" z2="-555.739868" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552973" name="box_3429552973" shape="box" x1="-2760.564697" y1="110.829361" z1="-566.688599" x2="-2758.314697" y2="113.079361" z2="-564.438599" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176307" name="sphere_3460176306" shape="sphere" x1="-2753.747803" y1="85.784637" z1="-564.606323" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176273" name="box_3460176272" shape="box" x1="-2751.449463" y1="89.453262" z1="-567.118774" x2="-2748.609619" y2="112.453293" z2="-564.258789" rotX="-0.000000" rotY="1.815142" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176299" name="box_3460176298" shape="box" x1="-2752.496582" y1="89.453262" z1="-571.318665" x2="-2749.656738" y2="112.453293" z2="-568.458679" rotX="-0.000000" rotY="1.815142" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176327" name="sphere_3460176326" shape="sphere" x1="-3030.040771" y1="85.959641" z1="-472.707764" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552980" name="box_3429552980" shape="box" x1="-3041.906982" y1="110.829361" z1="-395.094147" x2="-3039.656982" y2="113.079361" z2="-392.844147" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552985" name="box_3429552985" shape="box" x1="-3048.819092" y1="112.118118" z1="-407.307373" x2="-3046.569092" y2="114.368118" z2="-405.057373" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176253" name="box_3460176252" shape="box" x1="-3051.071289" y1="89.453255" z1="-398.775940" x2="-3048.231445" y2="112.453285" z2="-395.915955" rotX="-0.000000" rotY="-1.719149" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176259" name="box_3460176258" shape="box" x1="-3051.634521" y1="89.453262" z1="-394.997284" x2="-3048.794678" y2="112.453293" z2="-392.137299" rotX="-0.000000" rotY="-1.719149" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176341" name="sphere_3460176340" shape="sphere" x1="-3010.690430" y1="-119.001434" z1="-415.381287" radius="23.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176351" name="sphere_3460176350" shape="sphere" x1="-3048.949951" y1="-132.192841" z1="-393.849976" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176353" name="sphere_3460176352" shape="sphere" x1="-3042.914307" y1="85.959641" z1="-395.778931" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176329" name="sphere_3460176328" shape="sphere" x1="-2996.644775" y1="-118.944794" z1="-475.302216" radius="55.000000"> | |
<Property type="Exclusive" id="3256068608" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176303" name="sphere_3460176302" shape="sphere" x1="-2991.307861" y1="85.787857" z1="-499.035370" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176325" name="sphere_3460176324" shape="sphere" x1="-2994.263428" y1="85.457336" z1="-501.151886" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176339" name="sphere_3460176338" shape="sphere" x1="-3002.071045" y1="85.457336" z1="-454.496552" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176343" name="sphere_3460176342" shape="sphere" x1="-2998.379150" y1="86.188629" z1="-457.915710" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552983" name="box_3429552983" shape="box" x1="-2986.672607" y1="110.829361" z1="-386.127563" x2="-2984.422607" y2="113.079361" z2="-383.877563" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552986" name="box_3429552986" shape="box" x1="-2992.813232" y1="112.118118" z1="-395.222229" x2="-2990.563232" y2="114.368118" z2="-392.972229" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176261" name="box_3460176260" shape="box" x1="-2996.434814" y1="89.453262" z1="-387.585205" x2="-2993.594971" y2="112.453293" z2="-384.725220" rotX="-0.000000" rotY="-1.474803" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176265" name="box_3460176264" shape="box" x1="-2996.043701" y1="89.453262" z1="-383.525269" x2="-2993.203857" y2="112.453293" z2="-380.665283" rotX="-0.000000" rotY="-1.474803" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552987" name="box_3429552987" shape="box" x1="-2986.423340" y1="112.118118" z1="-377.496368" x2="-2984.173340" y2="114.368118" z2="-375.246368" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176355" name="sphere_3460176354" shape="sphere" x1="-2987.087646" y1="85.784637" z1="-382.694275" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176287" name="box_3460176286" shape="box" x1="-2927.322998" y1="75.887589" z1="-462.336182" x2="-2925.072998" y2="83.637589" z2="-460.086182" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
<Property type="Thrust - No Gravity" id="397307676" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552981" name="box_3429552981" shape="box" x1="-2914.730713" y1="31.979202" z1="-511.557373" x2="-2912.730713" y2="121.979202" z2="-509.557373" rotX="-0.000000" rotY="-1.736603" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="2739617906" VelocityMult="-3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176249" name="box_3460176248" shape="box" x1="-2898.003174" y1="92.832764" z1="-452.670685" x2="-2895.262939" y2="109.142746" z2="-450.310699" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176285" name="box_3460176284" shape="box" x1="-2929.434082" y1="75.887589" z1="-449.720123" x2="-2927.184082" y2="83.637589" z2="-447.470123" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
<Property type="Thrust - No Gravity" id="397307676" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176255" name="box_3460176254" shape="box" x1="-2898.651123" y1="92.832764" z1="-448.797882" x2="-2895.910889" y2="109.142746" z2="-446.437897" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552971" name="box_3429552971" shape="box" x1="-2935.195801" y1="39.479202" z1="-389.263123" x2="-2933.195801" y2="114.479202" z2="-387.263123" rotX="-0.000000" rotY="-1.736603" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="2739617906" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176263" name="box_3460176262" shape="box" x1="-2943.100586" y1="75.787857" z1="-343.841034" x2="-2940.850586" y2="95.787857" z2="-341.591034" rotX="-0.000000" rotY="-0.689405" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3874015312" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176357" name="sphere_3460176356" shape="sphere" x1="-2937.609863" y1="85.784637" z1="-340.716187" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552988" name="box_3429552988" shape="box" x1="-2884.884033" y1="112.118118" z1="-295.636993" x2="-2882.634033" y2="114.368118" z2="-293.386993" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176365" name="sphere_3460176364" shape="sphere" x1="-2884.418213" y1="85.784637" z1="-292.808960" radius="50.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176331" name="sphere_3460176330" shape="sphere" x1="-2876.163086" y1="65.784645" z1="-449.344910" radius="85.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552989" name="box_3429552989" shape="box" x1="-2844.801025" y1="14.479202" z1="-415.392120" x2="-2842.801025" y2="139.479202" z2="-413.392120" rotX="-0.000000" rotY="2.975786" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="2739617906" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176235" name="box_3460176234" shape="box" x1="-2832.641113" y1="87.413429" z1="-438.518585" x2="-2829.900879" y2="111.443428" z2="-436.158600" rotX="-0.000000" rotY="2.975786" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176269" name="box_3460176268" shape="box" x1="-2832.167236" y1="87.413437" z1="-441.350555" x2="-2829.427002" y2="111.443436" z2="-438.990570" rotX="-0.000000" rotY="2.975786" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176359" name="sphere_3460176358" shape="sphere" x1="-2877.867432" y1="85.784637" z1="-339.383820" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552966" name="box_3429552966" shape="box" x1="-2876.723145" y1="110.829361" z1="-295.607056" x2="-2874.473145" y2="113.079361" z2="-293.357056" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176267" name="box_3460176266" shape="box" x1="-2878.334717" y1="89.453262" z1="-287.003723" x2="-2875.494873" y2="112.453293" z2="-284.143738" rotX="-0.000000" rotY="0.095993" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176281" name="box_3460176280" shape="box" x1="-2874.334473" y1="89.453262" z1="-287.388763" x2="-2871.494629" y2="112.453293" z2="-284.528778" rotX="-0.000000" rotY="0.095993" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176333" name="sphere_3460176332" shape="sphere" x1="-2799.447266" y1="116.424400" z1="-458.436768" radius="20.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176335" name="sphere_3460176334" shape="sphere" x1="-2773.263916" y1="85.282333" z1="-460.426758" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176323" name="sphere_3460176322" shape="sphere" x1="-2766.450928" y1="85.814964" z1="-490.066071" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176345" name="sphere_3460176344" shape="sphere" x1="-2807.742920" y1="116.424400" z1="-405.746429" radius="20.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176347" name="sphere_3460176346" shape="sphere" x1="-2780.350342" y1="85.526825" z1="-398.994934" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176349" name="sphere_3460176348" shape="sphere" x1="-2770.766113" y1="85.797150" z1="-398.179504" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176221" name="box_3460176220" shape="box" x1="-2776.134521" y1="98.174774" z1="-441.122314" x2="-2773.634521" y2="106.674774" z2="-438.622314" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176225" name="box_3460176224" shape="box" x1="-2777.096436" y1="98.174774" z1="-435.375336" x2="-2774.596436" y2="106.674774" z2="-432.875336" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176245" name="box_3460176244" shape="box" x1="-2766.974365" y1="106.971268" z1="-442.480865" x2="-2764.854248" y2="113.751266" z2="-440.280853" rotX="-0.000000" rotY="0.619592" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176247" name="box_3460176246" shape="box" x1="-2768.941650" y1="106.971268" z1="-431.247314" x2="-2766.821533" y2="113.751266" z2="-429.047302" rotX="-0.000000" rotY="-2.522001" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176279" name="box_3460176278" shape="box" x1="-2757.705811" y1="98.174774" z1="-430.964935" x2="-2755.205811" y2="106.674774" z2="-428.464935" rotX="-0.000000" rotY="-1.736603" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176301" name="box_3460176300" shape="box" x1="-2756.370117" y1="98.174774" z1="-438.946381" x2="-2753.870117" y2="106.674774" z2="-436.446381" rotX="-0.000000" rotY="1.404990" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176363" name="sphere_3460176362" shape="sphere" x1="-2792.609375" y1="85.784637" z1="-330.667999" radius="15.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552968" name="box_3429552968" shape="box" x1="-2797.194092" y1="110.829361" z1="-297.217041" x2="-2794.944092" y2="113.079361" z2="-294.967041" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176283" name="box_3460176282" shape="box" x1="-2797.449951" y1="89.453262" z1="-288.485199" x2="-2794.610107" y2="112.453293" z2="-285.625214" rotX="-0.000000" rotY="0.244346" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176291" name="box_3460176290" shape="box" x1="-2793.541504" y1="89.453262" z1="-289.459564" x2="-2790.701660" y2="112.453293" z2="-286.599579" rotX="-0.000000" rotY="0.244346" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176367" name="sphere_3460176366" shape="sphere" x1="-2795.020020" y1="85.784637" z1="-289.463196" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552976" name="box_3429552976" shape="box" x1="-2789.591797" y1="112.118118" z1="-299.402924" x2="-2787.341797" y2="114.368118" z2="-297.152924" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176321" name="sphere_3460176320" shape="sphere" x1="-2730.417236" y1="85.959641" z1="-494.919739" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552967" name="box_3429552967" shape="box" x1="-2722.959473" y1="112.118118" z1="-411.227722" x2="-2720.709473" y2="114.368118" z2="-408.977722" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176293" name="box_3460176292" shape="box" x1="-2716.378418" y1="89.453262" z1="-418.349945" x2="-2713.538574" y2="112.453293" z2="-415.489960" rotX="-0.000000" rotY="1.029744" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552969" name="box_3429552969" shape="box" x1="-2719.005371" y1="112.118118" z1="-431.319763" x2="-2716.755371" y2="114.368118" z2="-429.069763" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="178" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552970" name="box_3429552970" shape="box" x1="-2723.026611" y1="110.829361" z1="-424.435059" x2="-2720.776611" y2="113.079361" z2="-422.185059" rotX="-0.000000" rotY="-0.165806" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3113800722" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="36" NextChainId="0" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176229" name="box_3460176228" shape="box" x1="-2714.445557" y1="89.453262" z1="-421.566742" x2="-2711.605713" y2="112.453293" z2="-418.706757" rotX="-0.000000" rotY="1.029744" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3333108881" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176337" name="sphere_3460176336" shape="sphere" x1="-2720.767334" y1="85.784637" z1="-418.897369" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="3460176361" name="sphere_3460176360" shape="sphere" x1="-2748.856934" y1="85.959641" z1="-352.871033" radius="45.000000"> | |
<Property type="Exclusive" id="1026561212" /> | |
</AreaDefinition> | |
<AreaDefinition id="799669022" name="sphere_799669022" shape="sphere" x1="-2723.261719" y1="57.998791" z1="328.750031" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="799669060" name="sphere_799669060" shape="sphere" x1="-2731.195801" y1="57.604568" z1="438.472626" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="195358685" name="sphere_195358685" shape="sphere" x1="-2659.057129" y1="58.723133" z1="391.893585" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="195358622" name="sphere_195358622" shape="sphere" x1="-2668.759766" y1="62.133621" z1="453.091278" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2580954635" name="box_2580954635" shape="box" x1="-2581.657959" y1="89.056435" z1="455.879395" x2="-2579.177979" y2="94.476448" z2="458.359375" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2580954637" name="box_2580954637" shape="box" x1="-2595.444092" y1="89.056435" z1="455.879395" x2="-2592.964111" y2="94.476448" z2="458.359375" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2580954638" name="sphere_2580954638" shape="sphere" x1="-2586.671387" y1="88.511803" z1="459.242554" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3123362125" name="sphere_3123362125" shape="sphere" x1="-2634.655029" y1="70.869530" z1="961.076050" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3123362179" name="sphere_3123362179" shape="sphere" x1="-2619.216064" y1="66.753784" z1="806.256714" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="3123362152" name="sphere_3123362152" shape="sphere" x1="-2587.786377" y1="67.873421" z1="962.010559" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="65231481" name="sphere_65231481" shape="sphere" x1="-2502.177979" y1="27.735851" z1="-2659.692139" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="4179618845" name="sphere_4179618845" shape="sphere" x1="-2443.042725" y1="29.313721" z1="-2733.127930" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="959931587" name="sphere_959931587" shape="sphere" x1="-2451.362305" y1="28.170212" z1="-2656.225342" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1161683491" name="box_1161683491" shape="box" x1="-2488.214111" y1="22.042406" z1="-2616.634766" x2="-2466.674072" y2="33.642406" z2="-2605.264648" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="1161683492" name="box_1161683492" shape="box" x1="-2471.915039" y1="29.017534" z1="-2615.426025" x2="-2469.435059" y2="34.437546" z2="-2612.946045" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1161683493" name="box_1161683493" shape="box" x1="-2489.912842" y1="28.042406" z1="-2622.441650" x2="-2464.912842" y2="43.642410" z2="-2600.441650" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="1161683494" name="box_1161683494" shape="box" x1="-2485.701172" y1="29.017534" z1="-2615.426025" x2="-2483.221191" y2="34.437546" z2="-2612.946045" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1161683495" name="sphere_1161683495" shape="sphere" x1="-2476.928467" y1="28.472900" z1="-2612.062744" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="959931586" name="sphere_959931586" shape="sphere" x1="-2397.619629" y1="28.170212" z1="-2650.906738" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="65231523" name="sphere_65231523" shape="sphere" x1="-2427.388428" y1="25.228733" z1="-2606.359863" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="3421352341" name="sphere_3421352341" shape="sphere" x1="-2180.881104" y1="99.119873" z1="-1742.181030" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3421352369" name="sphere_3421352369" shape="sphere" x1="-2218.427734" y1="87.292076" z1="-1767.250122" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="532357343" name="box_532357343" shape="box" x1="-2155.722900" y1="93.631653" z1="-1792.826416" x2="-2134.182861" y2="105.231659" z2="-1781.456299" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="532357344" name="box_532357344" shape="box" x1="-2139.423828" y1="98.203461" z1="-1791.617554" x2="-2136.943848" y2="103.623474" z2="-1789.137573" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="532357345" name="box_532357345" shape="box" x1="-2157.421387" y1="99.631653" z1="-1798.633301" x2="-2132.421387" y2="115.231659" z2="-1776.633301" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="532357346" name="box_532357346" shape="box" x1="-2153.210205" y1="98.730804" z1="-1791.617554" x2="-2150.730225" y2="104.150818" z2="-1789.137573" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="532357347" name="sphere_532357347" shape="sphere" x1="-2144.437500" y1="98.439102" z1="-1788.254395" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3867376834" name="sphere_3867376834" shape="sphere" x1="-2134.385742" y1="86.202118" z1="-1737.333496" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="3867376943" name="sphere_3867376943" shape="sphere" x1="-2127.351318" y1="69.942528" z1="-1662.212891" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3434214634" name="box_3434214634" shape="box" x1="-2495.777344" y1="89.007065" z1="235.654480" x2="-2474.237305" y2="100.607071" z2="247.024475" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000" /> | |
<AreaDefinition id="3434214635" name="box_3434214635" shape="box" x1="-2483.011230" y1="95.982193" z1="246.868530" x2="-2480.531250" y2="101.402206" z2="249.348541" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3434214636" name="box_3434214636" shape="box" x1="-2497.015381" y1="95.007065" z1="230.370880" x2="-2472.015381" y2="110.607071" z2="252.370880" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000" /> | |
<AreaDefinition id="3434214637" name="box_3434214637" shape="box" x1="-2483.010986" y1="95.982193" z1="233.082077" x2="-2480.531006" y2="101.402206" z2="235.562088" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3434214638" name="sphere_3434214638" shape="sphere" x1="-2483.894287" y1="95.437561" z1="241.854843" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="858983155" name="box_858983155" shape="box" x1="-2529.896729" y1="102.124413" z1="755.635986" x2="-2527.416748" y2="107.544426" z2="758.115967" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="858983153" name="box_858983153" shape="box" x1="-2539.644775" y1="102.124413" z1="745.887878" x2="-2537.164795" y2="107.544426" z2="748.367859" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184666" name="box_2352184665" shape="box" x1="-2511.934570" y1="75.508583" z1="1917.131470" x2="-2509.434570" y2="84.008583" z2="1919.631470" rotX="-0.000000" rotY="1.823869" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184670" name="box_2352184669" shape="box" x1="-2523.003906" y1="84.232323" z1="1918.355713" x2="-2520.883789" y2="91.012321" z2="1920.555664" rotX="-0.000000" rotY="1.038471" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184672" name="box_2352184671" shape="box" x1="-2520.231934" y1="84.232323" z1="1929.418335" x2="-2518.111816" y2="91.012321" z2="1931.618286" rotX="-0.000000" rotY="-2.103122" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184676" name="box_2352184675" shape="box" x1="-2529.377441" y1="75.508583" z1="1928.906128" x2="-2526.877441" y2="84.008583" z2="1931.406128" rotX="-0.000000" rotY="0.253073" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184684" name="box_2352184683" shape="box" x1="-2530.844238" y1="75.501747" z1="1923.234619" x2="-2528.344238" y2="84.001747" z2="1925.734619" rotX="-0.000000" rotY="0.253073" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184656" name="box_2352184655" shape="box" x1="-2509.890137" y1="75.508583" z1="1925.036743" x2="-2507.390137" y2="84.008583" z2="1927.536743" rotX="-0.000000" rotY="-1.317724" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184714" name="sphere_2352184713" shape="sphere" x1="-2506.278076" y1="63.305565" z1="1940.282227" radius="55.000000"> | |
<Property type="Exclusive" id="1854860497" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184732" name="sphere_2352184731" shape="sphere" x1="-2472.346680" y1="63.305565" z1="1822.358032" radius="35.000000"> | |
<Property type="Exclusive" id="2115590496" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184722" name="sphere_2352184721" shape="sphere" x1="-2467.851074" y1="63.305565" z1="1891.469116" radius="40.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553010" name="box_3429553010" shape="box" x1="-2469.460938" y1="-5.415016" z1="1945.360840" x2="-2467.460938" y2="114.584984" z2="1947.360840" rotX="-0.000000" rotY="0.253073" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184734" name="sphere_2352184733" shape="sphere" x1="-2388.733398" y1="63.305565" z1="1772.597290" radius="50.000000"> | |
<Property type="Exclusive" id="1625820496" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184690" name="box_2352184689" shape="box" x1="-2413.226807" y1="52.826317" z1="1873.911133" x2="-2410.976807" y2="63.826317" z2="1876.161133" rotX="-0.000000" rotY="1.998402" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184724" name="sphere_2352184723" shape="sphere" x1="-2415.223145" y1="63.305565" z1="1890.288696" radius="48.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553013" name="box_3429553013" shape="box" x1="-2405.566406" y1="32.084984" z1="1902.358521" x2="-2403.566406" y2="77.084984" z2="1904.358521" rotX="-0.000000" rotY="1.823869" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184712" name="sphere_2352184711" shape="sphere" x1="-2420.309570" y1="63.305565" z1="1971.368164" radius="40.000000"> | |
<Property type="Exclusive" id="1854860496" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184716" name="sphere_2352184715" shape="sphere" x1="-2414.846924" y1="62.644966" z1="1949.068115" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184720" name="sphere_2352184719" shape="sphere" x1="-2339.396729" y1="65.985344" z1="1851.561401" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184726" name="sphere_2352184725" shape="sphere" x1="-2358.858154" y1="158.721802" z1="1839.632813" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184660" name="box_2352184659" shape="box" x1="-2350.433350" y1="112.040909" z1="1880.860352" x2="-2346.383545" y2="156.100998" z2="1886.230469" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184662" name="box_2352184661" shape="box" x1="-2349.823730" y1="65.238396" z1="1882.102051" x2="-2346.823730" y2="69.398399" z2="1885.102051" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184664" name="box_2352184663" shape="box" x1="-2350.433350" y1="68.370201" z1="1880.860352" x2="-2346.383545" y2="110.240227" z2="1886.230469" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184688" name="box_2352184687" shape="box" x1="-2349.834717" y1="155.539902" z1="1882.057861" x2="-2346.834717" y2="157.939896" z2="1885.057861" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184696" name="box_2352184695" shape="box" x1="-2349.834717" y1="106.878571" z1="1882.057861" x2="-2346.834717" y2="112.368576" z2="1885.057861" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184702" name="box_2352184701" shape="box" x1="-2349.487305" y1="68.370201" z1="1884.654785" x2="-2345.437500" y2="110.240227" z2="1890.024902" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184704" name="box_2352184703" shape="box" x1="-2348.877441" y1="65.238396" z1="1885.896606" x2="-2345.877441" y2="69.398399" z2="1888.896606" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184706" name="box_2352184705" shape="box" x1="-2348.888428" y1="106.878571" z1="1885.852295" x2="-2345.888428" y2="112.368576" z2="1888.852295" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184708" name="box_2352184707" shape="box" x1="-2349.487305" y1="112.040909" z1="1884.654785" x2="-2345.437500" y2="156.100998" z2="1890.024902" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184710" name="box_2352184709" shape="box" x1="-2348.888428" y1="155.539902" z1="1885.852295" x2="-2345.888428" y2="157.939896" z2="1888.852295" rotX="-0.000000" rotY="-1.326450" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553009" name="box_3429553009" shape="box" x1="-2329.152832" y1="-5.415016" z1="1909.074829" x2="-2327.152832" y2="114.584984" z2="1911.074829" rotX="-0.000000" rotY="0.253073" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184718" name="sphere_2352184717" shape="sphere" x1="-2324.020508" y1="65.985344" z1="1911.020630" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184728" name="sphere_2352184727" shape="sphere" x1="-2335.201172" y1="158.721802" z1="1930.779907" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553012" name="box_3429553012" shape="box" x1="-2269.756348" y1="14.584984" z1="1848.314453" x2="-2267.756348" y2="94.584984" z2="1850.314453" rotX="-0.000000" rotY="1.823869" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184668" name="box_2352184667" shape="box" x1="-2273.109375" y1="64.758705" z1="1835.128662" x2="-2270.109375" y2="67.758705" z2="1838.128662" rotX="-0.000000" rotY="3.394665" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184698" name="box_2352184697" shape="box" x1="-2273.814453" y1="66.877647" z1="1834.423706" x2="-2269.404297" y2="75.157585" z2="1838.833618" rotX="-0.000000" rotY="3.394665" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184674" name="box_2352184673" shape="box" x1="-2282.795898" y1="52.811058" z1="1798.857422" x2="-2280.545898" y2="63.811058" z2="1801.107422" rotX="-0.000000" rotY="3.394665" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184680" name="box_2352184679" shape="box" x1="-2258.938232" y1="64.758705" z1="1889.924561" x2="-2255.938232" y2="67.758705" z2="1892.924561" rotX="-0.000000" rotY="3.394665" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184682" name="box_2352184681" shape="box" x1="-2259.643311" y1="66.877647" z1="1889.219604" x2="-2255.233154" y2="75.157585" z2="1893.629517" rotX="-0.000000" rotY="3.394665" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184730" name="sphere_2352184729" shape="sphere" x1="-2287.740723" y1="63.305565" z1="1863.900635" radius="140.000000"> | |
<Property type="Exclusive" id="4277267792" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553011" name="box_3429553011" shape="box" x1="-2242.027588" y1="44.584984" z1="1886.542603" x2="-2240.027588" y2="64.584984" z2="1888.542603" rotX="-0.000000" rotY="0.253073" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2352184654" name="box_2352184653" shape="box" x1="-2227.619873" y1="53.086449" z1="1872.384766" x2="-2225.369873" y2="65.586449" z2="1874.634766" rotX="-0.000000" rotY="0.253073" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1407676381" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1363430535" name="sphere_1363430535" shape="sphere" x1="-1553.902832" y1="80.579048" z1="-2611.452637" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="3718672033" name="sphere_3718672033" shape="sphere" x1="-2034.286987" y1="85.675186" z1="-1724.220215" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184738" name="box_1565184737" shape="box" x1="-1773.473877" y1="129.833710" z1="1083.526733" x2="-1771.223877" y2="146.763702" z2="1085.776733" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184746" name="box_1565184745" shape="box" x1="-1739.012207" y1="129.833710" z1="1084.578857" x2="-1736.762207" y2="146.763702" z2="1086.828857" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184752" name="box_1565184751" shape="box" x1="-1755.015747" y1="135.729767" z1="1083.227173" x2="-1752.445679" y2="146.279755" z2="1085.827271" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184770" name="sphere_1565184769" shape="sphere" x1="-1743.295410" y1="115.423073" z1="1071.013428" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184768" name="sphere_1565184767" shape="sphere" x1="-1743.295410" y1="115.423073" z1="1112.062500" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184750" name="box_1565184749" shape="box" x1="-1755.044556" y1="135.729767" z1="1096.972656" x2="-1752.474487" y2="146.279755" z2="1099.572754" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184760" name="box_1565184759" shape="box" x1="-1773.473877" y1="129.833710" z1="1097.084473" x2="-1771.223877" y2="146.763702" z2="1099.334473" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184744" name="box_1565184743" shape="box" x1="-1739.027100" y1="129.833710" z1="1096.058594" x2="-1736.777100" y2="146.763702" z2="1098.308594" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184742" name="box_1565184741" shape="box" x1="-1758.523071" y1="145.199387" z1="1081.660400" x2="-1748.922974" y2="151.029373" z2="1101.120361" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="1565184764" name="sphere_1565184763" shape="sphere" x1="-1759.813599" y1="147.369293" z1="1091.332886" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184766" name="sphere_1565184765" shape="sphere" x1="-1747.525146" y1="147.369293" z1="1091.332886" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1565184762" name="sphere_1565184761" shape="sphere" x1="-1754.694946" y1="113.717041" z1="1089.158081" radius="65.000000" /> | |
<AreaDefinition id="2775950537" name="sphere_2775950537" shape="sphere" x1="-1838.463745" y1="70.529320" z1="2335.302490" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2880896746" name="sphere_2880896746" shape="sphere" x1="-1850.046021" y1="67.351433" z1="2401.630615" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1073128948" name="sphere_1073128948" shape="sphere" x1="-1766.666504" y1="85.200096" z1="2228.236084" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="1558491326" name="sphere_1558491326" shape="sphere" x1="-1775.317505" y1="71.671547" z1="2330.198730" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="4007103473" name="sphere_4007103473" shape="sphere" x1="-1773.924316" y1="79.247612" z1="2357.662109" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1123116437" name="box_1123116437" shape="box" x1="-1731.442505" y1="75.779694" z1="2396.469238" x2="-1729.192505" y2="96.279694" z2="2398.719238" rotX="-0.000000" rotY="-0.689405" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3584038954" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1123116436" name="box_1123116436" shape="box" x1="-1729.515991" y1="75.779694" z1="2394.146973" x2="-1727.265991" y2="96.279694" z2="2396.396973" rotX="-0.000000" rotY="-2.260201" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="3584038954" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4180935729" name="sphere_4180935729" shape="sphere" x1="-1772.609863" y1="72.999283" z1="2465.116699" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="1510351798" name="sphere_1510351798" shape="sphere" x1="-1701.088989" y1="82.216972" z1="2271.701904" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1659231405" name="sphere_1659231405" shape="sphere" x1="-1670.656982" y1="72.169235" z1="2320.398926" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="1123116438" name="sphere_1123116438" shape="sphere" x1="-1727.182739" y1="70.718315" z1="2398.590820" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
<Property type="Exclusive" id="793152051" /> | |
</AreaDefinition> | |
<AreaDefinition id="497378772" name="sphere_497378772" shape="sphere" x1="-1677.285156" y1="71.806252" z1="2489.152344" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="2153549505" name="box_2153549505" shape="box" x1="-1609.876221" y1="86.974205" z1="2310.084961" x2="-1607.396240" y2="92.394218" z2="2312.564941" rotX="-0.000000" rotY="0.235619" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2153549506" name="sphere_2153549506" shape="sphere" x1="-1600.815674" y1="86.429573" z1="2311.631592" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="1197845363" name="sphere_1197845363" shape="sphere" x1="-1636.898438" y1="71.833458" z1="2430.842529" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1367970109" name="box_1367970109" shape="box" x1="-1641.202881" y1="73.032631" z1="2481.858887" x2="-1638.722900" y2="78.452644" z2="2484.338867" rotX="-0.000000" rotY="0.872665" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1367970111" name="box_1367970111" shape="box" x1="-1632.340820" y1="73.032631" z1="2471.299805" x2="-1629.860840" y2="78.452644" z2="2473.779785" rotX="-0.000000" rotY="-2.268928" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1367970112" name="sphere_1367970112" shape="sphere" x1="-1637.570313" y1="72.487999" z1="2476.944580" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="2153549503" name="box_2153549503" shape="box" x1="-1596.471436" y1="86.974205" z1="2306.866699" x2="-1593.991455" y2="92.394218" z2="2309.346680" rotX="-0.000000" rotY="-2.905973" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="660820305" name="sphere_660820305" shape="sphere" x1="-1487.867676" y1="81.885406" z1="-2692.535645" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="2821474239" name="sphere_2821474239" shape="sphere" x1="-1519.928833" y1="81.821785" z1="-2647.616211" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="527987008" name="sphere_527987008" shape="sphere" x1="-1465.217407" y1="80.142990" z1="-2633.240723" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="4142388424" name="box_4142388424" shape="box" x1="-1459.885010" y1="80.646980" z1="-2658.823486" x2="-1445.005127" y2="92.576988" z2="-2643.943604" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="1238442067" name="box_1238442066" shape="box" x1="-1489.472290" y1="110.037323" z1="-1191.328613" x2="-1487.222290" y2="126.967331" z2="-1189.078613" rotX="-0.000000" rotY="1.623156" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1238442071" name="box_1238442070" shape="box" x1="-1498.901978" y1="125.402992" z1="-1180.980591" x2="-1489.301880" y2="131.232986" z2="-1161.520630" rotX="-0.000000" rotY="-1.518436" rotZ="0.000000" /> | |
<AreaDefinition id="1238442079" name="box_1238442078" shape="box" x1="-1502.261719" y1="115.933372" z1="-1172.226929" x2="-1499.691650" y2="126.483376" z2="-1169.626831" rotX="-0.000000" rotY="-3.089233" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1238442081" name="box_1238442080" shape="box" x1="-1488.533569" y1="115.933372" z1="-1172.917603" x2="-1485.963501" y2="126.483376" z2="-1170.317505" rotX="-0.000000" rotY="0.052360" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1238442089" name="box_1238442088" shape="box" x1="-1503.011475" y1="110.037323" z1="-1190.619019" x2="-1500.761475" y2="126.967331" z2="-1188.369019" rotX="-0.000000" rotY="1.623156" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1238442091" name="sphere_1238442090" shape="sphere" x1="-1491.923584" y1="93.920654" z1="-1172.338013" radius="65.000000" /> | |
<AreaDefinition id="1238442093" name="sphere_1238442092" shape="sphere" x1="-1494.363281" y1="127.572914" z1="-1177.335815" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1238442095" name="sphere_1238442094" shape="sphere" x1="-1493.720093" y1="127.572914" z1="-1165.064209" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1238442097" name="sphere_1238442096" shape="sphere" x1="-1514.199951" y1="95.626686" z1="-1159.755371" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1238442099" name="sphere_1238442098" shape="sphere" x1="-1473.207153" y1="95.626686" z1="-1161.903809" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1238442075" name="box_1238442074" shape="box" x1="-1488.719360" y1="110.037323" z1="-1156.859131" x2="-1486.469360" y2="126.967331" z2="-1154.609131" rotX="-0.000000" rotY="-1.518436" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1238442073" name="box_1238442072" shape="box" x1="-1500.184204" y1="110.037323" z1="-1156.273071" x2="-1497.934204" y2="126.967316" z2="-1154.023071" rotX="-0.000000" rotY="-1.518436" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1032464451" name="box_1032464451" shape="box" x1="-1478.966919" y1="163.115402" z1="-442.401184" x2="-1476.706909" y2="186.175461" z2="-440.211182" rotX="-0.000000" rotY="0.445059" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1032464452" name="sphere_1032464452" shape="sphere" x1="-1475.593506" y1="160.442078" z1="-441.350647" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="1032464450" name="box_1032464450" shape="box" x1="-1475.568970" y1="163.115402" z1="-444.102081" x2="-1473.308960" y2="186.175461" z2="-441.912079" rotX="-0.000000" rotY="-2.696534" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3075379700" name="box_3075379700" shape="box" x1="-1495.938232" y1="106.836548" z1="-158.296753" x2="-1493.588135" y2="125.656586" z2="-156.046753" rotX="-0.000000" rotY="1.692969" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3075379701" name="box_3075379701" shape="box" x1="-1493.349854" y1="106.836548" z1="-158.615082" x2="-1490.999756" y2="125.656586" z2="-156.365082" rotX="-0.000000" rotY="1.692969" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2435611056" name="sphere_2435611056" shape="sphere" x1="-1414.531738" y1="132.512955" z1="-264.061462" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="760860260" name="sphere_760860260" shape="sphere" x1="-1450.251709" y1="124.690735" z1="-186.283524" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="1032464447" name="box_1032464447" shape="box" x1="-1383.924683" y1="163.115402" z1="-489.734528" x2="-1381.664673" y2="186.175461" z2="-487.544525" rotX="-0.000000" rotY="-2.696534" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1032464448" name="box_1032464448" shape="box" x1="-1387.322632" y1="163.115402" z1="-488.033600" x2="-1385.062622" y2="186.175461" z2="-485.843597" rotX="-0.000000" rotY="0.445059" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1032464449" name="sphere_1032464449" shape="sphere" x1="-1384.355713" y1="160.442078" z1="-486.840179" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2435611057" name="sphere_2435611057" shape="sphere" x1="-1360.527710" y1="132.512955" z1="-264.389679" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="603034648" name="box_603034648" shape="box" x1="-1367.361816" y1="143.626083" z1="-146.514282" x2="-1365.011719" y2="162.446121" z2="-144.264282" rotX="-0.000000" rotY="1.230457" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="603034649" name="box_603034649" shape="box" x1="-1364.903198" y1="143.626083" z1="-145.643478" x2="-1362.553101" y2="162.446121" z2="-143.393478" rotX="-0.000000" rotY="1.230457" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="55842653" name="sphere_55842653" shape="sphere" x1="-1328.145508" y1="149.916031" z1="-360.764496" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="2521019594" name="box_2521019594" shape="box" x1="-1305.750244" y1="156.218948" z1="-303.235565" x2="-1303.060303" y2="162.598953" z2="-300.365570" rotX="-0.000000" rotY="-4.022984" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2521019596" name="box_2521019596" shape="box" x1="-1290.221924" y1="162.932587" z1="-292.690277" x2="-1288.101807" y2="169.712585" z2="-290.490265" rotX="-0.000000" rotY="-0.095993" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2521019597" name="box_2521019597" shape="box" x1="-1299.076538" y1="162.932587" z1="-285.502838" x2="-1296.956421" y2="169.712585" z2="-283.302826" rotX="-0.000000" rotY="-3.237586" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2521019598" name="sphere_2521019598" shape="sphere" x1="-1293.866943" y1="149.743301" z1="-286.626343" radius="32.000000" /> | |
<AreaDefinition id="2521019595" name="box_2521019595" shape="box" x1="-1283.263306" y1="156.206497" z1="-276.042023" x2="-1280.533325" y2="162.586502" z2="-273.242035" rotX="-0.000000" rotY="-0.881391" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274562" name="box_3363274561" shape="box" x1="-646.875366" y1="82.756241" z1="-3041.519531" x2="-644.375366" y2="91.256241" z2="-3039.019531" rotX="-0.000000" rotY="-2.644174" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274578" name="box_3363274577" shape="box" x1="-653.339172" y1="91.440918" z1="-3050.564697" x2="-651.219177" y2="98.220917" z2="-3048.364502" rotX="-0.000000" rotY="-3.429572" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274620" name="sphere_3363274619" shape="sphere" x1="-658.633789" y1="70.564941" z1="-3034.591797" radius="55.000000"> | |
<Property type="Exclusive" id="1854860497" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274576" name="box_3363274575" shape="box" x1="-643.275696" y1="91.496582" z1="-3055.930664" x2="-641.155701" y2="98.276581" z2="-3053.730469" rotX="-0.000000" rotY="-0.287979" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274582" name="box_3363274581" shape="box" x1="-655.344238" y1="82.740616" z1="-3059.491943" x2="-652.844238" y2="91.240616" z2="-3056.991943" rotX="-0.000000" rotY="-1.073377" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274590" name="box_3363274589" shape="box" x1="-650.196045" y1="82.782608" z1="-3062.287354" x2="-647.696045" y2="91.282608" z2="-3059.787354" rotX="-0.000000" rotY="-1.073377" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553034" name="box_3429553034" shape="box" x1="-656.382996" y1="1.844360" z1="-2997.427490" x2="-654.382996" y2="121.844360" z2="-2995.427490" rotX="-0.000000" rotY="-1.073377" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274618" name="sphere_3363274617" shape="sphere" x1="-667.998657" y1="70.564941" z1="-2943.656494" radius="40.000000"> | |
<Property type="Exclusive" id="1854860496" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274622" name="sphere_3363274621" shape="sphere" x1="-645.039490" y1="69.904343" z1="-2943.750977" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274628" name="sphere_3363274627" shape="sphere" x1="-601.974304" y1="70.564941" z1="-3009.115234" radius="40.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274572" name="box_3363274571" shape="box" x1="-639.699585" y1="82.741592" z1="-3045.415771" x2="-637.199585" y2="91.241592" z2="-3042.915771" rotX="-0.000000" rotY="0.497419" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274630" name="sphere_3363274629" shape="sphere" x1="-588.097046" y1="70.564941" z1="-2958.336182" radius="48.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553037" name="box_3429553037" shape="box" x1="-599.200439" y1="39.344360" z1="-2945.833984" x2="-597.200439" y2="84.344360" z2="-2943.833984" rotX="-0.000000" rotY="0.497419" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274624" name="sphere_3363274623" shape="sphere" x1="-586.149231" y1="73.244720" z1="-2864.827148" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553033" name="box_3429553033" shape="box" x1="-587.231201" y1="1.844360" z1="-2870.065674" x2="-585.231201" y2="121.844360" z2="-2868.065674" rotX="-0.000000" rotY="-1.073377" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274634" name="sphere_3363274633" shape="sphere" x1="-608.026428" y1="165.981171" z1="-2870.895508" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274638" name="sphere_3363274637" shape="sphere" x1="-536.003662" y1="70.564941" z1="-3030.196777" radius="35.000000"> | |
<Property type="Exclusive" id="2115590496" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274596" name="box_3363274595" shape="box" x1="-573.667419" y1="60.085693" z1="-2960.122314" x2="-571.417419" y2="71.085693" z2="-2957.872314" rotX="-0.000000" rotY="0.671952" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274632" name="sphere_3363274631" shape="sphere" x1="-525.309937" y1="165.981171" z1="-2915.900146" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274626" name="sphere_3363274625" shape="sphere" x1="-532.176025" y1="73.244720" z1="-2894.130859" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274566" name="box_3363274565" shape="box" x1="-567.415222" y1="119.300293" z1="-2897.822510" x2="-563.365173" y2="163.360382" z2="-2892.452393" rotX="-0.000000" rotY="-2.652900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274568" name="box_3363274567" shape="box" x1="-566.924622" y1="72.497772" z1="-2896.541504" x2="-563.924622" y2="76.657776" z2="-2893.541504" rotX="-0.000000" rotY="-2.652900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274570" name="box_3363274569" shape="box" x1="-567.415222" y1="75.629578" z1="-2897.822510" x2="-563.365173" y2="117.499603" z2="-2892.452393" rotX="-0.000000" rotY="-2.652900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274594" name="box_3363274593" shape="box" x1="-566.884399" y1="162.799286" z1="-2896.562744" x2="-563.884399" y2="165.199280" z2="-2893.562744" rotX="-0.000000" rotY="-2.652900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274602" name="box_3363274601" shape="box" x1="-566.884399" y1="114.137947" z1="-2896.562744" x2="-563.884399" y2="119.627953" z2="-2893.562744" rotX="-0.000000" rotY="-2.652900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274608" name="box_3363274607" shape="box" x1="-570.867981" y1="75.629578" z1="-2895.986572" x2="-566.817932" y2="117.499603" z2="-2890.616455" rotX="-0.000000" rotY="-2.652900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274610" name="box_3363274609" shape="box" x1="-570.377502" y1="72.497772" z1="-2894.705566" x2="-567.377502" y2="76.657776" z2="-2891.705566" rotX="-0.000000" rotY="-2.652900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274612" name="box_3363274611" shape="box" x1="-570.337158" y1="114.137947" z1="-2894.726807" x2="-567.337158" y2="119.627953" z2="-2891.726807" rotX="-0.000000" rotY="-2.652900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274614" name="box_3363274613" shape="box" x1="-570.867981" y1="119.300293" z1="-2895.986572" x2="-566.817932" y2="163.360382" z2="-2890.616455" rotX="-0.000000" rotY="-2.652900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274616" name="box_3363274615" shape="box" x1="-570.337158" y1="162.799286" z1="-2894.726807" x2="-567.337158" y2="165.199280" z2="-2891.726807" rotX="-0.000000" rotY="-2.652900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274636" name="sphere_3363274635" shape="sphere" x1="-531.652100" y1="70.564941" z1="-2841.024414" radius="140.000000"> | |
<Property type="Exclusive" id="4277267792" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553036" name="box_3429553036" shape="box" x1="-513.906372" y1="21.844360" z1="-2827.132568" x2="-511.906372" y2="101.844360" z2="-2825.132568" rotX="-0.000000" rotY="0.497419" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553035" name="box_3429553035" shape="box" x1="-544.290833" y1="51.844360" z1="-2790.979248" x2="-542.290833" y2="71.844360" z2="-2788.979248" rotX="-0.000000" rotY="-1.073377" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274560" name="box_3363274559" shape="box" x1="-527.284058" y1="60.345825" z1="-2780.398193" x2="-525.034058" y2="72.845825" z2="-2778.148193" rotX="-0.000000" rotY="-1.073377" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1407676381" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274586" name="box_3363274585" shape="box" x1="-552.527527" y1="72.018082" z1="-2806.463135" x2="-549.527527" y2="75.018082" z2="-2803.463135" rotX="-0.000000" rotY="2.068215" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274588" name="box_3363274587" shape="box" x1="-553.232544" y1="74.137024" z1="-2807.168213" x2="-548.822510" y2="82.416962" z2="-2802.758057" rotX="-0.000000" rotY="2.068215" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="816745784" name="box_816745784" shape="box" x1="-681.765503" y1="426.052429" z1="-70.296677" x2="-679.515503" y2="442.982422" z2="-68.046677" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="816745785" name="box_816745785" shape="box" x1="-693.245239" y1="426.052429" z1="-70.311523" x2="-690.995239" y2="442.982422" z2="-68.061523" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="816745780" name="box_816745780" shape="box" x1="-694.297363" y1="426.052429" z1="-35.849831" x2="-692.047363" y2="442.982422" z2="-33.599831" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="816745783" name="box_816745783" shape="box" x1="-691.233704" y1="441.418091" z1="-63.080765" x2="-681.633728" y2="447.248108" z2="-43.620766" rotX="-0.000000" rotY="1.570796" rotZ="0.000000" /> | |
<AreaDefinition id="816745787" name="box_816745787" shape="box" x1="-680.836365" y1="431.948486" z1="-54.614201" x2="-678.266418" y2="442.498474" z2="-52.014202" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="816745788" name="box_816745788" shape="box" x1="-694.581848" y1="431.948486" z1="-54.642952" x2="-692.011902" y2="442.498474" z2="-52.042953" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="816745793" name="sphere_816745793" shape="sphere" x1="-688.666016" y1="409.935760" z1="-52.378784" radius="65.000000" /> | |
<AreaDefinition id="816745794" name="sphere_816745794" shape="sphere" x1="-686.491211" y1="443.588043" z1="-47.260128" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="246048" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="816745795" name="sphere_816745795" shape="sphere" x1="-686.491211" y1="443.588043" z1="-59.548569" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="246047" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="816745796" name="sphere_816745796" shape="sphere" x1="-679.846924" y1="411.641815" z1="-63.040596" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="246045" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="816745797" name="sphere_816745797" shape="sphere" x1="-693.096069" y1="411.641815" z1="-63.007698" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="246046" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="816745792" name="box_816745792" shape="box" x1="-680.739624" y1="426.052429" z1="-35.849865" x2="-678.489624" y2="442.982422" z2="-33.599865" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1612334006" name="sphere_1612334006" shape="sphere" x1="-808.678284" y1="398.008057" z1="61.936035" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2410145950" name="sphere_2410145950" shape="sphere" x1="-792.336853" y1="387.670135" z1="147.085068" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="4102386695" name="box_4102386695" shape="box" x1="-711.141602" y1="413.032928" z1="9.464407" x2="-709.081543" y2="423.032928" z2="11.524408" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="443419398" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="443419399" name="box_443419399" shape="box" x1="-711.141602" y1="413.032928" z1="13.941580" x2="-709.081543" y2="423.032928" z2="16.001581" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="443419398" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="3975688139" name="sphere_3975688139" shape="sphere" x1="-695.670593" y1="409.808838" z1="31.090611" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3969430226" name="box_3969430226" shape="box" x1="-700.493591" y1="407.602814" z1="54.579540" x2="-698.143616" y2="426.422882" z2="56.829540" rotX="-0.000000" rotY="1.125737" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3969430227" name="box_3969430227" shape="box" x1="-698.139648" y1="407.602814" z1="55.702301" x2="-695.789673" y2="426.422882" z2="57.952301" rotX="-0.000000" rotY="1.125737" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3133977522" name="box_3133977522" shape="box" x1="-616.362732" y1="412.263397" z1="32.611965" x2="-614.012756" y2="431.083466" z2="34.861965" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3133977523" name="box_3133977523" shape="box" x1="-613.754700" y1="412.263397" z1="32.612030" x2="-611.404724" y2="431.083466" z2="34.862030" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274640" name="sphere_3363274639" shape="sphere" x1="-467.493103" y1="70.564941" z1="-2961.105225" radius="50.000000"> | |
<Property type="Exclusive" id="1625820496" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274580" name="box_3363274579" shape="box" x1="-469.289001" y1="60.070435" z1="-2851.723145" x2="-467.039001" y2="71.070435" z2="-2849.473145" rotX="-0.000000" rotY="2.068215" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274574" name="box_3363274573" shape="box" x1="-502.787659" y1="72.018082" z1="-2833.469727" x2="-499.787659" y2="75.018082" z2="-2830.469727" rotX="-0.000000" rotY="2.068215" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3363274604" name="box_3363274603" shape="box" x1="-503.492645" y1="74.137024" z1="-2834.174805" x2="-499.082672" y2="82.416962" z2="-2829.764648" rotX="-0.000000" rotY="2.068215" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1023100535" name="box_1023100534" shape="box" x1="-214.281250" y1="71.540985" z1="-1843.243286" x2="-212.031250" y2="88.470993" z2="-1840.993286" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1023100539" name="box_1023100538" shape="box" x1="-199.330353" y1="86.906654" z1="-1845.109619" x2="-189.730377" y2="92.736656" z2="-1825.649658" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="1023100547" name="box_1023100546" shape="box" x1="-195.851929" y1="77.437035" z1="-1829.797363" x2="-193.281921" y2="87.987038" z2="-1827.197266" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1023100549" name="box_1023100548" shape="box" x1="-195.823120" y1="77.437035" z1="-1843.542847" x2="-193.253113" y2="87.987038" z2="-1840.942749" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1023100557" name="box_1023100556" shape="box" x1="-214.281250" y1="71.540985" z1="-1829.685547" x2="-212.031250" y2="88.470993" z2="-1827.435547" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1023100559" name="sphere_1023100558" shape="sphere" x1="-195.502289" y1="55.424316" z1="-1837.611938" radius="65.000000" /> | |
<AreaDefinition id="1023100561" name="sphere_1023100560" shape="sphere" x1="-200.620972" y1="89.076576" z1="-1835.437134" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1023100541" name="box_1023100540" shape="box" x1="-179.834412" y1="71.540985" z1="-1830.711426" x2="-177.584412" y2="88.470978" z2="-1828.461426" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1023100543" name="box_1023100542" shape="box" x1="-179.819611" y1="71.540985" z1="-1842.191162" x2="-177.569611" y2="88.470993" z2="-1839.941162" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1023100563" name="sphere_1023100562" shape="sphere" x1="-188.332489" y1="89.076576" z1="-1835.437134" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1023100565" name="sphere_1023100564" shape="sphere" x1="-184.102814" y1="57.130344" z1="-1814.707520" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1023100567" name="sphere_1023100566" shape="sphere" x1="-184.102814" y1="57.130344" z1="-1855.756592" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244199" name="box_2950244199" shape="box" x1="-160.848541" y1="462.614197" z1="128.038925" x2="-157.848541" y2="472.614197" z2="131.038925" rotX="-0.000000" rotY="0.017453" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1359797941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244202" name="box_2950244202" shape="box" x1="-138.648636" y1="446.874695" z1="155.204712" x2="-135.648636" y2="456.874695" z2="158.204712" rotX="-0.000000" rotY="-5.742133" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1219807941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244198" name="box_2950244198" shape="box" x1="-112.277557" y1="462.614197" z1="39.794006" x2="-109.277557" y2="472.614197" z2="42.794006" rotX="-0.000000" rotY="-1.029744" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1359797941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244200" name="box_2950244200" shape="box" x1="-124.478027" y1="446.874695" z1="58.110359" x2="-121.478027" y2="456.874695" z2="61.110359" rotX="-0.000000" rotY="-1.029744" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1219807941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244209" name="box_2950244209" shape="box" x1="-72.177200" y1="462.614197" z1="35.552376" x2="-69.177200" y2="472.614197" z2="38.552376" rotX="-0.000000" rotY="-1.553343" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1359797941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244201" name="box_2950244201" shape="box" x1="-69.224083" y1="462.614197" z1="192.200073" x2="-66.224083" y2="472.614197" z2="195.200073" rotX="-0.000000" rotY="-4.694936" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1359797941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244208" name="box_2950244208" shape="box" x1="-55.575554" y1="462.614197" z1="39.989532" x2="-52.575554" y2="472.614197" z2="42.989532" rotX="-0.000000" rotY="-2.076942" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1359797941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244210" name="box_2950244210" shape="box" x1="-42.986977" y1="446.874695" z1="56.072739" x2="-39.986977" y2="456.874695" z2="59.072739" rotX="-0.000000" rotY="-2.076942" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1219807941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244205" name="box_2950244205" shape="box" x1="-13.440895" y1="446.874695" z1="119.612320" x2="-10.440895" y2="456.874695" z2="122.612320" rotX="-0.000000" rotY="-3.124139" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1359797941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244206" name="box_2950244206" shape="box" x1="-9.611855" y1="462.614197" z1="84.252548" x2="-6.611855" y2="472.614197" z2="87.252548" rotX="-0.000000" rotY="-2.600541" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1359797941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244207" name="box_2950244207" shape="box" x1="-22.248306" y1="462.614197" z1="63.222092" x2="-19.248306" y2="472.614197" z2="66.222092" rotX="-0.000000" rotY="-2.600541" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1359797941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244203" name="box_2950244203" shape="box" x1="-31.989704" y1="462.614197" z1="174.999207" x2="-28.989704" y2="472.614197" z2="177.999207" rotX="-0.000000" rotY="-4.171337" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1359797941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="2950244204" name="box_2950244204" shape="box" x1="-41.943214" y1="446.874695" z1="167.574020" x2="-38.943214" y2="456.874695" z2="170.574020" rotX="-0.000000" rotY="-4.171337" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1219807941" VelocityMult="1.50" /> | |
</AreaDefinition> | |
<AreaDefinition id="1875155732" name="box_1875155731" shape="box" x1="-94.167343" y1="149.106659" z1="1781.413086" x2="-91.917343" y2="166.036652" z2="1783.663086" rotX="-0.000000" rotY="1.579523" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1875155754" name="box_1875155753" shape="box" x1="-107.724564" y1="149.106659" z1="1781.531372" x2="-105.474564" y2="166.036652" z2="1783.781372" rotX="-0.000000" rotY="1.579523" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1875155736" name="box_1875155735" shape="box" x1="-104.418182" y1="164.472336" z1="1791.492065" x2="-94.818207" y2="170.302322" z2="1810.952026" rotX="-0.000000" rotY="-1.562070" rotZ="0.000000" /> | |
<AreaDefinition id="1875155738" name="box_1875155737" shape="box" x1="-106.398125" y1="149.106659" z1="1815.968018" x2="-104.148125" y2="166.036652" z2="1818.218018" rotX="-0.000000" rotY="-1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1875155744" name="box_1875155743" shape="box" x1="-107.785576" y1="155.002716" z1="1799.945557" x2="-105.215569" y2="165.552704" z2="1802.545654" rotX="-0.000000" rotY="-3.132866" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1875155756" name="sphere_1875155755" shape="sphere" x1="-97.394463" y1="132.989990" z1="1800.230713" radius="65.000000" /> | |
<AreaDefinition id="1875155760" name="sphere_1875155759" shape="sphere" x1="-99.506615" y1="166.642242" z1="1807.419189" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1875155762" name="sphere_1875155761" shape="sphere" x1="-120.198532" y1="134.696014" z1="1811.829590" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1875155740" name="box_1875155739" shape="box" x1="-94.918694" y1="149.106659" z1="1815.882568" x2="-92.668694" y2="166.036652" z2="1818.132568" rotX="-0.000000" rotY="-1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1875155746" name="box_1875155745" shape="box" x1="-94.040367" y1="155.002716" z1="1799.854370" x2="-91.470360" y2="165.552704" z2="1802.454468" rotX="-0.000000" rotY="0.008727" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1875155764" name="sphere_1875155763" shape="sphere" x1="-79.151016" y1="134.696014" z1="1811.471436" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1875155758" name="sphere_1875155757" shape="sphere" x1="-99.613846" y1="166.642242" z1="1795.131226" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713801" name="sphere_3795713800" shape="sphere" x1="-491.405548" y1="77.968750" z1="2931.820557" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713805" name="sphere_3795713804" shape="sphere" x1="-460.062347" y1="77.968750" z1="2926.233887" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713821" name="sphere_3795713820" shape="sphere" x1="-488.829071" y1="77.968750" z1="2973.617676" radius="36.019993"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713823" name="sphere_3795713822" shape="sphere" x1="-326.421600" y1="77.968750" z1="3019.152832" radius="260.000000"> | |
<Property type="Exclusive" id="3617884019" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713813" name="sphere_3795713812" shape="sphere" x1="-143.119934" y1="77.968750" z1="3004.706543" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713795" name="box_3795713794" shape="box" x1="-154.016876" y1="91.024773" z1="3028.165283" x2="-150.946869" y2="102.364784" z2="3031.205322" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713799" name="box_3795713798" shape="box" x1="-159.563065" y1="80.617439" z1="3010.405029" x2="-157.473068" y2="91.237450" z2="3012.514893" rotX="-0.000000" rotY="2.617994" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713817" name="sphere_3795713816" shape="sphere" x1="-170.293091" y1="77.968750" z1="3020.158936" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713797" name="box_3795713796" shape="box" x1="-149.018585" y1="91.024780" z1="3028.165283" x2="-145.948578" y2="102.364777" z2="3031.205322" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713815" name="sphere_3795713814" shape="sphere" x1="-134.245605" y1="77.968750" z1="3045.318359" radius="24.199999"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713791" name="box_3795713790" shape="box" x1="-154.016876" y1="91.024780" z1="3008.054688" x2="-150.946869" y2="102.364777" z2="3011.094727" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713793" name="box_3795713792" shape="box" x1="-149.018585" y1="91.024780" z1="3008.054688" x2="-145.948578" y2="102.364777" z2="3011.094727" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713809" name="sphere_3795713808" shape="sphere" x1="-120.518379" y1="77.968750" z1="2980.378418" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3795713807" name="sphere_3795713806" shape="sphere" x1="-107.198318" y1="77.968750" z1="3021.236572" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552945" name="sphere_3429552945" shape="sphere" x1="-492.116364" y1="77.968750" z1="3126.167480" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552947" name="sphere_3429552947" shape="sphere" x1="-488.829071" y1="77.968750" z1="3076.592285" radius="44.279987"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429552946" name="sphere_3429552946" shape="sphere" x1="-457.988861" y1="77.968750" z1="3129.164551" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="4182384525" name="box_4182384524" shape="box" x1="129.980438" y1="328.673187" z1="-723.993103" x2="132.230438" y2="345.603180" z2="-721.743103" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4182384529" name="box_4182384528" shape="box" x1="144.931335" y1="344.027130" z1="-725.859436" x2="154.531311" y2="349.857147" z2="-706.399475" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="4182384531" name="box_4182384530" shape="box" x1="164.427277" y1="328.661469" z1="-711.461243" x2="166.677277" y2="345.591461" z2="-709.211243" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4182384533" name="box_4182384532" shape="box" x1="164.442078" y1="328.661469" z1="-722.940979" x2="166.692078" y2="345.591461" z2="-720.690979" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4182384537" name="box_4182384536" shape="box" x1="148.409760" y1="334.569244" z1="-710.547119" x2="150.979767" y2="345.119232" z2="-707.947144" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4182384539" name="box_4182384538" shape="box" x1="148.438568" y1="334.557526" z1="-724.292603" x2="151.008575" y2="345.107513" z2="-721.692627" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4182384547" name="box_4182384546" shape="box" x1="129.980438" y1="328.667328" z1="-710.435364" x2="132.230438" y2="345.597321" z2="-708.185364" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4182384549" name="sphere_4182384548" shape="sphere" x1="148.759399" y1="312.544800" z1="-718.361755" radius="65.000000" /> | |
<AreaDefinition id="4182384551" name="sphere_4182384550" shape="sphere" x1="143.640717" y1="346.197052" z1="-716.186951" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4182384553" name="sphere_4182384552" shape="sphere" x1="155.929199" y1="346.197052" z1="-716.186951" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4182384557" name="sphere_4182384556" shape="sphere" x1="160.158875" y1="314.250824" z1="-736.506409" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4182384555" name="sphere_4182384554" shape="sphere" x1="160.158875" y1="314.250824" z1="-695.457336" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2048160077" name="sphere_2048160077" shape="sphere" x1="492.155548" y1="352.746887" z1="65.659966" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3334448469" name="sphere_3334448469" shape="sphere" x1="478.076233" y1="352.968750" z1="122.191353" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2048160076" name="sphere_2048160076" shape="sphere" x1="533.918030" y1="352.746887" z1="31.419014" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2847216598" name="sphere_2847216598" shape="sphere" x1="583.572144" y1="332.243256" z1="124.018097" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2742605830" name="CavernNorth" shape="box" x1="391.468872" y1="333.030182" z1="-64.464432" x2="791.468872" y2="583.030151" z2="535.535583" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="ObjectTerrainData" id="972971041" ObjectTerrainDataID="2025" /> | |
</AreaDefinition> | |
<AreaDefinition id="2047484747" name="box_2047484747" shape="box" x1="612.083679" y1="342.386322" z1="392.242584" x2="614.333679" y2="359.316315" z2="394.492584" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2047484750" name="box_2047484750" shape="box" x1="601.670044" y1="357.751984" z1="402.263458" x2="611.270020" y2="363.582001" z2="421.723480" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000" /> | |
<AreaDefinition id="2047484751" name="box_2047484751" shape="box" x1="599.551819" y1="342.386322" z1="426.689423" x2="601.801819" y2="359.316315" z2="428.939423" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2047484752" name="box_2047484752" shape="box" x1="611.031555" y1="342.386322" z1="426.704224" x2="613.281555" y2="359.316315" z2="428.954224" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2047484754" name="box_2047484754" shape="box" x1="598.302734" y1="348.282379" z1="410.656921" x2="600.872681" y2="358.832367" z2="413.256897" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2047484755" name="box_2047484755" shape="box" x1="612.048218" y1="348.282379" z1="410.685730" x2="614.618164" y2="358.832367" z2="413.285706" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2047484759" name="box_2047484759" shape="box" x1="598.525940" y1="342.386322" z1="392.242584" x2="600.775940" y2="359.316315" z2="394.492584" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2047484760" name="sphere_2047484760" shape="sphere" x1="608.702332" y1="326.269653" z1="411.021545" radius="65.000000" /> | |
<AreaDefinition id="2047484761" name="sphere_2047484761" shape="sphere" x1="606.527527" y1="359.921906" z1="405.902863" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2047484762" name="sphere_2047484762" shape="sphere" x1="606.527527" y1="359.921906" z1="418.191345" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2047484763" name="sphere_2047484763" shape="sphere" x1="599.883240" y1="327.975677" z1="421.683319" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2047484764" name="sphere_2047484764" shape="sphere" x1="613.132385" y1="327.975677" z1="421.650391" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2483862543" name="sphere_2483862543" shape="sphere" x1="654.464050" y1="322.559692" z1="353.047272" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="412810333" name="sphere_412810333" shape="sphere" x1="706.847534" y1="299.699371" z1="158.753967" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2483862542" name="sphere_2483862542" shape="sphere" x1="708.206604" y1="322.559692" z1="358.365814" radius="40.160023"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757774" name="sphere_2088757773" shape="sphere" x1="988.848694" y1="78.797531" z1="2441.041504" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757778" name="sphere_2088757777" shape="sphere" x1="1003.896790" y1="79.885910" z1="2545.945557" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757780" name="sphere_2088757779" shape="sphere" x1="1015.296021" y1="79.885910" z1="2536.380371" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757738" name="box_2088757737" shape="box" x1="946.127014" y1="84.701324" z1="2663.592285" x2="948.377014" y2="105.201324" z2="2665.842285" rotX="-0.000000" rotY="-0.881391" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757740" name="box_2088757739" shape="box" x1="949.417175" y1="84.701324" z1="2667.601563" x2="951.667175" y2="105.201324" z2="2669.851563" rotX="-0.000000" rotY="-4.022984" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757754" name="box_2088757753" shape="box" x1="946.127014" y1="84.701324" z1="2663.592285" x2="948.377014" y2="105.201324" z2="2665.842285" rotX="-0.000000" rotY="-0.881391" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757756" name="box_2088757755" shape="box" x1="949.417175" y1="84.701324" z1="2667.601563" x2="951.667175" y2="105.201324" z2="2669.851563" rotX="-0.000000" rotY="-4.022984" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757768" name="sphere_2088757767" shape="sphere" x1="949.332581" y1="79.583908" z1="2666.325928" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757776" name="sphere_2088757775" shape="sphere" x1="949.332581" y1="79.583908" z1="2666.325928" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757744" name="box_2088757743" shape="box" x1="964.505859" y1="78.878403" z1="2587.572266" x2="967.005859" y2="88.878403" z2="2590.072266" rotX="-0.000000" rotY="-0.087266" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757750" name="box_2088757749" shape="box" x1="960.718628" y1="78.925278" z1="2574.342285" x2="963.218628" y2="103.925278" z2="2576.842285" rotX="-0.000000" rotY="-0.078540" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757752" name="box_2088757751" shape="box" x1="960.138489" y1="78.925278" z1="2578.468994" x2="962.638489" y2="103.925278" z2="2580.968994" rotX="-0.000000" rotY="-3.220132" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757766" name="sphere_2088757765" shape="sphere" x1="993.566101" y1="79.058945" z1="2635.443604" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390462" name="box_2715390461" shape="box" x1="1293.403198" y1="64.259567" z1="-2444.256836" x2="1295.903198" y2="89.259567" z2="-2441.756836" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390464" name="box_2715390463" shape="box" x1="1296.449829" y1="64.259567" z1="-2447.098633" x2="1298.949829" y2="89.259567" z2="-2444.598633" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390438" name="box_2715390437" shape="box" x1="1290.492432" y1="64.212875" z1="-2434.185547" x2="1292.992432" y2="74.212875" z2="-2431.685547" rotX="-0.000000" rotY="-0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390488" name="sphere_2715390487" shape="sphere" x1="1336.351685" y1="65.494186" z1="-2448.916504" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390486" name="sphere_2715390485" shape="sphere" x1="1290.547485" y1="64.132004" z1="-2395.221191" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390452" name="box_2715390451" shape="box" x1="1293.407104" y1="64.387985" z1="-2327.220215" x2="1295.907104" y2="89.387985" z2="-2324.720215" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390450" name="box_2715390449" shape="box" x1="1296.353638" y1="64.381149" z1="-2324.273926" x2="1298.853638" y2="89.381149" z2="-2321.773926" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390446" name="box_2715390445" shape="box" x1="1290.671387" y1="64.212875" z1="-2337.194824" x2="1293.171387" y2="74.212875" z2="-2334.694824" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390476" name="sphere_2715390475" shape="sphere" x1="1300.551514" y1="63.941727" z1="-2351.024902" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390478" name="sphere_2715390477" shape="sphere" x1="1307.526489" y1="64.132004" z1="-2237.115723" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390468" name="sphere_2715390467" shape="sphere" x1="1375.662109" y1="65.502975" z1="-2448.916504" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390474" name="sphere_2715390473" shape="sphere" x1="1405.511719" y1="64.104294" z1="-2418.332520" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390482" name="sphere_2715390481" shape="sphere" x1="1363.429932" y1="65.183273" z1="-2327.149414" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390484" name="sphere_2715390483" shape="sphere" x1="1348.549316" y1="65.415695" z1="-2327.149414" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390436" name="box_2715390435" shape="box" x1="1413.740723" y1="64.025192" z1="-2447.602051" x2="1416.240723" y2="89.025192" z2="-2445.102051" rotX="-0.000000" rotY="0.785398" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390440" name="box_2715390439" shape="box" x1="1416.687256" y1="64.084763" z1="-2444.655762" x2="1419.187256" y2="89.084763" z2="-2442.155762" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390466" name="box_2715390465" shape="box" x1="1419.241333" y1="64.165024" z1="-2434.548340" x2="1421.741333" y2="74.165024" z2="-2432.048340" rotX="-0.000000" rotY="-2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390470" name="sphere_2715390469" shape="sphere" x1="1428.871948" y1="64.393417" z1="-2389.068359" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390456" name="box_2715390455" shape="box" x1="1416.452271" y1="64.270493" z1="-2326.947266" x2="1418.952271" y2="89.270493" z2="-2324.447266" rotX="-0.000000" rotY="-0.776672" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390454" name="box_2715390453" shape="box" x1="1413.355347" y1="64.208969" z1="-2324.159180" x2="1415.855347" y2="89.208969" z2="-2321.659180" rotX="-0.000000" rotY="2.364921" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390448" name="box_2715390447" shape="box" x1="1418.958130" y1="64.138657" z1="-2336.728027" x2="1421.458130" y2="74.138657" z2="-2334.228027" rotX="-0.000000" rotY="2.356194" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390442" name="box_2715390441" shape="box" x1="1482.042358" y1="70.069977" z1="-2382.848145" x2="1484.292358" y2="90.569977" z2="-2380.598145" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390444" name="box_2715390443" shape="box" x1="1482.098999" y1="70.026031" z1="-2388.034180" x2="1484.348999" y2="90.526031" z2="-2385.784180" rotX="-0.000000" rotY="-1.579523" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390458" name="box_2715390457" shape="box" x1="1482.042358" y1="70.069977" z1="-2382.848145" x2="1484.292358" y2="90.569977" z2="-2380.598145" rotX="-0.000000" rotY="1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390460" name="box_2715390459" shape="box" x1="1482.098999" y1="70.026031" z1="-2388.034180" x2="1484.348999" y2="90.526031" z2="-2385.784180" rotX="-0.000000" rotY="-1.579523" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2187839348" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390472" name="sphere_2715390471" shape="sphere" x1="1482.607544" y1="64.974045" z1="-2384.292969" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2715390480" name="sphere_2715390479" shape="sphere" x1="1482.607544" y1="64.974045" z1="-2384.292969" radius="41.019966"> | |
<Property type="Exclusive" id="2400221953" /> | |
<Property type="Exclusive" id="1792129781" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757772" name="sphere_2088757771" shape="sphere" x1="1067.411255" y1="78.607254" z1="2523.817627" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757742" name="box_2088757741" shape="box" x1="1063.079224" y1="78.878403" z1="2505.468506" x2="1065.579224" y2="88.878403" z2="2507.968506" rotX="-0.000000" rotY="-1.658063" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757746" name="box_2088757745" shape="box" x1="1050.420776" y1="79.046677" z1="2499.222900" x2="1052.920776" y2="104.046677" z2="2501.722900" rotX="-0.000000" rotY="-4.799655" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757748" name="box_2088757747" shape="box" x1="1054.571777" y1="79.046677" z1="2499.585938" x2="1057.071777" y2="104.046677" z2="2502.085938" rotX="-0.000000" rotY="-1.658063" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757782" name="sphere_2088757781" shape="sphere" x1="1103.483643" y1="78.797531" z1="2551.243652" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757732" name="box_2088757731" shape="box" x1="1039.770996" y1="78.787399" z1="2669.152832" x2="1042.270996" y2="103.787399" z2="2671.652832" rotX="-0.000000" rotY="-1.658063" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757764" name="sphere_2088757763" shape="sphere" x1="1072.796753" y1="80.103073" z1="2647.087158" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757736" name="box_2088757735" shape="box" x1="1035.619873" y1="78.787399" z1="2668.789795" x2="1038.119873" y2="103.787399" z2="2671.289795" rotX="-0.000000" rotY="-4.799655" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757762" name="box_2088757761" shape="box" x1="1027.166626" y1="78.878403" z1="2662.688965" x2="1029.666626" y2="88.878403" z2="2665.188965" rotX="-0.000000" rotY="-4.799655" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757770" name="sphere_2088757769" shape="sphere" x1="1030.271606" y1="78.769821" z1="2642.845459" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757784" name="sphere_2088757783" shape="sphere" x1="1102.910278" y1="80.103073" z1="2621.818848" radius="1.000000"> | |
<Property type="Interaction" id="270638047" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757760" name="box_2088757759" shape="box" x1="1129.297485" y1="78.925095" z1="2593.374023" x2="1131.797485" y2="103.925095" z2="2595.874023" rotX="-0.000000" rotY="-3.228859" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2155879369" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757758" name="box_2088757757" shape="box" x1="1129.804688" y1="78.925095" z1="2589.238770" x2="1132.304688" y2="103.925095" z2="2591.738770" rotX="-0.000000" rotY="-0.087266" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="2088757734" name="box_2088757733" shape="box" x1="1125.560547" y1="78.878403" z1="2579.652588" x2="1128.060547" y2="88.878403" z2="2582.152588" rotX="-0.000000" rotY="-3.228859" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2618975674" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3317206262" name="box_3317206261" shape="box" x1="1653.849609" y1="133.252380" z1="-1265.903076" x2="1656.099609" y2="150.182373" z2="-1263.653076" rotX="-0.000000" rotY="1.579523" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3317206266" name="box_3317206265" shape="box" x1="1643.598633" y1="148.618057" z1="-1255.824097" x2="1653.198730" y2="154.448044" z2="-1236.364136" rotX="-0.000000" rotY="-1.562070" rotZ="0.000000" /> | |
<AreaDefinition id="3317206274" name="box_3317206273" shape="box" x1="1640.231323" y1="139.148438" z1="-1247.370605" x2="1642.801392" y2="149.698425" z2="-1244.770508" rotX="-0.000000" rotY="-3.132866" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3317206276" name="box_3317206275" shape="box" x1="1653.976440" y1="139.148438" z1="-1247.461914" x2="1656.546509" y2="149.698425" z2="-1244.861816" rotX="-0.000000" rotY="0.008727" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3317206284" name="box_3317206283" shape="box" x1="1640.292480" y1="133.252380" z1="-1265.784790" x2="1642.542480" y2="150.182373" z2="-1263.534790" rotX="-0.000000" rotY="1.579523" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3317206286" name="sphere_3317206285" shape="sphere" x1="1650.622559" y1="117.135712" z1="-1247.085571" radius="65.000000" /> | |
<AreaDefinition id="3317206288" name="sphere_3317206287" shape="sphere" x1="1648.403076" y1="150.787964" z1="-1252.185059" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3317206290" name="sphere_3317206289" shape="sphere" x1="1648.510254" y1="150.787964" z1="-1239.897217" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3317206292" name="sphere_3317206291" shape="sphere" x1="1627.818359" y1="118.841743" z1="-1235.486572" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3317206268" name="box_3317206267" shape="box" x1="1641.619141" y1="133.252380" z1="-1231.348389" x2="1643.869141" y2="150.182373" z2="-1229.098389" rotX="-0.000000" rotY="-1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3317206270" name="box_3317206269" shape="box" x1="1653.098389" y1="133.252380" z1="-1231.433716" x2="1655.348389" y2="150.182373" z2="-1229.183716" rotX="-0.000000" rotY="-1.562070" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3317206294" name="sphere_3317206293" shape="sphere" x1="1668.865967" y1="118.841743" z1="-1235.844849" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4285067507" name="sphere_4285067507" shape="sphere" x1="2555.197510" y1="96.079422" z1="-2629.743896" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="2251224356" name="sphere_2251224356" shape="sphere" x1="2531.209473" y1="98.475677" z1="-2650.129150" radius="0.990000"> | |
<Property type="Interaction" id="2013517775" ProxyID="245649" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2251224357" name="sphere_2251224357" shape="sphere" x1="2531.212891" y1="96.408028" z1="-2646.468018" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="1155761626" name="box_1155761626" shape="box" x1="2549.041504" y1="98.119995" z1="-2571.041016" x2="2551.521484" y2="103.540009" z2="-2568.561035" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1155761627" name="sphere_1155761627" shape="sphere" x1="2557.814209" y1="97.575363" z1="-2567.677734" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="3682292957" name="sphere_3682292957" shape="sphere" x1="2537.324707" y1="96.334244" z1="-2602.349121" radius="15.000000"> | |
<Property type="Exclusive" id="262810547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3733496730" name="sphere_3733496730" shape="sphere" x1="2499.925781" y1="79.134308" z1="-2605.782227" radius="23.000000"> | |
<Property type="Exclusive" id="1339397840" /> | |
</AreaDefinition> | |
<AreaDefinition id="3334391354" name="box_3334391354" shape="box" x1="2542.006592" y1="80.120377" z1="-2605.678711" x2="2544.356689" y2="97.400406" z2="-2603.428711" rotX="-0.000000" rotY="3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1949624913" name="sphere_1949624913" shape="sphere" x1="2548.415283" y1="99.561127" z1="-2565.679932" radius="0.990000"> | |
<Property type="Interaction" id="2480614480" ProxyID="245648" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4276797539" name="sphere_4276797539" shape="sphere" x1="2186.916504" y1="86.588028" z1="-1564.536133" radius="0.990000"> | |
<Property type="Interaction" id="3350434723" ProxyID="245757" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4276797540" name="sphere_4276797540" shape="sphere" x1="2187.556152" y1="84.520378" z1="-1560.933716" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3237446125" name="sphere_3237446125" shape="sphere" x1="2287.141602" y1="79.775146" z1="-1502.725952" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="2154413291" name="sphere_2154413291" shape="sphere" x1="2245.890381" y1="80.088516" z1="-1517.327637" radius="15.000000"> | |
<Property type="Exclusive" id="3482765952" /> | |
</AreaDefinition> | |
<AreaDefinition id="1858421753" name="box_1858421753" shape="box" x1="2288.070068" y1="105.180527" z1="-1423.276001" x2="2290.550049" y2="110.600540" z2="-1420.796021" rotX="-0.000000" rotY="0.095993" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1858421756" name="sphere_1858421756" shape="sphere" x1="2295.330566" y1="104.635895" z1="-1424.748779" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="1858421755" name="box_1858421755" shape="box" x1="2301.791748" y1="105.180527" z1="-1424.597778" x2="2304.271729" y2="110.600540" z2="-1422.117798" rotX="-0.000000" rotY="-3.045599" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1244358410" name="sphere_1244358410" shape="sphere" x1="2293.154297" y1="91.544403" z1="-1462.784058" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="3934290945" name="sphere_3934290945" shape="sphere" x1="2288.469238" y1="106.623795" z1="-1429.165161" radius="0.990000"> | |
<Property type="Interaction" id="3874817156" ProxyID="245756" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1463206262" name="box_1463206261" shape="box" x1="2085.662598" y1="86.797516" z1="766.765686" x2="2087.912598" y2="103.727524" z2="769.015686" rotX="-0.000000" rotY="1.439897" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1463206284" name="box_1463206283" shape="box" x1="2072.220947" y1="86.788727" z1="764.996033" x2="2074.470947" y2="103.718735" z2="767.246033" rotX="-0.000000" rotY="1.439897" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1463206266" name="box_1463206265" shape="box" x1="2072.875488" y1="102.163185" z1="775.747681" x2="2082.475586" y2="107.993187" z2="795.207642" rotX="-0.000000" rotY="-1.701696" rotZ="0.000000" /> | |
<AreaDefinition id="1463206268" name="box_1463206267" shape="box" x1="2068.741699" y1="86.759430" z1="799.282043" x2="2070.991699" y2="103.689423" z2="801.532043" rotX="-0.000000" rotY="-1.701696" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1463206274" name="box_1463206273" shape="box" x1="2069.572021" y1="92.693565" z1="783.243103" x2="2072.141846" y2="103.243568" z2="785.843079" rotX="-0.000000" rotY="-3.272492" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614579" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1463206288" name="sphere_1463206287" shape="sphere" x1="2078.527588" y1="104.333107" z1="779.446655" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1463206290" name="sphere_1463206289" shape="sphere" x1="2076.923584" y1="104.333107" z1="791.630005" radius="1.060000"> | |
<Property type="Interaction" id="2075660810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1463206292" name="sphere_1463206291" shape="sphere" x1="2055.819092" y1="72.386879" z1="793.117737" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1463206270" name="box_1463206269" shape="box" x1="2080.121338" y1="86.797516" z1="800.795166" x2="2082.371338" y2="103.727524" z2="803.045166" rotX="-0.000000" rotY="-1.701696" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1463206286" name="sphere_1463206285" shape="sphere" x1="2080.015625" y1="70.680847" z1="784.805420" radius="65.000000" /> | |
<AreaDefinition id="1463206276" name="box_1463206275" shape="box" x1="2083.196045" y1="92.693565" z1="785.065796" x2="2085.765869" y2="103.243568" z2="787.665771" rotX="-0.000000" rotY="-0.130900" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2374614580" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1463206294" name="sphere_1463206293" shape="sphere" x1="2096.517090" y1="72.386879" z1="798.475708" radius="1.060000"> | |
<Property type="Interaction" id="3006850810" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="1036561379" name="sphere_1036561379" shape="sphere" x1="2562.467529" y1="78.941666" z1="-2598.288086" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="1155761624" name="box_1155761624" shape="box" x1="2562.828125" y1="98.119995" z1="-2571.041016" x2="2565.308105" y2="103.540009" z2="-2568.561035" rotX="-0.000000" rotY="-3.141593" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1716822001" name="sphere_1716822001" shape="sphere" x1="2575.339355" y1="96.369499" z1="-2602.665771" radius="18.000000"> | |
<Property type="Exclusive" id="2985063507" /> | |
</AreaDefinition> | |
<AreaDefinition id="3182822186" name="sphere_3182822186" shape="sphere" x1="2620.123047" y1="79.153854" z1="-2608.033691" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="949993394" name="box_949993394" shape="box" x1="2592.801758" y1="87.267830" z1="-2600.881836" x2="2595.151855" y2="96.297874" z2="-2598.631836" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="949993395" name="box_949993395" shape="box" x1="2592.802246" y1="87.267830" z1="-2605.686035" x2="2595.152344" y2="96.297874" z2="-2603.436035" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1408646641" name="box_1408646641" shape="box" x1="2578.980469" y1="80.120377" z1="-2598.345215" x2="2581.330566" y2="97.400406" z2="-2596.095215" rotX="-0.000000" rotY="0.000000" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532565" name="sphere_402532564" shape="sphere" x1="2781.601563" y1="62.375000" z1="-1976.547852" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532585" name="sphere_402532584" shape="sphere" x1="2784.177979" y1="62.375000" z1="-1934.750854" radius="36.019993"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532569" name="sphere_402532568" shape="sphere" x1="2812.944580" y1="62.375000" z1="-1982.134644" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532583" name="sphere_402532582" shape="sphere" x1="2784.177979" y1="62.375000" z1="-1831.776123" radius="44.279987"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532567" name="sphere_402532566" shape="sphere" x1="2780.890625" y1="62.375000" z1="-1782.200806" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532575" name="sphere_402532574" shape="sphere" x1="2815.018066" y1="62.375000" z1="-1779.203735" radius="22.000000"> | |
<Property type="Exclusive" id="627011059" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532587" name="sphere_402532586" shape="sphere" x1="2946.585449" y1="62.375000" z1="-1889.215698" radius="260.000000"> | |
<Property type="Exclusive" id="3617884019" /> | |
</AreaDefinition> | |
<AreaDefinition id="161383090" name="box_161383090" shape="box" x1="2923.871094" y1="18.902063" z1="-1057.173218" x2="2926.351074" y2="24.322073" z2="-1054.693237" rotX="-0.000000" rotY="-1.239184" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="161383091" name="sphere_161383091" shape="sphere" x1="2925.556396" y1="18.357430" z1="-1048.119629" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="161383088" name="box_161383088" shape="box" x1="2928.360352" y1="18.902063" z1="-1044.137695" x2="2930.840332" y2="24.322073" z2="-1041.657715" rotX="-0.000000" rotY="1.902409" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="1200301206" name="box_1200301206" shape="box" x1="2939.299805" y1="14.724625" z1="-1057.621948" x2="2941.549805" y2="16.974625" z2="-1055.371948" rotX="-0.000000" rotY="0.383972" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="717631502" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="246020" ReqSetId="178" NextChainId="1200301198" /> | |
</AreaDefinition> | |
<AreaDefinition id="1200301201" name="box_1200301201" shape="box" x1="2940.894531" y1="13.768226" z1="-1052.864868" x2="2943.144531" y2="16.018227" z2="-1050.614868" rotX="-0.000000" rotY="0.331613" rotZ="0.000000" /> | |
<AreaDefinition id="4273445265" name="box_4273445265" shape="box" x1="3055.519775" y1="62.184448" z1="-1200.005005" x2="3057.769775" y2="64.434448" z2="-1197.755005" rotX="-0.000000" rotY="-1.151917" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="4269374483" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="4153243265" /> | |
</AreaDefinition> | |
<AreaDefinition id="4153243271" name="box_4153243271" shape="box" x1="3068.627441" y1="61.204575" z1="-1184.180908" x2="3070.877441" y2="63.454575" z2="-1181.930908" rotX="-0.000000" rotY="0.000000" rotZ="0.000000" /> | |
<AreaDefinition id="1200301198" name="box_1200301198" shape="box" x1="3020.080078" y1="5.010190" z1="-1092.042969" x2="3022.330078" y2="7.260190" z2="-1089.792969" rotX="-0.000000" rotY="0.322886" rotZ="0.000000" /> | |
<AreaDefinition id="3864478160" name="sphere_3864478160" shape="sphere" x1="3039.267822" y1="20.033161" z1="-1132.040771" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="3864478159" name="sphere_3864478159" shape="sphere" x1="3037.687744" y1="22.100819" z1="-1135.343262" radius="0.990000"> | |
<Property type="Interaction" id="3872486956" ProxyID="246019" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="3845695751" name="sphere_3845695751" shape="sphere" x1="3044.669678" y1="5.748733" z1="-1082.550415" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="1076348820" name="box_1076348820" shape="box" x1="3029.963867" y1="5.965201" z1="-1063.877686" x2="3032.213867" y2="8.215200" z2="-1061.627686" rotX="-0.000000" rotY="-3.001966" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="902700007" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="246021" ReqSetId="178" NextChainId="1200301201" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553059" name="box_3429553059" shape="box" x1="2744.374512" y1="45.152588" z1="493.977051" x2="2746.374512" y2="65.152588" z2="495.977051" rotX="-0.000000" rotY="2.713987" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539943" name="box_4232539942" shape="box" x1="2724.124268" y1="53.654053" z1="495.611877" x2="2726.374268" y2="66.154053" z2="497.861877" rotX="-0.000000" rotY="2.713987" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1407676381" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539969" name="box_4232539968" shape="box" x1="2759.070801" y1="65.326309" z1="500.787720" x2="2762.070801" y2="68.326309" z2="503.787720" rotX="-0.000000" rotY="5.855579" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539971" name="box_4232539970" shape="box" x1="2758.365723" y1="67.445251" z1="500.082733" x2="2762.775879" y2="75.725189" z2="504.492706" rotX="-0.000000" rotY="5.855579" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539957" name="box_4232539956" shape="box" x1="2735.599854" y1="65.326309" z1="552.290283" x2="2738.599854" y2="68.326309" z2="555.290283" rotX="-0.000000" rotY="5.855579" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539987" name="box_4232539986" shape="box" x1="2734.894775" y1="67.445251" z1="551.585266" x2="2739.304932" y2="75.725189" z2="555.995300" rotX="-0.000000" rotY="5.855579" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553060" name="box_3429553060" shape="box" x1="2741.865967" y1="15.152588" z1="541.136169" x2="2743.865967" y2="95.152588" z2="543.136169" rotX="-0.000000" rotY="4.284783" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539963" name="box_4232539962" shape="box" x1="2720.731934" y1="53.378662" z1="587.476807" x2="2722.981934" y2="64.378662" z2="589.726807" rotX="-0.000000" rotY="5.855579" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540019" name="sphere_4232540018" shape="sphere" x1="2766.799072" y1="63.873169" z1="542.747864" radius="140.000000"> | |
<Property type="Exclusive" id="4277267792" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540015" name="sphere_4232540014" shape="sphere" x1="2806.795410" y1="159.289398" z1="606.363037" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540009" name="sphere_4232540008" shape="sphere" x1="2799.177979" y1="66.552948" z1="584.845276" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540023" name="sphere_4232540022" shape="sphere" x1="2787.825928" y1="63.873169" z1="677.260559" radius="50.000000"> | |
<Property type="Exclusive" id="1625820496" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539949" name="box_4232539948" shape="box" x1="2824.284668" y1="112.608521" z1="562.975403" x2="2828.334473" y2="156.668610" z2="568.345398" rotX="-0.000000" rotY="1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539951" name="box_4232539950" shape="box" x1="2824.779297" y1="65.806000" z1="564.062988" x2="2827.779297" y2="69.966003" z2="567.062988" rotX="-0.000000" rotY="1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539953" name="box_4232539952" shape="box" x1="2824.284668" y1="68.937805" z1="562.975403" x2="2828.334473" y2="110.807831" z2="568.345398" rotX="-0.000000" rotY="1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539977" name="box_4232539976" shape="box" x1="2824.760010" y1="156.107513" z1="564.104309" x2="2827.760010" y2="158.507507" z2="567.104309" rotX="-0.000000" rotY="1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539985" name="box_4232539984" shape="box" x1="2824.760010" y1="107.446175" z1="564.104309" x2="2827.760010" y2="112.936180" z2="567.104309" rotX="-0.000000" rotY="1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539991" name="box_4232539990" shape="box" x1="2825.937256" y1="68.937805" z1="559.431213" x2="2829.987061" y2="110.807831" z2="564.801208" rotX="-0.000000" rotY="1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539993" name="box_4232539992" shape="box" x1="2826.431885" y1="65.806000" z1="560.518738" x2="2829.431885" y2="69.966003" z2="563.518738" rotX="-0.000000" rotY="1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539995" name="box_4232539994" shape="box" x1="2826.412598" y1="107.446175" z1="560.560120" x2="2829.412598" y2="112.936180" z2="563.560120" rotX="-0.000000" rotY="1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539997" name="box_4232539996" shape="box" x1="2825.937256" y1="112.608521" z1="559.431213" x2="2829.987061" y2="156.668610" z2="564.801208" rotX="-0.000000" rotY="1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539999" name="box_4232539998" shape="box" x1="2826.412598" y1="156.107513" z1="560.560120" x2="2829.412598" y2="158.507507" z2="563.560120" rotX="-0.000000" rotY="1.134464" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553057" name="box_3429553057" shape="box" x1="2826.263672" y1="-4.847412" z1="531.296021" x2="2828.263672" y2="115.152588" z2="533.296021" rotX="-0.000000" rotY="2.713987" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540007" name="sphere_4232540006" shape="sphere" x1="2824.647217" y1="66.552948" z1="528.960327" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540017" name="sphere_4232540016" shape="sphere" x1="2845.771240" y1="159.289398" z1="520.640747" radius="1.060000"> | |
<Property type="Interaction" id="1556798106" ProxyID="0" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539979" name="box_4232539978" shape="box" x1="2869.328369" y1="53.393921" z1="611.231873" x2="2871.578369" y2="64.393921" z2="613.481873" rotX="-0.000000" rotY="4.459316" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2118657475" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540005" name="sphere_4232540004" shape="sphere" x1="2919.176758" y1="63.212570" z1="556.550781" radius="20.000000"> | |
<Property type="Exclusive" id="2415553251" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540001" name="sphere_4232540000" shape="sphere" x1="2937.455811" y1="63.873169" z1="542.658081" radius="40.000000"> | |
<Property type="Exclusive" id="1854860496" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540011" name="sphere_4232540010" shape="sphere" x1="2924.120605" y1="63.873169" z1="634.670227" radius="40.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553061" name="box_3429553061" shape="box" x1="2881.421143" y1="32.652588" z1="584.604126" x2="2883.421143" y2="77.652588" z2="586.604126" rotX="-0.000000" rotY="4.284783" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="3.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540013" name="sphere_4232540012" shape="sphere" x1="2882.478027" y1="63.873169" z1="602.467712" radius="48.000000"> | |
<Property type="Exclusive" id="3875570396" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540021" name="sphere_4232540020" shape="sphere" x1="2884.121094" y1="63.873169" z1="691.208862" radius="35.000000"> | |
<Property type="Exclusive" id="2115590496" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539945" name="box_4232539944" shape="box" x1="2976.480957" y1="76.092789" z1="632.031372" x2="2978.980957" y2="84.592789" z2="634.531372" rotX="-0.000000" rotY="1.143191" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539961" name="box_4232539960" shape="box" x1="2987.518555" y1="84.783325" z1="635.520508" x2="2989.638672" y2="91.563324" z2="637.720459" rotX="-0.000000" rotY="0.357792" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232540003" name="sphere_4232540002" shape="sphere" x1="2984.702881" y1="63.873169" z1="620.918213" radius="55.000000"> | |
<Property type="Exclusive" id="1854860497" /> | |
</AreaDefinition> | |
<AreaDefinition id="3429553058" name="box_3429553058" shape="box" x1="2958.138916" y1="-4.847412" z1="591.395081" x2="2960.138916" y2="115.152588" z2="593.395081" rotX="-0.000000" rotY="2.713987" rotZ="-1.570796"> | |
<Property type="Thrust - No Gravity" id="406574631" VelocityMult="4.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539959" name="box_4232539958" shape="box" x1="2982.710938" y1="84.817505" z1="645.862244" x2="2984.831055" y2="91.597504" z2="648.062195" rotX="-0.000000" rotY="3.499385" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="4079798660" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539973" name="box_4232539972" shape="box" x1="2991.631348" y1="76.125992" z1="646.618713" x2="2994.131348" y2="84.625992" z2="649.118713" rotX="-0.000000" rotY="2.713987" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539955" name="box_4232539954" shape="box" x1="2973.094971" y1="76.029312" z1="639.461426" x2="2975.594971" y2="84.529312" z2="641.961426" rotX="-0.000000" rotY="4.284783" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4232539965" name="box_4232539964" shape="box" x1="2994.060547" y1="75.987320" z1="641.288025" x2="2996.560547" y2="84.487320" z2="643.788025" rotX="-0.000000" rotY="2.713987" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2700778614" VelocityMult="1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532581" name="sphere_402532580" shape="sphere" x1="3102.713867" y1="62.375000" z1="-1888.209595" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532563" name="box_402532562" shape="box" x1="3113.443848" y1="65.023689" z1="-1897.963379" x2="3115.533691" y2="75.643700" z2="-1895.853271" rotX="-0.000000" rotY="2.617994" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532555" name="box_402532554" shape="box" x1="3118.990234" y1="75.431030" z1="-1900.313843" x2="3122.060059" y2="86.771027" z2="-1897.273804" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532559" name="box_402532558" shape="box" x1="3118.990234" y1="75.431023" z1="-1880.203125" x2="3122.060059" y2="86.771034" z2="-1877.163086" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532557" name="box_402532556" shape="box" x1="3123.988525" y1="75.431030" z1="-1900.313843" x2="3127.058350" y2="86.771027" z2="-1897.273804" rotX="-0.000000" rotY="-1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532561" name="box_402532560" shape="box" x1="3123.988525" y1="75.431030" z1="-1880.203125" x2="3127.058350" y2="86.771027" z2="-1877.163086" rotX="-0.000000" rotY="1.570796" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="1280019640" VelocityMult="-1.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532577" name="sphere_402532576" shape="sphere" x1="3129.886963" y1="62.375000" z1="-1903.661987" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532573" name="sphere_402532572" shape="sphere" x1="3152.488525" y1="62.388672" z1="-1927.990112" radius="18.099997"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532571" name="sphere_402532570" shape="sphere" x1="3165.808594" y1="62.377930" z1="-1887.131714" radius="28.000000"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="402532579" name="sphere_402532578" shape="sphere" x1="3138.761230" y1="62.375000" z1="-1863.050171" radius="24.199999"> | |
<Property type="Exclusive" id="3922072368" /> | |
</AreaDefinition> | |
<AreaDefinition id="151451604" name="sphere_151451604" shape="sphere" x1="3075.409912" y1="61.549438" z1="-1202.914429" radius="20.000000"> | |
<Property type="Exclusive" id="3342266467" /> | |
</AreaDefinition> | |
<AreaDefinition id="636940084" name="sphere_636940084" shape="sphere" x1="3093.838135" y1="61.781937" z1="-1200.625854" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="636940083" name="sphere_636940083" shape="sphere" x1="3093.842041" y1="63.849594" z1="-1196.965210" radius="0.990000"> | |
<Property type="Interaction" id="3632262936" ProxyID="246017" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="105040622" name="box_105040622" shape="box" x1="3106.629883" y1="52.921951" z1="-1166.210083" x2="3108.879883" y2="55.171951" z2="-1163.960083" rotX="-0.000000" rotY="-2.111848" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="4150952642" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="4153243265" /> | |
</AreaDefinition> | |
<AreaDefinition id="859806806" name="sphere_859806806" shape="sphere" x1="3121.966309" y1="52.342606" z1="-1144.319702" radius="20.000000"> | |
<Property type="Exclusive" id="1779678656" /> | |
</AreaDefinition> | |
<AreaDefinition id="4284689314" name="sphere_4284689314" shape="sphere" x1="3081.767334" y1="22.394688" z1="-1126.525024" radius="25.000000"> | |
<Property type="Exclusive" id="1455026464" /> | |
</AreaDefinition> | |
<AreaDefinition id="2034372866" name="box_2034372866" shape="box" x1="3097.238525" y1="33.316666" z1="-1133.388672" x2="3099.588623" y2="38.716721" z2="-1131.138672" rotX="-0.000000" rotY="0.593412" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2544033479" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="4153243268" name="box_4153243268" shape="box" x1="3104.677246" y1="51.960190" z1="-1142.640869" x2="3106.927246" y2="54.210190" z2="-1140.390869" rotX="-0.000000" rotY="0.244346" rotZ="0.000000" /> | |
<AreaDefinition id="105040625" name="box_105040625" shape="box" x1="3082.031738" y1="38.745117" z1="-1135.949707" x2="3084.281738" y2="40.995117" z2="-1133.699707" rotX="-0.000000" rotY="1.867502" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3641641716" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="4153243271" /> | |
</AreaDefinition> | |
<AreaDefinition id="105040628" name="box_105040628" shape="box" x1="3089.387939" y1="38.750992" z1="-1125.107422" x2="3091.637939" y2="41.000992" z2="-1122.857422" rotX="-0.000000" rotY="0.846485" rotZ="0.000000"> | |
<Property type="Thrust - Chain" id="3978715420" VelocityMult="2.00" JumpHeight="20.00" FacSpawnId="0" ReqSetId="0" NextChainId="4153243268" /> | |
</AreaDefinition> | |
<AreaDefinition id="4153243265" name="box_4153243265" shape="box" x1="3085.370850" y1="37.779556" z1="-1130.276001" x2="3087.620850" y2="40.029556" z2="-1128.026001" rotX="-0.000000" rotY="0.593412" rotZ="0.000000" /> | |
<AreaDefinition id="269633898" name="sphere_269633898" shape="sphere" x1="3131.465332" y1="45.813339" z1="-1067.109497" radius="30.000000"> | |
<Property type="Exclusive" id="2890131875" /> | |
</AreaDefinition> | |
<AreaDefinition id="1836835269" name="sphere_1836835269" shape="sphere" x1="3145.773193" y1="59.354279" z1="-1055.195801" radius="12.000000"> | |
<Property type="Exclusive" id="3614730547" /> | |
</AreaDefinition> | |
<AreaDefinition id="54551367" name="sphere_54551367" shape="sphere" x1="3208.158691" y1="106.071182" z1="-1050.642700" radius="18.549999"> | |
<Property type="Exclusive" id="2384671872" /> | |
</AreaDefinition> | |
<AreaDefinition id="54551364" name="box_54551364" shape="box" x1="3206.546143" y1="106.615814" z1="-1045.289063" x2="3209.026123" y2="112.035828" z2="-1042.809082" rotX="-0.000000" rotY="1.186824" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="54551366" name="box_54551366" shape="box" x1="3211.709717" y1="106.615814" z1="-1058.070679" x2="3214.189697" y2="112.035828" z2="-1055.590698" rotX="-0.000000" rotY="-1.954769" rotZ="0.000000"> | |
<Property type="Thrust - No Gravity" id="2518695024" VelocityMult="2.00" /> | |
</AreaDefinition> | |
<AreaDefinition id="824164103" name="sphere_824164103" shape="sphere" x1="3206.874023" y1="108.067490" z1="-1060.723267" radius="0.990000"> | |
<Property type="Interaction" id="3041373853" ProxyID="246016" Immunity="1" /> | |
</AreaDefinition> | |
<AreaDefinition id="2772508918" name="sphere_2772508918" shape="sphere" x1="3200.843750" y1="108.067490" z1="-1045.048462" radius="0.990000"> | |
<Property type="Interaction" id="3303880101" ProxyID="246018" Immunity="1" /> | |
</AreaDefinition> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment