Skip to content

Instantly share code, notes, and snippets.

@TechplexEngineer
Last active August 29, 2015 14:22
Show Gist options
  • Select an option

  • Save TechplexEngineer/a6497ef9e238f896b7de to your computer and use it in GitHub Desktop.

Select an option

Save TechplexEngineer/a6497ef9e238f896b7de to your computer and use it in GitHub Desktop.
Working with XML files
#!/usr/bin/python
from xml.dom.minidom import parse
import xml.dom.minidom
# Open XML document using minidom parser
dom = xml.dom.minidom.parse("HAWC300_300_outrigger_s12.xml")
root = dom.documentElement
# get a list of all the tanks
tanks = root.getElementsByTagName("tank")
# Iterate over the list of tanks
for tank in tanks:
print '** TANK **'
tankID = tank.getAttribute("id")
print "id: %s" % tankID
positions = tank.getElementsByTagName("position") # the the objects for the position tags
if len(positions) > 0: # make sure we got at least one.
position = positions[0] # assuming well formatted XML the position tag we are interested will be first
zcords = position.getElementsByTagName("z") # get the z element in the position tag
if len(zcords) > 0: # make sure there was at least one
z = zcords[0] # assuming well formatted XML the z tag we are interested will be first
print "z: %s" % z.childNodes[0].nodeValue
# @todo !!! -- we'll lookup the new z value based on the tank ID we found earlier
z.childNodes[0].nodeValue = 10 # assigin the new z value
print z.childNodes[0].nodeValue # check the new z value
else:
raise ValueError('Unable to find zcords!')
else:
raise ValueError('Unable to find positions!')
break
# z =
# write the changes to an output file!
with open('output.xml', 'w+') as f:
f.write(root.toxml())
<?xml version="1.0" ?>
<detector xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="DetectorLayout.xsd">
<name> HAWC300 </name>
<version> 1.0 </version>
<!-- Detector reference point -->
<position>
<northing unit="meter"> 2100770.063957 </northing>
<easting unit="meter"> 678133.477639 </easting>
<altitude unit="meter"> 4096.000000 </altitude>
<ellipsoid> WGS84 </ellipsoid>
<zone> 14 </zone>
<band> Q </band>
</position>
<arrayCenter>
<x unit="cm"> 716.281765 </x>
<y unit="cm"> 34268.694149 </y>
<z unit="cm"> 0.000000 </z>
</arrayCenter>
<layout>
<tank id="1">
<name> E9 </name>
<type> 1 </type>
<position>
<x unit="cm"> 9976.082337 </x>
<y unit="cm"> 31034.384659 </y>
<z unit="cm"> -171.550000 </z>
</position>
<channels>
<channel id="1">
<name> E9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="2">
<name> E9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="3">
<name> E9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="4">
<name> E9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="2">
<name> E10 </name>
<type> 1 </type>
<position>
<x unit="cm"> 9761.378987 </x>
<y unit="cm"> 31794.649397 </y>
<z unit="cm"> -179.450000 </z>
</position>
<channels>
<channel id="5">
<name> E10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="6">
<name> E10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="7">
<name> E10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="8">
<name> E10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="3">
<name> E11 </name>
<type> 1 </type>
<position>
<x unit="cm"> 9334.690049 </x>
<y unit="cm"> 33305.555268 </y>
<z unit="cm"> -195.150000 </z>
</position>
<channels>
<channel id="9">
<name> E11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="10">
<name> E11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="11">
<name> E11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="12">
<name> E11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="4">
<name> E12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 9119.986698 </x>
<y unit="cm"> 34065.820005 </y>
<z unit="cm"> -203.050000 </z>
</position>
<channels>
<channel id="13">
<name> E12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="14">
<name> E12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="15">
<name> E12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="16">
<name> E12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="5">
<name> E13 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8905.283347 </x>
<y unit="cm"> 34826.084743 </y>
<z unit="cm"> -210.950000 </z>
</position>
<channels>
<channel id="17">
<name> E13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="18">
<name> E13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="19">
<name> E13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="20">
<name> E13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="6">
<name> E14 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8690.579996 </x>
<y unit="cm"> 35586.349480 </y>
<z unit="cm"> -218.850000 </z>
</position>
<channels>
<channel id="21">
<name> E14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="22">
<name> E14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="23">
<name> E14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="24">
<name> E14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="7">
<name> E15 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8475.876645 </x>
<y unit="cm"> 36346.614218 </y>
<z unit="cm"> -226.750000 </z>
</position>
<channels>
<channel id="25">
<name> E15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="26">
<name> E15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="27">
<name> E15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="28">
<name> E15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="8">
<name> E16 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8261.173294 </x>
<y unit="cm"> 37106.878955 </y>
<z unit="cm"> -234.650000 </z>
</position>
<channels>
<channel id="29">
<name> E16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="30">
<name> E16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="31">
<name> E16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="32">
<name> E16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="9">
<name> E17 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8046.469943 </x>
<y unit="cm"> 37867.143693 </y>
<z unit="cm"> -242.550000 </z>
</position>
<channels>
<channel id="33">
<name> E17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="34">
<name> E17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="35">
<name> E17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="36">
<name> E17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="10">
<name> E18 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7831.766592 </x>
<y unit="cm"> 38627.408430 </y>
<z unit="cm"> -250.450000 </z>
</position>
<channels>
<channel id="37">
<name> E18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="38">
<name> E18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="39">
<name> E18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="40">
<name> E18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="11">
<name> E19 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7568.143490 </x>
<y unit="cm"> 39560.898045 </y>
<z unit="cm"> -260.150000 </z>
</position>
<channels>
<channel id="41">
<name> E19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="42">
<name> E19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="43">
<name> E19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="44">
<name> E19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="12">
<name> F8 </name>
<type> 1 </type>
<position>
<x unit="cm"> 9425.179481 </x>
<y unit="cm"> 30468.357238 </y>
<z unit="cm"> -167.600000 </z>
</position>
<channels>
<channel id="45">
<name> F8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="46">
<name> F8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="47">
<name> F8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="48">
<name> F8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="13">
<name> F9 </name>
<type> 1 </type>
<position>
<x unit="cm"> 9210.476130 </x>
<y unit="cm"> 31228.621975 </y>
<z unit="cm"> -175.500000 </z>
</position>
<channels>
<channel id="49">
<name> F9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="50">
<name> F9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="51">
<name> F9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="52">
<name> F9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="14">
<name> F10 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8995.772779 </x>
<y unit="cm"> 31988.886713 </y>
<z unit="cm"> -183.400000 </z>
</position>
<channels>
<channel id="53">
<name> F10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="54">
<name> F10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="55">
<name> F10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="56">
<name> F10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="15">
<name> F11 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8569.083841 </x>
<y unit="cm"> 33499.792583 </y>
<z unit="cm"> -199.100000 </z>
</position>
<channels>
<channel id="57">
<name> F11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="58">
<name> F11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="59">
<name> F11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="60">
<name> F11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="16">
<name> F12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8354.380490 </x>
<y unit="cm"> 34260.057321 </y>
<z unit="cm"> -207.000000 </z>
</position>
<channels>
<channel id="61">
<name> F12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="62">
<name> F12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="63">
<name> F12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="64">
<name> F12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="17">
<name> F13 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8139.677139 </x>
<y unit="cm"> 35020.322058 </y>
<z unit="cm"> -214.900000 </z>
</position>
<channels>
<channel id="65">
<name> F13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="66">
<name> F13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="67">
<name> F13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="68">
<name> F13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="18">
<name> F14 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7924.973788 </x>
<y unit="cm"> 35780.586796 </y>
<z unit="cm"> -222.800000 </z>
</position>
<channels>
<channel id="69">
<name> F14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="70">
<name> F14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="71">
<name> F14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="72">
<name> F14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="19">
<name> F15 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7710.270437 </x>
<y unit="cm"> 36540.851533 </y>
<z unit="cm"> -230.700000 </z>
</position>
<channels>
<channel id="73">
<name> F15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="74">
<name> F15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="75">
<name> F15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="76">
<name> F15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="20">
<name> F16 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7495.567086 </x>
<y unit="cm"> 37301.116271 </y>
<z unit="cm"> -238.600000 </z>
</position>
<channels>
<channel id="77">
<name> F16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="78">
<name> F16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="79">
<name> F16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="80">
<name> F16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="21">
<name> F17 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7280.863735 </x>
<y unit="cm"> 38061.381008 </y>
<z unit="cm"> -246.500000 </z>
</position>
<channels>
<channel id="81">
<name> F17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="82">
<name> F17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="83">
<name> F17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="84">
<name> F17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="22">
<name> F18 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7017.240634 </x>
<y unit="cm"> 38994.870623 </y>
<z unit="cm"> -256.200000 </z>
</position>
<channels>
<channel id="85">
<name> F18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="86">
<name> F18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="87">
<name> F18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="88">
<name> F18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="23">
<name> F19 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6802.537283 </x>
<y unit="cm"> 39755.135360 </y>
<z unit="cm"> -264.100000 </z>
</position>
<channels>
<channel id="89">
<name> F19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="90">
<name> F19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="91">
<name> F19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="92">
<name> F19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="24">
<name> G6 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8794.497684 </x>
<y unit="cm"> 29058.901502 </y>
<z unit="cm"> -155.750000 </z>
</position>
<channels>
<channel id="93">
<name> G6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="94">
<name> G6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="95">
<name> G6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="96">
<name> G6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="25">
<name> G7 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8579.794333 </x>
<y unit="cm"> 29819.166239 </y>
<z unit="cm"> -163.650000 </z>
</position>
<channels>
<channel id="97">
<name> G7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="98">
<name> G7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="99">
<name> G7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="100">
<name> G7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="26">
<name> G8 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8365.090982 </x>
<y unit="cm"> 30579.430977 </y>
<z unit="cm"> -171.550000 </z>
</position>
<channels>
<channel id="101">
<name> G8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="102">
<name> G8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="103">
<name> G8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="104">
<name> G8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="27">
<name> G9 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8150.387631 </x>
<y unit="cm"> 31339.695714 </y>
<z unit="cm"> -179.450000 </z>
</position>
<channels>
<channel id="105">
<name> G9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="106">
<name> G9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="107">
<name> G9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="108">
<name> G9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="28">
<name> G10 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7935.684280 </x>
<y unit="cm"> 32099.960452 </y>
<z unit="cm"> -187.350000 </z>
</position>
<channels>
<channel id="109">
<name> G10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="110">
<name> G10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="111">
<name> G10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="112">
<name> G10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="29">
<name> G11 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7508.995343 </x>
<y unit="cm"> 33610.866322 </y>
<z unit="cm"> -203.050000 </z>
</position>
<channels>
<channel id="113">
<name> G11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="114">
<name> G11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="115">
<name> G11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="116">
<name> G11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="30">
<name> G12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7294.291992 </x>
<y unit="cm"> 34371.131060 </y>
<z unit="cm"> -210.950000 </z>
</position>
<channels>
<channel id="117">
<name> G12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="118">
<name> G12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="119">
<name> G12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="120">
<name> G12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="31">
<name> G13 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7079.588641 </x>
<y unit="cm"> 35131.395797 </y>
<z unit="cm"> -218.850000 </z>
</position>
<channels>
<channel id="121">
<name> G13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="122">
<name> G13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="123">
<name> G13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="124">
<name> G13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="32">
<name> G14 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6864.885290 </x>
<y unit="cm"> 35891.660535 </y>
<z unit="cm"> -226.750000 </z>
</position>
<channels>
<channel id="125">
<name> G14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="126">
<name> G14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="127">
<name> G14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="128">
<name> G14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="33">
<name> G15 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6650.181939 </x>
<y unit="cm"> 36651.925272 </y>
<z unit="cm"> -234.650000 </z>
</position>
<channels>
<channel id="129">
<name> G15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="130">
<name> G15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="131">
<name> G15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="132">
<name> G15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="34">
<name> G16 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6435.478588 </x>
<y unit="cm"> 37412.190010 </y>
<z unit="cm"> -242.550000 </z>
</position>
<channels>
<channel id="133">
<name> G16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="134">
<name> G16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="135">
<name> G16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="136">
<name> G16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="35">
<name> G17 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6171.855486 </x>
<y unit="cm"> 38345.679624 </y>
<z unit="cm"> -252.250000 </z>
</position>
<channels>
<channel id="137">
<name> G17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="138">
<name> G17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="139">
<name> G17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="140">
<name> G17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="36">
<name> G18 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5957.152135 </x>
<y unit="cm"> 39105.944362 </y>
<z unit="cm"> -260.150000 </z>
</position>
<channels>
<channel id="141">
<name> G18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="142">
<name> G18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="143">
<name> G18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="144">
<name> G18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="37">
<name> G19 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5742.448784 </x>
<y unit="cm"> 39866.209099 </y>
<z unit="cm"> -268.050000 </z>
</position>
<channels>
<channel id="145">
<name> G19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="146">
<name> G19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="147">
<name> G19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="148">
<name> G19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="38">
<name> G20 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5527.745433 </x>
<y unit="cm"> 40626.473837 </y>
<z unit="cm"> -275.950000 </z>
</position>
<channels>
<channel id="149">
<name> G20A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="150">
<name> G20B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="151">
<name> G20C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="152">
<name> G20D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="39">
<name> H6 </name>
<type> 1 </type>
<position>
<x unit="cm"> 8028.891476 </x>
<y unit="cm"> 29253.138817 </y>
<z unit="cm"> -159.700000 </z>
</position>
<channels>
<channel id="153">
<name> H6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="154">
<name> H6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="155">
<name> H6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="156">
<name> H6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="40">
<name> H7 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7814.188126 </x>
<y unit="cm"> 30013.403555 </y>
<z unit="cm"> -167.600000 </z>
</position>
<channels>
<channel id="157">
<name> H7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="158">
<name> H7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="159">
<name> H7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="160">
<name> H7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="41">
<name> H8 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7599.484775 </x>
<y unit="cm"> 30773.668292 </y>
<z unit="cm"> -175.500000 </z>
</position>
<channels>
<channel id="161">
<name> H8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="162">
<name> H8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="163">
<name> H8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="164">
<name> H8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="42">
<name> H9 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7384.781424 </x>
<y unit="cm"> 31533.933030 </y>
<z unit="cm"> -183.400000 </z>
</position>
<channels>
<channel id="165">
<name> H9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="166">
<name> H9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="167">
<name> H9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="168">
<name> H9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="43">
<name> H10 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7170.078073 </x>
<y unit="cm"> 32294.197767 </y>
<z unit="cm"> -191.300000 </z>
</position>
<channels>
<channel id="169">
<name> H10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="170">
<name> H10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="171">
<name> H10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="172">
<name> H10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="44">
<name> H11 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6743.389135 </x>
<y unit="cm"> 33805.103638 </y>
<z unit="cm"> -207.000000 </z>
</position>
<channels>
<channel id="173">
<name> H11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="174">
<name> H11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="175">
<name> H11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="176">
<name> H11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="45">
<name> H12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6528.685784 </x>
<y unit="cm"> 34565.368376 </y>
<z unit="cm"> -214.900000 </z>
</position>
<channels>
<channel id="177">
<name> H12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="178">
<name> H12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="179">
<name> H12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="180">
<name> H12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="46">
<name> H13 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6313.982433 </x>
<y unit="cm"> 35325.633113 </y>
<z unit="cm"> -222.800000 </z>
</position>
<channels>
<channel id="181">
<name> H13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="182">
<name> H13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="183">
<name> H13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="184">
<name> H13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="47">
<name> H14 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6099.279082 </x>
<y unit="cm"> 36085.897851 </y>
<z unit="cm"> -230.700000 </z>
</position>
<channels>
<channel id="185">
<name> H14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="186">
<name> H14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="187">
<name> H14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="188">
<name> H14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="48">
<name> H15 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5884.575731 </x>
<y unit="cm"> 36846.162588 </y>
<z unit="cm"> -238.600000 </z>
</position>
<channels>
<channel id="189">
<name> H15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="190">
<name> H15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="191">
<name> H15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="192">
<name> H15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="49">
<name> H16 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5620.952629 </x>
<y unit="cm"> 37779.652202 </y>
<z unit="cm"> -248.300000 </z>
</position>
<channels>
<channel id="193">
<name> H16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="194">
<name> H16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="195">
<name> H16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="196">
<name> H16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="50">
<name> H17 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5406.249278 </x>
<y unit="cm"> 38539.916940 </y>
<z unit="cm"> -256.200000 </z>
</position>
<channels>
<channel id="197">
<name> H17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="198">
<name> H17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="199">
<name> H17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="200">
<name> H17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="51">
<name> H18 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5191.545928 </x>
<y unit="cm"> 39300.181677 </y>
<z unit="cm"> -264.100000 </z>
</position>
<channels>
<channel id="201">
<name> H18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="202">
<name> H18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="203">
<name> H18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="204">
<name> H18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="52">
<name> H19 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4976.842577 </x>
<y unit="cm"> 40060.446415 </y>
<z unit="cm"> -272.000000 </z>
</position>
<channels>
<channel id="205">
<name> H19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="206">
<name> H19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="207">
<name> H19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="208">
<name> H19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="53">
<name> I5 </name>
<type> 1 </type>
<position>
<x unit="cm"> 7183.506329 </x>
<y unit="cm"> 28603.947819 </y>
<z unit="cm"> -155.750000 </z>
</position>
<channels>
<channel id="209">
<name> I5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="210">
<name> I5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="211">
<name> I5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="212">
<name> I5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="54">
<name> I6 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6968.802978 </x>
<y unit="cm"> 29364.212556 </y>
<z unit="cm"> -163.650000 </z>
</position>
<channels>
<channel id="213">
<name> I6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="214">
<name> I6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="215">
<name> I6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="216">
<name> I6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="55">
<name> I7 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6754.099627 </x>
<y unit="cm"> 30124.477294 </y>
<z unit="cm"> -171.550000 </z>
</position>
<channels>
<channel id="217">
<name> I7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="218">
<name> I7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="219">
<name> I7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="220">
<name> I7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="56">
<name> I8 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6539.396276 </x>
<y unit="cm"> 30884.742031 </y>
<z unit="cm"> -179.450000 </z>
</position>
<channels>
<channel id="221">
<name> I8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="222">
<name> I8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="223">
<name> I8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="224">
<name> I8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="57">
<name> I9 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6324.692925 </x>
<y unit="cm"> 31645.006769 </y>
<z unit="cm"> -187.350000 </z>
</position>
<channels>
<channel id="225">
<name> I9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="226">
<name> I9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="227">
<name> I9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="228">
<name> I9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="58">
<name> I10 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6109.989574 </x>
<y unit="cm"> 32405.271506 </y>
<z unit="cm"> -195.250000 </z>
</position>
<channels>
<channel id="229">
<name> I10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="230">
<name> I10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="231">
<name> I10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="232">
<name> I10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="59">
<name> I11 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5683.300636 </x>
<y unit="cm"> 33916.177377 </y>
<z unit="cm"> -210.950000 </z>
</position>
<channels>
<channel id="233">
<name> I11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="234">
<name> I11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="235">
<name> I11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="236">
<name> I11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="60">
<name> I12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5468.597286 </x>
<y unit="cm"> 34676.442115 </y>
<z unit="cm"> -218.850000 </z>
</position>
<channels>
<channel id="237">
<name> I12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="238">
<name> I12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="239">
<name> I12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="240">
<name> I12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="61">
<name> I13 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5253.893935 </x>
<y unit="cm"> 35436.706852 </y>
<z unit="cm"> -226.750000 </z>
</position>
<channels>
<channel id="241">
<name> I13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="242">
<name> I13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="243">
<name> I13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="244">
<name> I13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="62">
<name> I14 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5039.190584 </x>
<y unit="cm"> 36196.971590 </y>
<z unit="cm"> -234.650000 </z>
</position>
<channels>
<channel id="245">
<name> I14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="246">
<name> I14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="247">
<name> I14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="248">
<name> I14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="63">
<name> I15 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4775.567482 </x>
<y unit="cm"> 37130.461204 </y>
<z unit="cm"> -244.350000 </z>
</position>
<channels>
<channel id="249">
<name> I15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="250">
<name> I15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="251">
<name> I15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="252">
<name> I15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="64">
<name> I16 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4560.864131 </x>
<y unit="cm"> 37890.725942 </y>
<z unit="cm"> -252.250000 </z>
</position>
<channels>
<channel id="253">
<name> I16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="254">
<name> I16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="255">
<name> I16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="256">
<name> I16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="65">
<name> I17 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4346.160780 </x>
<y unit="cm"> 38650.990679 </y>
<z unit="cm"> -260.150000 </z>
</position>
<channels>
<channel id="257">
<name> I17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="258">
<name> I17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="259">
<name> I17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="260">
<name> I17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="66">
<name> I18 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4131.457429 </x>
<y unit="cm"> 39411.255417 </y>
<z unit="cm"> -268.050000 </z>
</position>
<channels>
<channel id="261">
<name> I18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="262">
<name> I18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="263">
<name> I18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="264">
<name> I18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="67">
<name> I19 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3916.754078 </x>
<y unit="cm"> 40171.520154 </y>
<z unit="cm"> -275.950000 </z>
</position>
<channels>
<channel id="265">
<name> I19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="266">
<name> I19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="267">
<name> I19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="268">
<name> I19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="68">
<name> I20 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3702.050727 </x>
<y unit="cm"> 40931.784892 </y>
<z unit="cm"> -283.850000 </z>
</position>
<channels>
<channel id="269">
<name> I20A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="270">
<name> I20B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="271">
<name> I20C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="272">
<name> I20D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="69">
<name> J5 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6417.900121 </x>
<y unit="cm"> 28798.185134 </y>
<z unit="cm"> -159.700000 </z>
</position>
<channels>
<channel id="273">
<name> J5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="274">
<name> J5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="275">
<name> J5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="276">
<name> J5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="70">
<name> J6 </name>
<type> 1 </type>
<position>
<x unit="cm"> 6203.196770 </x>
<y unit="cm"> 29558.449872 </y>
<z unit="cm"> -167.600000 </z>
</position>
<channels>
<channel id="277">
<name> J6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="278">
<name> J6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="279">
<name> J6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="280">
<name> J6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="71">
<name> J7 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5988.493419 </x>
<y unit="cm"> 30318.714609 </y>
<z unit="cm"> -175.500000 </z>
</position>
<channels>
<channel id="281">
<name> J7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="282">
<name> J7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="283">
<name> J7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="284">
<name> J7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="72">
<name> J8 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5773.790069 </x>
<y unit="cm"> 31078.979347 </y>
<z unit="cm"> -183.400000 </z>
</position>
<channels>
<channel id="285">
<name> J8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="286">
<name> J8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="287">
<name> J8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="288">
<name> J8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="73">
<name> J9 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5559.086718 </x>
<y unit="cm"> 31839.244084 </y>
<z unit="cm"> -191.300000 </z>
</position>
<channels>
<channel id="289">
<name> J9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="290">
<name> J9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="291">
<name> J9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="292">
<name> J9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="74">
<name> J10 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5344.383367 </x>
<y unit="cm"> 32599.508822 </y>
<z unit="cm"> -199.200000 </z>
</position>
<channels>
<channel id="293">
<name> J10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="294">
<name> J10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="295">
<name> J10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="296">
<name> J10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="75">
<name> J11 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4917.694429 </x>
<y unit="cm"> 34110.414693 </y>
<z unit="cm"> -214.900000 </z>
</position>
<channels>
<channel id="297">
<name> J11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="298">
<name> J11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="299">
<name> J11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="300">
<name> J11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="76">
<name> J12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4702.991078 </x>
<y unit="cm"> 34870.679430 </y>
<z unit="cm"> -222.800000 </z>
</position>
<channels>
<channel id="301">
<name> J12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="302">
<name> J12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="303">
<name> J12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="304">
<name> J12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="77">
<name> J13 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4488.287727 </x>
<y unit="cm"> 35630.944168 </y>
<z unit="cm"> -230.700000 </z>
</position>
<channels>
<channel id="305">
<name> J13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="306">
<name> J13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="307">
<name> J13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="308">
<name> J13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="78">
<name> J14 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4224.664625 </x>
<y unit="cm"> 36564.433782 </y>
<z unit="cm"> -240.400000 </z>
</position>
<channels>
<channel id="309">
<name> J14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="310">
<name> J14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="311">
<name> J14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="312">
<name> J14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="79">
<name> J15 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4009.961274 </x>
<y unit="cm"> 37324.698520 </y>
<z unit="cm"> -248.300000 </z>
</position>
<channels>
<channel id="313">
<name> J15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="314">
<name> J15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="315">
<name> J15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="316">
<name> J15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="80">
<name> J16 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3795.257923 </x>
<y unit="cm"> 38084.963257 </y>
<z unit="cm"> -256.200000 </z>
</position>
<channels>
<channel id="317">
<name> J16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="318">
<name> J16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="319">
<name> J16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="320">
<name> J16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="81">
<name> J17 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3580.554572 </x>
<y unit="cm"> 38845.227995 </y>
<z unit="cm"> -264.100000 </z>
</position>
<channels>
<channel id="321">
<name> J17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="322">
<name> J17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="323">
<name> J17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="324">
<name> J17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="82">
<name> J18 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3365.851221 </x>
<y unit="cm"> 39605.492732 </y>
<z unit="cm"> -272.000000 </z>
</position>
<channels>
<channel id="325">
<name> J18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="326">
<name> J18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="327">
<name> J18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="328">
<name> J18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="83">
<name> J19 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3151.147870 </x>
<y unit="cm"> 40365.757470 </y>
<z unit="cm"> -279.900000 </z>
</position>
<channels>
<channel id="329">
<name> J19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="330">
<name> J19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="331">
<name> J19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="332">
<name> J19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="84">
<name> K4 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5572.514974 </x>
<y unit="cm"> 28148.994136 </y>
<z unit="cm"> -155.750000 </z>
</position>
<channels>
<channel id="333">
<name> K4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="334">
<name> K4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="335">
<name> K4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="336">
<name> K4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="85">
<name> K5 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5357.811623 </x>
<y unit="cm"> 28909.258873 </y>
<z unit="cm"> -163.650000 </z>
</position>
<channels>
<channel id="337">
<name> K5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="338">
<name> K5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="339">
<name> K5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="340">
<name> K5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="86">
<name> K6 </name>
<type> 1 </type>
<position>
<x unit="cm"> 5143.108272 </x>
<y unit="cm"> 29669.523611 </y>
<z unit="cm"> -171.550000 </z>
</position>
<channels>
<channel id="341">
<name> K6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="342">
<name> K6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="343">
<name> K6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="344">
<name> K6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="87">
<name> K7 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4928.404921 </x>
<y unit="cm"> 30429.788348 </y>
<z unit="cm"> -179.450000 </z>
</position>
<channels>
<channel id="345">
<name> K7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="346">
<name> K7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="347">
<name> K7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="348">
<name> K7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="88">
<name> K8 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4713.701570 </x>
<y unit="cm"> 31190.053086 </y>
<z unit="cm"> -187.350000 </z>
</position>
<channels>
<channel id="349">
<name> K8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="350">
<name> K8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="351">
<name> K8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="352">
<name> K8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="89">
<name> K9 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4498.998219 </x>
<y unit="cm"> 31950.317824 </y>
<z unit="cm"> -195.250000 </z>
</position>
<channels>
<channel id="353">
<name> K9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="354">
<name> K9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="355">
<name> K9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="356">
<name> K9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="90">
<name> K10 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4284.294868 </x>
<y unit="cm"> 32710.582561 </y>
<z unit="cm"> -203.150000 </z>
</position>
<channels>
<channel id="357">
<name> K10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="358">
<name> K10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="359">
<name> K10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="360">
<name> K10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="91">
<name> K11 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3857.605930 </x>
<y unit="cm"> 34221.488432 </y>
<z unit="cm"> -218.850000 </z>
</position>
<channels>
<channel id="361">
<name> K11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="362">
<name> K11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="363">
<name> K11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="364">
<name> K11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="92">
<name> K12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3642.902579 </x>
<y unit="cm"> 34981.753169 </y>
<z unit="cm"> -226.750000 </z>
</position>
<channels>
<channel id="365">
<name> K12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 131.477829 </x>
<y unit="cm"> -127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="366">
<name> K12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -176.111958 </x>
<y unit="cm"> -49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="367">
<name> K12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="368">
<name> K12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 45.596489 </x>
<y unit="cm"> 177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="93">
<name> K13 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3379.279478 </x>
<y unit="cm"> 35915.242784 </y>
<z unit="cm"> -236.450000 </z>
</position>
<channels>
<channel id="369">
<name> K13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="370">
<name> K13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="371">
<name> K13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="372">
<name> K13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="94">
<name> K14 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3164.576127 </x>
<y unit="cm"> 36675.507521 </y>
<z unit="cm"> -244.350000 </z>
</position>
<channels>
<channel id="373">
<name> K14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="374">
<name> K14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="375">
<name> K14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="376">
<name> K14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="95">
<name> K15 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2949.872776 </x>
<y unit="cm"> 37435.772259 </y>
<z unit="cm"> -252.250000 </z>
</position>
<channels>
<channel id="377">
<name> K15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="378">
<name> K15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="379">
<name> K15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="380">
<name> K15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="96">
<name> K16 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2735.169425 </x>
<y unit="cm"> 38196.036996 </y>
<z unit="cm"> -260.150000 </z>
</position>
<channels>
<channel id="381">
<name> K16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="382">
<name> K16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="383">
<name> K16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="384">
<name> K16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="97">
<name> K17 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2520.466074 </x>
<y unit="cm"> 38956.301734 </y>
<z unit="cm"> -268.050000 </z>
</position>
<channels>
<channel id="385">
<name> K17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="386">
<name> K17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="387">
<name> K17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="388">
<name> K17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="98">
<name> K18 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2305.762723 </x>
<y unit="cm"> 39716.566471 </y>
<z unit="cm"> -275.950000 </z>
</position>
<channels>
<channel id="389">
<name> K18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="390">
<name> K18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="391">
<name> K18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="392">
<name> K18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="99">
<name> K19 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2091.059372 </x>
<y unit="cm"> 40476.831209 </y>
<z unit="cm"> -283.850000 </z>
</position>
<channels>
<channel id="393">
<name> K19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="394">
<name> K19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="395">
<name> K19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="396">
<name> K19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="100">
<name> K20 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1876.356021 </x>
<y unit="cm"> 41237.095946 </y>
<z unit="cm"> -291.750000 </z>
</position>
<channels>
<channel id="397">
<name> K20A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="398">
<name> K20B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="399">
<name> K20C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="400">
<name> K20D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="101">
<name> L4 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4806.908766 </x>
<y unit="cm"> 28343.231452 </y>
<z unit="cm"> -159.700000 </z>
</position>
<channels>
<channel id="401">
<name> L4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="402">
<name> L4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="403">
<name> L4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="404">
<name> L4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="102">
<name> L5 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4592.205415 </x>
<y unit="cm"> 29103.496189 </y>
<z unit="cm"> -167.600000 </z>
</position>
<channels>
<channel id="405">
<name> L5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="406">
<name> L5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="407">
<name> L5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="408">
<name> L5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="103">
<name> L6 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4377.502064 </x>
<y unit="cm"> 29863.760927 </y>
<z unit="cm"> -175.500000 </z>
</position>
<channels>
<channel id="409">
<name> L6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="410">
<name> L6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="411">
<name> L6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="412">
<name> L6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="104">
<name> L7 </name>
<type> 1 </type>
<position>
<x unit="cm"> 4162.798713 </x>
<y unit="cm"> 30624.025664 </y>
<z unit="cm"> -183.400000 </z>
</position>
<channels>
<channel id="413">
<name> L7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="414">
<name> L7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="415">
<name> L7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="416">
<name> L7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="105">
<name> L8 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3948.095362 </x>
<y unit="cm"> 31384.290402 </y>
<z unit="cm"> -191.300000 </z>
</position>
<channels>
<channel id="417">
<name> L8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="418">
<name> L8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="419">
<name> L8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="420">
<name> L8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="106">
<name> L9 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3733.392011 </x>
<y unit="cm"> 32144.555139 </y>
<z unit="cm"> -199.200000 </z>
</position>
<channels>
<channel id="421">
<name> L9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="422">
<name> L9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="423">
<name> L9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="424">
<name> L9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="107">
<name> L10 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3518.688661 </x>
<y unit="cm"> 32904.819877 </y>
<z unit="cm"> -207.100000 </z>
</position>
<channels>
<channel id="425">
<name> L10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="426">
<name> L10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="427">
<name> L10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="428">
<name> L10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="108">
<name> L11 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3091.999723 </x>
<y unit="cm"> 34415.725747 </y>
<z unit="cm"> -222.800000 </z>
</position>
<channels>
<channel id="429">
<name> L11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -131.477829 </x>
<y unit="cm"> 127.049519 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="430">
<name> L11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 176.111958 </x>
<y unit="cm"> 49.735080 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="431">
<name> L11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="432">
<name> L11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -45.596489 </x>
<y unit="cm"> -177.056376 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="109">
<name> L12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2828.376621 </x>
<y unit="cm"> 35349.215362 </y>
<z unit="cm"> -232.500000 </z>
</position>
<channels>
<channel id="433">
<name> L12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="434">
<name> L12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="435">
<name> L12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="436">
<name> L12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="110">
<name> L13 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2613.673270 </x>
<y unit="cm"> 36109.480099 </y>
<z unit="cm"> -240.400000 </z>
</position>
<channels>
<channel id="437">
<name> L13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="438">
<name> L13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="439">
<name> L13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="440">
<name> L13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="111">
<name> L14 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2398.969919 </x>
<y unit="cm"> 36869.744837 </y>
<z unit="cm"> -248.300000 </z>
</position>
<channels>
<channel id="441">
<name> L14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="442">
<name> L14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="443">
<name> L14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="444">
<name> L14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="112">
<name> L15 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2184.266568 </x>
<y unit="cm"> 37630.009574 </y>
<z unit="cm"> -256.200000 </z>
</position>
<channels>
<channel id="445">
<name> L15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="446">
<name> L15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="447">
<name> L15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="448">
<name> L15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="113">
<name> L16 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1969.563217 </x>
<y unit="cm"> 38390.274312 </y>
<z unit="cm"> -264.100000 </z>
</position>
<channels>
<channel id="449">
<name> L16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="450">
<name> L16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="451">
<name> L16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="452">
<name> L16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="114">
<name> L17 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1754.859866 </x>
<y unit="cm"> 39150.539049 </y>
<z unit="cm"> -272.000000 </z>
</position>
<channels>
<channel id="453">
<name> L17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="454">
<name> L17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="455">
<name> L17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="456">
<name> L17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="115">
<name> L18 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1540.156515 </x>
<y unit="cm"> 39910.803787 </y>
<z unit="cm"> -279.900000 </z>
</position>
<channels>
<channel id="457">
<name> L18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="458">
<name> L18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="459">
<name> L18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="460">
<name> L18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="116">
<name> L19 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1325.453164 </x>
<y unit="cm"> 40671.068524 </y>
<z unit="cm"> -287.800000 </z>
</position>
<channels>
<channel id="461">
<name> L19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="462">
<name> L19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="463">
<name> L19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="464">
<name> L19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="117">
<name> M3 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3934.345979 </x>
<y unit="cm"> 27790.276496 </y>
<z unit="cm"> -156.750000 </z>
</position>
<channels>
<channel id="465">
<name> M3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="466">
<name> M3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="467">
<name> M3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="468">
<name> M3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="118">
<name> M4 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3719.642628 </x>
<y unit="cm"> 28550.541233 </y>
<z unit="cm"> -164.650000 </z>
</position>
<channels>
<channel id="469">
<name> M4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="470">
<name> M4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="471">
<name> M4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="472">
<name> M4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="119">
<name> M5 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3504.939277 </x>
<y unit="cm"> 29310.805971 </y>
<z unit="cm"> -172.550000 </z>
</position>
<channels>
<channel id="473">
<name> M5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="474">
<name> M5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="475">
<name> M5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="476">
<name> M5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="120">
<name> M6 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3290.235926 </x>
<y unit="cm"> 30071.070708 </y>
<z unit="cm"> -180.450000 </z>
</position>
<channels>
<channel id="477">
<name> M6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="478">
<name> M6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="479">
<name> M6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="480">
<name> M6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="121">
<name> M7 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3075.532576 </x>
<y unit="cm"> 30831.335446 </y>
<z unit="cm"> -188.350000 </z>
</position>
<channels>
<channel id="481">
<name> M7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="482">
<name> M7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="483">
<name> M7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="484">
<name> M7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="122">
<name> M12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1857.974332 </x>
<y unit="cm"> 35142.710160 </y>
<z unit="cm"> -233.150000 </z>
</position>
<channels>
<channel id="485">
<name> M12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="486">
<name> M12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="487">
<name> M12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="488">
<name> M12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="123">
<name> M13 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1643.270981 </x>
<y unit="cm"> 35902.974897 </y>
<z unit="cm"> -241.050000 </z>
</position>
<channels>
<channel id="489">
<name> M13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="490">
<name> M13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="491">
<name> M13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="492">
<name> M13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="124">
<name> M14 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1428.567630 </x>
<y unit="cm"> 36663.239635 </y>
<z unit="cm"> -248.950000 </z>
</position>
<channels>
<channel id="493">
<name> M14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="494">
<name> M14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="495">
<name> M14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="496">
<name> M14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="125">
<name> M15 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1213.864280 </x>
<y unit="cm"> 37423.504372 </y>
<z unit="cm"> -256.850000 </z>
</position>
<channels>
<channel id="497">
<name> M15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="498">
<name> M15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="499">
<name> M15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="500">
<name> M15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="126">
<name> M16 </name>
<type> 1 </type>
<position>
<x unit="cm"> 999.160929 </x>
<y unit="cm"> 38183.769110 </y>
<z unit="cm"> -264.750000 </z>
</position>
<channels>
<channel id="501">
<name> M16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="502">
<name> M16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="503">
<name> M16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="504">
<name> M16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="127">
<name> M17 </name>
<type> 1 </type>
<position>
<x unit="cm"> 784.457578 </x>
<y unit="cm"> 38944.033847 </y>
<z unit="cm"> -272.650000 </z>
</position>
<channels>
<channel id="505">
<name> M17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="506">
<name> M17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="507">
<name> M17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="508">
<name> M17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="128">
<name> M18 </name>
<type> 1 </type>
<position>
<x unit="cm"> 569.754227 </x>
<y unit="cm"> 39704.298585 </y>
<z unit="cm"> -280.550000 </z>
</position>
<channels>
<channel id="509">
<name> M18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="510">
<name> M18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="511">
<name> M18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="512">
<name> M18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="129">
<name> M19 </name>
<type> 1 </type>
<position>
<x unit="cm"> 355.050876 </x>
<y unit="cm"> 40464.563322 </y>
<z unit="cm"> -288.450000 </z>
</position>
<channels>
<channel id="513">
<name> M19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="514">
<name> M19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="515">
<name> M19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="516">
<name> M19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="130">
<name> M20 </name>
<type> 1 </type>
<position>
<x unit="cm"> 140.347525 </x>
<y unit="cm"> 41224.828060 </y>
<z unit="cm"> -296.350000 </z>
</position>
<channels>
<channel id="517">
<name> M20A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="518">
<name> M20B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="519">
<name> M20C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="520">
<name> M20D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="131">
<name> N3 </name>
<type> 1 </type>
<position>
<x unit="cm"> 3168.739772 </x>
<y unit="cm"> 27984.513811 </y>
<z unit="cm"> -160.700000 </z>
</position>
<channels>
<channel id="521">
<name> N3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="522">
<name> N3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="523">
<name> N3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="524">
<name> N3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="132">
<name> N4 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2954.036421 </x>
<y unit="cm"> 28744.778549 </y>
<z unit="cm"> -168.600000 </z>
</position>
<channels>
<channel id="525">
<name> N4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="526">
<name> N4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="527">
<name> N4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="528">
<name> N4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="133">
<name> N5 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2739.333070 </x>
<y unit="cm"> 29505.043286 </y>
<z unit="cm"> -176.500000 </z>
</position>
<channels>
<channel id="529">
<name> N5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="530">
<name> N5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="531">
<name> N5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="532">
<name> N5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="134">
<name> N6 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2524.629719 </x>
<y unit="cm"> 30265.308024 </y>
<z unit="cm"> -184.400000 </z>
</position>
<channels>
<channel id="533">
<name> N6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="534">
<name> N6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="535">
<name> N6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="536">
<name> N6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="135">
<name> N7 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2309.926368 </x>
<y unit="cm"> 31025.572761 </y>
<z unit="cm"> -192.300000 </z>
</position>
<channels>
<channel id="537">
<name> N7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="538">
<name> N7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="539">
<name> N7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="540">
<name> N7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="136">
<name> N11 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1307.071476 </x>
<y unit="cm"> 34576.682738 </y>
<z unit="cm"> -229.200000 </z>
</position>
<channels>
<channel id="541">
<name> N11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="542">
<name> N11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="543">
<name> N11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="544">
<name> N11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="137">
<name> N12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1092.368125 </x>
<y unit="cm"> 35336.947475 </y>
<z unit="cm"> -237.100000 </z>
</position>
<channels>
<channel id="545">
<name> N12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="546">
<name> N12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="547">
<name> N12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="548">
<name> N12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="138">
<name> N13 </name>
<type> 1 </type>
<position>
<x unit="cm"> 877.664774 </x>
<y unit="cm"> 36097.212213 </y>
<z unit="cm"> -245.000000 </z>
</position>
<channels>
<channel id="549">
<name> N13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="550">
<name> N13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="551">
<name> N13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="552">
<name> N13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="139">
<name> N14 </name>
<type> 1 </type>
<position>
<x unit="cm"> 662.961423 </x>
<y unit="cm"> 36857.476950 </y>
<z unit="cm"> -252.900000 </z>
</position>
<channels>
<channel id="553">
<name> N14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="554">
<name> N14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="555">
<name> N14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="556">
<name> N14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="140">
<name> N15 </name>
<type> 1 </type>
<position>
<x unit="cm"> 448.258072 </x>
<y unit="cm"> 37617.741688 </y>
<z unit="cm"> -260.800000 </z>
</position>
<channels>
<channel id="557">
<name> N15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="558">
<name> N15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="559">
<name> N15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="560">
<name> N15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="141">
<name> N16 </name>
<type> 1 </type>
<position>
<x unit="cm"> 233.554721 </x>
<y unit="cm"> 38378.006425 </y>
<z unit="cm"> -268.700000 </z>
</position>
<channels>
<channel id="561">
<name> N16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="562">
<name> N16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="563">
<name> N16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="564">
<name> N16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="142">
<name> N17 </name>
<type> 1 </type>
<position>
<x unit="cm"> 18.851370 </x>
<y unit="cm"> 39138.271163 </y>
<z unit="cm"> -276.600000 </z>
</position>
<channels>
<channel id="565">
<name> N17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="566">
<name> N17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="567">
<name> N17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="568">
<name> N17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="143">
<name> N18 </name>
<type> 1 </type>
<position>
<x unit="cm"> -195.851981 </x>
<y unit="cm"> 39898.535900 </y>
<z unit="cm"> -284.500000 </z>
</position>
<channels>
<channel id="569">
<name> N18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="570">
<name> N18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="571">
<name> N18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="572">
<name> N18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="144">
<name> N19 </name>
<type> 1 </type>
<position>
<x unit="cm"> -410.555332 </x>
<y unit="cm"> 40658.800638 </y>
<z unit="cm"> -292.400000 </z>
</position>
<channels>
<channel id="573">
<name> N19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="574">
<name> N19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="575">
<name> N19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="576">
<name> N19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="145">
<name> O3 </name>
<type> 1 </type>
<position>
<x unit="cm"> 2135.828913 </x>
<y unit="cm"> 27999.351508 </y>
<z unit="cm"> -163.650000 </z>
</position>
<channels>
<channel id="577">
<name> O3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="578">
<name> O3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="579">
<name> O3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="580">
<name> O3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="146">
<name> O4 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1921.125562 </x>
<y unit="cm"> 28759.616245 </y>
<z unit="cm"> -171.550000 </z>
</position>
<channels>
<channel id="581">
<name> O4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="582">
<name> O4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="583">
<name> O4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="584">
<name> O4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="147">
<name> O5 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1706.422211 </x>
<y unit="cm"> 29519.880983 </y>
<z unit="cm"> -179.450000 </z>
</position>
<channels>
<channel id="585">
<name> O5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="586">
<name> O5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="587">
<name> O5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="588">
<name> O5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="148">
<name> O6 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1491.718860 </x>
<y unit="cm"> 30280.145720 </y>
<z unit="cm"> -187.350000 </z>
</position>
<channels>
<channel id="589">
<name> O6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="590">
<name> O6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="591">
<name> O6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="592">
<name> O6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="149">
<name> O7 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1277.015509 </x>
<y unit="cm"> 31040.410458 </y>
<z unit="cm"> -195.250000 </z>
</position>
<channels>
<channel id="593">
<name> O7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="594">
<name> O7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="595">
<name> O7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="596">
<name> O7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="150">
<name> O8 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1062.312158 </x>
<y unit="cm"> 31800.675195 </y>
<z unit="cm"> -203.150000 </z>
</position>
<channels>
<channel id="597">
<name> O8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="598">
<name> O8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="599">
<name> O8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="600">
<name> O8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="151">
<name> O9 </name>
<type> 1 </type>
<position>
<x unit="cm"> 798.689056 </x>
<y unit="cm"> 32734.164810 </y>
<z unit="cm"> -212.850000 </z>
</position>
<channels>
<channel id="601">
<name> O9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="602">
<name> O9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="603">
<name> O9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="604">
<name> O9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="152">
<name> O10 </name>
<type> 1 </type>
<position>
<x unit="cm"> 583.985705 </x>
<y unit="cm"> 33494.429547 </y>
<z unit="cm"> -220.750000 </z>
</position>
<channels>
<channel id="605">
<name> O10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="606">
<name> O10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="607">
<name> O10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="608">
<name> O10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="153">
<name> O11 </name>
<type> 1 </type>
<position>
<x unit="cm"> 225.240866 </x>
<y unit="cm"> 34764.745311 </y>
<z unit="cm"> -233.950000 </z>
</position>
<channels>
<channel id="609">
<name> O11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="610">
<name> O11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="611">
<name> O11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="612">
<name> O11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="154">
<name> O12 </name>
<type> 1 </type>
<position>
<x unit="cm"> 10.537515 </x>
<y unit="cm"> 35525.010049 </y>
<z unit="cm"> -241.850000 </z>
</position>
<channels>
<channel id="613">
<name> O12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="614">
<name> O12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="615">
<name> O12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="616">
<name> O12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="155">
<name> O13 </name>
<type> 1 </type>
<position>
<x unit="cm"> -204.165836 </x>
<y unit="cm"> 36285.274786 </y>
<z unit="cm"> -249.750000 </z>
</position>
<channels>
<channel id="617">
<name> O13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="618">
<name> O13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="619">
<name> O13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="620">
<name> O13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="156">
<name> O14 </name>
<type> 1 </type>
<position>
<x unit="cm"> -418.869187 </x>
<y unit="cm"> 37045.539524 </y>
<z unit="cm"> -257.650000 </z>
</position>
<channels>
<channel id="621">
<name> O14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="622">
<name> O14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="623">
<name> O14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="624">
<name> O14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="157">
<name> O15 </name>
<type> 1 </type>
<position>
<x unit="cm"> -633.572538 </x>
<y unit="cm"> 37805.804261 </y>
<z unit="cm"> -265.550000 </z>
</position>
<channels>
<channel id="625">
<name> O15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="626">
<name> O15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="627">
<name> O15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="628">
<name> O15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="158">
<name> O16 </name>
<type> 1 </type>
<position>
<x unit="cm"> -848.275889 </x>
<y unit="cm"> 38566.068999 </y>
<z unit="cm"> -273.450000 </z>
</position>
<channels>
<channel id="629">
<name> O16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="630">
<name> O16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="631">
<name> O16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="632">
<name> O16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="159">
<name> O17 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1062.979240 </x>
<y unit="cm"> 39326.333736 </y>
<z unit="cm"> -281.350000 </z>
</position>
<channels>
<channel id="633">
<name> O17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="634">
<name> O17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="635">
<name> O17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="636">
<name> O17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="160">
<name> O18 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1277.682591 </x>
<y unit="cm"> 40086.598474 </y>
<z unit="cm"> -289.250000 </z>
</position>
<channels>
<channel id="637">
<name> O18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="638">
<name> O18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="639">
<name> O18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="640">
<name> O18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="161">
<name> O19 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1492.385942 </x>
<y unit="cm"> 40846.863211 </y>
<z unit="cm"> -297.150000 </z>
</position>
<channels>
<channel id="641">
<name> O19A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="642">
<name> O19B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="643">
<name> O19C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="644">
<name> O19D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="162">
<name> P2 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1584.926056 </x>
<y unit="cm"> 27433.324086 </y>
<z unit="cm"> -159.700000 </z>
</position>
<channels>
<channel id="645">
<name> P2A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="646">
<name> P2B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="647">
<name> P2C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="648">
<name> P2D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="163">
<name> P3 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1370.222705 </x>
<y unit="cm"> 28193.588823 </y>
<z unit="cm"> -167.600000 </z>
</position>
<channels>
<channel id="649">
<name> P3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="650">
<name> P3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="651">
<name> P3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="652">
<name> P3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="164">
<name> P4 </name>
<type> 1 </type>
<position>
<x unit="cm"> 1155.519354 </x>
<y unit="cm"> 28953.853561 </y>
<z unit="cm"> -175.500000 </z>
</position>
<channels>
<channel id="653">
<name> P4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="654">
<name> P4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="655">
<name> P4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="656">
<name> P4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="165">
<name> P5 </name>
<type> 1 </type>
<position>
<x unit="cm"> 940.816003 </x>
<y unit="cm"> 29714.118298 </y>
<z unit="cm"> -183.400000 </z>
</position>
<channels>
<channel id="657">
<name> P5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="658">
<name> P5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="659">
<name> P5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="660">
<name> P5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="166">
<name> P6 </name>
<type> 1 </type>
<position>
<x unit="cm"> 726.112652 </x>
<y unit="cm"> 30474.383036 </y>
<z unit="cm"> -191.300000 </z>
</position>
<channels>
<channel id="661">
<name> P6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="662">
<name> P6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="663">
<name> P6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="664">
<name> P6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="167">
<name> P7 </name>
<type> 1 </type>
<position>
<x unit="cm"> 511.409301 </x>
<y unit="cm"> 31234.647773 </y>
<z unit="cm"> -199.200000 </z>
</position>
<channels>
<channel id="665">
<name> P7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="666">
<name> P7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="667">
<name> P7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="668">
<name> P7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="168">
<name> P8 </name>
<type> 1 </type>
<position>
<x unit="cm"> 247.786199 </x>
<y unit="cm"> 32168.137388 </y>
<z unit="cm"> -208.900000 </z>
</position>
<channels>
<channel id="669">
<name> P8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="670">
<name> P8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="671">
<name> P8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="672">
<name> P8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="169">
<name> P9 </name>
<type> 1 </type>
<position>
<x unit="cm"> 33.082848 </x>
<y unit="cm"> 32928.402125 </y>
<z unit="cm"> -216.800000 </z>
</position>
<channels>
<channel id="673">
<name> P9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="674">
<name> P9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="675">
<name> P9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="676">
<name> P9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="170">
<name> P10 </name>
<type> 1 </type>
<position>
<x unit="cm"> -181.620502 </x>
<y unit="cm"> 33688.666863 </y>
<z unit="cm"> -224.700000 </z>
</position>
<channels>
<channel id="677">
<name> P10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="678">
<name> P10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="679">
<name> P10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="680">
<name> P10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="171">
<name> P11 </name>
<type> 1 </type>
<position>
<x unit="cm"> -540.365342 </x>
<y unit="cm"> 34958.982627 </y>
<z unit="cm"> -237.900000 </z>
</position>
<channels>
<channel id="681">
<name> P11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="682">
<name> P11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="683">
<name> P11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="684">
<name> P11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="172">
<name> P12 </name>
<type> 1 </type>
<position>
<x unit="cm"> -755.068693 </x>
<y unit="cm"> 35719.247364 </y>
<z unit="cm"> -245.800000 </z>
</position>
<channels>
<channel id="685">
<name> P12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="686">
<name> P12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="687">
<name> P12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="688">
<name> P12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="173">
<name> P13 </name>
<type> 1 </type>
<position>
<x unit="cm"> -969.772044 </x>
<y unit="cm"> 36479.512102 </y>
<z unit="cm"> -253.700000 </z>
</position>
<channels>
<channel id="689">
<name> P13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="690">
<name> P13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="691">
<name> P13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="692">
<name> P13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="174">
<name> P14 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1184.475395 </x>
<y unit="cm"> 37239.776839 </y>
<z unit="cm"> -261.600000 </z>
</position>
<channels>
<channel id="693">
<name> P14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="694">
<name> P14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="695">
<name> P14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="696">
<name> P14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="175">
<name> P15 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1399.178746 </x>
<y unit="cm"> 38000.041577 </y>
<z unit="cm"> -269.500000 </z>
</position>
<channels>
<channel id="697">
<name> P15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="698">
<name> P15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="699">
<name> P15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="700">
<name> P15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="176">
<name> P16 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1613.882097 </x>
<y unit="cm"> 38760.306314 </y>
<z unit="cm"> -277.400000 </z>
</position>
<channels>
<channel id="701">
<name> P16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="702">
<name> P16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="703">
<name> P16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="704">
<name> P16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="177">
<name> P17 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1828.585448 </x>
<y unit="cm"> 39520.571052 </y>
<z unit="cm"> -285.300000 </z>
</position>
<channels>
<channel id="705">
<name> P17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="706">
<name> P17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="707">
<name> P17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="708">
<name> P17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="178">
<name> P18 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2043.288799 </x>
<y unit="cm"> 40280.835789 </y>
<z unit="cm"> -293.200000 </z>
</position>
<channels>
<channel id="709">
<name> P18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="710">
<name> P18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="711">
<name> P18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="712">
<name> P18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="179">
<name> Q2 </name>
<type> 1 </type>
<position>
<x unit="cm"> 524.837557 </x>
<y unit="cm"> 27544.397825 </y>
<z unit="cm"> -163.650000 </z>
</position>
<channels>
<channel id="713">
<name> Q2A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="714">
<name> Q2B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="715">
<name> Q2C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="716">
<name> Q2D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="180">
<name> Q3 </name>
<type> 1 </type>
<position>
<x unit="cm"> 310.134206 </x>
<y unit="cm"> 28304.662562 </y>
<z unit="cm"> -171.550000 </z>
</position>
<channels>
<channel id="717">
<name> Q3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="718">
<name> Q3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="719">
<name> Q3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="720">
<name> Q3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="181">
<name> Q4 </name>
<type> 1 </type>
<position>
<x unit="cm"> 95.430855 </x>
<y unit="cm"> 29064.927300 </y>
<z unit="cm"> -179.450000 </z>
</position>
<channels>
<channel id="721">
<name> Q4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="722">
<name> Q4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="723">
<name> Q4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="724">
<name> Q4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="182">
<name> Q5 </name>
<type> 1 </type>
<position>
<x unit="cm"> -119.272495 </x>
<y unit="cm"> 29825.192037 </y>
<z unit="cm"> -187.350000 </z>
</position>
<channels>
<channel id="725">
<name> Q5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="726">
<name> Q5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="727">
<name> Q5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="728">
<name> Q5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="183">
<name> Q6 </name>
<type> 1 </type>
<position>
<x unit="cm"> -333.975846 </x>
<y unit="cm"> 30585.456775 </y>
<z unit="cm"> -195.250000 </z>
</position>
<channels>
<channel id="729">
<name> Q6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="730">
<name> Q6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="731">
<name> Q6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="732">
<name> Q6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="184">
<name> Q7 </name>
<type> 1 </type>
<position>
<x unit="cm"> -597.598948 </x>
<y unit="cm"> 31518.946389 </y>
<z unit="cm"> -204.950000 </z>
</position>
<channels>
<channel id="733">
<name> Q7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="734">
<name> Q7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="735">
<name> Q7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="736">
<name> Q7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="185">
<name> Q8 </name>
<type> 1 </type>
<position>
<x unit="cm"> -812.302299 </x>
<y unit="cm"> 32279.211127 </y>
<z unit="cm"> -212.850000 </z>
</position>
<channels>
<channel id="737">
<name> Q8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="738">
<name> Q8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="739">
<name> Q8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="740">
<name> Q8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="186">
<name> Q9 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1027.005650 </x>
<y unit="cm"> 33039.475864 </y>
<z unit="cm"> -220.750000 </z>
</position>
<channels>
<channel id="741">
<name> Q9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="742">
<name> Q9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="743">
<name> Q9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="744">
<name> Q9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="187">
<name> Q10 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1241.709001 </x>
<y unit="cm"> 33799.740602 </y>
<z unit="cm"> -228.650000 </z>
</position>
<channels>
<channel id="745">
<name> Q10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="746">
<name> Q10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="747">
<name> Q10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="748">
<name> Q10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="188">
<name> Q11 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1600.453840 </x>
<y unit="cm"> 35070.056366 </y>
<z unit="cm"> -241.850000 </z>
</position>
<channels>
<channel id="749">
<name> Q11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="750">
<name> Q11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="751">
<name> Q11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="752">
<name> Q11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="189">
<name> Q12 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1815.157191 </x>
<y unit="cm"> 35830.321103 </y>
<z unit="cm"> -249.750000 </z>
</position>
<channels>
<channel id="753">
<name> Q12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="754">
<name> Q12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="755">
<name> Q12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="756">
<name> Q12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="190">
<name> Q13 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2029.860542 </x>
<y unit="cm"> 36590.585841 </y>
<z unit="cm"> -257.650000 </z>
</position>
<channels>
<channel id="757">
<name> Q13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="758">
<name> Q13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="759">
<name> Q13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="760">
<name> Q13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="191">
<name> Q14 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2244.563893 </x>
<y unit="cm"> 37350.850578 </y>
<z unit="cm"> -265.550000 </z>
</position>
<channels>
<channel id="761">
<name> Q14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="762">
<name> Q14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="763">
<name> Q14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="764">
<name> Q14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="192">
<name> Q15 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2459.267244 </x>
<y unit="cm"> 38111.115316 </y>
<z unit="cm"> -273.450000 </z>
</position>
<channels>
<channel id="765">
<name> Q15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="766">
<name> Q15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="767">
<name> Q15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="768">
<name> Q15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="193">
<name> Q16 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2673.970595 </x>
<y unit="cm"> 38871.380053 </y>
<z unit="cm"> -281.350000 </z>
</position>
<channels>
<channel id="769">
<name> Q16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="770">
<name> Q16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="771">
<name> Q16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="772">
<name> Q16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="194">
<name> Q17 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2888.673946 </x>
<y unit="cm"> 39631.644791 </y>
<z unit="cm"> -289.250000 </z>
</position>
<channels>
<channel id="773">
<name> Q17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="774">
<name> Q17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="775">
<name> Q17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="776">
<name> Q17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="195">
<name> Q18 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3103.377297 </x>
<y unit="cm"> 40391.909528 </y>
<z unit="cm"> -297.150000 </z>
</position>
<channels>
<channel id="777">
<name> Q18A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="778">
<name> Q18B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="779">
<name> Q18C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="780">
<name> Q18D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="196">
<name> R2 </name>
<type> 1 </type>
<position>
<x unit="cm"> -240.768650 </x>
<y unit="cm"> 27738.635140 </y>
<z unit="cm"> -167.600000 </z>
</position>
<channels>
<channel id="781">
<name> R2A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="782">
<name> R2B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="783">
<name> R2C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="784">
<name> R2D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="197">
<name> R3 </name>
<type> 1 </type>
<position>
<x unit="cm"> -455.472001 </x>
<y unit="cm"> 28498.899878 </y>
<z unit="cm"> -175.500000 </z>
</position>
<channels>
<channel id="785">
<name> R3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="786">
<name> R3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="787">
<name> R3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="788">
<name> R3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="198">
<name> R4 </name>
<type> 1 </type>
<position>
<x unit="cm"> -670.175352 </x>
<y unit="cm"> 29259.164615 </y>
<z unit="cm"> -183.400000 </z>
</position>
<channels>
<channel id="789">
<name> R4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="790">
<name> R4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="791">
<name> R4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="792">
<name> R4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="199">
<name> R5 </name>
<type> 1 </type>
<position>
<x unit="cm"> -884.878703 </x>
<y unit="cm"> 30019.429353 </y>
<z unit="cm"> -191.300000 </z>
</position>
<channels>
<channel id="793">
<name> R5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="794">
<name> R5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="795">
<name> R5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="796">
<name> R5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="200">
<name> R6 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1148.501805 </x>
<y unit="cm"> 30952.918967 </y>
<z unit="cm"> -201.000000 </z>
</position>
<channels>
<channel id="797">
<name> R6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="798">
<name> R6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="799">
<name> R6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="800">
<name> R6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="201">
<name> R7 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1363.205156 </x>
<y unit="cm"> 31713.183705 </y>
<z unit="cm"> -208.900000 </z>
</position>
<channels>
<channel id="801">
<name> R7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="802">
<name> R7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="803">
<name> R7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="804">
<name> R7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="202">
<name> R8 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1577.908507 </x>
<y unit="cm"> 32473.448442 </y>
<z unit="cm"> -216.800000 </z>
</position>
<channels>
<channel id="805">
<name> R8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="806">
<name> R8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="807">
<name> R8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="808">
<name> R8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="203">
<name> R9 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1792.611858 </x>
<y unit="cm"> 33233.713180 </y>
<z unit="cm"> -224.700000 </z>
</position>
<channels>
<channel id="809">
<name> R9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="810">
<name> R9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="811">
<name> R9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="812">
<name> R9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="204">
<name> R10 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2007.315209 </x>
<y unit="cm"> 33993.977917 </y>
<z unit="cm"> -232.600000 </z>
</position>
<channels>
<channel id="813">
<name> R10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="814">
<name> R10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="815">
<name> R10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="816">
<name> R10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="205">
<name> R11 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2366.060048 </x>
<y unit="cm"> 35264.293681 </y>
<z unit="cm"> -245.800000 </z>
</position>
<channels>
<channel id="817">
<name> R11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="818">
<name> R11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="819">
<name> R11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="820">
<name> R11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="206">
<name> R12 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2580.763399 </x>
<y unit="cm"> 36024.558419 </y>
<z unit="cm"> -253.700000 </z>
</position>
<channels>
<channel id="821">
<name> R12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="822">
<name> R12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="823">
<name> R12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="824">
<name> R12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="207">
<name> R13 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2795.466750 </x>
<y unit="cm"> 36784.823156 </y>
<z unit="cm"> -261.600000 </z>
</position>
<channels>
<channel id="825">
<name> R13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="826">
<name> R13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="827">
<name> R13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="828">
<name> R13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="208">
<name> R14 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3010.170101 </x>
<y unit="cm"> 37545.087894 </y>
<z unit="cm"> -269.500000 </z>
</position>
<channels>
<channel id="829">
<name> R14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="830">
<name> R14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="831">
<name> R14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="832">
<name> R14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="209">
<name> R15 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3224.873452 </x>
<y unit="cm"> 38305.352631 </y>
<z unit="cm"> -277.400000 </z>
</position>
<channels>
<channel id="833">
<name> R15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="834">
<name> R15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="835">
<name> R15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="836">
<name> R15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="210">
<name> R16 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3439.576803 </x>
<y unit="cm"> 39065.617369 </y>
<z unit="cm"> -285.300000 </z>
</position>
<channels>
<channel id="837">
<name> R16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="838">
<name> R16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="839">
<name> R16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="840">
<name> R16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="211">
<name> R17 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3654.280154 </x>
<y unit="cm"> 39825.882106 </y>
<z unit="cm"> -293.200000 </z>
</position>
<channels>
<channel id="841">
<name> R17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="842">
<name> R17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="843">
<name> R17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="844">
<name> R17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="212">
<name> S2 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1300.857149 </x>
<y unit="cm"> 27849.708880 </y>
<z unit="cm"> -171.550000 </z>
</position>
<channels>
<channel id="845">
<name> S2A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="846">
<name> S2B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="847">
<name> S2C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="848">
<name> S2D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="213">
<name> S3 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1515.560500 </x>
<y unit="cm"> 28609.973617 </y>
<z unit="cm"> -179.450000 </z>
</position>
<channels>
<channel id="849">
<name> S3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="850">
<name> S3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="851">
<name> S3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="852">
<name> S3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="214">
<name> S4 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1730.263851 </x>
<y unit="cm"> 29370.238355 </y>
<z unit="cm"> -187.350000 </z>
</position>
<channels>
<channel id="853">
<name> S4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="854">
<name> S4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="855">
<name> S4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="856">
<name> S4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="215">
<name> S5 </name>
<type> 1 </type>
<position>
<x unit="cm"> -1993.886952 </x>
<y unit="cm"> 30303.727969 </y>
<z unit="cm"> -197.050000 </z>
</position>
<channels>
<channel id="857">
<name> S5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="858">
<name> S5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="859">
<name> S5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="860">
<name> S5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="216">
<name> S6 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2208.590303 </x>
<y unit="cm"> 31063.992706 </y>
<z unit="cm"> -204.950000 </z>
</position>
<channels>
<channel id="861">
<name> S6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="862">
<name> S6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="863">
<name> S6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="864">
<name> S6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="217">
<name> S7 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2423.293654 </x>
<y unit="cm"> 31824.257444 </y>
<z unit="cm"> -212.850000 </z>
</position>
<channels>
<channel id="865">
<name> S7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="866">
<name> S7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="867">
<name> S7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="868">
<name> S7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="218">
<name> S8 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2637.997005 </x>
<y unit="cm"> 32584.522182 </y>
<z unit="cm"> -220.750000 </z>
</position>
<channels>
<channel id="869">
<name> S8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="870">
<name> S8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="871">
<name> S8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="872">
<name> S8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="219">
<name> S9 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2852.700356 </x>
<y unit="cm"> 33344.786919 </y>
<z unit="cm"> -228.650000 </z>
</position>
<channels>
<channel id="873">
<name> S9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="874">
<name> S9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="875">
<name> S9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="876">
<name> S9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="220">
<name> S10 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3067.403707 </x>
<y unit="cm"> 34105.051657 </y>
<z unit="cm"> -236.550000 </z>
</position>
<channels>
<channel id="877">
<name> S10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="878">
<name> S10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="879">
<name> S10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="880">
<name> S10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="221">
<name> S11 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3426.148547 </x>
<y unit="cm"> 35375.367420 </y>
<z unit="cm"> -249.750000 </z>
</position>
<channels>
<channel id="881">
<name> S11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="882">
<name> S11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="883">
<name> S11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="884">
<name> S11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="222">
<name> S12 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3640.851897 </x>
<y unit="cm"> 36135.632158 </y>
<z unit="cm"> -257.650000 </z>
</position>
<channels>
<channel id="885">
<name> S12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="886">
<name> S12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="887">
<name> S12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="888">
<name> S12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="223">
<name> S13 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3855.555248 </x>
<y unit="cm"> 36895.896896 </y>
<z unit="cm"> -265.550000 </z>
</position>
<channels>
<channel id="889">
<name> S13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="890">
<name> S13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="891">
<name> S13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="892">
<name> S13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="224">
<name> S14 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4070.258599 </x>
<y unit="cm"> 37656.161633 </y>
<z unit="cm"> -273.450000 </z>
</position>
<channels>
<channel id="893">
<name> S14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="894">
<name> S14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="895">
<name> S14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="896">
<name> S14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="225">
<name> S15 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4284.961950 </x>
<y unit="cm"> 38416.426371 </y>
<z unit="cm"> -281.350000 </z>
</position>
<channels>
<channel id="897">
<name> S15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="898">
<name> S15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="899">
<name> S15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="900">
<name> S15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="226">
<name> S16 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4499.665301 </x>
<y unit="cm"> 39176.691108 </y>
<z unit="cm"> -289.250000 </z>
</position>
<channels>
<channel id="901">
<name> S16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="902">
<name> S16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="903">
<name> S16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="904">
<name> S16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="227">
<name> S17 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4714.368652 </x>
<y unit="cm"> 39936.955846 </y>
<z unit="cm"> -297.150000 </z>
</position>
<channels>
<channel id="905">
<name> S17A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="906">
<name> S17B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="907">
<name> S17C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="908">
<name> S17D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="228">
<name> T2 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2066.463356 </x>
<y unit="cm"> 28043.946195 </y>
<z unit="cm"> -175.500000 </z>
</position>
<channels>
<channel id="909">
<name> T2A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="910">
<name> T2B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="911">
<name> T2C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="912">
<name> T2D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="229">
<name> T3 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2281.166707 </x>
<y unit="cm"> 28804.210933 </y>
<z unit="cm"> -183.400000 </z>
</position>
<channels>
<channel id="913">
<name> T3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="914">
<name> T3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="915">
<name> T3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="916">
<name> T3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="230">
<name> T4 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2544.789809 </x>
<y unit="cm"> 29737.700547 </y>
<z unit="cm"> -193.100000 </z>
</position>
<channels>
<channel id="917">
<name> T4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="918">
<name> T4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="919">
<name> T4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="920">
<name> T4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="231">
<name> T5 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2759.493160 </x>
<y unit="cm"> 30497.965285 </y>
<z unit="cm"> -201.000000 </z>
</position>
<channels>
<channel id="921">
<name> T5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="922">
<name> T5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="923">
<name> T5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="924">
<name> T5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="232">
<name> T6 </name>
<type> 1 </type>
<position>
<x unit="cm"> -2974.196511 </x>
<y unit="cm"> 31258.230022 </y>
<z unit="cm"> -208.900000 </z>
</position>
<channels>
<channel id="925">
<name> T6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="926">
<name> T6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="927">
<name> T6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="928">
<name> T6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="233">
<name> T7 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3188.899862 </x>
<y unit="cm"> 32018.494760 </y>
<z unit="cm"> -216.800000 </z>
</position>
<channels>
<channel id="929">
<name> T7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="930">
<name> T7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="931">
<name> T7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="932">
<name> T7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="234">
<name> T8 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3403.603213 </x>
<y unit="cm"> 32778.759497 </y>
<z unit="cm"> -224.700000 </z>
</position>
<channels>
<channel id="933">
<name> T8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="934">
<name> T8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="935">
<name> T8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="936">
<name> T8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="235">
<name> T9 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3618.306564 </x>
<y unit="cm"> 33539.024235 </y>
<z unit="cm"> -232.600000 </z>
</position>
<channels>
<channel id="937">
<name> T9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="938">
<name> T9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="939">
<name> T9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="940">
<name> T9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="236">
<name> T10 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3833.009915 </x>
<y unit="cm"> 34299.288972 </y>
<z unit="cm"> -240.500000 </z>
</position>
<channels>
<channel id="941">
<name> T10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="942">
<name> T10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="943">
<name> T10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="944">
<name> T10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="237">
<name> T11 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4191.754754 </x>
<y unit="cm"> 35569.604736 </y>
<z unit="cm"> -253.700000 </z>
</position>
<channels>
<channel id="945">
<name> T11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="946">
<name> T11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="947">
<name> T11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="948">
<name> T11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="238">
<name> T12 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4406.458105 </x>
<y unit="cm"> 36329.869474 </y>
<z unit="cm"> -261.600000 </z>
</position>
<channels>
<channel id="949">
<name> T12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="950">
<name> T12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="951">
<name> T12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="952">
<name> T12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="239">
<name> T13 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4621.161456 </x>
<y unit="cm"> 37090.134211 </y>
<z unit="cm"> -269.500000 </z>
</position>
<channels>
<channel id="953">
<name> T13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="954">
<name> T13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="955">
<name> T13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="956">
<name> T13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="240">
<name> T14 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4835.864807 </x>
<y unit="cm"> 37850.398949 </y>
<z unit="cm"> -277.400000 </z>
</position>
<channels>
<channel id="957">
<name> T14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="958">
<name> T14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="959">
<name> T14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="960">
<name> T14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="241">
<name> T15 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5050.568158 </x>
<y unit="cm"> 38610.663686 </y>
<z unit="cm"> -285.300000 </z>
</position>
<channels>
<channel id="961">
<name> T15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="962">
<name> T15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="963">
<name> T15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="964">
<name> T15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="242">
<name> T16 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5265.271509 </x>
<y unit="cm"> 39370.928424 </y>
<z unit="cm"> -293.200000 </z>
</position>
<channels>
<channel id="965">
<name> T16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="966">
<name> T16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="967">
<name> T16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="968">
<name> T16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="243">
<name> U2 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3126.551855 </x>
<y unit="cm"> 28155.019934 </y>
<z unit="cm"> -179.450000 </z>
</position>
<channels>
<channel id="969">
<name> U2A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="970">
<name> U2B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="971">
<name> U2C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="972">
<name> U2D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="244">
<name> U3 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3390.174957 </x>
<y unit="cm"> 29088.509549 </y>
<z unit="cm"> -189.150000 </z>
</position>
<channels>
<channel id="973">
<name> U3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="974">
<name> U3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="975">
<name> U3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="976">
<name> U3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="245">
<name> U4 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3604.878308 </x>
<y unit="cm"> 29848.774286 </y>
<z unit="cm"> -197.050000 </z>
</position>
<channels>
<channel id="977">
<name> U4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="978">
<name> U4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="979">
<name> U4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="980">
<name> U4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="246">
<name> U5 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3819.581658 </x>
<y unit="cm"> 30609.039024 </y>
<z unit="cm"> -204.950000 </z>
</position>
<channels>
<channel id="981">
<name> U5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="982">
<name> U5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="983">
<name> U5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="984">
<name> U5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="247">
<name> U6 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4034.285009 </x>
<y unit="cm"> 31369.303761 </y>
<z unit="cm"> -212.850000 </z>
</position>
<channels>
<channel id="985">
<name> U6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="986">
<name> U6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="987">
<name> U6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="988">
<name> U6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="248">
<name> U7 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4248.988360 </x>
<y unit="cm"> 32129.568499 </y>
<z unit="cm"> -220.750000 </z>
</position>
<channels>
<channel id="989">
<name> U7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="990">
<name> U7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="991">
<name> U7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="992">
<name> U7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="249">
<name> U8 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4463.691711 </x>
<y unit="cm"> 32889.833236 </y>
<z unit="cm"> -228.650000 </z>
</position>
<channels>
<channel id="993">
<name> U8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="994">
<name> U8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="995">
<name> U8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="996">
<name> U8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="250">
<name> U9 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4678.395062 </x>
<y unit="cm"> 33650.097974 </y>
<z unit="cm"> -236.550000 </z>
</position>
<channels>
<channel id="997">
<name> U9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="998">
<name> U9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="999">
<name> U9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1000">
<name> U9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="251">
<name> U10 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4893.098413 </x>
<y unit="cm"> 34410.362711 </y>
<z unit="cm"> -244.450000 </z>
</position>
<channels>
<channel id="1001">
<name> U10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1002">
<name> U10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1003">
<name> U10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1004">
<name> U10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="252">
<name> U11 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5251.843253 </x>
<y unit="cm"> 35680.678475 </y>
<z unit="cm"> -257.650000 </z>
</position>
<channels>
<channel id="1005">
<name> U11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1006">
<name> U11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1007">
<name> U11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1008">
<name> U11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="253">
<name> U12 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5466.546604 </x>
<y unit="cm"> 36440.943213 </y>
<z unit="cm"> -265.550000 </z>
</position>
<channels>
<channel id="1009">
<name> U12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1010">
<name> U12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1011">
<name> U12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1012">
<name> U12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="254">
<name> U13 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5681.249955 </x>
<y unit="cm"> 37201.207950 </y>
<z unit="cm"> -273.450000 </z>
</position>
<channels>
<channel id="1013">
<name> U13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1014">
<name> U13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1015">
<name> U13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1016">
<name> U13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="255">
<name> U14 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5895.953305 </x>
<y unit="cm"> 37961.472688 </y>
<z unit="cm"> -281.350000 </z>
</position>
<channels>
<channel id="1017">
<name> U14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1018">
<name> U14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1019">
<name> U14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1020">
<name> U14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="256">
<name> U15 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6110.656656 </x>
<y unit="cm"> 38721.737425 </y>
<z unit="cm"> -289.250000 </z>
</position>
<channels>
<channel id="1021">
<name> U15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1022">
<name> U15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1023">
<name> U15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1024">
<name> U15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="257">
<name> U16 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6325.360007 </x>
<y unit="cm"> 39482.002163 </y>
<z unit="cm"> -297.150000 </z>
</position>
<channels>
<channel id="1025">
<name> U16A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1026">
<name> U16B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1027">
<name> U16C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1028">
<name> U16D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="258">
<name> V1 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3677.454712 </x>
<y unit="cm"> 27588.992512 </y>
<z unit="cm"> -175.500000 </z>
</position>
<channels>
<channel id="1029">
<name> V1A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1030">
<name> V1B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1031">
<name> V1C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1032">
<name> V1D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="259">
<name> V2 </name>
<type> 1 </type>
<position>
<x unit="cm"> -3941.077813 </x>
<y unit="cm"> 28522.482127 </y>
<z unit="cm"> -185.200000 </z>
</position>
<channels>
<channel id="1033">
<name> V2A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1034">
<name> V2B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1035">
<name> V2C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1036">
<name> V2D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="260">
<name> V3 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4155.781164 </x>
<y unit="cm"> 29282.746864 </y>
<z unit="cm"> -193.100000 </z>
</position>
<channels>
<channel id="1037">
<name> V3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1038">
<name> V3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1039">
<name> V3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1040">
<name> V3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="261">
<name> V4 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4370.484515 </x>
<y unit="cm"> 30043.011602 </y>
<z unit="cm"> -201.000000 </z>
</position>
<channels>
<channel id="1041">
<name> V4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1042">
<name> V4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1043">
<name> V4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1044">
<name> V4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="262">
<name> V5 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4585.187866 </x>
<y unit="cm"> 30803.276339 </y>
<z unit="cm"> -208.900000 </z>
</position>
<channels>
<channel id="1045">
<name> V5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1046">
<name> V5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1047">
<name> V5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1048">
<name> V5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="263">
<name> V6 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4799.891217 </x>
<y unit="cm"> 31563.541077 </y>
<z unit="cm"> -216.800000 </z>
</position>
<channels>
<channel id="1049">
<name> V6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1050">
<name> V6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1051">
<name> V6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1052">
<name> V6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="264">
<name> V7 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5014.594568 </x>
<y unit="cm"> 32323.805814 </y>
<z unit="cm"> -224.700000 </z>
</position>
<channels>
<channel id="1053">
<name> V7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1054">
<name> V7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1055">
<name> V7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1056">
<name> V7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="265">
<name> V8 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5229.297919 </x>
<y unit="cm"> 33084.070552 </y>
<z unit="cm"> -232.600000 </z>
</position>
<channels>
<channel id="1057">
<name> V8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1058">
<name> V8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1059">
<name> V8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1060">
<name> V8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="266">
<name> V9 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5444.001270 </x>
<y unit="cm"> 33844.335289 </y>
<z unit="cm"> -240.500000 </z>
</position>
<channels>
<channel id="1061">
<name> V9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1062">
<name> V9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1063">
<name> V9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1064">
<name> V9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="267">
<name> V10 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5658.704621 </x>
<y unit="cm"> 34604.600027 </y>
<z unit="cm"> -248.400000 </z>
</position>
<channels>
<channel id="1065">
<name> V10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1066">
<name> V10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1067">
<name> V10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1068">
<name> V10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="268">
<name> V11 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6017.449460 </x>
<y unit="cm"> 35874.915791 </y>
<z unit="cm"> -261.600000 </z>
</position>
<channels>
<channel id="1069">
<name> V11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1070">
<name> V11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1071">
<name> V11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1072">
<name> V11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="269">
<name> V12 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6232.152811 </x>
<y unit="cm"> 36635.180528 </y>
<z unit="cm"> -269.500000 </z>
</position>
<channels>
<channel id="1073">
<name> V12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1074">
<name> V12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1075">
<name> V12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1076">
<name> V12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="270">
<name> V13 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6446.856162 </x>
<y unit="cm"> 37395.445266 </y>
<z unit="cm"> -277.400000 </z>
</position>
<channels>
<channel id="1077">
<name> V13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1078">
<name> V13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1079">
<name> V13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1080">
<name> V13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="271">
<name> V14 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6661.559513 </x>
<y unit="cm"> 38155.710003 </y>
<z unit="cm"> -285.300000 </z>
</position>
<channels>
<channel id="1081">
<name> V14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1082">
<name> V14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1083">
<name> V14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1084">
<name> V14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="272">
<name> V15 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6876.262864 </x>
<y unit="cm"> 38915.974741 </y>
<z unit="cm"> -293.200000 </z>
</position>
<channels>
<channel id="1085">
<name> V15A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1086">
<name> V15B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1087">
<name> V15C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1088">
<name> V15D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="273">
<name> W1 </name>
<type> 1 </type>
<position>
<x unit="cm"> -4786.462961 </x>
<y unit="cm"> 27873.291128 </y>
<z unit="cm"> -181.250000 </z>
</position>
<channels>
<channel id="1089">
<name> W1A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1090">
<name> W1B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1091">
<name> W1C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1092">
<name> W1D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="274">
<name> W2 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5001.166312 </x>
<y unit="cm"> 28633.555866 </y>
<z unit="cm"> -189.150000 </z>
</position>
<channels>
<channel id="1093">
<name> W2A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1094">
<name> W2B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1095">
<name> W2C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1096">
<name> W2D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="275">
<name> W3 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5215.869663 </x>
<y unit="cm"> 29393.820603 </y>
<z unit="cm"> -197.050000 </z>
</position>
<channels>
<channel id="1097">
<name> W3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1098">
<name> W3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1099">
<name> W3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1100">
<name> W3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="276">
<name> W4 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5430.573014 </x>
<y unit="cm"> 30154.085341 </y>
<z unit="cm"> -204.950000 </z>
</position>
<channels>
<channel id="1101">
<name> W4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1102">
<name> W4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1103">
<name> W4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1104">
<name> W4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="277">
<name> W5 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5645.276365 </x>
<y unit="cm"> 30914.350078 </y>
<z unit="cm"> -212.850000 </z>
</position>
<channels>
<channel id="1105">
<name> W5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1106">
<name> W5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1107">
<name> W5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1108">
<name> W5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="278">
<name> W6 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5859.979716 </x>
<y unit="cm"> 31674.614816 </y>
<z unit="cm"> -220.750000 </z>
</position>
<channels>
<channel id="1109">
<name> W6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1110">
<name> W6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1111">
<name> W6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1112">
<name> W6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="279">
<name> W7 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6074.683066 </x>
<y unit="cm"> 32434.879553 </y>
<z unit="cm"> -228.650000 </z>
</position>
<channels>
<channel id="1113">
<name> W7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1114">
<name> W7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1115">
<name> W7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1116">
<name> W7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="280">
<name> W8 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6289.386417 </x>
<y unit="cm"> 33195.144291 </y>
<z unit="cm"> -236.550000 </z>
</position>
<channels>
<channel id="1117">
<name> W8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1118">
<name> W8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1119">
<name> W8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1120">
<name> W8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="281">
<name> W9 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6504.089768 </x>
<y unit="cm"> 33955.409028 </y>
<z unit="cm"> -244.450000 </z>
</position>
<channels>
<channel id="1121">
<name> W9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1122">
<name> W9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1123">
<name> W9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1124">
<name> W9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="282">
<name> W10 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6718.793119 </x>
<y unit="cm"> 34715.673766 </y>
<z unit="cm"> -252.350000 </z>
</position>
<channels>
<channel id="1125">
<name> W10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1126">
<name> W10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1127">
<name> W10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1128">
<name> W10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="283">
<name> W11 </name>
<type> 1 </type>
<position>
<x unit="cm"> -7077.537959 </x>
<y unit="cm"> 35985.989530 </y>
<z unit="cm"> -265.550000 </z>
</position>
<channels>
<channel id="1129">
<name> W11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1130">
<name> W11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1131">
<name> W11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1132">
<name> W11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="284">
<name> W12 </name>
<type> 1 </type>
<position>
<x unit="cm"> -7292.241310 </x>
<y unit="cm"> 36746.254267 </y>
<z unit="cm"> -273.450000 </z>
</position>
<channels>
<channel id="1133">
<name> W12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1134">
<name> W12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1135">
<name> W12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1136">
<name> W12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="285">
<name> W13 </name>
<type> 1 </type>
<position>
<x unit="cm"> -7506.944661 </x>
<y unit="cm"> 37506.519005 </y>
<z unit="cm"> -281.350000 </z>
</position>
<channels>
<channel id="1137">
<name> W13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1138">
<name> W13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1139">
<name> W13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1140">
<name> W13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="286">
<name> W14 </name>
<type> 1 </type>
<position>
<x unit="cm"> -7721.648012 </x>
<y unit="cm"> 38266.783742 </y>
<z unit="cm"> -289.250000 </z>
</position>
<channels>
<channel id="1141">
<name> W14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> 132.983743 </x>
<y unit="cm"> -128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1142">
<name> W14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -178.036679 </x>
<y unit="cm"> -50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1143">
<name> W14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1144">
<name> W14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 46.015297 </x>
<y unit="cm"> 179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="287">
<name> X1 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5552.069169 </x>
<y unit="cm"> 28067.528444 </y>
<z unit="cm"> -185.200000 </z>
</position>
<channels>
<channel id="1145">
<name> X1A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1146">
<name> X1B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1147">
<name> X1C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1148">
<name> X1D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="288">
<name> X2 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5766.772520 </x>
<y unit="cm"> 28827.793181 </y>
<z unit="cm"> -193.100000 </z>
</position>
<channels>
<channel id="1149">
<name> X2A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1150">
<name> X2B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1151">
<name> X2C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1152">
<name> X2D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="289">
<name> X3 </name>
<type> 1 </type>
<position>
<x unit="cm"> -5981.475870 </x>
<y unit="cm"> 29588.057919 </y>
<z unit="cm"> -201.000000 </z>
</position>
<channels>
<channel id="1153">
<name> X3A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1154">
<name> X3B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1155">
<name> X3C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1156">
<name> X3D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="290">
<name> X4 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6196.179221 </x>
<y unit="cm"> 30348.322656 </y>
<z unit="cm"> -208.900000 </z>
</position>
<channels>
<channel id="1157">
<name> X4A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1158">
<name> X4B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1159">
<name> X4C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1160">
<name> X4D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="291">
<name> X5 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6410.882572 </x>
<y unit="cm"> 31108.587394 </y>
<z unit="cm"> -216.800000 </z>
</position>
<channels>
<channel id="1161">
<name> X5A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1162">
<name> X5B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1163">
<name> X5C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1164">
<name> X5D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="292">
<name> X6 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6625.585923 </x>
<y unit="cm"> 31868.852131 </y>
<z unit="cm"> -224.700000 </z>
</position>
<channels>
<channel id="1165">
<name> X6A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1166">
<name> X6B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1167">
<name> X6C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1168">
<name> X6D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="293">
<name> X7 </name>
<type> 1 </type>
<position>
<x unit="cm"> -6840.289274 </x>
<y unit="cm"> 32629.116869 </y>
<z unit="cm"> -232.600000 </z>
</position>
<channels>
<channel id="1169">
<name> X7A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1170">
<name> X7B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1171">
<name> X7C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1172">
<name> X7D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="294">
<name> X8 </name>
<type> 1 </type>
<position>
<x unit="cm"> -7054.992625 </x>
<y unit="cm"> 33389.381606 </y>
<z unit="cm"> -240.500000 </z>
</position>
<channels>
<channel id="1173">
<name> X8A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1174">
<name> X8B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1175">
<name> X8C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1176">
<name> X8D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="295">
<name> X9 </name>
<type> 1 </type>
<position>
<x unit="cm"> -7269.695976 </x>
<y unit="cm"> 34149.646344 </y>
<z unit="cm"> -248.400000 </z>
</position>
<channels>
<channel id="1177">
<name> X9A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1178">
<name> X9B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1179">
<name> X9C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1180">
<name> X9D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="296">
<name> X10 </name>
<type> 1 </type>
<position>
<x unit="cm"> -7484.399327 </x>
<y unit="cm"> 34909.911081 </y>
<z unit="cm"> -256.300000 </z>
</position>
<channels>
<channel id="1181">
<name> X10A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1182">
<name> X10B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1183">
<name> X10C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1184">
<name> X10D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="297">
<name> X11 </name>
<type> 1 </type>
<position>
<x unit="cm"> -7843.144166 </x>
<y unit="cm"> 36180.226845 </y>
<z unit="cm"> -269.500000 </z>
</position>
<channels>
<channel id="1185">
<name> X11A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1186">
<name> X11B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1187">
<name> X11C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1188">
<name> X11D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="298">
<name> X12 </name>
<type> 1 </type>
<position>
<x unit="cm"> -8057.847517 </x>
<y unit="cm"> 36940.491583 </y>
<z unit="cm"> -277.400000 </z>
</position>
<channels>
<channel id="1189">
<name> X12A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1190">
<name> X12B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1191">
<name> X12C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1192">
<name> X12D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="299">
<name> X13 </name>
<type> 1 </type>
<position>
<x unit="cm"> -8272.550868 </x>
<y unit="cm"> 37700.756320 </y>
<z unit="cm"> -285.300000 </z>
</position>
<channels>
<channel id="1193">
<name> X13A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1194">
<name> X13B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1195">
<name> X13C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1196">
<name> X13D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id="300">
<name> X14 </name>
<type> 1 </type>
<position>
<x unit="cm"> -8487.254219 </x>
<y unit="cm"> 38461.021058 </y>
<z unit="cm"> -293.200000 </z>
</position>
<channels>
<channel id="1197">
<name> X14A </name>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit="cm"> -46.015297 </x>
<y unit="cm"> -179.252873 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1198">
<name> X14B </name>
<number> 2 </number>
<type> 1 </type>
<position>
<x unit="cm"> -132.983743 </x>
<y unit="cm"> 128.702464 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1199">
<name> X14C </name>
<number> 3 </number>
<type> 2 </type>
<position>
<x unit="cm"> 0.000000 </x>
<y unit="cm"> 0.000000 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
<channel id="1200">
<name> X14D </name>
<number> 4 </number>
<type> 1 </type>
<position>
<x unit="cm"> 178.036679 </x>
<y unit="cm"> 50.278633 </y>
<z unit="cm"> 40.000000 </z>
</position>
</channel>
</channels>
</tank>
<tank id='318'>
<name> tank_318 </name>
<type> 2 </type>
<position>
<x unit='cm'> 3483.27670553 </x>
<y unit='cm'> 26805.2003961 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2220'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='319'>
<name> tank_319 </name>
<type> 2 </type>
<position>
<x unit='cm'> 3751.41658672 </x>
<y unit='cm'> 41724.4272863 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2221'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='320'>
<name> tank_320 </name>
<type> 2 </type>
<position>
<x unit='cm'> -3487.383556 </x>
<y unit='cm'> 41441.5037707 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2222'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='321'>
<name> tank_321 </name>
<type> 2 </type>
<position>
<x unit='cm'> -1047.31821861 </x>
<y unit='cm'> 26055.9165983 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2223'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='322'>
<name> tank_322 </name>
<type> 2 </type>
<position>
<x unit='cm'> 6325.10171212 </x>
<y unit='cm'> 27679.222334 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2224'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='323'>
<name> tank_323 </name>
<type> 2 </type>
<position>
<x unit='cm'> 1034.6545684 </x>
<y unit='cm'> 42999.0228231 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2225'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='324'>
<name> tank_324 </name>
<type> 2 </type>
<position>
<x unit='cm'> 1968.16612973 </x>
<y unit='cm'> 25295.8024447 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2226'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='325'>
<name> tank_325 </name>
<type> 2 </type>
<position>
<x unit='cm'> 5899.15667368 </x>
<y unit='cm'> 41795.8322294 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2227'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='326'>
<name> tank_326 </name>
<type> 2 </type>
<position>
<x unit='cm'> -8266.36707398 </x>
<y unit='cm'> 32201.8076414 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2228'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='327'>
<name> tank_327 </name>
<type> 2 </type>
<position>
<x unit='cm'> -2175.81179533 </x>
<y unit='cm'> 43183.6139377 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2229'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='328'>
<name> tank_328 </name>
<type> 2 </type>
<position>
<x unit='cm'> -3204.87098977 </x>
<y unit='cm'> 25671.9179466 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2230'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='329'>
<name> tank_329 </name>
<type> 2 </type>
<position>
<x unit='cm'> 9484.5242466 </x>
<y unit='cm'> 37988.6301409 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2231'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='330'>
<name> tank_330 </name>
<type> 2 </type>
<position>
<x unit='cm'> 5258.9778906 </x>
<y unit='cm'> 25726.8025605 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2232'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='331'>
<name> tank_331 </name>
<type> 2 </type>
<position>
<x unit='cm'> 3155.15068297 </x>
<y unit='cm'> 43707.5456894 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2233'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='332'>
<name> tank_332 </name>
<type> 2 </type>
<position>
<x unit='cm'> -7519.60981775 </x>
<y unit='cm'> 28916.1162806 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2234'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='333'>
<name> tank_333 </name>
<type> 2 </type>
<position>
<x unit='cm'> -5425.4958922 </x>
<y unit='cm'> 42119.7174714 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2235'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='334'>
<name> tank_334 </name>
<type> 2 </type>
<position>
<x unit='cm'> -63.8449672653 </x>
<y unit='cm'> 24259.1286099 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2236'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='335'>
<name> tank_335 </name>
<type> 2 </type>
<position>
<x unit='cm'> 8105.10580181 </x>
<y unit='cm'> 41171.2501504 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2237'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='336'>
<name> tank_336 </name>
<type> 2 </type>
<position>
<x unit='cm'> -9465.57125393 </x>
<y unit='cm'> 34169.3508006 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2238'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='337'>
<name> tank_337 </name>
<type> 2 </type>
<position>
<x unit='cm'> 8343.5907588 </x>
<y unit='cm'> 27417.113491 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2239'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='338'>
<name> tank_338 </name>
<type> 2 </type>
<position>
<x unit='cm'> -286.480743957 </x>
<y unit='cm'> 44542.6645281 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2240'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='339'>
<name> tank_339 </name>
<type> 2 </type>
<position>
<x unit='cm'> -5526.03473747 </x>
<y unit='cm'> 25960.0549895 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2241'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='340'>
<name> tank_340 </name>
<type> 2 </type>
<position>
<x unit='cm'> 10999.453253 </x>
<y unit='cm'> 36191.2924297 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2242'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='341'>
<name> tank_341 </name>
<type> 2 </type>
<position>
<x unit='cm'> -8223.14325301 </x>
<y unit='cm'> 39833.4655142 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2243'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='342'>
<name> tank_342 </name>
<type> 2 </type>
<position>
<x unit='cm'> 3567.32136417 </x>
<y unit='cm'> 24061.2667942 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2244'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='343'>
<name> tank_343 </name>
<type> 2 </type>
<position>
<x unit='cm'> 5539.65691573 </x>
<y unit='cm'> 43781.5828877 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2245'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='344'>
<name> tank_344 </name>
<type> 2 </type>
<position>
<x unit='cm'> -9329.17048455 </x>
<y unit='cm'> 30488.6294535 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2246'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='345'>
<name> tank_345 </name>
<type> 2 </type>
<position>
<x unit='cm'> -3985.22960106 </x>
<y unit='cm'> 44065.4176255 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2247'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='346'>
<name> tank_346 </name>
<type> 2 </type>
<position>
<x unit='cm'> -2453.71593769 </x>
<y unit='cm'> 23805.8496713 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2248'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='347'>
<name> tank_347 </name>
<type> 2 </type>
<position>
<x unit='cm'> 10177.7763493 </x>
<y unit='cm'> 39875.8431778 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2249'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='348'>
<name> tank_348 </name>
<type> 2 </type>
<position>
<x unit='cm'> -10111.7876017 </x>
<y unit='cm'> 36538.6971865 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2250'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='349'>
<name> tank_349 </name>
<type> 2 </type>
<position>
<x unit='cm'> 7205.03371679 </x>
<y unit='cm'> 25227.8922981 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2251'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='350'>
<name> tank_350 </name>
<type> 2 </type>
<position>
<x unit='cm'> 2046.317899 </x>
<y unit='cm'> 45382.2446115 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2252'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='351'>
<name> tank_351 </name>
<type> 2 </type>
<position>
<x unit='cm'> -7820.18217524 </x>
<y unit='cm'> 26930.5211205 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2253'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='352'>
<name> tank_352 </name>
<type> 2 </type>
<position>
<x unit='cm'> 12031.4170099 </x>
<y unit='cm'> 33911.3226467 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2254'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='353'>
<name> tank_353 </name>
<type> 2 </type>
<position>
<x unit='cm'> -7431.13570004 </x>
<y unit='cm'> 42219.7688342 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2255'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='354'>
<name> tank_354 </name>
<type> 2 </type>
<position>
<x unit='cm'> 1356.58794619 </x>
<y unit='cm'> 22839.3456114 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2256'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='355'>
<name> tank_355 </name>
<type> 2 </type>
<position>
<x unit='cm'> 8004.27077851 </x>
<y unit='cm'> 43177.4098892 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2257'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='356'>
<name> tank_356 </name>
<type> 2 </type>
<position>
<x unit='cm'> -10737.149549 </x>
<y unit='cm'> 32613.7285494 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2258'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='357'>
<name> tank_357 </name>
<type> 2 </type>
<position>
<x unit='cm'> 10330.8769697 </x>
<y unit='cm'> 27717.3920609 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2259'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='358'>
<name> tank_358 </name>
<type> 2 </type>
<position>
<x unit='cm'> -1962.01412517 </x>
<y unit='cm'> 45654.0677101 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2260'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='359'>
<name> tank_359 </name>
<type> 2 </type>
<position>
<x unit='cm'> -5029.54003279 </x>
<y unit='cm'> 24010.7444578 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2261'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='360'>
<name> tank_360 </name>
<type> 2 </type>
<position>
<x unit='cm'> 11940.2226439 </x>
<y unit='cm'> 37970.4709045 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2262'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='361'>
<name> tank_361 </name>
<type> 2 </type>
<position>
<x unit='cm'> -10115.8247562 </x>
<y unit='cm'> 39145.728936 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2263'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='362'>
<name> tank_362 </name>
<type> 2 </type>
<position>
<x unit='cm'> 5433.0327714 </x>
<y unit='cm'> 23299.9996075 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2264'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='363'>
<name> tank_363 </name>
<type> 2 </type>
<position>
<x unit='cm'> 4667.3480389 </x>
<y unit='cm'> 45599.5844626 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2265'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='364'>
<name> tank_364 </name>
<type> 2 </type>
<position>
<x unit='cm'> -9903.72303659 </x>
<y unit='cm'> 28554.1952196 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2266'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='365'>
<name> tank_365 </name>
<type> 2 </type>
<position>
<x unit='cm'> 12464.9647896 </x>
<y unit='cm'> 31294.0601905 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2267'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='366'>
<name> tank_366 </name>
<type> 2 </type>
<position>
<x unit='cm'> -5970.03208799 </x>
<y unit='cm'> 44447.7514265 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2268'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='367'>
<name> tank_367 </name>
<type> 2 </type>
<position>
<x unit='cm'> -1238.71461056 </x>
<y unit='cm'> 22188.2144743 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2269'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='368'>
<name> tank_368 </name>
<type> 2 </type>
<position>
<x unit='cm'> 10364.1340834 </x>
<y unit='cm'> 41892.2724192 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2270'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='369'>
<name> tank_369 </name>
<type> 2 </type>
<position>
<x unit='cm'> -11605.6574904 </x>
<y unit='cm'> 35168.5902462 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2271'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='370'>
<name> tank_370 </name>
<type> 2 </type>
<position>
<x unit='cm'> 9234.12163484 </x>
<y unit='cm'> 25239.4968452 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2272'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='371'>
<name> tank_371 </name>
<type> 2 </type>
<position>
<x unit='cm'> 533.779999735 </x>
<y unit='cm'> 46738.1244931 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2273'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='372'>
<name> tank_372 </name>
<type> 2 </type>
<position>
<x unit='cm'> -7610.41012917 </x>
<y unit='cm'> 24907.8073267 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2274'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='373'>
<name> tank_373 </name>
<type> 2 </type>
<position>
<x unit='cm'> 13236.3527637 </x>
<y unit='cm'> 35552.3694144 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2275'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='374'>
<name> tank_374 </name>
<type> 2 </type>
<position>
<x unit='cm'> -9428.5399068 </x>
<y unit='cm'> 41813.4004552 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2276'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='375'>
<name> tank_375 </name>
<type> 2 </type>
<position>
<x unit='cm'> 3111.0967662 </x>
<y unit='cm'> 21796.9315987 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2277'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='376'>
<name> tank_376 </name>
<type> 2 </type>
<position>
<x unit='cm'> 7404.63451644 </x>
<y unit='cm'> 45130.8273406 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2278'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='377'>
<name> tank_377 </name>
<type> 2 </type>
<position>
<x unit='cm'> -11606.9351943 </x>
<y unit='cm'> 30761.7975474 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2279'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='378'>
<name> tank_378 </name>
<type> 2 </type>
<position>
<x unit='cm'> 12222.0473392 </x>
<y unit='cm'> 28505.2439192 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2280'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='379'>
<name> tank_379 </name>
<type> 2 </type>
<position>
<x unit='cm'> -3894.4739607 </x>
<y unit='cm'> 46342.6716062 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2281'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='380'>
<name> tank_380 </name>
<type> 2 </type>
<position>
<x unit='cm'> -4060.20116763 </x>
<y unit='cm'> 22199.5098023 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2282'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='381'>
<name> tank_381 </name>
<type> 2 </type>
<position>
<x unit='cm'> 12440.7140119 </x>
<y unit='cm'> 39965.8591009 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2283'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='382'>
<name> tank_382 </name>
<type> 2 </type>
<position>
<x unit='cm'> -11830.1566606 </x>
<y unit='cm'> 38003.2467104 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2284'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='383'>
<name> tank_383 </name>
<type> 2 </type>
<position>
<x unit='cm'> 7473.19368118 </x>
<y unit='cm'> 22992.8730544 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2285'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='384'>
<name> tank_384 </name>
<type> 2 </type>
<position>
<x unit='cm'> 3361.60668876 </x>
<y unit='cm'> 47200.9119034 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2286'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='385'>
<name> tank_385 </name>
<type> 2 </type>
<position>
<x unit='cm'> -10013.9529411 </x>
<y unit='cm'> 26487.8161039 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2287'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='386'>
<name> tank_386 </name>
<type> 2 </type>
<position>
<x unit='cm'> 13938.1877668 </x>
<y unit='cm'> 32751.72293 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2288'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='387'>
<name> tank_387 </name>
<type> 2 </type>
<position>
<x unit='cm'> -8043.83545223 </x>
<y unit='cm'> 44359.3009861 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2289'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='388'>
<name> tank_388 </name>
<type> 2 </type>
<position>
<x unit='cm'> 358.177293407 </x>
<y unit='cm'> 20857.0663139 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2290'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='389'>
<name> tank_389 </name>
<type> 2 </type>
<position>
<x unit='cm'> 10076.9809174 </x>
<y unit='cm'> 43954.6278354 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2291'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='390'>
<name> tank_390 </name>
<type> 2 </type>
<position>
<x unit='cm'> -12782.0085643 </x>
<y unit='cm'> 33446.4057647 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2292'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='391'>
<name> tank_391 </name>
<type> 2 </type>
<position>
<x unit='cm'> 11266.2403653 </x>
<y unit='cm'> 25723.6152417 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2293'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='392'>
<name> tank_392 </name>
<type> 2 </type>
<position>
<x unit='cm'> -1298.63646098 </x>
<y unit='cm'> 47748.3122646 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2294'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='393'>
<name> tank_393 </name>
<type> 2 </type>
<position>
<x unit='cm'> -6932.80782082 </x>
<y unit='cm'> 22924.469693 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2295'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='394'>
<name> tank_394 </name>
<type> 2 </type>
<position>
<x unit='cm'> 14070.4636915 </x>
<y unit='cm'> 37478.9628407 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2296'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='395'>
<name> tank_395 </name>
<type> 2 </type>
<position>
<x unit='cm'> -11344.955083 </x>
<y unit='cm'> 40947.5088414 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2297'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='396'>
<name> tank_396 </name>
<type> 2 </type>
<position>
<x unit='cm'> 5114.95551426 </x>
<y unit='cm'> 21147.2739039 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2298'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='397'>
<name> tank_397 </name>
<type> 2 </type>
<position>
<x unit='cm'> 6357.31671487 </x>
<y unit='cm'> 46962.7370312 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2299'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='398'>
<name> tank_398 </name>
<type> 2 </type>
<position>
<x unit='cm'> -12065.3720595 </x>
<y unit='cm'> 28698.2969001 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2300'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='399'>
<name> tank_399 </name>
<type> 2 </type>
<position>
<x unit='cm'> 13952.5774182 </x>
<y unit='cm'> 29725.5149338 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2301'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='400'>
<name> tank_400 </name>
<type> 2 </type>
<position>
<x unit='cm'> -5999.43204027 </x>
<y unit='cm'> 46604.787051 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2302'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='401'>
<name> tank_401 </name>
<type> 2 </type>
<position>
<x unit='cm'> -2676.98771355 </x>
<y unit='cm'> 20586.3799352 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2303'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='402'>
<name> tank_402 </name>
<type> 2 </type>
<position>
<x unit='cm'> 12503.1187543 </x>
<y unit='cm'> 42093.6844869 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2304'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='403'>
<name> tank_403 </name>
<type> 2 </type>
<position>
<x unit='cm'> -13310.8567307 </x>
<y unit='cm'> 36468.5545131 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2305'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='404'>
<name> tank_404 </name>
<type> 2 </type>
<position>
<x unit='cm'> 9605.0493544 </x>
<y unit='cm'> 23131.826962 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2306'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='405'>
<name> tank_405 </name>
<type> 2 </type>
<position>
<x unit='cm'> 1688.2553624 </x>
<y unit='cm'> 48535.2728323 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2307'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='406'>
<name> tank_406 </name>
<type> 2 </type>
<position>
<x unit='cm'> -9673.74926362 </x>
<y unit='cm'> 24370.8532115 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2308'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='407'>
<name> tank_407 </name>
<type> 2 </type>
<position>
<x unit='cm'> 15113.5403481 </x>
<y unit='cm'> 34549.6661966 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2309'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='408'>
<name> tank_408 </name>
<type> 2 </type>
<position>
<x unit='cm'> -10127.0580521 </x>
<y unit='cm'> 43819.7140742 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2310'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='409'>
<name> tank_409 </name>
<type> 2 </type>
<position>
<x unit='cm'> 2265.51653552 </x>
<y unit='cm'> 19852.0415685 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2311'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='410'>
<name> tank_410 </name>
<type> 2 </type>
<position>
<x unit='cm'> 9341.62110795 </x>
<y unit='cm'> 45985.4992263 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2312'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='411'>
<name> tank_411 </name>
<type> 2 </type>
<position>
<x unit='cm'> -13606.834059 </x>
<y unit='cm'> 31445.8670034 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2313'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='412'>
<name> tank_412 </name>
<type> 2 </type>
<position>
<x unit='cm'> 13226.5453751 </x>
<y unit='cm'> 26649.4222412 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2314'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='413'>
<name> tank_413 </name>
<type> 2 </type>
<position>
<x unit='cm'> -3375.31451605 </x>
<y unit='cm'> 48384.6014834 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2315'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='414'>
<name> tank_414 </name>
<type> 2 </type>
<position>
<x unit='cm'> -5823.5519252 </x>
<y unit='cm'> 21052.3945419 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2316'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='415'>
<name> tank_415 </name>
<type> 2 </type>
<position>
<x unit='cm'> 14511.487556 </x>
<y unit='cm'> 39614.0002379 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2317'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='416'>
<name> tank_416 </name>
<type> 2 </type>
<position>
<x unit='cm'> -13111.8400575 </x>
<y unit='cm'> 39663.4181328 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2318'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='417'>
<name> tank_417 </name>
<type> 2 </type>
<position>
<x unit='cm'> 7290.002759 </x>
<y unit='cm'> 20906.5763418 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2319'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='418'>
<name> tank_418 </name>
<type> 2 </type>
<position>
<x unit='cm'> 4908.55071126 </x>
<y unit='cm'> 48608.3204022 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2320'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='419'>
<name> tank_419 </name>
<type> 2 </type>
<position>
<x unit='cm'> -12102.3968042 </x>
<y unit='cm'> 26502.0037509 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2321'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='420'>
<name> tank_420 </name>
<type> 2 </type>
<position>
<x unit='cm'> 15461.7354423 </x>
<y unit='cm'> 31327.3346246 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2322'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='421'>
<name> tank_421 </name>
<type> 2 </type>
<position>
<x unit='cm'> -8197.95143505 </x>
<y unit='cm'> 46436.5389235 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2323'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='422'>
<name> tank_422 </name>
<type> 2 </type>
<position>
<x unit='cm'> -935.102371371 </x>
<y unit='cm'> 19227.6526148 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2324'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='423'>
<name> tank_423 </name>
<type> 2 </type>
<position>
<x unit='cm'> 12129.7616342 </x>
<y unit='cm'> 44275.3158205 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2325'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='424'>
<name> tank_424 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14506.387908 </x>
<y unit='cm'> 34600.8507782 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2326'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='425'>
<name> tank_425 </name>
<type> 2 </type>
<position>
<x unit='cm'> 11750.7457515 </x>
<y unit='cm'> 23708.3625003 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2327'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='426'>
<name> tank_426 </name>
<type> 2 </type>
<position>
<x unit='cm'> -289.878160414 </x>
<y unit='cm'> 49556.1936896 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2328'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='427'>
<name> tank_427 </name>
<type> 2 </type>
<position>
<x unit='cm'> -8897.72058374 </x>
<y unit='cm'> 22279.9094383 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2329'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='428'>
<name> tank_428 </name>
<type> 2 </type>
<position>
<x unit='cm'> 15949.8882024 </x>
<y unit='cm'> 36621.8271481 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2330'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='429'>
<name> tank_429 </name>
<type> 2 </type>
<position>
<x unit='cm'> -12144.8208027 </x>
<y unit='cm'> 42849.6055658 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2331'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='430'>
<name> tank_430 </name>
<type> 2 </type>
<position>
<x unit='cm'> 4414.42506861 </x>
<y unit='cm'> 19208.6896302 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2332'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='431'>
<name> tank_431 </name>
<type> 2 </type>
<position>
<x unit='cm'> 8184.53298298 </x>
<y unit='cm'> 47912.198968 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2333'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='432'>
<name> tank_432 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14050.3825173 </x>
<y unit='cm'> 29238.2243921 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2334'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='433'>
<name> tank_433 </name>
<type> 2 </type>
<position>
<x unit='cm'> 15044.9993816 </x>
<y unit='cm'> 27984.758164 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2335'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='434'>
<name> tank_434 </name>
<type> 2 </type>
<position>
<x unit='cm'> -5623.0942671 </x>
<y unit='cm'> 48623.216486 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2336'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='435'>
<name> tank_435 </name>
<type> 2 </type>
<position>
<x unit='cm'> -4320.26262009 </x>
<y unit='cm'> 19358.5224311 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2337'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='436'>
<name> tank_436 </name>
<type> 2 </type>
<position>
<x unit='cm'> 14541.7650834 </x>
<y unit='cm'> 41882.8921377 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2338'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='437'>
<name> tank_437 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14665.7812196 </x>
<y unit='cm'> 38003.9502764 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2339'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='438'>
<name> tank_438 </name>
<type> 2 </type>
<position>
<x unit='cm'> 9560.71303669 </x>
<y unit='cm'> 21086.2802775 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2340'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='439'>
<name> tank_439 </name>
<type> 2 </type>
<position>
<x unit='cm'> 3106.0648538 </x>
<y unit='cm'> 50008.1012785 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2341'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='440'>
<name> tank_440 </name>
<type> 2 </type>
<position>
<x unit='cm'> -11712.8469282 </x>
<y unit='cm'> 24248.875791 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2342'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='441'>
<name> tank_441 </name>
<type> 2 </type>
<position>
<x unit='cm'> 16694.369981 </x>
<y unit='cm'> 33258.3986661 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2343'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='442'>
<name> tank_442 </name>
<type> 2 </type>
<position>
<x unit='cm'> -10414.1525666 </x>
<y unit='cm'> 45839.0628376 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2344'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='443'>
<name> tank_443 </name>
<type> 2 </type>
<position>
<x unit='cm'> 1108.93812168 </x>
<y unit='cm'> 18173.7936838 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2345'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='444'>
<name> tank_444 </name>
<type> 2 </type>
<position>
<x unit='cm'> 11328.0531263 </x>
<y unit='cm'> 46435.4648206 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2346'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='445'>
<name> tank_445 </name>
<type> 2 </type>
<position>
<x unit='cm'> -15371.3012129 </x>
<y unit='cm'> 32460.4701777 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2347'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='446'>
<name> tank_446 </name>
<type> 2 </type>
<position>
<x unit='cm'> 13836.0981165 </x>
<y unit='cm'> 24708.8605258 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2348'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='447'>
<name> tank_447 </name>
<type> 2 </type>
<position>
<x unit='cm'> -2509.06413914 </x>
<y unit='cm'> 50223.5411805 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2349'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='448'>
<name> tank_448 </name>
<type> 2 </type>
<position>
<x unit='cm'> -7705.5855065 </x>
<y unit='cm'> 20287.5585849 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2350'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='449'>
<name> tank_449 </name>
<type> 2 </type>
<position>
<x unit='cm'> 16412.6774408 </x>
<y unit='cm'> 38901.5294352 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2351'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='450'>
<name> tank_450 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14026.6596459 </x>
<y unit='cm'> 41474.6415922 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2352'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='451'>
<name> tank_451 </name>
<type> 2 </type>
<position>
<x unit='cm'> 6735.75094614 </x>
<y unit='cm'> 18955.7587421 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2353'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='452'>
<name> tank_452 </name>
<type> 2 </type>
<position>
<x unit='cm'> 6637.13618243 </x>
<y unit='cm'> 49666.8590711 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2354'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='453'>
<name> tank_453 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14089.8980026 </x>
<y unit='cm'> 26894.6151767 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2355'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='454'>
<name> tank_454 </name>
<type> 2 </type>
<position>
<x unit='cm'> 16656.8005733 </x>
<y unit='cm'> 29692.6849573 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2356'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='455'>
<name> tank_455 </name>
<type> 2 </type>
<position>
<x unit='cm'> -7969.35929469 </x>
<y unit='cm'> 48447.5389321 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2357'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='456'>
<name> tank_456 </name>
<type> 2 </type>
<position>
<x unit='cm'> -2465.12154761 </x>
<y unit='cm'> 17904.1387636 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2358'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='457'>
<name> tank_457 </name>
<type> 2 </type>
<position>
<x unit='cm'> 14150.9179758 </x>
<y unit='cm'> 44212.061279 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2359'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='458'>
<name> tank_458 </name>
<type> 2 </type>
<position>
<x unit='cm'> -15949.4363908 </x>
<y unit='cm'> 36016.2176402 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2360'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='459'>
<name> tank_459 </name>
<type> 2 </type>
<position>
<x unit='cm'> 11853.0750237 </x>
<y unit='cm'> 21690.4655013 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2361'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='460'>
<name> tank_460 </name>
<type> 2 </type>
<position>
<x unit='cm'> 1001.5533457 </x>
<y unit='cm'> 51109.0807279 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2362'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='461'>
<name> tank_461 </name>
<type> 2 </type>
<position>
<x unit='cm'> -10898.95484 </x>
<y unit='cm'> 22012.8270394 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2363'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='462'>
<name> tank_462 </name>
<type> 2 </type>
<position>
<x unit='cm'> 17602.1953825 </x>
<y unit='cm'> 35462.8136162 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2364'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='463'>
<name> tank_463 </name>
<type> 2 </type>
<position>
<x unit='cm'> -12574.7507446 </x>
<y unit='cm'> 44820.8718781 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2365'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='464'>
<name> tank_464 </name>
<type> 2 </type>
<position>
<x unit='cm'> 3395.45477525 </x>
<y unit='cm'> 17468.0384481 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2366'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='465'>
<name> tank_465 </name>
<type> 2 </type>
<position>
<x unit='cm'> 10112.7101743 </x>
<y unit='cm'> 48502.0048372 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2367'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='466'>
<name> tank_466 </name>
<type> 2 </type>
<position>
<x unit='cm'> -15867.7130409 </x>
<y unit='cm'> 30110.4353455 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2368'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='467'>
<name> tank_467 </name>
<type> 2 </type>
<position>
<x unit='cm'> 15790.6592651 </x>
<y unit='cm'> 26112.5220699 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2369'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='468'>
<name> tank_468 </name>
<type> 2 </type>
<position>
<x unit='cm'> -4903.4032873 </x>
<y unit='cm'> 50505.0465692 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2370'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='469'>
<name> tank_469 </name>
<type> 2 </type>
<position>
<x unit='cm'> -6124.05881333 </x>
<y unit='cm'> 18462.0581763 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2371'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='470'>
<name> tank_470 </name>
<type> 2 </type>
<position>
<x unit='cm'> 16475.4769807 </x>
<y unit='cm'> 41320.485847 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2372'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='471'>
<name> tank_471 </name>
<type> 2 </type>
<position>
<x unit='cm'> -15707.001792 </x>
<y unit='cm'> 39727.2431509 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2373'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='472'>
<name> tank_472 </name>
<type> 2 </type>
<position>
<x unit='cm'> 9159.32595363 </x>
<y unit='cm'> 19113.6618221 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2374'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='473'>
<name> tank_473 </name>
<type> 2 </type>
<position>
<x unit='cm'> 4737.30628267 </x>
<y unit='cm'> 51187.0676473 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2375'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='474'>
<name> tank_474 </name>
<type> 2 </type>
<position>
<x unit='cm'> -13711.1224303 </x>
<y unit='cm'> 24486.5671724 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2376'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='475'>
<name> tank_475 </name>
<type> 2 </type>
<position>
<x unit='cm'> 18003.1515519 </x>
<y unit='cm'> 31730.1644623 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2377'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='476'>
<name> tank_476 </name>
<type> 2 </type>
<position>
<x unit='cm'> -10341.7542199 </x>
<y unit='cm'> 47849.5571613 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2378'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='477'>
<name> tank_477 </name>
<type> 2 </type>
<position>
<x unit='cm'> -305.999103127 </x>
<y unit='cm'> 16743.9989497 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2379'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='478'>
<name> tank_478 </name>
<type> 2 </type>
<position>
<x unit='cm'> 13337.2266221 </x>
<y unit='cm'> 46528.8634347 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2380'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='479'>
<name> tank_479 </name>
<type> 2 </type>
<position>
<x unit='cm'> -16912.490226 </x>
<y unit='cm'> 33752.5564839 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2381'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='480'>
<name> tank_480 </name>
<type> 2 </type>
<position>
<x unit='cm'> 14094.6970105 </x>
<y unit='cm'> 22714.5604506 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2382'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='481'>
<name> tank_481 </name>
<type> 2 </type>
<position>
<x unit='cm'> -1348.58147159 </x>
<y unit='cm'> 51865.7490109 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2383'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='482'>
<name> tank_482 </name>
<type> 2 </type>
<position>
<x unit='cm'> -9671.53572756 </x>
<y unit='cm'> 19865.4567441 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2384'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='483'>
<name> tank_483 </name>
<type> 2 </type>
<position>
<x unit='cm'> 18144.8376367 </x>
<y unit='cm'> 37880.5413532 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2385'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='484'>
<name> tank_484 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14609.4736227 </x>
<y unit='cm'> 43398.9308269 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2386'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='485'>
<name> tank_485 </name>
<type> 2 </type>
<position>
<x unit='cm'> 5861.23136373 </x>
<y unit='cm'> 17145.3330996 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2387'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='486'>
<name> tank_486 </name>
<type> 2 </type>
<position>
<x unit='cm'> 8506.70719341 </x>
<y unit='cm'> 50406.5153044 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2388'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='487'>
<name> tank_487 </name>
<type> 2 </type>
<position>
<x unit='cm'> -15966.3567396 </x>
<y unit='cm'> 27616.6589323 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2389'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='488'>
<name> tank_488 </name>
<type> 2 </type>
<position>
<x unit='cm'> 17548.3717262 </x>
<y unit='cm'> 27890.5480595 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2390'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='489'>
<name> tank_489 </name>
<type> 2 </type>
<position>
<x unit='cm'> -7404.78863555 </x>
<y unit='cm'> 50377.3320663 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2391'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='490'>
<name> tank_490 </name>
<type> 2 </type>
<position>
<x unit='cm'> -4187.53551352 </x>
<y unit='cm'> 16866.6087539 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2392'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='491'>
<name> tank_491 </name>
<type> 2 </type>
<position>
<x unit='cm'> 16120.9631135 </x>
<y unit='cm'> 43808.9138818 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2393'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='492'>
<name> tank_492 </name>
<type> 2 </type>
<position>
<x unit='cm'> -17125.9761903 </x>
<y unit='cm'> 37647.130334 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2394'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='493'>
<name> tank_493 </name>
<type> 2 </type>
<position>
<x unit='cm'> 11614.2236286 </x>
<y unit='cm'> 19693.548759 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2395'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='494'>
<name> tank_494 </name>
<type> 2 </type>
<position>
<x unit='cm'> 2529.77742074 </x>
<y unit='cm'> 52416.7307785 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2396'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='495'>
<name> tank_495 </name>
<type> 2 </type>
<position>
<x unit='cm'> -12909.1529682 </x>
<y unit='cm'> 22085.6104535 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2397'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='496'>
<name> tank_496 </name>
<type> 2 </type>
<position>
<x unit='cm'> 19032.1547895 </x>
<y unit='cm'> 34047.7974508 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2398'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='497'>
<name> tank_497 </name>
<type> 2 </type>
<position>
<x unit='cm'> -12668.6903917 </x>
<y unit='cm'> 46830.6414648 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2399'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='498'>
<name> tank_498 </name>
<type> 2 </type>
<position>
<x unit='cm'> 2103.42469283 </x>
<y unit='cm'> 15925.4165112 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2400'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='499'>
<name> tank_499 </name>
<type> 2 </type>
<position>
<x unit='cm'> 12108.3130311 </x>
<y unit='cm'> 48762.1969566 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2401'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='500'>
<name> tank_500 </name>
<type> 2 </type>
<position>
<x unit='cm'> -17512.5661629 </x>
<y unit='cm'> 31270.5108289 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2402'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='501'>
<name> tank_501 </name>
<type> 2 </type>
<position>
<x unit='cm'> 16215.5063147 </x>
<y unit='cm'> 24144.7602122 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2403'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='502'>
<name> tank_502 </name>
<type> 2 </type>
<position>
<x unit='cm'> -3883.37774359 </x>
<y unit='cm'> 52240.9820502 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2404'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='503'>
<name> tank_503 </name>
<type> 2 </type>
<position>
<x unit='cm'> -8050.46162008 </x>
<y unit='cm'> 17875.2744197 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2405'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='504'>
<name> tank_504 </name>
<type> 2 </type>
<position>
<x unit='cm'> 18290.7007681 </x>
<y unit='cm'> 40447.6743807 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2406'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='505'>
<name> tank_505 </name>
<type> 2 </type>
<position>
<x unit='cm'> -16451.8971972 </x>
<y unit='cm'> 41599.016865 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2407'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='506'>
<name> tank_506 </name>
<type> 2 </type>
<position>
<x unit='cm'> 8439.90939823 </x>
<y unit='cm'> 17231.5119822 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2408'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='507'>
<name> tank_507 </name>
<type> 2 </type>
<position>
<x unit='cm'> 6541.51953587 </x>
<y unit='cm'> 52085.1641954 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2409'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='508'>
<name> tank_508 </name>
<type> 2 </type>
<position>
<x unit='cm'> -15647.3491806 </x>
<y unit='cm'> 25047.4370613 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2410'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='509'>
<name> tank_509 </name>
<type> 2 </type>
<position>
<x unit='cm'> 19048.4821337 </x>
<y unit='cm'> 30006.0154557 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2411'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='510'>
<name> tank_510 </name>
<type> 2 </type>
<position>
<x unit='cm'> -9943.51458877 </x>
<y unit='cm'> 49826.6098737 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2412'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='511'>
<name> tank_511 </name>
<type> 2 </type>
<position>
<x unit='cm'> -1938.09419811 </x>
<y unit='cm'> 15558.4218836 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2413'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='512'>
<name> tank_512 </name>
<type> 2 </type>
<position>
<x unit='cm'> 15341.5408446 </x>
<y unit='cm'> 46296.2374083 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2414'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='513'>
<name> tank_513 </name>
<type> 2 </type>
<position>
<x unit='cm'> -18230.3490805 </x>
<y unit='cm'> 35281.2056813 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2415'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='514'>
<name> tank_514 </name>
<type> 2 </type>
<position>
<x unit='cm'> 14029.54289 </x>
<y unit='cm'> 20696.7717274 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2416'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='515'>
<name> tank_515 </name>
<type> 2 </type>
<position>
<x unit='cm'> 65.907508062 </x>
<y unit='cm'> 53306.9979948 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2417'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='516'>
<name> tank_516 </name>
<type> 2 </type>
<position>
<x unit='cm'> -11688.882374 </x>
<y unit='cm'> 19762.4229987 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2418'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='517'>
<name> tank_517 </name>
<type> 2 </type>
<position>
<x unit='cm'> 19699.7149124 </x>
<y unit='cm'> 36590.1734054 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2419'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='518'>
<name> tank_518 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14880.2592367 </x>
<y unit='cm'> 45401.8836643 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2420'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='519'>
<name> tank_519 </name>
<type> 2 </type>
<position>
<x unit='cm'> 4704.12061243 </x>
<y unit='cm'> 15487.3965014 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2421'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='520'>
<name> tank_520 </name>
<type> 2 </type>
<position>
<x unit='cm'> 10481.3745345 </x>
<y unit='cm'> 50843.4630223 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2422'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='521'>
<name> tank_521 </name>
<type> 2 </type>
<position>
<x unit='cm'> -17716.0454839 </x>
<y unit='cm'> 28632.266895 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2423'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='522'>
<name> tank_522 </name>
<type> 2 </type>
<position>
<x unit='cm'> 18148.7440823 </x>
<y unit='cm'> 25957.9025166 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2424'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='523'>
<name> tank_523 </name>
<type> 2 </type>
<position>
<x unit='cm'> -6537.97827058 </x>
<y unit='cm'> 52206.801946 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2425'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='524'>
<name> tank_524 </name>
<type> 2 </type>
<position>
<x unit='cm'> -6064.67316742 </x>
<y unit='cm'> 16106.6829662 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2426'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='525'>
<name> tank_525 </name>
<type> 2 </type>
<position>
<x unit='cm'> 18017.6586348 </x>
<y unit='cm'> 43097.1910998 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2427'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='526'>
<name> tank_526 </name>
<type> 2 </type>
<position>
<x unit='cm'> -18040.4722793 </x>
<y unit='cm'> 39455.6178734 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2428'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='527'>
<name> tank_527 </name>
<type> 2 </type>
<position>
<x unit='cm'> 11062.8261379 </x>
<y unit='cm'> 17742.6837551 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2429'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='528'>
<name> tank_528 </name>
<type> 2 </type>
<position>
<x unit='cm'> 4256.90831437 </x>
<y unit='cm'> 53479.7316961 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2430'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='529'>
<name> tank_529 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14900.7183721 </x>
<y unit='cm'> 22472.5377107 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2431'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='530'>
<name> tank_530 </name>
<type> 2 </type>
<position>
<x unit='cm'> 20236.5499196 </x>
<y unit='cm'> 32414.2046849 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2432'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='531'>
<name> tank_531 </name>
<type> 2 </type>
<position>
<x unit='cm'> -12449.2523495 </x>
<y unit='cm'> 48849.1163473 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2433'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='532'>
<name> tank_532 </name>
<type> 2 </type>
<position>
<x unit='cm'> 574.940241918 </x>
<y unit='cm'> 14587.7383141 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2434'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='533'>
<name> tank_533 </name>
<type> 2 </type>
<position>
<x unit='cm'> 14139.6784551 </x>
<y unit='cm'> 48712.1155339 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2435'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='534'>
<name> tank_534 </name>
<type> 2 </type>
<position>
<x unit='cm'> -18974.4675261 </x>
<y unit='cm'> 32683.0105877 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2436'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='535'>
<name> tank_535 </name>
<type> 2 </type>
<position>
<x unit='cm'> 16335.4795324 </x>
<y unit='cm'> 22114.6552688 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2437'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='536'>
<name> tank_536 </name>
<type> 2 </type>
<position>
<x unit='cm'> -2596.96705804 </x>
<y unit='cm'> 53817.1565498 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2438'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='537'>
<name> tank_537 </name>
<type> 2 </type>
<position>
<x unit='cm'> -10065.1203622 </x>
<y unit='cm'> 17585.7277409 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2439'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='538'>
<name> tank_538 </name>
<type> 2 </type>
<position>
<x unit='cm'> 19970.373366 </x>
<y unit='cm'> 39296.6118712 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2440'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='539'>
<name> tank_539 </name>
<type> 2 </type>
<position>
<x unit='cm'> -16909.3552559 </x>
<y unit='cm'> 43584.1071623 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2441'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='540'>
<name> tank_540 </name>
<type> 2 </type>
<position>
<x unit='cm'> 7432.54105597 </x>
<y unit='cm'> 15459.8701258 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2442'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='541'>
<name> tank_541 </name>
<type> 2 </type>
<position>
<x unit='cm'> 8483.08090885 </x>
<y unit='cm'> 52707.6971334 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2443'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='542'>
<name> tank_542 </name>
<type> 2 </type>
<position>
<x unit='cm'> -17498.7544949 </x>
<y unit='cm'> 25903.7402309 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2444'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='543'>
<name> tank_543 </name>
<type> 2 </type>
<position>
<x unit='cm'> 19832.0937107 </x>
<y unit='cm'> 28121.6840095 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2445'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='544'>
<name> tank_544 </name>
<type> 2 </type>
<position>
<x unit='cm'> -9244.61717131 </x>
<y unit='cm'> 51744.977861 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2446'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='545'>
<name> tank_545 </name>
<type> 2 </type>
<position>
<x unit='cm'> -3751.85064518 </x>
<y unit='cm'> 14618.8648173 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2447'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='546'>
<name> tank_546 </name>
<type> 2 </type>
<position>
<x unit='cm'> 17313.5623124 </x>
<y unit='cm'> 45760.0073216 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2448'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='547'>
<name> tank_547 </name>
<type> 2 </type>
<position>
<x unit='cm'> -19319.6124557 </x>
<y unit='cm'> 37011.4924967 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2449'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='548'>
<name> tank_548 </name>
<type> 2 </type>
<position>
<x unit='cm'> 13660.1213901 </x>
<y unit='cm'> 18684.8237774 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2450'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='549'>
<name> tank_549 </name>
<type> 2 </type>
<position>
<x unit='cm'> 1700.37239031 </x>
<y unit='cm'> 54538.6612344 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2451'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='550'>
<name> tank_550 </name>
<type> 2 </type>
<position>
<x unit='cm'> -13726.7060225 </x>
<y unit='cm'> 19962.0487081 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2452'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='551'>
<name> tank_551 </name>
<type> 2 </type>
<position>
<x unit='cm'> 21065.4507435 </x>
<y unit='cm'> 35063.2518161 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2453'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='552'>
<name> tank_552 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14852.2366205 </x>
<y unit='cm'> 47451.305244 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2454'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='553'>
<name> tank_553 </name>
<type> 2 </type>
<position>
<x unit='cm'> 3295.74804876 </x>
<y unit='cm'> 13996.8823481 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2455'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='554'>
<name> tank_554 </name>
<type> 2 </type>
<position>
<x unit='cm'> 12527.9882178 </x>
<y unit='cm'> 50987.6531678 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2456'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='555'>
<name> tank_555 </name>
<type> 2 </type>
<position>
<x unit='cm'> -19321.1375932 </x>
<y unit='cm'> 29911.8804666 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2457'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='556'>
<name> tank_556 </name>
<type> 2 </type>
<position>
<x unit='cm'> 18464.5495861 </x>
<y unit='cm'> 23928.5302551 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2458'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='557'>
<name> tank_557 </name>
<type> 2 </type>
<position>
<x unit='cm'> -5396.46289396 </x>
<y unit='cm'> 53915.4331337 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2459'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='558'>
<name> tank_558 </name>
<type> 2 </type>
<position>
<x unit='cm'> -8062.44388885 </x>
<y unit='cm'> 15621.0676004 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2460'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='559'>
<name> tank_559 </name>
<type> 2 </type>
<position>
<x unit='cm'> 19818.0253529 </x>
<y unit='cm'> 42102.1730635 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2461'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='560'>
<name> tank_560 </name>
<type> 2 </type>
<position>
<x unit='cm'> -18692.8913773 </x>
<y unit='cm'> 41407.6014835 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2462'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='561'>
<name> tank_561 </name>
<type> 2 </type>
<position>
<x unit='cm'> 10221.7014663 </x>
<y unit='cm'> 15863.070109 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2463'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='562'>
<name> tank_562 </name>
<type> 2 </type>
<position>
<x unit='cm'> 6149.19424995 </x>
<y unit='cm'> 54294.7637067 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2464'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='563'>
<name> tank_563 </name>
<type> 2 </type>
<position>
<x unit='cm'> -16846.4901572 </x>
<y unit='cm'> 23153.4324603 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2465'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='564'>
<name> tank_564 </name>
<type> 2 </type>
<position>
<x unit='cm'> 21208.8437028 </x>
<y unit='cm'> 30595.1529115 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2466'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='565'>
<name> tank_565 </name>
<type> 2 </type>
<position>
<x unit='cm'> -11933.8154245 </x>
<y unit='cm'> 50847.4468493 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2467'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='566'>
<name> tank_566 </name>
<type> 2 </type>
<position>
<x unit='cm'> -1157.81192248 </x>
<y unit='cm'> 13464.6615387 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2468'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='567'>
<name> tank_567 </name>
<type> 2 </type>
<position>
<x unit='cm'> 16176.551255 </x>
<y unit='cm'> 48366.2140477 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2469'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='568'>
<name> tank_568 </name>
<type> 2 </type>
<position>
<x unit='cm'> -20240.7616841 </x>
<y unit='cm'> 34316.9628988 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2470'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='569'>
<name> tank_569 </name>
<type> 2 </type>
<position>
<x unit='cm'> 16162.0070753 </x>
<y unit='cm'> 20053.5765048 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2471'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='570'>
<name> tank_570 </name>
<type> 2 </type>
<position>
<x unit='cm'> -1073.6589684 </x>
<y unit='cm'> 55218.0643584 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2472'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='571'>
<name> tank_571 </name>
<type> 2 </type>
<position>
<x unit='cm'> -12135.8487026 </x>
<y unit='cm'> 17585.0871516 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2473'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='572'>
<name> tank_572 </name>
<type> 2 </type>
<position>
<x unit='cm'> 21496.3092773 </x>
<y unit='cm'> 37895.0499764 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2474'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='573'>
<name> tank_573 </name>
<type> 2 </type>
<position>
<x unit='cm'> -17084.5662098 </x>
<y unit='cm'> 45649.8105872 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2475'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='574'>
<name> tank_574 </name>
<type> 2 </type>
<position>
<x unit='cm'> 6163.0032106 </x>
<y unit='cm'> 13819.4099196 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2476'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='575'>
<name> tank_575 </name>
<type> 2 </type>
<position>
<x unit='cm'> 10529.0701483 </x>
<y unit='cm'> 53056.7005399 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2477'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='576'>
<name> tank_576 </name>
<type> 2 </type>
<position>
<x unit='cm'> -19242.3873259 </x>
<y unit='cm'> 27031.876608 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2478'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='577'>
<name> tank_577 </name>
<type> 2 </type>
<position>
<x unit='cm'> 20352.8766089 </x>
<y unit='cm'> 26110.0090259 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2479'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='578'>
<name> tank_578 </name>
<type> 2 </type>
<position>
<x unit='cm'> -8266.2889123 </x>
<y unit='cm'> 53579.6605678 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2480'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='579'>
<name> tank_579 </name>
<type> 2 </type>
<position>
<x unit='cm'> -5714.80439357 </x>
<y unit='cm'> 13929.5414916 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2481'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='580'>
<name> tank_580 </name>
<type> 2 </type>
<position>
<x unit='cm'> 19226.4837278 </x>
<y unit='cm'> 44938.8592506 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2482'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='581'>
<name> tank_581 </name>
<type> 2 </type>
<position>
<x unit='cm'> -20173.0287436 </x>
<y unit='cm'> 38911.6141868 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2483'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='582'>
<name> tank_582 </name>
<type> 2 </type>
<position>
<x unit='cm'> 13002.4342038 </x>
<y unit='cm'> 16707.0752529 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2484'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='583'>
<name> tank_583 </name>
<type> 2 </type>
<position>
<x unit='cm'> 3523.94885363 </x>
<y unit='cm'> 55550.5410031 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2485'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='584'>
<name> tank_584 </name>
<type> 2 </type>
<position>
<x unit='cm'> -15755.3623396 </x>
<y unit='cm'> 20451.1350125 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2486'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='585'>
<name> tank_585 </name>
<type> 2 </type>
<position>
<x unit='cm'> 22229.0174305 </x>
<y unit='cm'> 33329.4368959 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2487'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='586'>
<name> tank_586 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14535.7090339 </x>
<y unit='cm'> 49516.5391335 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2488'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='587'>
<name> tank_587 </name>
<type> 2 </type>
<position>
<x unit='cm'> 1664.31796288 </x>
<y unit='cm'> 12689.5091003 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2489'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='588'>
<name> tank_588 </name>
<type> 2 </type>
<position>
<x unit='cm'> 14615.1587974 </x>
<y unit='cm'> 50846.4267213 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2490'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='589'>
<name> tank_589 </name>
<type> 2 </type>
<position>
<x unit='cm'> -20763.3846288 </x>
<y unit='cm'> 31428.9878947 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2491'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='590'>
<name> tank_590 </name>
<type> 2 </type>
<position>
<x unit='cm'> 18500.126533 </x>
<y unit='cm'> 21834.2715541 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2492'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='591'>
<name> tank_591 </name>
<type> 2 </type>
<position>
<x unit='cm'> -4004.84245135 </x>
<y unit='cm'> 55482.6279222 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2493'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='592'>
<name> tank_592 </name>
<type> 2 </type>
<position>
<x unit='cm'> -10148.839444 </x>
<y unit='cm'> 15408.4412049 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2494'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='593'>
<name> tank_593 </name>
<type> 2 </type>
<position>
<x unit='cm'> 21499.3151485 </x>
<y unit='cm'> 40846.347483 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2495'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='594'>
<name> tank_594 </name>
<type> 2 </type>
<position>
<x unit='cm'> -19081.5499422 </x>
<y unit='cm'> 43471.1861861 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2496'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='595'>
<name> tank_595 </name>
<type> 2 </type>
<position>
<x unit='cm'> 9111.04491533 </x>
<y unit='cm'> 14079.3912475 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2497'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='596'>
<name> tank_596 </name>
<type> 2 </type>
<position>
<x unit='cm'> 8175.13073059 </x>
<y unit='cm'> 54857.1756887 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2498'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='597'>
<name> tank_597 </name>
<type> 2 </type>
<position>
<x unit='cm'> -18720.0789419 </x>
<y unit='cm'> 24110.5504961 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2499'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='598'>
<name> tank_598 </name>
<type> 2 </type>
<position>
<x unit='cm'> 21941.4797753 </x>
<y unit='cm'> 28621.4851548 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2500'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='599'>
<name> tank_599 </name>
<type> 2 </type>
<position>
<x unit='cm'> -11137.5365685 </x>
<y unit='cm'> 52797.7791484 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2501'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='600'>
<name> tank_600 </name>
<type> 2 </type>
<position>
<x unit='cm'> -3064.91283711 </x>
<y unit='cm'> 12566.5613648 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2502'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='601'>
<name> tank_601 </name>
<type> 2 </type>
<position>
<x unit='cm'> 18189.8646895 </x>
<y unit='cm'> 47736.9494102 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2503'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='602'>
<name> tank_602 </name>
<type> 2 </type>
<position>
<x unit='cm'> -21298.3641416 </x>
<y unit='cm'> 36143.624976 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2504'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='603'>
<name> tank_603 </name>
<type> 2 </type>
<position>
<x unit='cm'> 15704.757049 </x>
<y unit='cm'> 17991.5442553 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2505'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='604'>
<name> tank_604 </name>
<type> 2 </type>
<position>
<x unit='cm'> 659.21960187 </x>
<y unit='cm'> 56428.0430544 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2506'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='605'>
<name> tank_605 </name>
<type> 2 </type>
<position>
<x unit='cm'> -14231.937605 </x>
<y unit='cm'> 17866.5376546 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2507'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='606'>
<name> tank_606 </name>
<type> 2 </type>
<position>
<x unit='cm'> 22850.4200873 </x>
<y unit='cm'> 36268.6743314 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2508'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='607'>
<name> tank_607 </name>
<type> 2 </type>
<position>
<x unit='cm'> -16981.4523512 </x>
<y unit='cm'> 47764.9976115 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2509'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='608'>
<name> tank_608 </name>
<type> 2 </type>
<position>
<x unit='cm'> 4655.13073682 </x>
<y unit='cm'> 12330.474787 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2510'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='609'>
<name> tank_609 </name>
<type> 2 </type>
<position>
<x unit='cm'> 12648.2065126 </x>
<y unit='cm'> 53133.1891546 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2511'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='610'>
<name> tank_610 </name>
<type> 2 </type>
<position>
<x unit='cm'> -20855.8376544 </x>
<y unit='cm'> 28410.0540547 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2512'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='611'>
<name> tank_611 </name>
<type> 2 </type>
<position>
<x unit='cm'> 20608.9477592 </x>
<y unit='cm'> 24002.1543402 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2513'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='612'>
<name> tank_612 </name>
<type> 2 </type>
<position>
<x unit='cm'> -7028.10611541 </x>
<y unit='cm'> 55306.3854757 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2514'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='613'>
<name> tank_613 </name>
<type> 2 </type>
<position>
<x unit='cm'> -7796.17328577 </x>
<y unit='cm'> 13495.1988002 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2515'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='614'>
<name> tank_614 </name>
<type> 2 </type>
<position>
<x unit='cm'> 21054.3880074 </x>
<y unit='cm'> 43850.0006609 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2516'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='615'>
<name> tank_615 </name>
<type> 2 </type>
<position>
<x unit='cm'> -20783.0449089 </x>
<y unit='cm'> 40951.4295595 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2517'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='616'>
<name> tank_616 </name>
<type> 2 </type>
<position>
<x unit='cm'> 12071.1880885 </x>
<y unit='cm'> 14790.8579657 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2518'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
<tank id='617'>
<name> tank_617 </name>
<type> 2 </type>
<position>
<x unit='cm'> 5507.38840917 </x>
<y unit='cm'> 56332.358784 </y>
<z unit='cm'> 0 </z>
</position>
<channels>
<channel id='2519'>
<number> 1 </number>
<type> 1 </type>
<position>
<x unit='cm'> 0 </x>
<y unit='cm'> 0 </y>
<z unit='cm'> 40 </z>
</position>
</channel>
</channels>
</tank>
</layout>
</detector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment